diff --git a/.gitmodules b/.gitmodules
index 8e44070c84e605d9fcf72b96eb53a4149217d621..5f407461fee81a2ee6e27153186a1afacad085bc 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -82,3 +82,15 @@
 [submodule "dependencies/parsers/atk"]
 	path = dependencies/parsers/atk
 	url = https://gitlab.mpcdf.mpg.de/nomad-lab/parser-atk
+[submodule "dependencies/parsers/gulp"]
+	path = dependencies/parsers/gulp
+	url = https://gitlab.mpcdf.mpg.de/nomad-lab/parser-gulp
+[submodule "dependencies/parsers/siesta"]
+	path = dependencies/parsers/siesta
+	url = https://gitlab.mpcdf.mpg.de/nomad-lab/parser-siesta
+[submodule "dependencies/parsers/elk"]
+	path = dependencies/parsers/elk
+	url = https://gitlab.mpcdf.mpg.de/nomad-lab/parser-elk
+[submodule "dependencies/parsers/elastic"]
+	path = dependencies/parsers/elastic
+	url = https://gitlab.mpcdf.mpg.de/nomad-lab/parser-elastic
diff --git a/.vscode/launch.json b/.vscode/launch.json
index a8858ee1adebe5cbbb00e99e68f7c2ba0fdddfc3..d35c159a5169068daa6f3bdf26bbdcf6f90124e1 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -197,6 +197,16 @@
         "-sv", "tests/test_normalizing.py::test_normalizer[parsers/octopus-tests/data/parsers/octopus/stdout.txt]"
       ]
     },
+    {
+      "name": "GULP Normalizer",
+      "type": "python",
+      "request": "launch",
+      "cwd": "${workspaceFolder}",
+      "program": "${workspaceFolder}/.pyenv/bin/pytest",
+      "args": [
+        "-sv", "tests/test_normalizing.py::test_normalizer[parsers/gulp-tests/data/parsers/gulp/example6.got]"
+      ]
+    },
     {
       "name": "Python: Current File",
       "type": "python",
diff --git a/dependencies/nomad-meta-info b/dependencies/nomad-meta-info
index b232a5fdd11c344656ff1e6ec7a2ed6f787cf49f..8c917126279cbbecb7adb7e30fc7d641d9a31a78 160000
--- a/dependencies/nomad-meta-info
+++ b/dependencies/nomad-meta-info
@@ -1 +1 @@
-Subproject commit b232a5fdd11c344656ff1e6ec7a2ed6f787cf49f
+Subproject commit 8c917126279cbbecb7adb7e30fc7d641d9a31a78
diff --git a/dependencies/parsers/elastic b/dependencies/parsers/elastic
new file mode 160000
index 0000000000000000000000000000000000000000..118e1383844c64d521a04be1c5bb26337af8c97f
--- /dev/null
+++ b/dependencies/parsers/elastic
@@ -0,0 +1 @@
+Subproject commit 118e1383844c64d521a04be1c5bb26337af8c97f
diff --git a/dependencies/parsers/elk b/dependencies/parsers/elk
new file mode 160000
index 0000000000000000000000000000000000000000..c89664504361ee2a06f0c9f2961f169af5dae43f
--- /dev/null
+++ b/dependencies/parsers/elk
@@ -0,0 +1 @@
+Subproject commit c89664504361ee2a06f0c9f2961f169af5dae43f
diff --git a/dependencies/parsers/gulp b/dependencies/parsers/gulp
new file mode 160000
index 0000000000000000000000000000000000000000..ceb9a09e031016b0fc366667d79c9b44ea8a5c7f
--- /dev/null
+++ b/dependencies/parsers/gulp
@@ -0,0 +1 @@
+Subproject commit ceb9a09e031016b0fc366667d79c9b44ea8a5c7f
diff --git a/dependencies/parsers/siesta b/dependencies/parsers/siesta
new file mode 160000
index 0000000000000000000000000000000000000000..63c5268677f9dfd6a75ee5a8816778975c97109f
--- /dev/null
+++ b/dependencies/parsers/siesta
@@ -0,0 +1 @@
+Subproject commit 63c5268677f9dfd6a75ee5a8816778975c97109f
diff --git a/nomad/files.py b/nomad/files.py
index 5480ffafb193e203f05c45ecceb36200eac162d6..62dfddb37b94c60c6a6d8a005758229119040d90 100644
--- a/nomad/files.py
+++ b/nomad/files.py
@@ -423,6 +423,7 @@ class StagingUploadFiles(UploadFiles):
             target_dir = target_dir.join_dir(prefix, create=True)
         ext = os.path.splitext(path)[1]
         if force_archive or ext == '.zip':
+            print("Here's a zip!")
             try:
                 with ZipFile(path) as zf:
                     zf.extractall(target_dir.os_path)
diff --git a/nomad/parsing/__init__.py b/nomad/parsing/__init__.py
index 9676395f9ee9d4777b803d692202bd358c53e995..647ea7585be36fbbbc37d234f7bbcf6a776e1c6a 100644
--- a/nomad/parsing/__init__.py
+++ b/nomad/parsing/__init__.py
@@ -316,7 +316,35 @@ parsers = [
         mainfile_name_re=r'^.*\.nc',
         # The previously used mime type r'application/x-netcdf' wasn't found by magic library.
         mainfile_mime_re=r'application/octet-stream'
+    ),
+    LegacyParser(
+        name='parsers/gulp',
+        parser_class_name='gulpparser.GULPParser',
+        mainfile_contents_re=(
+            r'\s*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*'
+            r'\*\*\*\*\*\*\*\*\*\*\*\*\*\s*'
+            r'\s*\*\s*GENERAL UTILITY LATTICE PROGRAM\s*\*\s*')
+    ),
+    LegacyParser(
+        name='parsers/siesta',
+        parser_class_name='siestaparser.SiestaParser',
+        mainfile_contents_re=(
+            r'(Siesta Version: siesta-|SIESTA [0-9]\.[0-9]\.[0-9])')
+    ),
+    LegacyParser(
+        name='parsers/elk',
+        parser_class_name='elkparser.ElkParser',
+        mainfile_contents_re=(
+            r'\s*\+-----------+\+\s*'
+            r'\s*\| Elk version (P?<version>[0-9.a-zA-Z]+) started \|\s*'
+            r'\s*\+----------+\+\s*')
+    ),
+    LegacyParser(
+        name='parsers/elastic',
+        parser_class_name='elasticparser.ElasticParser',
+        mainfile_contents_re=r'\s*Order of elastic constants\s*=\s*[0-9]+\s*'
     )
+
 ]
 
 """ Instanciation and constructor based config of all parsers. """
diff --git a/tests/data/parsers/elk/Al/DTOTENERGY.OUT b/tests/data/parsers/elk/Al/DTOTENERGY.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..310d85c2278b24889f6abd217fc007e36c1becc7
--- /dev/null
+++ b/tests/data/parsers/elk/Al/DTOTENERGY.OUT
@@ -0,0 +1,17 @@
+  0.1198769544E-02
+  0.2799643479E-02
+  0.1175652643E-01
+  0.2392171444E-01
+  0.3584530053E-01
+  0.4335915746E-01
+  0.4394082265E-01
+  0.3804421405E-01
+  0.2847828394E-01
+  0.1859043836E-01
+  0.1066293543E-01
+  0.5410512229E-02
+  0.2441357323E-02
+  0.9817180543E-03
+  0.3518649715E-03
+  0.1126689946E-03
+  0.3257301847E-04
diff --git a/tests/data/parsers/elk/Al/EFERMI.OUT b/tests/data/parsers/elk/Al/EFERMI.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..80b53d7533b8fcaae5e088dfac52fa55482eba08
--- /dev/null
+++ b/tests/data/parsers/elk/Al/EFERMI.OUT
@@ -0,0 +1 @@
+  0.2674453034    
diff --git a/tests/data/parsers/elk/Al/EIGVAL.OUT b/tests/data/parsers/elk/Al/EIGVAL.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..f24f5a5d85e200945492522b90af54c6b5260951
--- /dev/null
+++ b/tests/data/parsers/elk/Al/EIGVAL.OUT
@@ -0,0 +1,132 @@
+    10 : nkpt
+     9 : nstsv
+
+     1  0.1250000000      0.1250000000      0.1250000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122364679       2.000000000    
+     2  -2.122259438       2.000000000    
+     3  -2.122259438       2.000000000    
+     4 -0.1286748619       2.000000000    
+     5  0.5745589210       0.000000000    
+     6  0.7051658566       0.000000000    
+     7  0.7051658566       0.000000000    
+     8  0.8151136384       0.000000000    
+     9  0.8605767411       0.000000000    
+
+
+     2  0.3750000000      0.1250000000      0.1250000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122741574       2.000000000    
+     2  -2.122411847       2.000000000    
+     3  -2.122334851       2.000000000    
+     4 -0.4678368645E-01   2.000000000    
+     5  0.3448210862       0.000000000    
+     6  0.5063335941       0.000000000    
+     7  0.6997894076       0.000000000    
+     8  0.7856802707       0.000000000    
+     9  0.8006252452       0.000000000    
+
+
+     3  0.6250000000      0.1250000000      0.1250000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122993479       2.000000000    
+     2  -2.122438302       2.000000000    
+     3  -2.122380402       2.000000000    
+     4  0.7353923216E-01   2.000000000    
+     5  0.1525458423       2.000000000    
+     6  0.5441924906       0.000000000    
+     7  0.5896331272       0.000000000    
+     8  0.6650293833       0.000000000    
+     9  0.8356862943       0.000000000    
+
+
+     4  0.8750000000      0.1250000000      0.1250000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122581428       2.000000000    
+     2  -2.122336125       2.000000000    
+     3  -2.122330979       2.000000000    
+     4 -0.8756585904E-01   2.000000000    
+     5  0.4593570587       0.000000000    
+     6  0.5896431645       0.000000000    
+     7  0.6561578100       0.000000000    
+     8  0.6997691538       0.000000000    
+     9  0.7958323137       0.000000000    
+
+
+     5  0.3750000000      0.3750000000      0.1250000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122790135       2.000000000    
+     2  -2.122463957       2.000000000    
+     3  -2.122434744       2.000000000    
+     4 -0.6380235792E-02   2.000000000    
+     5  0.3817063939       0.000000000    
+     6  0.4690786282       0.000000000    
+     7  0.5148235813       0.000000000    
+     8  0.5802200862       0.000000000    
+     9  0.7261290494       0.000000000    
+
+
+     6  0.6250000000      0.3750000000      0.1250000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122869897       2.000000000    
+     2  -2.122682147       2.000000000    
+     3  -2.122510464       2.000000000    
+     4  0.1507310056       2.000000000    
+     5  0.2285441300       2.000000000    
+     6  0.3154891470      0.2728059484E-20
+     7  0.3936611581       0.000000000    
+     8  0.7117965260       0.000000000    
+     9  0.8710552053       0.000000000    
+
+
+     7  0.8750000000      0.3750000000      0.1250000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122864752       2.000000000    
+     2  -2.122537526       2.000000000    
+     3  -2.122409389       2.000000000    
+     4  0.3373996622E-01   2.000000000    
+     5  0.2674457264      0.9997884984    
+     6  0.4306935410       0.000000000    
+     7  0.5070639965       0.000000000    
+     8  0.7471363675       0.000000000    
+     9  0.8351001601       0.000000000    
+
+
+     8  0.6250000000      0.6250000000      0.1250000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122963098       2.000000000    
+     2  -2.122576667       2.000000000    
+     3  -2.122517646       2.000000000    
+     4  0.1117263429       2.000000000    
+     5  0.2759063707      0.4230028254E-03
+     6  0.3436488571       0.000000000    
+     7  0.4781416554       0.000000000    
+     8  0.5396484561       0.000000000    
+     9  0.6904329374       0.000000000    
+
+
+     9  0.3750000000      0.3750000000      0.3750000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122916936       2.000000000    
+     2  -2.122351729       2.000000000    
+     3  -2.122351729       2.000000000    
+     4 -0.6328542043E-02   2.000000000    
+     5  0.2305217279       2.000000000    
+     6  0.6637824424       0.000000000    
+     7  0.6637824424       0.000000000    
+     8  0.7556756622       0.000000000    
+     9  0.7556756622       0.000000000    
+
+
+    10  0.6250000000      0.3750000000      0.3750000000     : k-point, vkl
+ (state, eigenvalue and occupancy below)
+     1  -2.122892972       2.000000000    
+     2  -2.122646630       2.000000000    
+     3  -2.122429945       2.000000000    
+     4  0.1129446001       2.000000000    
+     5  0.1900341612       2.000000000    
+     6  0.3547527304       0.000000000    
+     7  0.5520317928       0.000000000    
+     8  0.6304422575       0.000000000    
+     9  0.9658781777       0.000000000    
+
diff --git a/tests/data/parsers/elk/Al/EQATOMS.OUT b/tests/data/parsers/elk/Al/EQATOMS.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..11ba34a160f5867274cc8bd97b04a3fb9a359aa2
--- /dev/null
+++ b/tests/data/parsers/elk/Al/EQATOMS.OUT
@@ -0,0 +1,4 @@
+
+Species :    1 (Al)
+ atom    1 is equivalent to atom(s)
+   1
diff --git a/tests/data/parsers/elk/Al/EVALCORE.OUT b/tests/data/parsers/elk/Al/EVALCORE.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..d94c13453652d4f2a99466edf270f32401ed9ae4
--- /dev/null
+++ b/tests/data/parsers/elk/Al/EVALCORE.OUT
@@ -0,0 +1,4 @@
+
+Species :    1 (Al), atom :    1
+ n =  1, l =  0, k =  1 :   -54.83607356    
+ n =  2, l =  0, k =  1 :   -3.511752279    
diff --git a/tests/data/parsers/elk/Al/EVALFV.OUT b/tests/data/parsers/elk/Al/EVALFV.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..416928ea8c6e1b7913dab90cb54b4e293aafc422
Binary files /dev/null and b/tests/data/parsers/elk/Al/EVALFV.OUT differ
diff --git a/tests/data/parsers/elk/Al/EVALSV.OUT b/tests/data/parsers/elk/Al/EVALSV.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..33f8331fbdd347c31b76185b3b572cdd29ffb7b5
Binary files /dev/null and b/tests/data/parsers/elk/Al/EVALSV.OUT differ
diff --git a/tests/data/parsers/elk/Al/EVECFV.OUT b/tests/data/parsers/elk/Al/EVECFV.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..bbbc68a4e2df85ed606a5e90fd2f76b17c967a75
Binary files /dev/null and b/tests/data/parsers/elk/Al/EVECFV.OUT differ
diff --git a/tests/data/parsers/elk/Al/EVECSV.OUT b/tests/data/parsers/elk/Al/EVECSV.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..395e14121060d34073da26878a465b81c663c64f
Binary files /dev/null and b/tests/data/parsers/elk/Al/EVECSV.OUT differ
diff --git a/tests/data/parsers/elk/Al/FERMIDOS.OUT b/tests/data/parsers/elk/Al/FERMIDOS.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..deb6f2e4cda2c1b106349c00986a9b9b6201c8a4
--- /dev/null
+++ b/tests/data/parsers/elk/Al/FERMIDOS.OUT
@@ -0,0 +1,19 @@
+   93.79381046    
+   93.79313701    
+   93.79231979    
+   93.79151253    
+   93.79083328    
+   93.79033045    
+   93.78999830    
+   93.78980281    
+   93.78970213    
+   93.78965849    
+   93.78964396    
+   93.78964136    
+   93.78964213    
+   93.78964311    
+   93.78964363    
+   93.78964384    
+   93.78964390    
+   93.78964393    
+   93.78964393    
diff --git a/tests/data/parsers/elk/Al/GAP.OUT b/tests/data/parsers/elk/Al/GAP.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..1a51cd75f5291f0aaf574e191a06845abc6fb9c4
--- /dev/null
+++ b/tests/data/parsers/elk/Al/GAP.OUT
@@ -0,0 +1,19 @@
+    0.367907732220E-01
+    0.368044960624E-01
+    0.368228800917E-01
+    0.368434558093E-01
+    0.368638235136E-01
+    0.368819830650E-01
+    0.368966956680E-01
+    0.369075704624E-01
+    0.369149057106E-01
+    0.369194078453E-01
+    0.369219071736E-01
+    0.369231504502E-01
+    0.369236975143E-01
+    0.369239069369E-01
+    0.369239752487E-01
+    0.369239937401E-01
+    0.369239977553E-01
+    0.369239984296E-01
+    0.369239985193E-01
diff --git a/tests/data/parsers/elk/Al/GEOMETRY.OUT b/tests/data/parsers/elk/Al/GEOMETRY.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..fc65b10898434b2673f818b548681c71674aabcb
--- /dev/null
+++ b/tests/data/parsers/elk/Al/GEOMETRY.OUT
@@ -0,0 +1,23 @@
+
+scale
+ 1.0
+
+scale1
+ 1.0
+
+scale2
+ 1.0
+
+scale3
+ 1.0
+
+avec
+   3.826700000       3.826700000       0.000000000    
+   3.826700000       0.000000000       3.826700000    
+   0.000000000       3.826700000       3.826700000    
+
+atoms
+   1                                    : nspecies
+'Al.in'                                 : spfname
+   1                                    : natoms; atpos, bfcmt below
+    0.00000000    0.00000000    0.00000000    0.00000000  0.00000000  0.00000000
diff --git a/tests/data/parsers/elk/Al/IADIST.OUT b/tests/data/parsers/elk/Al/IADIST.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..cdff1618d2c1187f83a4b5b9c295bb9b073fa8b1
--- /dev/null
+++ b/tests/data/parsers/elk/Al/IADIST.OUT
@@ -0,0 +1,3 @@
+
+Distance between is =    1 (Al), ia =    1 and
+ is =    1 (Al), ia =    1 :    0.000000000    
diff --git a/tests/data/parsers/elk/Al/INFO.OUT b/tests/data/parsers/elk/Al/INFO.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..2494bd2df6cda93497042b6ff4500fa383f959c0
--- /dev/null
+++ b/tests/data/parsers/elk/Al/INFO.OUT
@@ -0,0 +1,992 @@
++----------------------------+
+| Elk version 4.0.15 started |
++----------------------------+
+
+Date (YYYY-MM-DD) : 2016-08-03
+Time (hh:mm:ss)   : 10:33:05
+
+Notes :
+ Simple calculation of the ground state of aluminium. Must check convergence    
+ with respect to k-point set later.                                             
+ Run by H. Golightly                                                            
+
+All units are atomic (Hartree, Bohr, etc.)
+
++-------------------------------------------------+
+| Ground-state run starting from atomic densities |
++-------------------------------------------------+
+
+Lattice vectors :
+   3.826700000       3.826700000       0.000000000    
+   3.826700000       0.000000000       3.826700000    
+   0.000000000       3.826700000       3.826700000    
+
+Reciprocal lattice vectors :
+  0.8209665387      0.8209665387     -0.8209665387    
+  0.8209665387     -0.8209665387      0.8209665387    
+ -0.8209665387      0.8209665387      0.8209665387    
+
+Unit cell volume      :    112.0735800    
+Brillouin zone volume :    2.213280003    
+
+Species :    1 (Al)
+ parameters loaded from : Al.in
+ name : aluminium
+ nuclear charge    :   -13.00000000    
+ electronic charge :    13.00000000    
+ atomic mass :    49184.33492    
+ muffin-tin radius :    2.200000000    
+ number of radial points in muffin-tin :    397
+ number on inner part of muffin-tin    :    273
+ atomic positions (lattice), magnetic fields (Cartesian) :
+   1 :   0.00000000  0.00000000  0.00000000    0.00000000  0.00000000  0.00000000
+
+Total number of atoms per unit cell :    1
+
+Spin treatment :
+ spin-unpolarised
+
+Number of Bravais lattice symmetries :   48
+Number of crystal symmetries         :   48
+Crystal has inversion symmetry
+Real symmetric eigensolver will be used
+
+k-point grid :      4     4     4
+k-point offset :   0.5000000000      0.5000000000      0.5000000000    
+k-point set is reduced with full crystal symmetry group
+Total number of k-points :       10
+
+Muffin-tin radius times maximum |G+k| :    7.000000000    
+ using average radius
+Maximum |G+k| for APW functions       :    3.181818182    
+Maximum (1/2)|G+k|^2                  :    5.061983471    
+Maximum |G| for potential and density :    12.00000000    
+Constant for pseudocharge density :    7
+Radial integration step length :    4
+
+G-vector grid sizes :     24    24    24
+Number of G-vectors :     3287
+
+Maximum angular momentum used for
+ APW functions                      :    8
+ H and O matrix elements outer loop :    7
+ outer part of muffin-tin           :    7
+ inner part of muffin-tin           :    3
+
+Total nuclear charge    :   -13.00000000    
+Total core charge       :    4.000000000    
+Total valence charge    :    9.000000000    
+Total excess charge     :    0.000000000    
+Total electronic charge :    13.00000000    
+
+Effective Wigner radius, r_s :    1.272009713    
+
+Number of empty states         :    4
+Total number of valence states :    9
+Total number of core states    :    4
+
+Total number of local-orbitals :    7
+
+Exchange-correlation functional :      3     0     0
+ Perdew-Wang/Ceperley-Alder, Phys. Rev. B 45, 13244 (1992)
+ Local density approximation (LDA)
+
+Smearing type :    3
+ Fermi-Dirac
+Smearing width :   0.1000000000E-02
+Effective electronic temperature (K) :    315.7750425    
+
+Mixing type :    1
+ Adaptive linear mixing
+
+Density and potential initialised from atomic data
+
++------------------------------+
+| Self-consistent loop started |
++------------------------------+
+
++--------------------+
+| Loop number :    1 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.215413493034    
+ sum of eigenvalues          :     -129.458254279    
+ electron kinetic            :      241.701644717    
+ core electron kinetic       :      179.611645457    
+ Coulomb                     :     -466.138141516    
+ Coulomb potential           :     -347.809442717    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -499.900724288    
+ Hartree                     :      76.0456407855    
+ Madelung                    :     -292.233420158    
+ xc potential                :     -23.3504562794    
+ exchange                    :     -16.6911650609    
+ correlation                 :    -0.988204423318    
+ electron entropic           :    -0.260340444522E-03
+ total energy                :     -242.116126624    
+
+Density of states at Fermi energy :    93.79381046    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3679077322E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8695883208E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.787254820    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.21274518     (  0.5217320705E-03)
+ total in muffin-tins        :    11.21274518    
+ total calculated charge     :    12.99035933    
+ total charge                :    13.00000000    
+ error                       :   0.9640672526E-02
+
+Time (CPU seconds) :         0.39
+
++--------------------+
+| Loop number :    2 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.220533363087    
+ sum of eigenvalues          :     -129.438329032    
+ electron kinetic            :      241.733476828    
+ core electron kinetic       :      179.617408085    
+ Coulomb                     :     -466.168724793    
+ Coulomb potential           :     -347.818104100    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -499.953229457    
+ Hartree                     :      76.0675626783    
+ Madelung                    :     -292.259672742    
+ xc potential                :     -23.3537017594    
+ exchange                    :     -16.6935508140    
+ correlation                 :    -0.988266279303    
+ electron entropic           :    -0.260334804942E-03
+ total energy                :     -242.117325393    
+
+Density of states at Fermi energy :    93.79313701    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3680449606E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8695520291E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.785934033    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.21406597     (  0.5185852206E-03)
+ total in muffin-tins        :    11.21406597    
+ total calculated charge     :    12.99036070    
+ total charge                :    13.00000000    
+ error                       :   0.9639295173E-02
+
+RMS change in Kohn-Sham potential (target) :   0.1498680606     (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.1198769544E-02 (  0.1000000000E-03)
+
+Time (CPU seconds) :         0.47
+
++--------------------+
+| Loop number :    3 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.227461996191    
+ sum of eigenvalues          :     -129.408444359    
+ electron kinetic            :      241.777914729    
+ core electron kinetic       :      179.623945696    
+ Coulomb                     :     -466.206976186    
+ Coulomb potential           :     -347.828563939    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.019272406    
+ Hartree                     :      76.0953542335    
+ Madelung                    :     -292.292694217    
+ xc potential                :     -23.3577951488    
+ exchange                    :     -16.6965594216    
+ correlation                 :    -0.988344850478    
+ electron entropic           :    -0.260327947344E-03
+ total energy                :     -242.114226057    
+
+Density of states at Fermi energy :    93.79231979    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3682288009E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8695035160E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.784199860    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.21580014     (  0.5145179352E-03)
+ total in muffin-tins        :    11.21580014    
+ total calculated charge     :    12.99036341    
+ total charge                :    13.00000000    
+ error                       :   0.9636590521E-02
+
+RMS change in Kohn-Sham potential (target) :   0.1274020150     (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.2799643479E-02 (  0.1000000000E-03)
+
+Time (CPU seconds) :         0.57
+
++--------------------+
+| Loop number :    4 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.235343100742    
+ sum of eigenvalues          :     -129.369866489    
+ electron kinetic            :      241.830537299    
+ core electron kinetic       :      179.629828165    
+ Coulomb                     :     -466.245397261    
+ Coulomb potential           :     -347.838438974    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.086239520    
+ Hartree                     :      76.1239002733    
+ Madelung                    :     -292.326177774    
+ xc potential                :     -23.3619648139    
+ exchange                    :     -16.6996233655    
+ correlation                 :    -0.988425792769    
+ electron entropic           :    -0.260321157853E-03
+ total energy                :     -242.103169442    
+
+Density of states at Fermi energy :    93.79151253    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3684345581E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694537864E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.782320973    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.21767903     (  0.5101984586E-03)
+ total in muffin-tins        :    11.21767903    
+ total calculated charge     :    12.99036786    
+ total charge                :    13.00000000    
+ error                       :   0.9632136640E-02
+
+RMS change in Kohn-Sham potential (target) :   0.1019800730     (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.1175652643E-01 (  0.1000000000E-03)
+
+Time (CPU seconds) :         0.66
+
++--------------------+
+| Loop number :    5 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.243262785694    
+ sum of eigenvalues          :     -129.325201151    
+ electron kinetic            :      241.886467846    
+ core electron kinetic       :      179.634598851    
+ Coulomb                     :     -466.277670476    
+ Coulomb potential           :     -347.846158160    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.143066764    
+ Hartree                     :      76.1484543019    
+ Madelung                    :     -292.354591396    
+ xc potential                :     -23.3655108366    
+ exchange                    :     -16.7022280784    
+ correlation                 :    -0.988495834769    
+ electron entropic           :    -0.260315432869E-03
+ total energy                :     -242.082186859    
+
+Density of states at Fermi energy :    93.79083328    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3686382351E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694136537E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.780559669    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.21944033     (  0.5062331018E-03)
+ total in muffin-tins        :    11.21944033    
+ total calculated charge     :    12.99037422    
+ total charge                :    13.00000000    
+ error                       :   0.9625779616E-02
+
+RMS change in Kohn-Sham potential (target) :   0.7658690802E-01 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.2392171444E-01 (  0.1000000000E-03)
+
+Time (CPU seconds) :         0.75
+
++--------------------+
+| Loop number :    6 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.250433003052    
+ sum of eigenvalues          :     -129.278218804    
+ electron kinetic            :      241.940457286    
+ core electron kinetic       :      179.638306129    
+ Coulomb                     :     -466.299902224    
+ Coulomb potential           :     -347.850656294    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.183032125    
+ Hartree                     :      76.1661879155    
+ Madelung                    :     -292.374574076    
+ xc potential                :     -23.3680197952    
+ exchange                    :     -16.7040697111    
+ correlation                 :    -0.988547026652    
+ electron entropic           :    -0.260311187604E-03
+ total energy                :     -242.052321987    
+
+Density of states at Fermi energy :    93.79033045    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3688198307E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8693915259E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.779105233    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22089477     (  0.5030235057E-03)
+ total in muffin-tins        :    11.22089477    
+ total calculated charge     :    12.99038200    
+ total charge                :    13.00000000    
+ error                       :   0.9617999762E-02
+
+RMS change in Kohn-Sham potential (target) :   0.5374104026E-01 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.3584530053E-01 (  0.1000000000E-03)
+
+Time (CPU seconds) :         0.84
+
++--------------------+
+| Loop number :    7 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.256327953199    
+ sum of eigenvalues          :     -129.233592122    
+ electron kinetic            :      241.987810094    
+ core electron kinetic       :      179.641276158    
+ Coulomb                     :     -466.311772689    
+ Coulomb potential           :     -347.851945403    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.205483947    
+ Hartree                     :      76.1767692721    
+ Madelung                    :     -292.385799987    
+ xc potential                :     -23.3694568132    
+ exchange                    :     -16.7051229493    
+ correlation                 :    -0.988578302001    
+ electron entropic           :    -0.260308379960E-03
+ total energy                :     -242.017924155    
+
+Density of states at Fermi energy :    93.78999830    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3689669567E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8693886753E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.778038149    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22196185     (  0.5007057386E-03)
+ total in muffin-tins        :    11.22196185    
+ total calculated charge     :    12.99039016    
+ total charge                :    13.00000000    
+ error                       :   0.9609837378E-02
+
+RMS change in Kohn-Sham potential (target) :   0.3506275469E-01 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.4335915746E-01 (  0.1000000000E-03)
+
+Time (CPU seconds) :         0.94
+
++--------------------+
+| Loop number :    8 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.260737951022    
+ sum of eigenvalues          :     -129.195645050    
+ electron kinetic            :      242.025442370    
+ core electron kinetic       :      179.643825162    
+ Coulomb                     :     -466.315837562    
+ Coulomb potential           :     -347.851013207    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.214545891    
+ Hartree                     :      76.1817663420    
+ Madelung                    :     -292.390330959    
+ xc potential                :     -23.3700742143    
+ exchange                    :     -16.7055737771    
+ correlation                 :    -0.988593845529    
+ electron entropic           :    -0.260306726224E-03
+ total energy                :     -241.984823121    
+
+Density of states at Fermi energy :    93.78980281    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3690757046E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8693993451E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.777338919    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22266108     (  0.4991973807E-03)
+ total in muffin-tins        :    11.22266108    
+ total calculated charge     :    12.99039752    
+ total charge                :    13.00000000    
+ error                       :   0.9602478257E-02
+
+RMS change in Kohn-Sham potential (target) :   0.2114504095E-01 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.4394082265E-01 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.03
+
++--------------------+
+| Loop number :    9 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.263735621085    
+ sum of eigenvalues          :     -129.166960757    
+ electron kinetic            :      242.052408382    
+ core electron kinetic       :      179.646039257    
+ Coulomb                     :     -466.315632908    
+ Coulomb potential           :     -347.849147693    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.216002095    
+ Hartree                     :      76.1834272011    
+ Madelung                    :     -292.391059062    
+ xc potential                :     -23.3702214458    
+ exchange                    :     -16.7056795123    
+ correlation                 :    -0.988599768890    
+ electron entropic           :    -0.260305874084E-03
+ total energy                :     -241.957764113    
+
+Density of states at Fermi energy :    93.78970213    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3691490571E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694150917E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776928011    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22307199     (  0.4983024910E-03)
+ total in muffin-tins        :    11.22307199    
+ total calculated charge     :    12.99040323    
+ total charge                :    13.00000000    
+ error                       :   0.9596767528E-02
+
+RMS change in Kohn-Sham potential (target) :   0.1170351762E-01 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.3804421405E-01 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.12
+
++--------------------+
+| Loop number :   10 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.265579911211    
+ sum of eigenvalues          :     -129.147784360    
+ electron kinetic            :      242.069734152    
+ core electron kinetic       :      179.647828451    
+ Coulomb                     :     -466.314020069    
+ Coulomb potential           :     -347.847335602    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.214588508    
+ Hartree                     :      76.1836264531    
+ Madelung                    :     -292.390352268    
+ xc potential                :     -23.3701829102    
+ exchange                    :     -16.7056494252    
+ correlation                 :    -0.988601234660    
+ electron entropic           :    -0.260305504718E-03
+ total energy                :     -241.938796882    
+
+Density of states at Fermi energy :    93.78965849    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3691940785E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694293801E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776710844    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22328916     (  0.4978125167E-03)
+ total in muffin-tins        :    11.22328916    
+ total calculated charge     :    12.99040705    
+ total charge                :    13.00000000    
+ error                       :   0.9592951561E-02
+
+RMS change in Kohn-Sham potential (target) :   0.5895713568E-02 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.2847828394E-01 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.21
+
++--------------------+
+| Loop number :   11 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.266600835897    
+ sum of eigenvalues          :     -129.136484966    
+ electron kinetic            :      242.079659217    
+ core electron kinetic       :      179.649103915    
+ Coulomb                     :     -466.312525435    
+ Coulomb potential           :     -347.846029477    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.212905366    
+ Hartree                     :      76.1834379447    
+ Madelung                    :     -292.389510697    
+ xc potential                :     -23.3701147065    
+ exchange                    :     -16.7055982216    
+ correlation                 :    -0.988601270089    
+ electron entropic           :    -0.260305381738E-03
+ total energy                :     -241.927326015    
+
+Density of states at Fermi energy :    93.78964396    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3692190717E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694394044E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776607767    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22339223     (  0.4975629894E-03)
+ total in muffin-tins        :    11.22339223    
+ total calculated charge     :    12.99040924    
+ total charge                :    13.00000000    
+ error                       :   0.9590756673E-02
+
+RMS change in Kohn-Sham potential (target) :   0.2676748551E-02 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.1859043836E-01 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.30
+
++--------------------+
+| Loop number :   12 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.267105249827    
+ sum of eigenvalues          :     -129.130630265    
+ electron kinetic            :      242.084698168    
+ core electron kinetic       :      179.649888291    
+ Coulomb                     :     -466.311583666    
+ Coulomb potential           :     -347.845259801    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.211791504    
+ Hartree                     :      76.1832658518    
+ Madelung                    :     -292.388953766    
+ xc potential                :     -23.3700686322    
+ exchange                    :     -16.7055637926    
+ correlation                 :    -0.988601093205    
+ electron entropic           :    -0.260305359678E-03
+ total energy                :     -241.921310689    
+
+Density of states at Fermi energy :    93.78964136    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3692315045E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694452531E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776564303    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22343570     (  0.4974453523E-03)
+ total in muffin-tins        :    11.22343570    
+ total calculated charge     :    12.99041033    
+ total charge                :    13.00000000    
+ error                       :   0.9589670219E-02
+
+RMS change in Kohn-Sham potential (target) :   0.1082598809E-02 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.1066293543E-01 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.39
+
++--------------------+
+| Loop number :   13 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.267325344349    
+ sum of eigenvalues          :     -129.127970001    
+ electron kinetic            :      242.086948466    
+ core electron kinetic       :      179.650301430    
+ Coulomb                     :     -466.311106098    
+ Coulomb potential           :     -347.844872347    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.211223822    
+ Hartree                     :      76.1831757377    
+ Madelung                    :     -292.388669925    
+ xc potential                :     -23.3700461208    
+ exchange                    :     -16.7055469886    
+ correlation                 :    -0.988600985083    
+ electron entropic           :    -0.260305366202E-03
+ total energy                :     -241.918565911    
+
+Density of states at Fermi energy :    93.78964213    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3692369751E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694481952E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776548436    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22345156     (  0.4973953083E-03)
+ total in muffin-tins        :    11.22345156    
+ total calculated charge     :    12.99041079    
+ total charge                :    13.00000000    
+ error                       :   0.9589208341E-02
+
+RMS change in Kohn-Sham potential (target) :   0.3845109757E-03 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.5410512229E-02 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.48
+
++--------------------+
+| Loop number :   14 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.267408969961    
+ sum of eigenvalues          :     -129.126916577    
+ electron kinetic            :      242.087822376    
+ core electron kinetic       :      179.650486917    
+ Coulomb                     :     -466.310898141    
+ Coulomb potential           :     -347.844701965    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.210978288    
+ Hartree                     :      76.1831381614    
+ Madelung                    :     -292.388547158    
+ xc potential                :     -23.3700369875    
+ exchange                    :     -16.7055401723    
+ correlation                 :    -0.988600939657    
+ electron entropic           :    -0.260305374467E-03
+ total energy                :     -241.917477182    
+
+Density of states at Fermi energy :    93.78964311    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3692390694E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694494876E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776543643    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22345636     (  0.4973765256E-03)
+ total in muffin-tins        :    11.22345636    
+ total calculated charge     :    12.99041096    
+ total charge                :    13.00000000    
+ error                       :   0.9589040414E-02
+
+RMS change in Kohn-Sham potential (target) :   0.1177645087E-03 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.2441357323E-02 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.58
+
++--------------------+
+| Loop number :   15 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.267436112180    
+ sum of eigenvalues          :     -129.126558016    
+ electron kinetic            :      242.088112056    
+ core electron kinetic       :      179.650557012    
+ Coulomb                     :     -466.310818879    
+ Coulomb potential           :     -347.844636328    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.210885402    
+ Hartree                     :      76.1831245370    
+ Madelung                    :     -292.388500715    
+ xc potential                :     -23.3700337436    
+ exchange                    :     -16.7055377519    
+ correlation                 :    -0.988600922903    
+ electron entropic           :    -0.260305378927E-03
+ total energy                :     -241.917105803    
+
+Density of states at Fermi energy :    93.78964363    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3692397525E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694499768E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776542531    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22345747     (  0.4973705460E-03)
+ total in muffin-tins        :    11.22345747    
+ total calculated charge     :    12.99041101    
+ total charge                :    13.00000000    
+ error                       :   0.9588989295E-02
+
+RMS change in Kohn-Sham potential (target) :   0.3036376550E-04 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.9817180543E-03 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.67
+
++--------------------+
+| Loop number :   16 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.267443437990    
+ sum of eigenvalues          :     -129.126455642    
+ electron kinetic            :      242.088191638    
+ core electron kinetic       :      179.650578706    
+ Coulomb                     :     -466.310792776    
+ Coulomb potential           :     -347.844614536    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.210854989    
+ Hartree                     :      76.1831202260    
+ Madelung                    :     -292.388485508    
+ xc potential                :     -23.3700327438    
+ exchange                    :     -16.7055370061    
+ correlation                 :    -0.988600917455    
+ electron entropic           :    -0.260305380648E-03
+ total energy                :     -241.916999367    
+
+Density of states at Fermi energy :    93.78964384    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3692399374E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694501295E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776542363    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22345764     (  0.4973689179E-03)
+ total in muffin-tins        :    11.22345764    
+ total calculated charge     :    12.99041102    
+ total charge                :    13.00000000    
+ error                       :   0.9588976663E-02
+
+RMS change in Kohn-Sham potential (target) :   0.6391586028E-05 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.3518649715E-03 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.76
+
++--------------------+
+| Loop number :   17 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.267445019100    
+ sum of eigenvalues          :     -129.126431989    
+ electron kinetic            :      242.088208927    
+ core electron kinetic       :      179.650583941    
+ Coulomb                     :     -466.310785562    
+ Coulomb potential           :     -347.844608437    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.210846659    
+ Hartree                     :      76.1831191110    
+ Madelung                    :     -292.388481343    
+ xc potential                :     -23.3700324786    
+ exchange                    :     -16.7055368084    
+ correlation                 :    -0.988600915877    
+ electron entropic           :    -0.260305381211E-03
+ total energy                :     -241.916974665    
+
+Density of states at Fermi energy :    93.78964390    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3692399776E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694501655E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776542358    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22345764     (  0.4973686452E-03)
+ total in muffin-tins        :    11.22345764    
+ total calculated charge     :    12.99041103    
+ total charge                :    13.00000000    
+ error                       :   0.9588974360E-02
+
+RMS change in Kohn-Sham potential (target) :   0.1081295156E-05 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.1126689946E-03 (  0.1000000000E-03)
+
+Time (CPU seconds) :         1.86
+
++--------------------+
+| Loop number :   18 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.267445275570    
+ sum of eigenvalues          :     -129.126427826    
+ electron kinetic            :      242.088211658    
+ core electron kinetic       :      179.650584835    
+ Coulomb                     :     -466.310783930    
+ Coulomb potential           :     -347.844607063    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.210844770    
+ Hartree                     :      76.1831188537    
+ Madelung                    :     -292.388480399    
+ xc potential                :     -23.3700324219    
+ exchange                    :     -16.7055367661    
+ correlation                 :    -0.988600915517    
+ electron entropic           :    -0.260305381403E-03
+ total energy                :     -241.916970259    
+
+Density of states at Fermi energy :    93.78964393    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3692399843E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694501701E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776542362    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22345764     (  0.4973684917E-03)
+ total in muffin-tins        :    11.22345764    
+ total calculated charge     :    12.99041103    
+ total charge                :    13.00000000    
+ error                       :   0.9588973969E-02
+
+RMS change in Kohn-Sham potential (target) :   0.1979730763E-06 (  0.1000000000E-05)
+Absolute change in total energy (target)   :   0.3257301847E-04 (  0.1000000000E-03)
+
+Convergence targets achieved
+
+Time (CPU seconds) :         1.94
+
++--------------------+
+| Loop number :   19 |
++--------------------+
+
+Energies :
+ Fermi                       :     0.267445303377    
+ sum of eigenvalues          :     -129.126427348    
+ electron kinetic            :      242.088211932    
+ core electron kinetic       :      179.650584913    
+ Coulomb                     :     -466.310783732    
+ Coulomb potential           :     -347.844606860    
+ nuclear-nuclear             :     -42.2830580138    
+ electron-nuclear            :     -500.210844576    
+ Hartree                     :      76.1831188582    
+ Madelung                    :     -292.388480302    
+ xc potential                :     -23.3700324195    
+ exchange                    :     -16.7055367643    
+ correlation                 :    -0.988600915564    
+ electron entropic           :    -0.260305381475E-03
+ total energy                :     -241.916969785    
+
+Density of states at Fermi energy :    93.78964393    
+ (states/Hartree/unit cell)
+
+Estimated indirect band gap :   0.3692399852E-01
+ from k-point      9 to k-point      7
+Estimated direct band gap   :   0.8694501693E-01
+ at k-point      6
+
+Charges :
+ core                        :    4.000000000    
+ valence                     :    9.000000000    
+ interstitial                :    1.776542363    
+ muffin-tins (core leakage)
+  species :    1 (Al)
+   atom    1                 :    11.22345764     (  0.4973685276E-03)
+ total in muffin-tins        :    11.22345764    
+ total calculated charge     :    12.99041103    
+ total charge                :    13.00000000    
+ error                       :   0.9588974028E-02
+
++------------------------------+
+| Self-consistent loop stopped |
++------------------------------+
+
+Wrote STATE.OUT
+
+Timings (CPU seconds) :
+ initialisation                        :         0.27
+ Hamiltonian and overlap matrix set up :         0.37
+ first-variational eigenvalue equation :         0.15
+ charge density calculation            :         0.69
+ potential calculation                 :         0.56
+ total                                 :         2.03
+
++----------------------------+
+| Elk version 4.0.15 stopped |
++----------------------------+
diff --git a/tests/data/parsers/elk/Al/INFO.OUT.annotate b/tests/data/parsers/elk/Al/INFO.OUT.annotate
new file mode 100644
index 0000000000000000000000000000000000000000..6768635618002d1074f59b71e07938f17a7568e9
--- /dev/null
+++ b/tests/data/parsers/elk/Al/INFO.OUT.annotate
@@ -0,0 +1,993 @@
+# this file contains ANSI colors; use 'less -R' to view it
+       parser_elk.py:0161    root matcher      no|+----------------------------+
+       parser_elk.py:0161          header p_start|| Elk version 4.0.15 started |
+       parser_elk.py:0161          header      no|+----------------------------+
+       parser_elk.py:0161          header      no|
+       parser_elk.py:0161          header      no|Date (YYYY-MM-DD) : 2016-08-03
+       parser_elk.py:0161          header      no|Time (hh:mm:ss)   : 10:33:05
+       parser_elk.py:0161          header      no|
+       parser_elk.py:0161          header      no|Notes :
+       parser_elk.py:0161          header      no| Simple calculation of the ground state of aluminium. Must check convergence    
+       parser_elk.py:0161          header      no| with respect to k-point set later.                                             
+       parser_elk.py:0161          header      no| Run by H. Golightly                                                            
+       parser_elk.py:0161          header      no|
+       parser_elk.py:0161          header      no|All units are atomic (Hartree, Bohr, etc.)
+       parser_elk.py:0161          header      no|
+       parser_elk.py:0161          header      no|+-------------------------------------------------+
+       parser_elk.py:0103           input   start|| Ground-state run starting from atomic densities |
+       parser_elk.py:0103           input      no|+-------------------------------------------------+
+       parser_elk.py:0103           input      no|
+       parser_elk.py:0063         UNNAMED p_start|Lattice vectors :
+       parser_elk.py:0063         UNNAMED p_start|   3.826700000       3.826700000       0.000000000    
+       parser_elk.py:0063         UNNAMED p_start|   3.826700000       0.000000000       3.826700000    
+       parser_elk.py:0063         UNNAMED p_start|   0.000000000       3.826700000       3.826700000    
+       parser_elk.py:0063         UNNAMED      no|
+       parser_elk.py:0069         UNNAMED p_start|Reciprocal lattice vectors :
+       parser_elk.py:0069         UNNAMED p_start|  0.8209665387      0.8209665387     -0.8209665387    
+       parser_elk.py:0069         UNNAMED p_start|  0.8209665387     -0.8209665387      0.8209665387    
+       parser_elk.py:0069         UNNAMED p_start| -0.8209665387      0.8209665387      0.8209665387    
+       parser_elk.py:0069         UNNAMED      no|
+       parser_elk.py:0071         UNNAMED p_start|Unit cell volume      :    112.0735800    
+       parser_elk.py:0072         UNNAMED p_start|Brillouin zone volume :    2.213280003    
+       parser_elk.py:0072         UNNAMED      no|
+       parser_elk.py:0079         UNNAMED p_start|Species :    1 (Al)
+       parser_elk.py:0079         UNNAMED      no| parameters loaded from : Al.in
+       parser_elk.py:0079         UNNAMED      no| name : aluminium
+       parser_elk.py:0079         UNNAMED      no| nuclear charge    :   -13.00000000    
+       parser_elk.py:0079         UNNAMED      no| electronic charge :    13.00000000    
+       parser_elk.py:0079         UNNAMED      no| atomic mass :    49184.33492    
+       parser_elk.py:0075         UNNAMED p_start| muffin-tin radius :    2.200000000    
+       parser_elk.py:0076         UNNAMED p_start| number of radial points in muffin-tin :    397
+       parser_elk.py:0076         UNNAMED      no| number on inner part of muffin-tin    :    273
+       parser_elk.py:0079         UNNAMED   start| atomic positions (lattice), magnetic fields (Cartesian) :
+       parser_elk.py:0079         UNNAMED p_start|   1 :   0.00000000  0.00000000  0.00000000    0.00000000  0.00000000  0.00000000
+       parser_elk.py:0079         UNNAMED      no|
+       parser_elk.py:0079         UNNAMED      no|Total number of atoms per unit cell :    1
+       parser_elk.py:0079         UNNAMED      no|
+       parser_elk.py:0079         UNNAMED      no|Spin treatment :
+       parser_elk.py:0079         UNNAMED      no| spin-unpolarised
+       parser_elk.py:0079         UNNAMED      no|
+       parser_elk.py:0079         UNNAMED      no|Number of Bravais lattice symmetries :   48
+       parser_elk.py:0079         UNNAMED      no|Number of crystal symmetries         :   48
+       parser_elk.py:0079         UNNAMED      no|Crystal has inversion symmetry
+       parser_elk.py:0079         UNNAMED      no|Real symmetric eigensolver will be used
+       parser_elk.py:0079         UNNAMED      no|
+       parser_elk.py:0082         UNNAMED p_start|k-point grid :      4     4     4
+       parser_elk.py:0083         UNNAMED p_start|k-point offset :   0.5000000000      0.5000000000      0.5000000000    
+       parser_elk.py:0083         UNNAMED      no|k-point set is reduced with full crystal symmetry group
+       parser_elk.py:0084         UNNAMED p_start|Total number of k-points :       10
+       parser_elk.py:0084         UNNAMED      no|
+       parser_elk.py:0085         UNNAMED p_start|Muffin-tin radius times maximum |G+k| :    7.000000000    
+       parser_elk.py:0085         UNNAMED      no| using average radius
+       parser_elk.py:0086         UNNAMED p_start|Maximum |G+k| for APW functions       :    3.181818182    
+       parser_elk.py:0086         UNNAMED      no|Maximum (1/2)|G+k|^2                  :    5.061983471    
+       parser_elk.py:0087         UNNAMED p_start|Maximum |G| for potential and density :    12.00000000    
+       parser_elk.py:0087         UNNAMED      no|Constant for pseudocharge density :    7
+       parser_elk.py:0087         UNNAMED      no|Radial integration step length :    4
+       parser_elk.py:0087         UNNAMED      no|
+       parser_elk.py:0088         UNNAMED p_start|G-vector grid sizes :     24    24    24
+       parser_elk.py:0089         UNNAMED p_start|Number of G-vectors :     3287
+       parser_elk.py:0089         UNNAMED      no|
+       parser_elk.py:0092         UNNAMED   start|Maximum angular momentum used for
+       parser_elk.py:0092         UNNAMED p_start| APW functions                      :    8
+       parser_elk.py:0092         UNNAMED      no| H and O matrix elements outer loop :    7
+       parser_elk.py:0092         UNNAMED      no| outer part of muffin-tin           :    7
+       parser_elk.py:0092         UNNAMED      no| inner part of muffin-tin           :    3
+       parser_elk.py:0092         UNNAMED      no|
+       parser_elk.py:0094         UNNAMED p_start|Total nuclear charge    :   -13.00000000    
+       parser_elk.py:0095         UNNAMED p_start|Total core charge       :    4.000000000    
+       parser_elk.py:0096         UNNAMED p_start|Total valence charge    :    9.000000000    
+       parser_elk.py:0096         UNNAMED      no|Total excess charge     :    0.000000000    
+       parser_elk.py:0097         UNNAMED p_start|Total electronic charge :    13.00000000    
+       parser_elk.py:0097         UNNAMED      no|
+       parser_elk.py:0098         UNNAMED p_start|Effective Wigner radius, r_s :    1.272009713    
+       parser_elk.py:0098         UNNAMED      no|
+       parser_elk.py:0099         UNNAMED p_start|Number of empty states         :    4
+       parser_elk.py:0100         UNNAMED p_start|Total number of valence states :    9
+       parser_elk.py:0101         UNNAMED p_start|Total number of core states    :    4
+       parser_elk.py:0101         UNNAMED      no|
+       parser_elk.py:0102         UNNAMED p_start|Total number of local-orbitals :    7
+       parser_elk.py:0102         UNNAMED      no|
+       parser_elk.py:0102         UNNAMED      no|Exchange-correlation functional :      3     0     0
+       parser_elk.py:0102         UNNAMED      no| Perdew-Wang/Ceperley-Alder, Phys. Rev. B 45, 13244 (1992)
+       parser_elk.py:0102         UNNAMED      no| Local density approximation (LDA)
+       parser_elk.py:0102         UNNAMED      no|
+       parser_elk.py:0102         UNNAMED      no|Smearing type :    3
+       parser_elk.py:0102         UNNAMED      no| Fermi-Dirac
+       parser_elk.py:0103         UNNAMED p_start|Smearing width :   0.1000000000E-02
+       parser_elk.py:0103         UNNAMED      no|Effective electronic temperature (K) :    315.7750425    
+       parser_elk.py:0103         UNNAMED      no|
+       parser_elk.py:0103         UNNAMED      no|Mixing type :    1
+       parser_elk.py:0103         UNNAMED      no| Adaptive linear mixing
+       parser_elk.py:0103         UNNAMED      no|
+       parser_elk.py:0103         UNNAMED      no|Density and potential initialised from atomic data
+       parser_elk.py:0103         UNNAMED      no|
+       parser_elk.py:0103         UNNAMED      no|+------------------------------+
+       parser_elk.py:0161 ation iteration p_start|| Self-consistent loop started |
+       parser_elk.py:0161 ation iteration      no|+------------------------------+
+       parser_elk.py:0161 ation iteration      no|
+       parser_elk.py:0161 ation iteration      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :    1 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.215413493034    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.458254279    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      241.701644717    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.611645457    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.138141516    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.809442717    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -499.900724288    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.0456407855    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.233420158    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3504562794    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.6911650609    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988204423318    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260340444522E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -242.116126624    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.79381046    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3679077322E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8695883208E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.787254820    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.21274518     (  0.5217320705E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.21274518    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99035933    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9640672526E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         0.39
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :    2 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.220533363087    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.438329032    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      241.733476828    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.617408085    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.168724793    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.818104100    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -499.953229457    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.0675626783    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.259672742    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3537017594    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.6935508140    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988266279303    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260334804942E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -242.117325393    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.79313701    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3680449606E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8695520291E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.785934033    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.21406597     (  0.5185852206E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.21406597    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99036070    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9639295173E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.1498680606     (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.1198769544E-02 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         0.47
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :    3 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.227461996191    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.408444359    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      241.777914729    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.623945696    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.206976186    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.828563939    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.019272406    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.0953542335    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.292694217    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3577951488    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.6965594216    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988344850478    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260327947344E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -242.114226057    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.79231979    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3682288009E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8695035160E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.784199860    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.21580014     (  0.5145179352E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.21580014    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99036341    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9636590521E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.1274020150     (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.2799643479E-02 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         0.57
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :    4 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.235343100742    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.369866489    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      241.830537299    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.629828165    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.245397261    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.838438974    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.086239520    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1239002733    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.326177774    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3619648139    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.6996233655    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988425792769    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260321157853E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -242.103169442    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.79151253    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3684345581E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694537864E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.782320973    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.21767903     (  0.5101984586E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.21767903    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99036786    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9632136640E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.1019800730     (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.1175652643E-01 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         0.66
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :    5 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.243262785694    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.325201151    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      241.886467846    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.634598851    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.277670476    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.846158160    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.143066764    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1484543019    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.354591396    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3655108366    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7022280784    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988495834769    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260315432869E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -242.082186859    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.79083328    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3686382351E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694136537E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.780559669    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.21944033     (  0.5062331018E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.21944033    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99037422    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9625779616E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.7658690802E-01 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.2392171444E-01 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         0.75
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :    6 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.250433003052    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.278218804    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      241.940457286    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.638306129    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.299902224    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.850656294    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.183032125    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1661879155    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.374574076    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3680197952    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7040697111    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988547026652    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260311187604E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -242.052321987    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.79033045    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3688198307E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8693915259E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.779105233    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22089477     (  0.5030235057E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22089477    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99038200    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9617999762E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.5374104026E-01 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.3584530053E-01 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         0.84
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :    7 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.256327953199    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.233592122    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      241.987810094    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.641276158    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.311772689    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.851945403    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.205483947    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1767692721    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.385799987    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3694568132    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7051229493    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988578302001    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260308379960E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -242.017924155    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78999830    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3689669567E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8693886753E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.778038149    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22196185     (  0.5007057386E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22196185    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99039016    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9609837378E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.3506275469E-01 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.4335915746E-01 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         0.94
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :    8 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.260737951022    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.195645050    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.025442370    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.643825162    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.315837562    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.851013207    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.214545891    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1817663420    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.390330959    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3700742143    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055737771    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988593845529    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260306726224E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.984823121    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78980281    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3690757046E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8693993451E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.777338919    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22266108     (  0.4991973807E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22266108    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99039752    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9602478257E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.2114504095E-01 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.4394082265E-01 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.03
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :    9 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.263735621085    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.166960757    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.052408382    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.646039257    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.315632908    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.849147693    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.216002095    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1834272011    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.391059062    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3702214458    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7056795123    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988599768890    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305874084E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.957764113    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78970213    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3691490571E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694150917E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776928011    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22307199     (  0.4983024910E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22307199    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99040323    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9596767528E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.1170351762E-01 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.3804421405E-01 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.12
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   10 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.265579911211    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.147784360    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.069734152    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.647828451    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.314020069    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.847335602    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.214588508    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1836264531    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.390352268    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3701829102    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7056494252    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988601234660    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305504718E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.938796882    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78965849    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3691940785E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694293801E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776710844    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22328916     (  0.4978125167E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22328916    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99040705    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9592951561E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.5895713568E-02 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.2847828394E-01 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.21
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   11 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.266600835897    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.136484966    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.079659217    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.649103915    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.312525435    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.846029477    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.212905366    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1834379447    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.389510697    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3701147065    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055982216    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988601270089    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305381738E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.927326015    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78964396    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3692190717E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694394044E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776607767    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22339223     (  0.4975629894E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22339223    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99040924    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9590756673E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.2676748551E-02 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.1859043836E-01 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.30
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   12 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.267105249827    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.130630265    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.084698168    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.649888291    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.311583666    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.845259801    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.211791504    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1832658518    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.388953766    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3700686322    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055637926    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988601093205    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305359678E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.921310689    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78964136    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3692315045E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694452531E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776564303    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22343570     (  0.4974453523E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22343570    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99041033    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9589670219E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.1082598809E-02 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.1066293543E-01 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.39
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   13 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.267325344349    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.127970001    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.086948466    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.650301430    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.311106098    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.844872347    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.211223822    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1831757377    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.388669925    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3700461208    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055469886    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988600985083    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305366202E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.918565911    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78964213    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3692369751E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694481952E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776548436    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22345156     (  0.4973953083E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22345156    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99041079    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9589208341E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.3845109757E-03 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.5410512229E-02 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.48
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   14 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.267408969961    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.126916577    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.087822376    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.650486917    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.310898141    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.844701965    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.210978288    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1831381614    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.388547158    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3700369875    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055401723    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988600939657    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305374467E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.917477182    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78964311    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3692390694E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694494876E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776543643    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22345636     (  0.4973765256E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22345636    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99041096    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9589040414E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.1177645087E-03 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.2441357323E-02 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.58
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   15 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.267436112180    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.126558016    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.088112056    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.650557012    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.310818879    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.844636328    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.210885402    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1831245370    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.388500715    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3700337436    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055377519    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988600922903    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305378927E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.917105803    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78964363    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3692397525E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694499768E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776542531    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22345747     (  0.4973705460E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22345747    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99041101    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9588989295E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.3036376550E-04 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.9817180543E-03 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.67
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   16 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.267443437990    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.126455642    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.088191638    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.650578706    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.310792776    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.844614536    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.210854989    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1831202260    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.388485508    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3700327438    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055370061    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988600917455    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305380648E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.916999367    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78964384    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3692399374E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694501295E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776542363    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22345764     (  0.4973689179E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22345764    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99041102    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9588976663E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.6391586028E-05 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.3518649715E-03 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.76
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   17 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.267445019100    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.126431989    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.088208927    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.650583941    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.310785562    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.844608437    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.210846659    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1831191110    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.388481343    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3700324786    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055368084    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988600915877    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305381211E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.916974665    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78964390    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3692399776E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694501655E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776542358    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22345764     (  0.4973686452E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22345764    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99041103    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9588974360E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.1081295156E-05 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.1126689946E-03 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.86
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   18 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.267445275570    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.126427826    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.088211658    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.650584835    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.310783930    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.844607063    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.210844770    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1831188537    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.388480399    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3700324219    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055367661    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988600915517    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305381403E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.916970259    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78964393    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3692399843E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694501701E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776542362    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22345764     (  0.4973684917E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22345764    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99041103    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9588973969E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|RMS change in Kohn-Sham potential (target) :   0.1979730763E-06 (  0.1000000000E-05)
+       parser_elk.py:0135         UNNAMED      no|Absolute change in total energy (target)   :   0.3257301847E-04 (  0.1000000000E-03)
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Convergence targets achieved
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Time (CPU seconds) :         1.94
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+--------------------+
+       parser_elk.py:0135       scfi totE p_start|| Loop number :   19 |
+       parser_elk.py:0135       scfi totE      no|+--------------------+
+       parser_elk.py:0135       scfi totE      no|
+       parser_elk.py:0135       scfi totE      no|Energies :
+       parser_elk.py:0115         UNNAMED p_start| Fermi                       :     0.267445303377    
+       parser_elk.py:0116         UNNAMED p_start| sum of eigenvalues          :     -129.126427348    
+       parser_elk.py:0117         UNNAMED p_start| electron kinetic            :      242.088211932    
+       parser_elk.py:0118         UNNAMED p_start| core electron kinetic       :      179.650584913    
+       parser_elk.py:0119         UNNAMED p_start| Coulomb                     :     -466.310783732    
+       parser_elk.py:0120         UNNAMED p_start| Coulomb potential           :     -347.844606860    
+       parser_elk.py:0121         UNNAMED p_start| nuclear-nuclear             :     -42.2830580138    
+       parser_elk.py:0122         UNNAMED p_start| electron-nuclear            :     -500.210844576    
+       parser_elk.py:0123         UNNAMED p_start| Hartree                     :      76.1831188582    
+       parser_elk.py:0124         UNNAMED p_start| Madelung                    :     -292.388480302    
+       parser_elk.py:0125         UNNAMED p_start| xc potential                :     -23.3700324195    
+       parser_elk.py:0126         UNNAMED p_start| exchange                    :     -16.7055367643    
+       parser_elk.py:0127         UNNAMED p_start| correlation                 :    -0.988600915564    
+       parser_elk.py:0128         UNNAMED p_start| electron entropic           :    -0.260305381475E-03
+       parser_elk.py:0129         UNNAMED p_start| total energy                :     -241.916969785    
+       parser_elk.py:0129         UNNAMED      no|
+       parser_elk.py:0130         UNNAMED p_start|Density of states at Fermi energy :    93.78964393    
+       parser_elk.py:0130         UNNAMED      no| (states/Hartree/unit cell)
+       parser_elk.py:0130         UNNAMED      no|
+       parser_elk.py:0131         UNNAMED p_start|Estimated indirect band gap :   0.3692399852E-01
+       parser_elk.py:0131         UNNAMED      no| from k-point      9 to k-point      7
+       parser_elk.py:0132         UNNAMED p_start|Estimated direct band gap   :   0.8694501693E-01
+       parser_elk.py:0132         UNNAMED      no| at k-point      6
+       parser_elk.py:0132         UNNAMED      no|
+       parser_elk.py:0132         UNNAMED      no|Charges :
+       parser_elk.py:0133         UNNAMED p_start| core                        :    4.000000000    
+       parser_elk.py:0134         UNNAMED p_start| valence                     :    9.000000000    
+       parser_elk.py:0135         UNNAMED p_start| interstitial                :    1.776542363    
+       parser_elk.py:0135         UNNAMED      no| muffin-tins (core leakage)
+       parser_elk.py:0135         UNNAMED      no|  species :    1 (Al)
+       parser_elk.py:0135         UNNAMED      no|   atom    1                 :    11.22345764     (  0.4973685276E-03)
+       parser_elk.py:0135         UNNAMED      no| total in muffin-tins        :    11.22345764    
+       parser_elk.py:0135         UNNAMED      no| total calculated charge     :    12.99041103    
+       parser_elk.py:0135         UNNAMED      no| total charge                :    13.00000000    
+       parser_elk.py:0135         UNNAMED      no| error                       :   0.9588974028E-02
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+------------------------------+
+       parser_elk.py:0135         UNNAMED      no|| Self-consistent loop stopped |
+       parser_elk.py:0135         UNNAMED      no|+------------------------------+
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Wrote STATE.OUT
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|Timings (CPU seconds) :
+       parser_elk.py:0135         UNNAMED      no| initialisation                        :         0.27
+       parser_elk.py:0135         UNNAMED      no| Hamiltonian and overlap matrix set up :         0.37
+       parser_elk.py:0135         UNNAMED      no| first-variational eigenvalue equation :         0.15
+       parser_elk.py:0135         UNNAMED      no| charge density calculation            :         0.69
+       parser_elk.py:0135         UNNAMED      no| potential calculation                 :         0.56
+       parser_elk.py:0135         UNNAMED      no| total                                 :         2.03
+       parser_elk.py:0135         UNNAMED      no|
+       parser_elk.py:0135         UNNAMED      no|+----------------------------+
+       parser_elk.py:0135         UNNAMED      no|| Elk version 4.0.15 stopped |
+       parser_elk.py:0135         UNNAMED      no|+----------------------------+
diff --git a/tests/data/parsers/elk/Al/KPOINTS.OUT b/tests/data/parsers/elk/Al/KPOINTS.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..b71327e74784f4a503689bf769bcb79449bb04f3
--- /dev/null
+++ b/tests/data/parsers/elk/Al/KPOINTS.OUT
@@ -0,0 +1,11 @@
+    10 : nkpt; k-point, vkl, wkpt, nmat below
+     1  0.1250000000      0.1250000000      0.1250000000      0.3125000000E-01      66
+     2  0.3750000000      0.1250000000      0.1250000000      0.9375000000E-01      68
+     3  0.6250000000      0.1250000000      0.1250000000      0.9375000000E-01      68
+     4  0.8750000000      0.1250000000      0.1250000000      0.9375000000E-01      67
+     5  0.3750000000      0.3750000000      0.1250000000      0.9375000000E-01      67
+     6  0.6250000000      0.3750000000      0.1250000000      0.1875000000          67
+     7  0.8750000000      0.3750000000      0.1250000000      0.1875000000          67
+     8  0.6250000000      0.6250000000      0.1250000000      0.9375000000E-01      67
+     9  0.3750000000      0.3750000000      0.3750000000      0.3125000000E-01      68
+    10  0.6250000000      0.3750000000      0.3750000000      0.9375000000E-01      67
diff --git a/tests/data/parsers/elk/Al/LATTICE.OUT b/tests/data/parsers/elk/Al/LATTICE.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..3d481e237e9bfc44fbf23fe208b8908eb2f4c5bb
--- /dev/null
+++ b/tests/data/parsers/elk/Al/LATTICE.OUT
@@ -0,0 +1,41 @@
+
++----------------------------+
+| Real-space lattice vectors |
++----------------------------+
+
+vector a1 :    3.826700000       3.826700000       0.000000000    
+vector a2 :    3.826700000       0.000000000       3.826700000    
+vector a3 :    0.000000000       3.826700000       3.826700000    
+
+Stored column-wise as a matrix :
+   3.826700000       3.826700000       0.000000000    
+   3.826700000       0.000000000       3.826700000    
+   0.000000000       3.826700000       3.826700000    
+
+Inverse of matrix :
+  0.1306608827      0.1306608827     -0.1306608827    
+  0.1306608827     -0.1306608827      0.1306608827    
+ -0.1306608827      0.1306608827      0.1306608827    
+
+Unit cell volume :    112.0735800    
+
+
++----------------------------------+
+| Reciprocal-space lattice vectors |
++----------------------------------+
+
+vector b1 :   0.8209665387      0.8209665387     -0.8209665387    
+vector b2 :   0.8209665387     -0.8209665387      0.8209665387    
+vector b3 :  -0.8209665387      0.8209665387      0.8209665387    
+
+Stored column-wise as a matrix :
+  0.8209665387      0.8209665387     -0.8209665387    
+  0.8209665387     -0.8209665387      0.8209665387    
+ -0.8209665387      0.8209665387      0.8209665387    
+
+Inverse of matrix :
+  0.6090382207      0.6090382207      -0.000000000    
+  0.6090382207      -0.000000000      0.6090382207    
+  -0.000000000      0.6090382207      0.6090382207    
+
+Brillouin zone volume :    2.213280003    
diff --git a/tests/data/parsers/elk/Al/LINENGY.OUT b/tests/data/parsers/elk/Al/LINENGY.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..3d63b631511baf8fd5746b761458322e7c69a657
--- /dev/null
+++ b/tests/data/parsers/elk/Al/LINENGY.OUT
@@ -0,0 +1,20 @@
+
+Species :    1 (Al), atom :    1
+ APW functions :
+  l =  0, energy derivative =  0 :   0.1500000000    
+  l =  1, energy derivative =  0 :   0.1500000000    
+  l =  2, energy derivative =  0 :   0.1500000000    
+  l =  3, energy derivative =  0 :   0.1500000000    
+  l =  4, energy derivative =  0 :   0.1500000000    
+  l =  5, energy derivative =  0 :   0.1500000000    
+  l =  6, energy derivative =  0 :   0.1500000000    
+  l =  7, energy derivative =  0 :   0.1500000000    
+  l =  8, energy derivative =  0 :   0.1500000000    
+ local-orbital functions :
+  l.o. =  1, l =  0, energy derivative =  0 :   0.1500000000    
+  l.o. =  1, l =  0, energy derivative =  1 :   0.1500000000    
+  l.o. =  2, l =  1, energy derivative =  0 :   0.1500000000    
+  l.o. =  2, l =  1, energy derivative =  1 :   0.1500000000    
+  l.o. =  3, l =  1, energy derivative =  0 :   0.1500000000    
+  l.o. =  3, l =  1, energy derivative =  1 :   0.1500000000    
+  l.o. =  3, l =  1, energy derivative =  0 :   -2.122674640    
diff --git a/tests/data/parsers/elk/Al/OCCSV.OUT b/tests/data/parsers/elk/Al/OCCSV.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..2a6f8fb8e30dcb9c9082d50b5d3647606925da61
Binary files /dev/null and b/tests/data/parsers/elk/Al/OCCSV.OUT differ
diff --git a/tests/data/parsers/elk/Al/RMSDVS.OUT b/tests/data/parsers/elk/Al/RMSDVS.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..4a0f77b4768d3de003d584d86dd29789556e1ef9
--- /dev/null
+++ b/tests/data/parsers/elk/Al/RMSDVS.OUT
@@ -0,0 +1,17 @@
+  0.1498680606    
+  0.1274020150    
+  0.1019800730    
+  0.7658690802E-01
+  0.5374104026E-01
+  0.3506275469E-01
+  0.2114504095E-01
+  0.1170351762E-01
+  0.5895713568E-02
+  0.2676748551E-02
+  0.1082598809E-02
+  0.3845109757E-03
+  0.1177645087E-03
+  0.3036376550E-04
+  0.6391586028E-05
+  0.1081295156E-05
+  0.1979730763E-06
diff --git a/tests/data/parsers/elk/Al/STATE.OUT b/tests/data/parsers/elk/Al/STATE.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..5f5689163743e8ed229fe53b25ae2873f54b5716
Binary files /dev/null and b/tests/data/parsers/elk/Al/STATE.OUT differ
diff --git a/tests/data/parsers/elk/Al/SYMCRYS.OUT b/tests/data/parsers/elk/Al/SYMCRYS.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..b0540e6d161be019793c904df7cc978d2b4f81c8
--- /dev/null
+++ b/tests/data/parsers/elk/Al/SYMCRYS.OUT
@@ -0,0 +1,580 @@
+
+(translation vectors and rotation matrices are in lattice coordinates)
+
+  48 : nsymcrys
+
+Crystal symmetry :    1
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :    2
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1   0   0
+   0  -1   0
+   0   0  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :    3
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1  -1  -1
+   0   1   0
+   0   0   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :    4
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1  -1  -1
+   0   1   0
+   1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :    5
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1  -1  -1
+   1   0   0
+   0   0   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :    6
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1  -1  -1
+   1   0   0
+   0   1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :    7
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1  -1  -1
+   0   0   1
+   1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :    8
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1   0   0
+   0  -1   0
+   1   1   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :    9
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1   0   0
+   0   0  -1
+   0  -1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   10
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1   0   0
+   0   0  -1
+   1   1   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   11
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1   0   0
+   1   1   1
+   0  -1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   12
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1   0   0
+   1   1   1
+   0   0  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   13
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0  -1   0
+  -1   0   0
+   0   0  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   14
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0  -1   0
+  -1   0   0
+   1   1   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   15
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0  -1   0
+   0   0  -1
+  -1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   16
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0  -1   0
+   0   0  -1
+   1   1   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   17
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0  -1   0
+   1   1   1
+  -1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   18
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0  -1   0
+   1   1   1
+   0   0  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   19
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0  -1
+  -1   0   0
+   0  -1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   20
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0  -1
+  -1   0   0
+   1   1   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   21
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0  -1
+   0  -1   0
+  -1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   22
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0  -1
+   0  -1   0
+   1   1   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   23
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0  -1
+   1   1   1
+  -1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   24
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0  -1
+   1   1   1
+   0  -1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   25
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0   1
+  -1  -1  -1
+   0   1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   26
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0   1
+  -1  -1  -1
+   1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   27
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0   1
+   0   1   0
+  -1  -1  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   28
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0   1
+   0   1   0
+   1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   29
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0   1
+   1   0   0
+  -1  -1  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   30
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   0   1
+   1   0   0
+   0   1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   31
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   1   0
+  -1  -1  -1
+   0   0   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   32
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   1   0
+  -1  -1  -1
+   1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   33
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   1   0
+   0   0   1
+  -1  -1  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   34
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   1   0
+   0   0   1
+   1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   35
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   1   0
+   1   0   0
+  -1  -1  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   36
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   0   1   0
+   1   0   0
+   0   0   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   37
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   0   0
+  -1  -1  -1
+   0   0   1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   38
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   0   0
+  -1  -1  -1
+   0   1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   39
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   0   0
+   0   0   1
+  -1  -1  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   40
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   0   0
+   0   0   1
+   0   1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   41
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   0   0
+   0   1   0
+  -1  -1  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   42
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+  -1  -1  -1
+   0   0   1
+   0   1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   43
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   1   1
+  -1   0   0
+   0  -1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   44
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   1   1
+  -1   0   0
+   0   0  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   45
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   1   1
+   0  -1   0
+  -1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   46
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   1   1
+   0  -1   0
+   0   0  -1
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   47
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   1   1
+   0   0  -1
+  -1   0   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+Crystal symmetry :   48
+ spatial translation :
+   0.000000000       0.000000000       0.000000000    
+ spatial rotation :
+   1   1   1
+   0   0  -1
+   0  -1   0
+ global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
diff --git a/tests/data/parsers/elk/Al/SYMLAT.OUT b/tests/data/parsers/elk/Al/SYMLAT.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..d5318d6444ea80127a9bd3220e1dc00f2fc08af5
--- /dev/null
+++ b/tests/data/parsers/elk/Al/SYMLAT.OUT
@@ -0,0 +1,241 @@
+  48 : nsymlat
+
+   1
+   1   0   0
+   0   1   0
+   0   0   1
+
+   2
+  -1  -1  -1
+   0   0   1
+   1   0   0
+
+   3
+  -1  -1  -1
+   0   1   0
+   0   0   1
+
+   4
+  -1  -1  -1
+   0   1   0
+   1   0   0
+
+   5
+  -1  -1  -1
+   1   0   0
+   0   0   1
+
+   6
+  -1  -1  -1
+   1   0   0
+   0   1   0
+
+   7
+  -1   0   0
+   0  -1   0
+   0   0  -1
+
+   8
+  -1   0   0
+   0  -1   0
+   1   1   1
+
+   9
+  -1   0   0
+   0   0  -1
+   0  -1   0
+
+  10
+  -1   0   0
+   0   0  -1
+   1   1   1
+
+  11
+  -1   0   0
+   1   1   1
+   0  -1   0
+
+  12
+  -1   0   0
+   1   1   1
+   0   0  -1
+
+  13
+   0  -1   0
+  -1   0   0
+   0   0  -1
+
+  14
+   0  -1   0
+  -1   0   0
+   1   1   1
+
+  15
+   0  -1   0
+   0   0  -1
+  -1   0   0
+
+  16
+   0  -1   0
+   0   0  -1
+   1   1   1
+
+  17
+   0  -1   0
+   1   1   1
+  -1   0   0
+
+  18
+   0  -1   0
+   1   1   1
+   0   0  -1
+
+  19
+   0   0  -1
+  -1   0   0
+   0  -1   0
+
+  20
+   0   0  -1
+  -1   0   0
+   1   1   1
+
+  21
+   0   0  -1
+   0  -1   0
+  -1   0   0
+
+  22
+   0   0  -1
+   0  -1   0
+   1   1   1
+
+  23
+   0   0  -1
+   1   1   1
+  -1   0   0
+
+  24
+   0   0  -1
+   1   1   1
+   0  -1   0
+
+  25
+   0   0   1
+  -1  -1  -1
+   0   1   0
+
+  26
+   0   0   1
+  -1  -1  -1
+   1   0   0
+
+  27
+   0   0   1
+   0   1   0
+  -1  -1  -1
+
+  28
+   0   0   1
+   0   1   0
+   1   0   0
+
+  29
+   0   0   1
+   1   0   0
+  -1  -1  -1
+
+  30
+   0   0   1
+   1   0   0
+   0   1   0
+
+  31
+   0   1   0
+  -1  -1  -1
+   0   0   1
+
+  32
+   0   1   0
+  -1  -1  -1
+   1   0   0
+
+  33
+   0   1   0
+   0   0   1
+  -1  -1  -1
+
+  34
+   0   1   0
+   0   0   1
+   1   0   0
+
+  35
+   0   1   0
+   1   0   0
+  -1  -1  -1
+
+  36
+   0   1   0
+   1   0   0
+   0   0   1
+
+  37
+   1   0   0
+  -1  -1  -1
+   0   0   1
+
+  38
+   1   0   0
+  -1  -1  -1
+   0   1   0
+
+  39
+   1   0   0
+   0   0   1
+  -1  -1  -1
+
+  40
+   1   0   0
+   0   0   1
+   0   1   0
+
+  41
+   1   0   0
+   0   1   0
+  -1  -1  -1
+
+  42
+  -1  -1  -1
+   0   0   1
+   0   1   0
+
+  43
+   1   1   1
+  -1   0   0
+   0  -1   0
+
+  44
+   1   1   1
+  -1   0   0
+   0   0  -1
+
+  45
+   1   1   1
+   0  -1   0
+  -1   0   0
+
+  46
+   1   1   1
+   0  -1   0
+   0   0  -1
+
+  47
+   1   1   1
+   0   0  -1
+  -1   0   0
+
+  48
+   1   1   1
+   0   0  -1
+   0  -1   0
diff --git a/tests/data/parsers/elk/Al/SYMSITE.OUT b/tests/data/parsers/elk/Al/SYMSITE.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..db94aecea962ea39ce01f254d66b4a99651286b2
--- /dev/null
+++ b/tests/data/parsers/elk/Al/SYMSITE.OUT
@@ -0,0 +1,486 @@
+
+(rotation matrices are in lattice coordinates)
+
+
+Species :    1 (Al), atom :    1
+  48 : nsymsite
+
+ Site symmetry :    1
+  spatial rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :    2
+  spatial rotation :
+  -1  -1  -1
+   0   0   1
+   1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :    3
+  spatial rotation :
+  -1  -1  -1
+   0   1   0
+   0   0   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :    4
+  spatial rotation :
+  -1  -1  -1
+   0   1   0
+   1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :    5
+  spatial rotation :
+  -1  -1  -1
+   1   0   0
+   0   0   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :    6
+  spatial rotation :
+  -1  -1  -1
+   1   0   0
+   0   1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :    7
+  spatial rotation :
+  -1   0   0
+   0  -1   0
+   0   0  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :    8
+  spatial rotation :
+  -1   0   0
+   0  -1   0
+   1   1   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :    9
+  spatial rotation :
+  -1   0   0
+   0   0  -1
+   0  -1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   10
+  spatial rotation :
+  -1   0   0
+   0   0  -1
+   1   1   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   11
+  spatial rotation :
+  -1   0   0
+   1   1   1
+   0  -1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   12
+  spatial rotation :
+  -1   0   0
+   1   1   1
+   0   0  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   13
+  spatial rotation :
+   0  -1   0
+  -1   0   0
+   0   0  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   14
+  spatial rotation :
+   0  -1   0
+  -1   0   0
+   1   1   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   15
+  spatial rotation :
+   0  -1   0
+   0   0  -1
+  -1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   16
+  spatial rotation :
+   0  -1   0
+   0   0  -1
+   1   1   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   17
+  spatial rotation :
+   0  -1   0
+   1   1   1
+  -1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   18
+  spatial rotation :
+   0  -1   0
+   1   1   1
+   0   0  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   19
+  spatial rotation :
+   0   0  -1
+  -1   0   0
+   0  -1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   20
+  spatial rotation :
+   0   0  -1
+  -1   0   0
+   1   1   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   21
+  spatial rotation :
+   0   0  -1
+   0  -1   0
+  -1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   22
+  spatial rotation :
+   0   0  -1
+   0  -1   0
+   1   1   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   23
+  spatial rotation :
+   0   0  -1
+   1   1   1
+  -1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   24
+  spatial rotation :
+   0   0  -1
+   1   1   1
+   0  -1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   25
+  spatial rotation :
+   0   0   1
+  -1  -1  -1
+   0   1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   26
+  spatial rotation :
+   0   0   1
+  -1  -1  -1
+   1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   27
+  spatial rotation :
+   0   0   1
+   0   1   0
+  -1  -1  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   28
+  spatial rotation :
+   0   0   1
+   0   1   0
+   1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   29
+  spatial rotation :
+   0   0   1
+   1   0   0
+  -1  -1  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   30
+  spatial rotation :
+   0   0   1
+   1   0   0
+   0   1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   31
+  spatial rotation :
+   0   1   0
+  -1  -1  -1
+   0   0   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   32
+  spatial rotation :
+   0   1   0
+  -1  -1  -1
+   1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   33
+  spatial rotation :
+   0   1   0
+   0   0   1
+  -1  -1  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   34
+  spatial rotation :
+   0   1   0
+   0   0   1
+   1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   35
+  spatial rotation :
+   0   1   0
+   1   0   0
+  -1  -1  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   36
+  spatial rotation :
+   0   1   0
+   1   0   0
+   0   0   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   37
+  spatial rotation :
+   1   0   0
+  -1  -1  -1
+   0   0   1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   38
+  spatial rotation :
+   1   0   0
+  -1  -1  -1
+   0   1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   39
+  spatial rotation :
+   1   0   0
+   0   0   1
+  -1  -1  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   40
+  spatial rotation :
+   1   0   0
+   0   0   1
+   0   1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   41
+  spatial rotation :
+   1   0   0
+   0   1   0
+  -1  -1  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   42
+  spatial rotation :
+  -1  -1  -1
+   0   0   1
+   0   1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   43
+  spatial rotation :
+   1   1   1
+  -1   0   0
+   0  -1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   44
+  spatial rotation :
+   1   1   1
+  -1   0   0
+   0   0  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   45
+  spatial rotation :
+   1   1   1
+   0  -1   0
+  -1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   46
+  spatial rotation :
+   1   1   1
+   0  -1   0
+   0   0  -1
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   47
+  spatial rotation :
+   1   1   1
+   0   0  -1
+  -1   0   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
+
+ Site symmetry :   48
+  spatial rotation :
+   1   1   1
+   0   0  -1
+   0  -1   0
+  global spin rotation :
+   1   0   0
+   0   1   0
+   0   0   1
diff --git a/tests/data/parsers/elk/Al/TOTENERGY.OUT b/tests/data/parsers/elk/Al/TOTENERGY.OUT
new file mode 100644
index 0000000000000000000000000000000000000000..54820bdb339c1b8b0831719d43da957ae726fd4e
--- /dev/null
+++ b/tests/data/parsers/elk/Al/TOTENERGY.OUT
@@ -0,0 +1,19 @@
+    -242.116126624    
+    -242.117325393    
+    -242.114226057    
+    -242.103169442    
+    -242.082186859    
+    -242.052321987    
+    -242.017924155    
+    -241.984823121    
+    -241.957764113    
+    -241.938796882    
+    -241.927326015    
+    -241.921310689    
+    -241.918565911    
+    -241.917477182    
+    -241.917105803    
+    -241.916999367    
+    -241.916974665    
+    -241.916970259    
+    -241.916969785    
diff --git a/tests/data/parsers/elk/Al/elk.in b/tests/data/parsers/elk/Al/elk.in
new file mode 100644
index 0000000000000000000000000000000000000000..aeb93f65be271fdec38a3bd4535364eab72ffff2
--- /dev/null
+++ b/tests/data/parsers/elk/Al/elk.in
@@ -0,0 +1,36 @@
+
+! Ground state of aluminium. Try calculating the density of states by using
+! tasks=10
+
+tasks
+  0
+
+! You can add notes to the INFO.OUT file using the "notes" block
+notes
+ Simple calculation of the ground state of aluminium. Must check convergence
+ with respect to k-point set later.
+ Run by H. Golightly
+
+avec
+  1.0  1.0  0.0
+  1.0  0.0  1.0
+  0.0  1.0  1.0
+
+scale
+  3.8267
+
+! this is the relative path to the species files
+sppath
+  '../../../species/'
+
+atoms
+  1                                   : nspecies
+  'Al.in'                             : spfname
+  1                                   : natoms
+  0.0  0.0  0.0    0.0  0.0  0.0      : atposl, bfcmt
+
+ngridk
+  4  4  4
+
+vkloff
+  0.5  0.5  0.5
diff --git a/tests/data/parsers/gulp/example6.got b/tests/data/parsers/gulp/example6.got
new file mode 100644
index 0000000000000000000000000000000000000000..c7dd214cf924b844a853028b194a05cb9d5adc27
--- /dev/null
+++ b/tests/data/parsers/gulp/example6.got
@@ -0,0 +1,682 @@
+********************************************************************************
+*                       GENERAL UTILITY LATTICE PROGRAM                        *
+*                                 Julian Gale                                  *
+*                      Nanochemistry Research Institute                        *
+*                           Department of Chemistry                            *
+*                    Curtin University, Western Australia                      *
+********************************************************************************
+* Version = 4.1.0 * Last modified =   7th July 2013                            *
+********************************************************************************
+*  optimise     - perform optimisation run                                     *
+*  conp         - constant pressure calculation                                *
+*  property     - calculate properties for final geometry                      *
+*  defect       - perform defect calculation after bulk run                    *
+*  regi_before  - output region 1 at start of defect calculation               *
+********************************************************************************
+* Example of defect impurity calc : Li substituted into MgO                    *
+********************************************************************************
+
+
+  Job Started  at 09:00.37 29th July       2013                               
+
+  Number of CPUs =     1
+
+  Host name      = M-A0002884.local                        
+
+
+  Total number of configurations input =   1
+
+********************************************************************************
+*  Input for Configuration =   1                                               *
+********************************************************************************
+
+  Formula = OMg                                                         
+
+  Number of irreducible atoms/shells =       3
+
+
+  Total number atoms/shells =       3
+
+  Dimensionality = 3               :  Bulk   
+
+
+  Symmetry :
+
+  Crystal family                   :  Cubic       
+  Crystal class  (Groth - 1921)    :  Cubic Hexakisoctahedral              
+
+  Space group (centrosymmetric)    :  F M 3 M         
+
+  Patterson group                  :  F m -3 m 
+
+  Cartesian lattice vectors (Angstroms) :
+
+        0.000000    2.106000    2.106000
+        2.106000    0.000000    2.106000
+        2.106000    2.106000    0.000000
+
+  Primitive cell parameters :            Full cell parameters :
+
+  a =   2.9783    alpha =  60.0000       a =   4.2120    alpha =  90.0000
+  b =   2.9783    beta  =  60.0000       b =   4.2120    beta  =  90.0000
+  c =   2.9783    gamma =  60.0000       c =   4.2120    gamma =  90.0000
+
+  Initial volumes (Angstroms**3):
+
+  Primitive cell =          18.681214    Full cell =          74.724856
+
+  Temperature of configuration =  0.000     K 
+
+  Pressure of configuration =         0.000 GPa 
+
+  Fractional coordinates of asymmetric unit :
+
+--------------------------------------------------------------------------------
+   No.  Atomic       x           y          z         Charge      Occupancy
+        Label      (Frac)      (Frac)     (Frac)        (e)         (Frac)  
+--------------------------------------------------------------------------------
+      1 O     c    0.500000    0.500000    0.500000     0.86902    1.000000    
+      2 Mg    c    0.000000    0.000000    0.000000     2.00000    1.000000    
+      3 O     s    0.500000    0.500000    0.500000    -2.86902    1.000000    
+--------------------------------------------------------------------------------
+
+
+  Constraints : 
+
+--------------------------------------------------------------------------------
+  Constraint no.      Unconstrained     Constrained    Coefficient    Offset
+                         Variable         Variable
+--------------------------------------------------------------------------------
+           1              Strain 1        Strain 2       1.00000      0.0000
+           2              Strain 1        Strain 3       1.00000      0.0000
+--------------------------------------------------------------------------------
+
+
+********************************************************************************
+*  General input information                                                   *
+********************************************************************************
+
+  Species output for all configurations : 
+
+--------------------------------------------------------------------------------
+  Species    Type    Atomic    Atomic    Charge       Radii (Angs)     Library
+                     Number     Mass       (e)     Cova   Ionic  VDW   Symbol
+--------------------------------------------------------------------------------
+    Li       Core        3       6.94   1.000000   0.680  0.000  1.800          
+    O        Core        8      16.00   0.869020   0.730  0.000  1.360          
+    Mg       Core       12      24.31   2.000000   1.100  0.000  1.640          
+    O        Shell       8       0.00  -2.869020   0.730  0.000  1.360          
+--------------------------------------------------------------------------------
+
+
+  Lattice summation method               =    Ewald          (3-D)
+                                         =    Parry          (2-D)
+                                         =    Saunders et al (1-D)
+  Accuracy factor for lattice sums       =   12.000
+
+
+  Time limit = Infinity
+
+  Maximum range for interatomic potentials =    100000.000000 Angstroms
+
+  General interatomic potentials :
+
+--------------------------------------------------------------------------------
+Atom  Types   Potential         A         B         C         D     Cutoffs(Ang)
+  1     2                                                            Min    Max 
+--------------------------------------------------------------------------------
+Mg   c O    s Buckingham    0.128E+04 0.300      0.00      0.00     0.000  8.000
+Li   c O    s Buckingham     816.     0.261      0.00      0.00     0.000  8.000
+O    s O    s Buckingham    0.128E+04 0.300      27.9      0.00     0.000 10.000
+O    c O    s Spring (c-s)   74.9      0.00      0.00      0.00     0.000  0.800
+--------------------------------------------------------------------------------
+
+********************************************************************************
+*  Output for configuration   1                                                *
+********************************************************************************
+
+
+  Components of energy : 
+
+--------------------------------------------------------------------------------
+  Interatomic potentials     =           7.01578450 eV
+  Monopole - monopole (real) =          -4.34238722 eV
+  Monopole - monopole (recip)=         -43.45344934 eV
+  Monopole - monopole (total)=         -47.79583656 eV
+--------------------------------------------------------------------------------
+  Total lattice energy : 
+    Primitive unit cell      =         -40.78005207 eV
+    Non-primitive unit cell  =        -163.12020827 eV
+--------------------------------------------------------------------------------
+  Total lattice energy (in kJmol-1): 
+    Primitive unit cell      =           -3934.6516 kJ/(mole unit cells)
+    Non-primitive unit cell  =          -15738.6066 kJ/(mole unit cells)
+--------------------------------------------------------------------------------
+
+
+  Number of variables =        1
+
+  Maximum number of calculations  =          1000
+  Maximum Hessian update interval =            10
+  Maximum step size               =   1.000000000
+  Maximum parameter tolerance     =   0.000010000
+  Maximum function  tolerance     =   0.000010000
+  Maximum gradient  tolerance     =   0.001000000
+  Maximum gradient  component     =   0.010000000
+
+  Symmetry constrained optimisation
+
+  Symmetry used for second derivatives
+
+  Cell parameters to be optimised using strains
+
+  Newton-Raphson optimiser to be used
+
+  BFGS hessian update to be used
+
+  Start of bulk optimisation :
+
+  Cycle:      0 Energy:       -40.780052  Gnorm:      3.180029  CPU:    0.005
+  ** Hessian calculated **
+  Cycle:      1 Energy:       -40.798930  Gnorm:      0.023749  CPU:    0.007
+
+
+  **** Optimisation achieved ****
+
+
+  Final energy =     -40.79893139 eV
+  Final Gnorm  =       0.00000308
+
+  Components of energy : 
+
+--------------------------------------------------------------------------------
+  Interatomic potentials     =           6.42580798 eV
+  Monopole - monopole (real) =          -4.29050142 eV
+  Monopole - monopole (recip)=         -42.93423795 eV
+  Monopole - monopole (total)=         -47.22473937 eV
+--------------------------------------------------------------------------------
+  Total lattice energy : 
+    Primitive unit cell      =         -40.79893139 eV
+    Non-primitive unit cell  =        -163.19572558 eV
+--------------------------------------------------------------------------------
+  Total lattice energy (in kJmol-1): 
+    Primitive unit cell      =           -3936.4732 kJ/(mole unit cells)
+    Non-primitive unit cell  =          -15745.8928 kJ/(mole unit cells)
+--------------------------------------------------------------------------------
+
+  Final asymmetric unit coordinates :
+
+--------------------------------------------------------------------------------
+   No.  Atomic        x           y           z         Radius
+        Label       (Frac)      (Frac)      (Frac)       (Angs) 
+--------------------------------------------------------------------------------
+     1  O     c     0.500000    0.500000    0.500000    0.000000
+     2  Mg    c     0.000000    0.000000    0.000000    0.000000
+     3  O     s     0.500000    0.500000    0.500000    0.000000
+--------------------------------------------------------------------------------
+
+  Final Cartesian lattice vectors (Angstroms) :
+
+        0.000000    2.131468    2.131468
+        2.131468    0.000000    2.131468
+        2.131468    2.131468    0.000000
+
+
+  Final cell parameters and derivatives :
+
+--------------------------------------------------------------------------------
+       a            3.014351 Angstrom     dE/de1(xx)     0.000003 eV/strain
+       b            3.014351 Angstrom     dE/de2(yy)     0.000000 eV/strain
+       c            3.014351 Angstrom     dE/de3(zz)     0.000000 eV/strain
+       alpha       60.000000 Degrees      dE/de4(yz)     0.000000 eV/strain
+       beta        60.000000 Degrees      dE/de5(xz)     0.000000 eV/strain
+       gamma       60.000000 Degrees      dE/de6(xy)     0.000000 eV/strain
+--------------------------------------------------------------------------------
+
+  Primitive cell volume =            19.367189 Angs**3
+
+  Density of cell =      3.456227 g/cm**3
+
+  Non-primitive lattice parameters :
+
+  a    =     4.262936  b   =     4.262936  c    =     4.262936
+  alpha=    90.000000  beta=    90.000000  gamma=    90.000000
+
+  Non-primitive cell volume =            77.468756 Angs**3
+
+
+  Final internal derivatives :
+
+--------------------------------------------------------------------------------
+   No.  Atomic          a             b             c           Radius
+        Label          (eV)          (eV)          (eV)        (eV/Angs)
+--------------------------------------------------------------------------------
+      1 O     c       0.000000      0.000000      0.000000      0.000000
+      2 Mg    c       0.000000      0.000000      0.000000      0.000000
+      3 O     s       0.000000      0.000000      0.000000      0.000000
+--------------------------------------------------------------------------------
+  Maximum abs         0.000000      0.000000      0.000000      0.000000
+--------------------------------------------------------------------------------
+
+
+  Born effective charge tensors : 
+
+-------------------------------------------------------------------------------
+  Atom             x           y             z
+-------------------------------------------------------------------------------
+   1 O     x      -2.0405     -0.0000      0.0000
+           y      -0.0000     -2.0405     -0.0000
+           z       0.0000     -0.0000     -2.0405
+-------------------------------------------------------------------------------
+   2 Mg    x       2.0405      0.0000     -0.0000
+           y       0.0000      2.0405      0.0000
+           z      -0.0000      0.0000      2.0405
+-------------------------------------------------------------------------------
+
+
+
+
+  Elastic Constant Matrix: (Units=GPa)
+
+-------------------------------------------------------------------------------
+  Indices      1         2         3         4         5         6    
+-------------------------------------------------------------------------------
+       1    342.5547  180.2137  180.2137   -0.0000   -0.0000   -0.0000
+       2    180.2137  342.5547  180.2137    0.0000   -0.0000   -0.0000
+       3    180.2137  180.2137  342.5547    0.0000   -0.0000   -0.0000
+       4     -0.0000    0.0000    0.0000  180.2137   -0.0000   -0.0000
+       5     -0.0000   -0.0000   -0.0000   -0.0000  180.2137   -0.0000
+       6     -0.0000   -0.0000   -0.0000   -0.0000   -0.0000  180.2137
+-------------------------------------------------------------------------------
+
+
+  Elastic Compliance Matrix: (Units=1/GPa)
+
+-------------------------------------------------------------------------------
+  Indices      1         2         3         4         5         6    
+-------------------------------------------------------------------------------
+       1    0.004581 -0.001579 -0.001579  0.000000  0.000000 -0.000000
+       2   -0.001579  0.004581 -0.001579 -0.000000 -0.000000  0.000000
+       3   -0.001579 -0.001579  0.004581 -0.000000  0.000000  0.000000
+       4    0.000000 -0.000000 -0.000000  0.005549  0.000000  0.000000
+       5    0.000000 -0.000000  0.000000  0.000000  0.005549  0.000000
+       6   -0.000000  0.000000  0.000000  0.000000  0.000000  0.005549
+-------------------------------------------------------------------------------
+
+  Mechanical properties :
+
+-------------------------------------------------------------------------------
+  Convention :                    Reuss         Voigt         Hill
+-------------------------------------------------------------------------------
+  Bulk  Modulus (GPa)     =     234.32737     234.32737     234.32737
+  Shear Modulus (GPa)     =     121.10527     140.59643     130.85085
+-------------------------------------------------------------------------------
+  Velocity S-wave (km/s)  =       5.91944       6.37802       6.15300
+  Velocity P-wave (km/s)  =      10.70132      11.04706      10.87556
+-------------------------------------------------------------------------------
+  Compressibility (1/GPa) =    0.00426753
+-------------------------------------------------------------------------------
+  Stress axis :                     x             y             z
+-------------------------------------------------------------------------------
+  Youngs Moduli (GPa)     =     218.30473     218.30473     218.30473
+-------------------------------------------------------------------------------
+  Poissons Ratio (x)      =                     0.34473       0.34473
+  Poissons Ratio (y)      =       0.34473                     0.34473
+  Poissons Ratio (z)      =       0.34473       0.34473
+-------------------------------------------------------------------------------
+
+
+  Piezoelectric Strain Matrix: (Units=C/m**2)
+
+-------------------------------------------------------------------------------
+  Indices      1         2         3         4         5         6    
+-------------------------------------------------------------------------------
+       x    -0.00000   0.00000   0.00000   0.00000   0.00000   0.00000
+       y     0.00000   0.00000   0.00000   0.00000   0.00000   0.00000
+       z     0.00000   0.00000   0.00000   0.00000   0.00000   0.00000
+-------------------------------------------------------------------------------
+
+
+  Piezoelectric Stress Matrix: (Units=10**-11 C/N)
+
+-------------------------------------------------------------------------------
+  Indices      1         2         3         4         5         6    
+-------------------------------------------------------------------------------
+       x    -0.00000   0.00000   0.00000   0.00000   0.00000   0.00000
+       y     0.00000  -0.00000   0.00000   0.00000   0.00000   0.00000
+       z     0.00000   0.00000  -0.00000   0.00000   0.00000   0.00000
+-------------------------------------------------------------------------------
+
+
+  Static dielectric constant tensor : 
+
+-------------------------------------------------------------------------------
+              x         y         z
+-------------------------------------------------------------------------------
+       x    10.87129   0.00000  -0.00000
+       y     0.00000  10.87129   0.00000
+       z    -0.00000   0.00000  10.87129
+--------------------------------------------------------------------------------
+
+  High frequency dielectric constant tensor : 
+
+-------------------------------------------------------------------------------
+              x         y         z
+-------------------------------------------------------------------------------
+       x     2.16136   0.00000   0.00000
+       y     0.00000   2.16136  -0.00000
+       z     0.00000  -0.00000   2.16136
+-------------------------------------------------------------------------------
+
+  Static refractive indices : 
+
+-------------------------------------------------------------------------------
+    1 =    3.29716      2 =    3.29716      3 =    3.29716
+-------------------------------------------------------------------------------
+
+  High frequency refractive indices : 
+
+-------------------------------------------------------------------------------
+    1 =    1.47016      2 =    1.47016      3 =    1.47016
+-------------------------------------------------------------------------------
+
+
+  Time to end of optimisation =       0.0108 seconds
+
+********************************************************************************
+*  Defect calculation for configuration   1 :                                  *
+********************************************************************************
+
+  Total number of defects =      1
+
+  Total charge on defect  =  -1.00
+
+  Defect centre is at atom Mg   
+
+  Region 1 radius =   4.0000      Number of ions =     41
+
+  Number of symmetry inequivalent region 1 ions  =      6
+
+  Region 2 radius =  10.0000      Number of ions =    656
+
+  Number of symmetry inequivalent region 2a ions =     29
+
+  Region 2a mode = 4 : screened electrostatics due to region 1 
+                       neglect correction to region 1 forces from 2a
+                       region 2a displacements based on defects only
+
+  Region 2a ions will only interact with defects in region 1
+
+  Impurities:
+
+--------------------------------------------------------------------------------
+    Specification type     Symbol/Number         x          y          z
+--------------------------------------------------------------------------------
+    Symbol/Symbol           Li     Mg   
+--------------------------------------------------------------------------------
+
+
+  Region 1 (Absolute coordinates) :
+
+--------------------------------------------------------------------------------
+   No.   Atomic       x            y             z         Charge   Occupancy
+         Label      (Angs)       (Angs)        (Angs)        (e)    
+--------------------------------------------------------------------------------
+     1  Li    c      0.0000       0.0000       0.0000      1.00000    1.00000
+     2  O     c     -2.1315       0.0000       0.0000      0.86902    1.00000
+     3  O     c      0.0000       2.1315       0.0000      0.86902    1.00000
+     4  O     c      0.0000       0.0000       2.1315      0.86902    1.00000
+     5  O     c      0.0000       0.0000      -2.1315      0.86902    1.00000
+     6  O     c      0.0000      -2.1315       0.0000      0.86902    1.00000
+     7  O     c      2.1315       0.0000       0.0000      0.86902    1.00000
+     8  Mg    c      2.1315       2.1315       0.0000      2.00000    1.00000
+     9  Mg    c     -2.1315      -2.1315       0.0000      2.00000    1.00000
+    10  Mg    c      2.1315       0.0000       2.1315      2.00000    1.00000
+    11  Mg    c      0.0000      -2.1315       2.1315      2.00000    1.00000
+    12  Mg    c     -2.1315       0.0000      -2.1315      2.00000    1.00000
+    13  Mg    c      0.0000       2.1315      -2.1315      2.00000    1.00000
+    14  Mg    c      0.0000       2.1315       2.1315      2.00000    1.00000
+    15  Mg    c     -2.1315       0.0000       2.1315      2.00000    1.00000
+    16  Mg    c     -2.1315       2.1315       0.0000      2.00000    1.00000
+    17  Mg    c      0.0000      -2.1315      -2.1315      2.00000    1.00000
+    18  Mg    c      2.1315       0.0000      -2.1315      2.00000    1.00000
+    19  Mg    c      2.1315      -2.1315       0.0000      2.00000    1.00000
+    20  O     c      2.1315       2.1315       2.1315      0.86902    1.00000
+    21  O     c     -2.1315      -2.1315       2.1315      0.86902    1.00000
+    22  O     c     -2.1315       2.1315      -2.1315      0.86902    1.00000
+    23  O     c     -2.1315       2.1315       2.1315      0.86902    1.00000
+    24  O     c     -2.1315      -2.1315      -2.1315      0.86902    1.00000
+    25  O     c      2.1315       2.1315      -2.1315      0.86902    1.00000
+    26  O     c      2.1315      -2.1315       2.1315      0.86902    1.00000
+    27  O     c      2.1315      -2.1315      -2.1315      0.86902    1.00000
+    28  O     s     -2.1315       0.0000       0.0000     -2.86902    1.00000
+    29  O     s      0.0000       2.1315       0.0000     -2.86902    1.00000
+    30  O     s      0.0000       0.0000       2.1315     -2.86902    1.00000
+    31  O     s      0.0000       0.0000      -2.1315     -2.86902    1.00000
+    32  O     s      0.0000      -2.1315       0.0000     -2.86902    1.00000
+    33  O     s      2.1315       0.0000       0.0000     -2.86902    1.00000
+    34  O     s      2.1315       2.1315       2.1315     -2.86902    1.00000
+    35  O     s     -2.1315      -2.1315       2.1315     -2.86902    1.00000
+    36  O     s     -2.1315       2.1315      -2.1315     -2.86902    1.00000
+    37  O     s     -2.1315       2.1315       2.1315     -2.86902    1.00000
+    38  O     s     -2.1315      -2.1315      -2.1315     -2.86902    1.00000
+    39  O     s      2.1315       2.1315      -2.1315     -2.86902    1.00000
+    40  O     s      2.1315      -2.1315       2.1315     -2.86902    1.00000
+    41  O     s      2.1315      -2.1315      -2.1315     -2.86902    1.00000
+--------------------------------------------------------------------------------
+
+
+
+  Symmetry reduced region 1 (Relative to defect centre) :
+
+--------------------------------------------------------------------------------
+   No.   Atomic       x            y             z       Radius  Multiplicity   
+         Label      (Angs)       (Angs)        (Angs)    (Angs)     
+--------------------------------------------------------------------------------
+     1  Li    c      0.0000       0.0000       0.0000    0.0000     1    Defect
+     2  O     c     -2.1315 *     0.0000       0.0000    0.0000     6          
+     3  Mg    c      2.1315 *     2.1315       0.0000    0.0000    12          
+     4  O     c      2.1315 *     2.1315       2.1315    0.0000     8          
+     5  O     s     -2.1315 *     0.0000       0.0000    0.0000     6          
+     6  O     s      2.1315 *     2.1315       2.1315    0.0000     8          
+--------------------------------------------------------------------------------
+
+
+  Constraints on symmetry reduced coordinates :
+
+--------------------------------------------------------------------------------
+  Constraint no.      Unconstrained     Constrained    Coefficient    
+                         Variable         Variable
+--------------------------------------------------------------------------------
+           1                 3 x             3 y         1.00000
+           2                 4 x             4 y         1.00000
+           3                 4 x             4 z         1.00000
+           4                 6 x             6 y         1.00000
+           5                 6 x             6 z         1.00000
+--------------------------------------------------------------------------------
+
+
+  Components of defect energy : 
+
+--------------------------------------------------------------------------------
+  Region 1 - region 1                   =     23.86459456 eV
+  Region 1 - region 2a (unrelaxed)      =     -5.21854591 eV
+  Region 1 - 2a (relaxed - correction)  =     -1.96402038 eV
+  Region 1 (Total)                      =     16.68202827 eV
+  Region 2a                             =      0.98154186 eV
+  Region 2b                             =     -0.63808627 eV
+--------------------------------------------------------------------------------
+  Total defect energy                   =     17.02548386 eV
+--------------------------------------------------------------------------------
+
+  Largest displacement in region 2 =   0.0167 Angstroms
+
+
+  Number of variables =        5
+
+  Maximum number of calculations  =        1000
+  Maximum Hessian update interval =          10
+  Maximum step size               =   1.0000000
+  Maximum parameter tolerance     =   0.0000100
+  Maximum function  tolerance     =   0.0000100
+  Maximum gradient  tolerance     =   0.0010000
+
+  Symmetry adapted optimisation
+
+  Symmetry to be used for second derivatives
+
+  Newton-Raphson optimiser to be used
+
+  BFGS hessian update to be used
+
+  Start of defect optimisation :
+
+  Cycle:      0 Defect Energy:  17.025484  Gnorm:    16.225731  CPU:    0.020
+  ** Hessian calculated **
+  Cycle:      1 Defect Energy:  14.895717  Gnorm:     0.720784  CPU:    0.025
+  Cycle:      2 Defect Energy:  14.895680  Gnorm:     0.508714  CPU:    0.027
+  Cycle:      3 Defect Energy:  14.896232  Gnorm:     0.356228  CPU:    0.028
+  Cycle:      4 Defect Energy:  14.896898  Gnorm:     0.249399  CPU:    0.029
+  Cycle:      5 Defect Energy:  14.897501  Gnorm:     0.174598  CPU:    0.030
+  Cycle:      6 Defect Energy:  14.897989  Gnorm:     0.122227  CPU:    0.032
+  Cycle:      7 Defect Energy:  14.898364  Gnorm:     0.085563  CPU:    0.033
+  Cycle:      8 Defect Energy:  14.898643  Gnorm:     0.059897  CPU:    0.034
+  Cycle:      9 Defect Energy:  14.898846  Gnorm:     0.041929  CPU:    0.035
+  Cycle:     10 Defect Energy:  14.898992  Gnorm:     0.029351  CPU:    0.037
+  ** Hessian calculated **
+  Cycle:     11 Defect Energy:  14.899096  Gnorm:     0.020545  CPU:    0.040
+  Cycle:     12 Defect Energy:  14.899169  Gnorm:     0.014382  CPU:    0.041
+  Cycle:     13 Defect Energy:  14.899222  Gnorm:     0.010067  CPU:    0.042
+  Cycle:     14 Defect Energy:  14.899258  Gnorm:     0.007047  CPU:    0.044
+  Cycle:     15 Defect Energy:  14.899284  Gnorm:     0.004933  CPU:    0.045
+  Cycle:     16 Defect Energy:  14.899302  Gnorm:     0.003453  CPU:    0.047
+  Cycle:     17 Defect Energy:  14.899315  Gnorm:     0.002417  CPU:    0.048
+  Cycle:     18 Defect Energy:  14.899324  Gnorm:     0.001692  CPU:    0.049
+  Cycle:     19 Defect Energy:  14.899330  Gnorm:     0.001184  CPU:    0.052
+
+
+  **** Optimisation achieved ****
+
+
+  Final defect energy  =       14.89933321
+  Final defect Gnorm   =        0.00091788
+
+  Components of defect energy : 
+
+--------------------------------------------------------------------------------
+  Region 1 - region 1                   =     21.34370867 eV
+  Region 1 - region 2a (unrelaxed)      =     -4.98892959 eV
+  Region 1 - 2a (relaxed - correction)  =     -1.62995126 eV
+  Region 1 (Total)                      =     14.72482783 eV
+  Region 2a                             =      0.81259165 eV
+  Region 2b                             =     -0.63808627 eV
+--------------------------------------------------------------------------------
+  Total defect energy                   =     14.89933321 eV
+--------------------------------------------------------------------------------
+
+  Largest displacement in region 2 =   0.0167 Angstroms
+
+  Final coordinates of region 1 :
+
+--------------------------------------------------------------------------------
+   No.  Atomic        x           y           z          Radius      Charge
+        Label       (Angs)      (Angs)      (Angs)       (Angs)       (e) 
+--------------------------------------------------------------------------------
+     1  Li    c     0.000000    0.000000    0.000000    0.000000    1.000000
+     2  O     c    -2.174952    0.000000    0.000000    0.000000    0.869020
+     3  O     c     0.000000    2.174952    0.000000    0.000000    0.869020
+     4  O     c     0.000000    0.000000    2.174952    0.000000    0.869020
+     5  O     c     0.000000    0.000000   -2.174952    0.000000    0.869020
+     6  O     c     0.000000   -2.174952    0.000000    0.000000    0.869020
+     7  O     c     2.174952    0.000000    0.000000    0.000000    0.869020
+     8  Mg    c     2.086283    2.086283    0.000000    0.000000    2.000000
+     9  Mg    c    -2.086283   -2.086283    0.000000    0.000000    2.000000
+    10  Mg    c     2.086283    0.000000    2.086283    0.000000    2.000000
+    11  Mg    c     0.000000   -2.086283    2.086283    0.000000    2.000000
+    12  Mg    c    -2.086283    0.000000   -2.086283    0.000000    2.000000
+    13  Mg    c     0.000000    2.086283   -2.086283    0.000000    2.000000
+    14  Mg    c     0.000000    2.086283    2.086283    0.000000    2.000000
+    15  Mg    c    -2.086283    0.000000    2.086283    0.000000    2.000000
+    16  Mg    c    -2.086283    2.086283    0.000000    0.000000    2.000000
+    17  Mg    c     0.000000   -2.086283   -2.086283    0.000000    2.000000
+    18  Mg    c     2.086283    0.000000   -2.086283    0.000000    2.000000
+    19  Mg    c     2.086283   -2.086283    0.000000    0.000000    2.000000
+    20  O     c     2.146397    2.146397    2.146397    0.000000    0.869020
+    21  O     c    -2.146397   -2.146397    2.146397    0.000000    0.869020
+    22  O     c    -2.146397    2.146397   -2.146397    0.000000    0.869020
+    23  O     c    -2.146397    2.146397    2.146397    0.000000    0.869020
+    24  O     c    -2.146397   -2.146397   -2.146397    0.000000    0.869020
+    25  O     c     2.146397    2.146397   -2.146397    0.000000    0.869020
+    26  O     c     2.146397   -2.146397    2.146397    0.000000    0.869020
+    27  O     c     2.146397   -2.146397   -2.146397    0.000000    0.869020
+    28  O     s    -2.192746    0.000000    0.000000    0.000000   -2.869020
+    29  O     s     0.000000    2.192746    0.000000    0.000000   -2.869020
+    30  O     s     0.000000    0.000000    2.192746    0.000000   -2.869020
+    31  O     s     0.000000    0.000000   -2.192746    0.000000   -2.869020
+    32  O     s     0.000000   -2.192746    0.000000    0.000000   -2.869020
+    33  O     s     2.192746    0.000000    0.000000    0.000000   -2.869020
+    34  O     s     2.147472    2.147472    2.147472    0.000000   -2.869020
+    35  O     s    -2.147472   -2.147472    2.147472    0.000000   -2.869020
+    36  O     s    -2.147472    2.147472   -2.147472    0.000000   -2.869020
+    37  O     s    -2.147472    2.147472    2.147472    0.000000   -2.869020
+    38  O     s    -2.147472   -2.147472   -2.147472    0.000000   -2.869020
+    39  O     s     2.147472    2.147472   -2.147472    0.000000   -2.869020
+    40  O     s     2.147472   -2.147472    2.147472    0.000000   -2.869020
+    41  O     s     2.147472   -2.147472   -2.147472    0.000000   -2.869020
+--------------------------------------------------------------------------------
+
+  Final coordinates of symmetry reduced region 1 (relative to defect centre):
+
+--------------------------------------------------------------------------------
+   No.  Atomic        x           y           z          Charge
+        Label       (Angs)      (Angs)      (Angs)         (e) 
+--------------------------------------------------------------------------------
+     1  Li    c     0.000000    0.000000    0.000000    1.000000
+     2  O     c    -2.174952    0.000000    0.000000    0.869020
+     3  Mg    c     2.086283    2.086283    0.000000    2.000000
+     4  O     c     2.146397    2.146397    2.146397    0.869020
+     5  O     s    -2.192746    0.000000    0.000000   -2.869020
+     6  O     s     2.147472    2.147472    2.147472   -2.869020
+--------------------------------------------------------------------------------
+
+
+  Final derivatives for region 1 :
+
+--------------------------------------------------------------------------------
+   No.  Atomic          x             y             z            Radius
+        Label       (eV/Angs)     (eV/Angs)     (eV/Angs)       (eV/Angs)
+--------------------------------------------------------------------------------
+     1  Li    c       0.000000      0.000000      0.000000      0.000000
+     2  O     c      -0.000725      0.000000      0.000000      0.000000
+     3  Mg    c       0.001475      0.000000      0.000000      0.000000
+     4  O     c       0.001316      0.000000      0.000000      0.000000
+     5  O     s       0.002031      0.000000      0.000000      0.000000
+     6  O     s      -0.003536      0.000000      0.000000      0.000000
+--------------------------------------------------------------------------------
+
+
+  Time to end of optimisation  =        0.0543 seconds
+
+
+  Peak dynamic memory used =       1.15 MB 
+
+
+  Timing analysis for GULP :
+
+--------------------------------------------------------------------------------
+  Task / Subroutine                                          Time (Seconds)
+--------------------------------------------------------------------------------
+  Calculation of reciprocal space energy and derivatives          0.0001
+  Calculation of reciprocal space energy using symmetry           0.0002
+  Calculation of real space energy and derivatives                0.0009
+  Calculation of real space energy using symmetry                 0.0046
+  Calculation for region 1 energy and derivatives (2-b)           0.0202
+  Calculation for region 2a energy                                0.0181
+  Symmetry generation of equivalent positions                     0.0013
+--------------------------------------------------------------------------------
+  Total CPU time                                                  0.0546
+--------------------------------------------------------------------------------
+
+
+  Job Finished at 09:00.37 29th July       2013                               
+
diff --git a/tests/data/parsers/siesta/Fe/0_NORMAL_EXIT b/tests/data/parsers/siesta/Fe/0_NORMAL_EXIT
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/tests/data/parsers/siesta/Fe/BASIS_ENTHALPY b/tests/data/parsers/siesta/Fe/BASIS_ENTHALPY
new file mode 100644
index 0000000000000000000000000000000000000000..935d6925f4643ef39ad244da827801c896bc02f9
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/BASIS_ENTHALPY
@@ -0,0 +1,4 @@
+  -781.661100352839     
+ The above number is the electronic (free)energy:  -782.245184605702     
+ Plus the pressure :   1.359545368028931E-005  (   0.200000000000000       GPa)
+      times the orbital volume (in Bohr**3):    3157.60434043713     
diff --git a/tests/data/parsers/siesta/Fe/BASIS_HARRIS_ENTHALPY b/tests/data/parsers/siesta/Fe/BASIS_HARRIS_ENTHALPY
new file mode 100644
index 0000000000000000000000000000000000000000..f2108180fa3ab89a585dae1d691d8d00d381a543
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/BASIS_HARRIS_ENTHALPY
@@ -0,0 +1,5 @@
+  -781.661095142134     
+ The above number is the electronic (free) harris energy:
+  -782.245179394998     
+ Plus the pressure :   1.359545368028931E-005  (   0.200000000000000       GPa)
+      times the orbital volume (in Bohr**3):    3157.60434043713     
diff --git a/tests/data/parsers/siesta/Fe/CLOCK b/tests/data/parsers/siesta/Fe/CLOCK
new file mode 100644
index 0000000000000000000000000000000000000000..704f6057720e765ad255bd80802f3070910878d8
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/CLOCK
@@ -0,0 +1,27 @@
+Start of run             0.000
+-------------- end of scf step             8.193
+-------------- end of scf step            13.761
+-------------- end of scf step            19.324
+-------------- end of scf step            24.887
+-------------- end of scf step            30.448
+-------------- end of scf step            36.029
+-------------- end of scf step            41.605
+-------------- end of scf step            47.138
+-------------- end of scf step            52.682
+-------------- end of scf step            58.244
+-------------- end of scf step            63.812
+-------------- end of scf step            69.371
+-------------- end of scf step            74.936
+-------------- end of scf step            80.453
+-------------- end of scf step            86.019
+-------------- end of scf step            91.575
+-------------- end of scf step            97.126
+-------------- end of scf step           102.693
+-------------- end of scf step           108.203
+-------------- end of scf step           113.758
+-------------- end of scf step           119.331
+-------------- end of scf step           124.903
+-------------- end of scf step           130.455
+-------------- end of scf step           136.027
+--- end of geometry step           136.960
+End of run           137.902
diff --git a/tests/data/parsers/siesta/Fe/FORCE_STRESS b/tests/data/parsers/siesta/Fe/FORCE_STRESS
new file mode 100644
index 0000000000000000000000000000000000000000..272d3690febef52188c3a03686351d6ed61db817
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/FORCE_STRESS
@@ -0,0 +1,6 @@
+                -57.4935089892
+         -0.000072632      -0.000035391      -0.000035391
+         -0.000035391      -0.000072632       0.000035391
+         -0.000035391       0.000035391      -0.000072631
+           1
+  1    26      -0.000000000       0.000000000      -0.000000000  Fe
diff --git a/tests/data/parsers/siesta/Fe/Fe.BONDS b/tests/data/parsers/siesta/Fe/Fe.BONDS
new file mode 100644
index 0000000000000000000000000000000000000000..cb41599cf718b29a6be548ee80ec92b99fa9502c
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.BONDS
@@ -0,0 +1,15 @@
+Neighbors of:     1 Fe at:   0.0000  0.0000  0.0000
+    1 Fe                    2.4855  Ang. Really at:   2.7118 -2.7118  2.7118
+    1 Fe                    2.4855  Ang. Really at:  -2.7118  2.7118  2.7118
+    1 Fe                    2.4855  Ang. Really at:  -2.7118 -2.7118 -2.7118
+    1 Fe                    2.4855  Ang. Really at:   2.7118  2.7118 -2.7118
+    1 Fe                    2.4855  Ang. Really at:  -2.7118 -2.7118  2.7118
+    1 Fe                    2.4855  Ang. Really at:   2.7118 -2.7118 -2.7118
+    1 Fe                    2.4855  Ang. Really at:   2.7118  2.7118  2.7118
+    1 Fe                    2.4855  Ang. Really at:  -2.7118  2.7118 -2.7118
+    1 Fe                    2.8700  Ang. Really at:   5.4235  0.0000  0.0000
+    1 Fe                    2.8700  Ang. Really at:   0.0000  0.0000 -5.4235
+    1 Fe                    2.8700  Ang. Really at:   0.0000  5.4235  0.0000
+    1 Fe                    2.8700  Ang. Really at:   0.0000 -5.4235  0.0000
+    1 Fe                    2.8700  Ang. Really at:   0.0000  0.0000  5.4235
+    1 Fe                    2.8700  Ang. Really at:  -5.4235  0.0000  0.0000
diff --git a/tests/data/parsers/siesta/Fe/Fe.BONDS_FINAL b/tests/data/parsers/siesta/Fe/Fe.BONDS_FINAL
new file mode 100644
index 0000000000000000000000000000000000000000..cb41599cf718b29a6be548ee80ec92b99fa9502c
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.BONDS_FINAL
@@ -0,0 +1,15 @@
+Neighbors of:     1 Fe at:   0.0000  0.0000  0.0000
+    1 Fe                    2.4855  Ang. Really at:   2.7118 -2.7118  2.7118
+    1 Fe                    2.4855  Ang. Really at:  -2.7118  2.7118  2.7118
+    1 Fe                    2.4855  Ang. Really at:  -2.7118 -2.7118 -2.7118
+    1 Fe                    2.4855  Ang. Really at:   2.7118  2.7118 -2.7118
+    1 Fe                    2.4855  Ang. Really at:  -2.7118 -2.7118  2.7118
+    1 Fe                    2.4855  Ang. Really at:   2.7118 -2.7118 -2.7118
+    1 Fe                    2.4855  Ang. Really at:   2.7118  2.7118  2.7118
+    1 Fe                    2.4855  Ang. Really at:  -2.7118  2.7118 -2.7118
+    1 Fe                    2.8700  Ang. Really at:   5.4235  0.0000  0.0000
+    1 Fe                    2.8700  Ang. Really at:   0.0000  0.0000 -5.4235
+    1 Fe                    2.8700  Ang. Really at:   0.0000  5.4235  0.0000
+    1 Fe                    2.8700  Ang. Really at:   0.0000 -5.4235  0.0000
+    1 Fe                    2.8700  Ang. Really at:   0.0000  0.0000  5.4235
+    1 Fe                    2.8700  Ang. Really at:  -5.4235  0.0000  0.0000
diff --git a/tests/data/parsers/siesta/Fe/Fe.DM b/tests/data/parsers/siesta/Fe/Fe.DM
new file mode 100644
index 0000000000000000000000000000000000000000..1aecec5eb8dd113f8db015b09c3717d436bd1813
Binary files /dev/null and b/tests/data/parsers/siesta/Fe/Fe.DM differ
diff --git a/tests/data/parsers/siesta/Fe/Fe.EIG b/tests/data/parsers/siesta/Fe/Fe.EIG
new file mode 100644
index 0000000000000000000000000000000000000000..fa1913faa1e306a2eab4461f78eb0773d2ad1cc2
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.EIG
@@ -0,0 +1,3299 @@
+       -5.8930
+    15     2  1099
+    1   -10.80610    -9.24394    -7.00395    -6.86797    -5.65104    -5.52881     1.72815    18.88234    22.38273    22.86284
+         31.42344    46.20575    50.45780    67.32764    84.65538    -9.39988    -7.26668    -5.23866    -4.20411    -3.82893
+         -3.13977     3.14409    19.44660    22.86224    23.75611    32.56245    47.34423    51.55805    68.28391    86.46496
+    2   -10.70643    -9.18150    -7.36545    -6.98548    -6.46030    -4.99807     3.00934    16.22948    20.00383    28.12197
+         33.65285    45.55080    50.13577    64.44039    80.20695    -9.41609    -7.20467    -5.95031    -4.24961    -3.76580
+         -2.94113     4.22953    16.86089    20.63950    28.88384    34.78919    46.67855    51.19878    65.42093    81.85399
+    3   -10.41362    -9.10935    -8.24220    -7.08832    -6.66494    -4.60495     5.08675    11.99033    19.31754    32.75891
+         37.73008    43.68314    50.16421    59.33235    79.67091    -9.30983    -7.15021    -6.65014    -4.35668    -3.79886
+         -2.56380     6.09953    12.67424    19.99329    33.63673    38.76708    44.79726    51.18135    60.38560    81.07943
+    4   -10.17250    -9.15791    -8.61840    -7.15305    -6.70409    -4.47464     7.19745     9.13606    19.09015    35.56421
+         38.37641    43.83400    50.20844    56.00178    79.28264    -9.22967    -7.21348    -6.84059    -4.42142    -3.81948
+         -2.41713     8.12932     9.84014    19.78461    36.59987    39.19791    44.99545    51.16861    57.13440    80.61066
+    5   -10.41337    -9.10855    -8.24258    -7.08954    -6.66470    -4.60509     5.08481    11.99209    19.31769    32.75274
+         37.73001    43.68295    50.16694    59.34256    79.66917    -9.30865    -7.14583    -6.65185    -4.36116    -3.79740
+         -2.56703     6.09873    12.67623    19.99357    33.63340    38.76557    44.79859    51.18341    60.39311    81.07746
+    6   -10.70613    -9.18036    -7.36572    -6.98697    -6.46060    -4.99837     3.00730    16.23118    20.00346    28.11529
+         33.65270    45.55131    50.13747    64.45669    80.20585    -9.41426    -7.19880    -5.95066    -4.25653    -3.76371
+         -2.94839     4.22981    16.86282    20.63938    28.87960    34.79031    46.67928    51.19894    65.43418    81.85279
+    7   -10.80579    -9.24271    -7.00536    -6.86794    -5.65382    -5.52740     1.72602    18.88551    22.38269    22.85458
+         31.42363    46.20621    50.45813    67.34435    84.65889    -9.39774    -7.26041    -5.23638    -4.21123    -3.82883
+         -3.14982     3.14524    19.44935    22.85999    23.75284    32.56495    47.34490    51.55644    68.29747    86.46891
+    8   -10.68251    -9.23303    -7.14962    -7.00523    -6.15785    -4.24886     1.31799    15.77331    19.49271    27.48310
+         33.18417    45.61473    50.85438    67.34702    96.01191    -9.21452    -7.26214    -5.53306    -4.23273    -3.68698
+         -2.60284     2.79659    16.39658    20.12051    28.24886    34.32756    46.75027    51.90911    68.30074    97.60143
+    9   -10.35456    -9.17783    -7.86245    -7.02202    -6.44780    -3.18998     1.99324    11.07389    18.37082    31.78497
+         37.42933    44.05708    50.80551    64.54619    96.68240    -8.87464    -7.23222    -6.30775    -4.26731    -3.72037
+         -1.61798     3.30456    11.74956    19.05247    32.64303    38.51024    45.18296    51.81942    65.50450    97.92935
+   10    -9.91672    -9.19375    -8.49456    -7.01624    -6.61208    -2.72220     3.85484     7.26063    17.82134    35.59672
+         39.72254    43.22269    51.76200    59.51982    91.30634    -8.48250    -7.31668    -6.83925    -4.28270    -3.81252
+         -1.04662     4.91618     8.02424    18.53993    36.58929    40.65917    44.33767    52.74134    60.51998    92.42635
+   11    -9.91694    -9.19412    -8.49424    -7.01569    -6.61216    -2.72231     3.85734     7.25830    17.82129    35.60052
+         39.72075    43.22459    51.76305    59.51073    91.30782    -8.48379    -7.31836    -6.83784    -4.28028    -3.81349
+         -1.04521     4.91838     8.02124    18.53974    36.59093    40.66022    44.33798    52.74108    60.51358    92.42777
+   12   -10.35490    -9.17878    -7.86189    -7.02086    -6.44768    -3.19010     1.99595    11.07169    18.37072    31.79087
+         37.43085    44.05682    50.80405    64.53046    96.68399    -8.87684    -7.23723    -6.30497    -4.26181    -3.72224
+         -1.61291     3.30505    11.74651    19.05200    32.64645    38.51204    45.18205    51.81846    65.49213    97.93087
+   13   -10.68284    -9.23421    -7.14930    -7.00387    -6.15727    -4.24859     1.32036    15.77167    19.49303    27.48962
+         33.18423    45.61432    50.85330    67.33020    96.00922    -9.21682    -7.26818    -5.53235    -4.22608    -3.68927
+         -2.59323     2.79554    16.39435    20.12035    28.25323    34.32621    46.74957    51.90977    68.28714    97.59839
+   14   -10.70643    -9.18150    -7.36545    -6.98548    -6.46030    -4.99807     3.00934    16.22948    20.00383    28.12196
+         33.65285    45.55080    50.13577    64.44039    80.20695    -9.41609    -7.20467    -5.95031    -4.24961    -3.76580
+         -2.94113     4.22953    16.86089    20.63950    28.88384    34.78919    46.67855    51.19878    65.42093    81.85399
+   15   -10.91483    -9.13478    -7.25905    -6.89776    -6.79528    -5.99456     4.55183    19.66209    23.49057    24.10739
+         32.52392    46.44136    48.63692    61.68326    62.90426    -9.87486    -7.13634    -6.04470    -4.25290    -3.86948
+         -3.53594     5.63683    20.23430    24.37344    24.61157    33.66044    47.58101    49.78543    63.52084    63.84950
+   16   -10.96671    -9.03224    -8.05199    -7.08412    -6.82054    -5.93091     6.70830    17.54715    21.51425    29.98147
+         34.82808    45.15979    48.59483    55.01282    61.10066   -10.20532    -7.02394    -6.46611    -4.35200    -3.86748
+         -3.60304     7.64936    18.19403    22.17178    30.74822    35.94906    46.25639    49.74782    56.62145    62.21599
+   17   -10.91962    -8.95882    -8.63533    -7.23768    -6.79866    -5.78770     9.37561    13.75842    21.22422    34.18387
+         37.59299    43.65905    49.11227    51.96265    60.63591   -10.37227    -6.94222    -6.74397    -4.48770    -3.88609
+         -3.48858    10.21422    14.43716    21.89397    35.12772    38.55098    44.81108    50.11961    53.47737    61.85594
+   18   -10.91953    -8.95819    -8.63557    -7.23829    -6.79853    -5.78799     9.37457    13.75940    21.22435    34.17859
+         37.59507    43.65841    49.11453    51.96489    60.63736   -10.37203    -6.93852    -6.74529    -4.48997    -3.88556
+         -3.49063    10.21410    14.43778    21.89410    35.12495    38.55080    44.81208    50.12107    53.47917    61.85639
+   19   -10.96649    -9.03111    -8.05195    -7.08575    -6.82016    -5.93193     6.70699    17.54868    21.51359    29.97460
+         34.82856    45.16059    48.59565    55.01895    61.10625   -10.20462    -7.01803    -6.46517    -4.35804    -3.86558
+         -3.60981     7.64981    18.19530    22.17138    30.74390    35.94962    46.25755    49.74770    56.62786    62.21846
+   20   -10.91455    -9.13353    -7.25888    -6.89774    -6.79588    -5.99714     4.55043    19.66576    23.48200    24.10716
+         32.52403    46.44170    48.63674    61.68528    62.91911    -9.87374    -7.12997    -6.04082    -4.26015    -3.86935
+         -3.54557     5.63795    20.23721    24.36982    24.60917    33.66219    47.58144    49.78388    63.52313    63.86144
+   21   -10.70612    -9.18025    -7.36564    -6.98677    -6.45969    -5.00061     3.00788    16.23088    20.00333    28.11554
+         33.65311    45.55125    50.13613    64.45332    80.21353    -9.41457    -7.19827    -5.94811    -4.25612    -3.76368
+         -2.95363     4.23117    16.86297    20.63991    28.87897    34.79025    46.67935    51.19765    65.43095    81.86110
+   22   -10.35454    -9.17768    -7.86246    -7.02189    -6.44758    -3.19174     1.99423    11.07381    18.37072    31.78524
+         37.42927    44.05708    50.80405    64.54554    96.68779    -8.87495    -7.23141    -6.30659    -4.26715    -3.72028
+         -1.62265     3.30670    11.74978    19.05273    32.64283    38.51008    45.18279    51.81809    65.50408    97.93505
+   23    -9.91161    -9.16321    -8.43287    -6.95583    -6.55448    -1.26359     1.67736     6.80336    17.41119    35.35972
+         41.17031    42.10228    52.07517    62.51298    91.40386    -8.30258    -7.27354    -6.80811    -4.20814    -3.80885
+          0.06315     2.97048     7.57519    18.13920    36.33299    42.14460    43.21830    53.06657    63.46301    92.44272
+   24    -9.61061    -9.15051    -8.78878    -6.85811    -6.66824    -0.39331     2.47415     4.26821    17.10526    38.08366
+         39.87222    42.46018    55.52762    59.09234    86.11554    -7.91904    -7.37754    -7.08616    -4.12031    -3.91197
+          0.94712     3.60765     5.13714    17.85004    39.16492    40.88814    43.43166    56.47850    60.05994    87.12008
+   25    -9.91194    -9.16401    -8.43217    -6.95523    -6.55450    -1.26318     1.68006     6.80061    17.41117    35.36360
+         41.17147    42.10208    52.07936    62.49769    91.40391    -8.30448    -7.27805    -6.80450    -4.20447    -3.81052
+          0.06925     2.97018     7.57116    18.13874    36.33501    42.14806    43.21737    53.06842    63.45119    92.44258
+   26   -10.35490    -9.17878    -7.86189    -7.02086    -6.44768    -3.19010     1.99595    11.07169    18.37072    31.79087
+         37.43085    44.05682    50.80405    64.53046    96.68399    -8.87684    -7.23723    -6.30497    -4.26181    -3.72224
+         -1.61291     3.30505    11.74651    19.05200    32.64644    38.51204    45.18205    51.81846    65.49213    97.93087
+   27   -10.41362    -9.10935    -8.24220    -7.08832    -6.66494    -4.60495     5.08675    11.99033    19.31754    32.75891
+         37.73008    43.68314    50.16421    59.33235    79.67091    -9.30983    -7.15021    -6.65014    -4.35668    -3.79886
+         -2.56380     6.09953    12.67424    19.99329    33.63673    38.76708    44.79726    51.18135    60.38560    81.07943
+   28   -10.96671    -9.03224    -8.05199    -7.08412    -6.82054    -5.93091     6.70830    17.54715    21.51425    29.98147
+         34.82808    45.15979    48.59483    55.01282    61.10066   -10.20532    -7.02394    -6.46611    -4.35200    -3.86748
+         -3.60304     7.64936    18.19403    22.17178    30.74822    35.94906    46.25639    49.74782    56.62145    62.21599
+   29   -11.47773    -8.93745    -8.14408    -7.11051    -6.94417    -6.56247     8.85189    21.37672    24.74236    27.50839
+         34.09801    43.78089    46.55139    48.46788    57.44077   -10.98385    -6.90023    -6.40252    -4.34777    -4.18457
+         -3.93193     9.70573    21.96302    25.60765    28.06625    35.23615    45.80601    47.66444    49.52968    58.36955
+   30   -11.83234    -8.81139    -8.46919    -7.23769    -6.91146    -6.68615    11.62325    19.64400    23.90345    32.67101
+         35.57303    41.61181    45.52183    48.43641    55.08942   -11.49252    -6.75576    -6.48939    -4.45774    -4.37858
+         -3.90621    12.39900    20.30268    24.59024    33.48847    36.74817    43.53106    46.66447    49.39862    56.01821
+   31   -11.95764    -8.70554    -8.65630    -7.32147    -6.89042    -6.67258    14.08854    16.76496    23.91850    34.70238
+         36.66874    41.47347    45.43240    48.83075    53.79617   -11.66663    -6.61909    -6.61521    -4.52495    -4.42380
+         -3.87056    14.84210    17.42091    24.59585    35.69454    37.93166    43.03334    46.69382    49.76575    54.73281
+   32   -11.83224    -8.81024    -8.46912    -7.23873    -6.91127    -6.68723    11.62252    19.64516    23.90240    32.66428
+         35.57519    41.61048    45.52297    48.43916    55.09608   -11.49237    -6.74984    -6.48886    -4.46093    -4.38384
+         -3.90640    12.39989    20.30309    24.58958    33.48443    36.74862    43.52790    46.66729    49.40207    56.02231
+   33   -11.47755    -8.93615    -8.14298    -7.11207    -6.94415    -6.56474     8.85101    21.38128    24.73320    27.50786
+         34.09833    43.77727    46.55146    48.47263    57.45283   -10.98359    -6.89365    -6.39773    -4.35453    -4.19334
+         -3.93198     9.70699    21.96626    25.60336    28.06364    35.23645    45.80055    47.66432    49.53675    58.37877
+   34   -10.96649    -9.03089    -8.05110    -7.08537    -6.82016    -5.93431     6.70735    17.54839    21.51331    29.97518
+         34.82870    45.16028    48.59405    55.01046    61.12002   -10.20501    -7.01700    -6.46128    -4.35767    -3.86643
+         -3.61609     7.65099    18.19578    22.17241    30.74259    35.94896    46.25746    49.74610    56.61881    62.23374
+   35   -10.41336    -9.10809    -8.24222    -7.08928    -6.66456    -4.60815     5.08580    11.99199    19.31735    32.75348
+         37.72914    43.68338    50.16234    59.34242    79.68079    -9.30947    -7.14317    -6.64872    -4.36109    -3.79790
+         -2.57586     6.10143    12.67687    19.99424    33.63264    38.76458    44.79836    51.17959    60.39337    81.08944
+   36    -9.91667    -9.19307    -8.49484    -7.01618    -6.61201    -2.72510     3.85636     7.26081    17.82120    35.59722
+         39.71956    43.22477    51.75561    59.52451    91.31545    -8.48344    -7.31229    -6.83944    -4.28327    -3.81240
+         -1.05515     4.92043     8.02488    18.54047    36.58840    40.65925    44.33622    52.73658    60.52452    92.43540
+   37    -9.61051    -9.14965    -8.78954    -6.85822    -6.66822    -0.39540     2.47434     4.26975    17.10524    38.08324
+         39.86995    42.46178    55.51503    59.10651    86.11862    -7.91930    -7.37245    -7.08956    -4.12187    -3.91094
+          0.93984     3.61214     5.13862    17.85032    39.16329    40.88983    43.42976    56.46949    60.07116    87.12301
+   38    -9.61061    -9.15051    -8.78878    -6.85811    -6.66824    -0.39331     2.47415     4.26821    17.10526    38.08366
+         39.87222    42.46018    55.52762    59.09234    86.11554    -7.91904    -7.37754    -7.08616    -4.12031    -3.91197
+          0.94712     3.60765     5.13714    17.85004    39.16492    40.88814    43.43166    56.47850    60.05994    87.12008
+   39    -9.91694    -9.19412    -8.49424    -7.01569    -6.61216    -2.72231     3.85734     7.25830    17.82129    35.60052
+         39.72075    43.22459    51.76305    59.51073    91.30782    -8.48379    -7.31836    -6.83784    -4.28028    -3.81349
+         -1.04521     4.91838     8.02124    18.53974    36.59092    40.66022    44.33798    52.74108    60.51358    92.42777
+   40   -10.17250    -9.15791    -8.61840    -7.15305    -6.70409    -4.47464     7.19745     9.13606    19.09015    35.56421
+         38.37641    43.83400    50.20844    56.00178    79.28264    -9.22967    -7.21348    -6.84059    -4.42142    -3.81948
+         -2.41713     8.12932     9.84014    19.78461    36.59987    39.19791    44.99546    51.16861    57.13440    80.61066
+   41   -10.91962    -8.95882    -8.63533    -7.23768    -6.79866    -5.78770     9.37561    13.75842    21.22422    34.18387
+         37.59299    43.65906    49.11227    51.96265    60.63591   -10.37227    -6.94222    -6.74397    -4.48770    -3.88609
+         -3.48858    10.21422    14.43716    21.89397    35.12771    38.55098    44.81108    50.11961    53.47738    61.85594
+   42   -11.83234    -8.81139    -8.46919    -7.23768    -6.91146    -6.68615    11.62325    19.64400    23.90345    32.67101
+         35.57303    41.61181    45.52183    48.43641    55.08942   -11.49252    -6.75576    -6.48939    -4.45774    -4.37858
+         -3.90621    12.39900    20.30268    24.59024    33.48847    36.74817    43.53106    46.66448    49.39862    56.01821
+   43   -12.56819    -8.69247    -8.35843    -7.22034    -7.18907    -6.98983    14.46913    24.04865    26.54294    32.08885
+         34.27134    37.37156    46.44689    47.51978    53.26861   -12.32243    -6.60641    -6.29820    -4.89060    -4.39254
+         -3.99349    15.19636    24.66021    27.38924    32.75675    35.70994    39.28634    47.45916    48.42850    54.16377
+   44   -12.96294    -8.56338    -8.42191    -7.34560    -7.28343    -6.96570    17.93118    22.44601    26.76949    34.03377
+         34.69997    37.99462    45.97822    48.66737    51.67619   -12.75258    -6.45708    -6.30294    -5.08011    -4.42860
+         -3.97743    18.63658    23.12246    27.49581    35.54144    36.17526    39.14213    46.94390    49.55352    52.56045
+   45   -12.96291    -8.56230    -8.42216    -7.34590    -7.28426    -6.96570    17.93083    22.44675    26.76819    34.03531
+         34.69521    37.99571    45.97851    48.66824    51.67994   -12.75255    -6.45180    -6.30420    -5.08270    -4.43100
+         -3.97732    18.63784    23.12205    27.49497    35.54142    36.17338    39.14076    46.94425    49.55629    52.56230
+   46   -12.56809    -8.69110    -8.35746    -7.22165    -7.19101    -6.98983    14.46848    24.05459    26.53296    32.08811
+         34.27204    37.36975    46.44641    47.52302    53.27762   -12.32239    -6.59955    -6.29404    -4.89877    -4.39790
+         -3.99348    15.19782    24.66408    27.38403    32.75426    35.70963    39.28239    47.45796    48.43493    54.17040
+   47   -11.83222    -8.80992    -8.46804    -7.23863    -6.91152    -6.68927    11.62239    19.64542    23.90202    32.66519
+         35.57376    41.60996    45.52315    48.43543    55.10436   -11.49256    -6.74849    -6.48380    -4.46181    -4.38958
+         -3.90791    12.40057    20.30422    24.59098    33.48246    36.74625    43.52735    46.66734    49.39910    56.03112
+   48   -10.91952    -8.95732    -8.63478    -7.23828    -6.79870    -5.79109     9.37465    13.75987    21.22384    34.17910
+         37.59238    43.65988    49.10781    51.96241    60.65429   -10.37260    -6.93396    -6.74130    -4.49085    -3.88755
+         -3.49975    10.21605    14.43894    21.89509    35.12306    38.54778    44.81267    50.11613    53.47654    61.87325
+   49   -10.17245    -9.15678    -8.61833    -7.15327    -6.70403    -4.47803     7.19708     9.13754    19.08985    35.56301
+         38.37397    43.83572    50.19872    56.01135    79.29454    -9.23051    -7.20694    -6.83924    -4.42319    -3.81977
+         -2.42799     8.13228     9.84159    19.78551    36.59712    39.19678    44.99461    51.16221    57.14225    80.62251
+   50    -9.91667    -9.19307    -8.49484    -7.01618    -6.61201    -2.72510     3.85636     7.26081    17.82120    35.59722
+         39.71956    43.22477    51.75561    59.52451    91.31545    -8.48344    -7.31229    -6.83944    -4.28327    -3.81240
+         -1.05515     4.92043     8.02488    18.54047    36.58840    40.65926    44.33622    52.73658    60.52452    92.43540
+   51    -9.91161    -9.16321    -8.43287    -6.95583    -6.55448    -1.26359     1.67736     6.80336    17.41119    35.35972
+         41.17031    42.10228    52.07517    62.51298    91.40386    -8.30258    -7.27354    -6.80811    -4.20813    -3.80885
+          0.06315     2.97048     7.57519    18.13920    36.33299    42.14459    43.21830    53.06657    63.46301    92.44272
+   52    -9.91672    -9.19375    -8.49456    -7.01624    -6.61208    -2.72220     3.85484     7.26063    17.82134    35.59671
+         39.72254    43.22269    51.76200    59.51982    91.30634    -8.48250    -7.31668    -6.83925    -4.28270    -3.81252
+         -1.04662     4.91618     8.02424    18.53993    36.58928    40.65917    44.33768    52.74134    60.51998    92.42635
+   53   -10.41337    -9.10855    -8.24258    -7.08954    -6.66471    -4.60509     5.08481    11.99209    19.31769    32.75274
+         37.73001    43.68295    50.16694    59.34256    79.66917    -9.30865    -7.14583    -6.65185    -4.36116    -3.79741
+         -2.56703     6.09873    12.67623    19.99357    33.63340    38.76557    44.79860    51.18341    60.39311    81.07746
+   54   -10.91953    -8.95819    -8.63557    -7.23829    -6.79853    -5.78799     9.37457    13.75940    21.22435    34.17859
+         37.59506    43.65841    49.11453    51.96489    60.63736   -10.37203    -6.93852    -6.74529    -4.48996    -3.88556
+         -3.49063    10.21410    14.43778    21.89410    35.12495    38.55080    44.81208    50.12107    53.47917    61.85639
+   55   -11.95764    -8.70554    -8.65630    -7.32147    -6.89042    -6.67258    14.08854    16.76496    23.91850    34.70238
+         36.66874    41.47347    45.43241    48.83075    53.79617   -11.66663    -6.61909    -6.61521    -4.52495    -4.42380
+         -3.87056    14.84210    17.42091    24.59585    35.69454    37.93166    43.03334    46.69382    49.76575    54.73281
+   56   -12.96294    -8.56338    -8.42191    -7.34560    -7.28343    -6.96570    17.93118    22.44601    26.76949    34.03377
+         34.69997    37.99462    45.97822    48.66736    51.67619   -12.75258    -6.45708    -6.30294    -5.08011    -4.42860
+         -3.97743    18.63658    23.12246    27.49581    35.54144    36.17526    39.14213    46.94391    49.55352    52.56045
+   57   -13.62629    -8.45473    -8.27357    -7.73104    -7.21367    -7.02312    21.67042    27.25905    28.61348    32.41889
+         36.03859    36.05072    47.14165    48.50510    50.99956   -13.44150    -6.32074    -6.12547    -5.49387    -4.30923
+         -4.03889    22.37599    27.92944    29.44543    34.62213    36.92539    37.18704    47.94926    49.35178    51.81967
+   58   -13.85415    -8.36167    -8.30879    -7.82745    -7.20772    -7.01585    25.15562    25.92575    29.26856    32.14739
+         35.42973    37.83604    47.43821    49.47132    50.23386   -13.67532    -6.20974    -6.15364    -5.60649    -4.28434
+         -4.03498    25.89657    26.64001    30.05053    34.44989    36.43586    38.81703    48.21069    50.24878    51.04396
+   59   -13.62626    -8.45329    -8.27298    -7.73273    -7.21446    -7.02312    21.66970    27.26713    28.60257    32.41849
+         36.03917    36.05027    47.14020    48.50790    51.00504   -13.44150    -6.31358    -6.12323    -5.50152    -4.31217
+         -4.03888    22.37757    27.93447    29.43920    34.62196    36.92402    37.18368    47.94607    49.35800    51.82361
+   60   -12.96288    -8.56197    -8.42071    -7.34775    -7.28443    -6.96605    17.92946    22.44831    26.76787    34.03336
+         34.69548    37.99556    45.97870    48.66505    51.68801   -12.75262    -6.45051    -6.29718    -5.09030    -4.43170
+         -3.97873    18.63761    23.12426    27.49660    35.53834    36.17118    39.13925    46.94506    49.55309    52.57102
+   61   -11.95758    -8.70400    -8.65563    -7.32184    -6.89073    -6.67540    14.08659    16.76728    23.91808    34.70021
+         36.66659    41.47276    45.43406    48.82380    53.81258   -11.66683    -6.61394    -6.60945    -4.52697    -4.43348
+         -3.87285    14.84295    17.42294    24.59720    35.69079    37.92714    43.03223    46.69496    49.76092    54.74860
+   62   -10.91952    -8.95732    -8.63478    -7.23828    -6.79870    -5.79109     9.37465    13.75987    21.22384    34.17910
+         37.59238    43.65988    49.10781    51.96241    60.65428   -10.37260    -6.93396    -6.74130    -4.49085    -3.88755
+         -3.49975    10.21605    14.43894    21.89509    35.12306    38.54778    44.81267    50.11613    53.47654    61.87325
+   63   -10.41336    -9.10809    -8.24222    -7.08927    -6.66456    -4.60815     5.08580    11.99199    19.31735    32.75348
+         37.72914    43.68339    50.16234    59.34242    79.68079    -9.30947    -7.14317    -6.64872    -4.36109    -3.79790
+         -2.57586     6.10143    12.67687    19.99424    33.63264    38.76458    44.79836    51.17959    60.39337    81.08944
+   64   -10.35454    -9.17768    -7.86246    -7.02189    -6.44758    -3.19174     1.99423    11.07381    18.37072    31.78524
+         37.42926    44.05708    50.80405    64.54554    96.68779    -8.87495    -7.23141    -6.30659    -4.26715    -3.72028
+         -1.62265     3.30670    11.74978    19.05273    32.64283    38.51008    45.18280    51.81809    65.50408    97.93505
+   65   -10.35456    -9.17783    -7.86245    -7.02201    -6.44780    -3.18998     1.99324    11.07389    18.37082    31.78496
+         37.42933    44.05708    50.80551    64.54619    96.68240    -8.87463    -7.23222    -6.30775    -4.26731    -3.72037
+         -1.61798     3.30456    11.74956    19.05247    32.64303    38.51024    45.18296    51.81942    65.50450    97.92935
+   66   -10.70613    -9.18036    -7.36572    -6.98697    -6.46060    -4.99837     3.00730    16.23118    20.00346    28.11529
+         33.65269    45.55132    50.13747    64.45669    80.20585    -9.41426    -7.19880    -5.95066    -4.25652    -3.76371
+         -2.94839     4.22981    16.86282    20.63938    28.87960    34.79031    46.67928    51.19894    65.43418    81.85279
+   67   -10.96649    -9.03111    -8.05195    -7.08575    -6.82016    -5.93193     6.70699    17.54868    21.51359    29.97460
+         34.82856    45.16059    48.59566    55.01895    61.10625   -10.20462    -7.01803    -6.46517    -4.35804    -3.86558
+         -3.60981     7.64981    18.19530    22.17138    30.74390    35.94962    46.25755    49.74770    56.62786    62.21846
+   68   -11.83224    -8.81024    -8.46912    -7.23873    -6.91128    -6.68723    11.62252    19.64516    23.90240    32.66428
+         35.57519    41.61048    45.52298    48.43916    55.09608   -11.49237    -6.74984    -6.48886    -4.46093    -4.38384
+         -3.90640    12.39989    20.30309    24.58958    33.48443    36.74862    43.52790    46.66729    49.40207    56.02231
+   69   -12.96291    -8.56230    -8.42216    -7.34590    -7.28426    -6.96570    17.93083    22.44675    26.76819    34.03531
+         34.69521    37.99571    45.97851    48.66824    51.67994   -12.75255    -6.45180    -6.30420    -5.08270    -4.43100
+         -3.97733    18.63784    23.12205    27.49497    35.54142    36.17338    39.14076    46.94426    49.55629    52.56230
+   70   -13.85415    -8.36167    -8.30879    -7.82745    -7.20772    -7.01585    25.15562    25.92575    29.26856    32.14739
+         35.42972    37.83604    47.43821    49.47132    50.23386   -13.67532    -6.20974    -6.15364    -5.60649    -4.28434
+         -4.03498    25.89657    26.64001    30.05053    34.44989    36.43586    38.81703    48.21069    50.24878    51.04396
+   71   -14.32409    -8.28203    -8.22381    -8.09156    -7.10808    -7.04131    28.64781    29.98561    30.36621    31.37322
+         36.64247    37.50546    49.24539    49.68750    50.36456   -14.15245    -6.11325    -6.04739    -5.89151    -4.15055
+         -4.06442    29.43081    30.75532    31.19109    33.69979    37.68253    38.53149    49.91272    50.40622    51.07276
+   72   -14.32408    -8.28053    -8.22368    -8.09310    -7.10829    -7.04131    28.64749    29.99633    30.35451    31.37261
+         36.64324    37.50538    49.24316    49.69009    50.36634   -14.15245    -6.10562    -6.04733    -5.89873    -4.15132
+         -4.06441    29.43203    30.76189    31.18404    33.69920    37.68121    38.53125    49.90791    50.41174    51.07404
+   73   -13.85413    -8.36115    -8.30714    -7.82948    -7.20798    -7.01609    25.14838    25.93318    29.26746    32.14657
+         35.42850    37.83677    47.43800    49.46713    50.24288   -13.67534    -6.20736    -6.14585    -5.61563    -4.28535
+         -4.03589    25.89334    26.64531    30.05139    34.44855    36.43315    38.81491    48.21049    50.24396    51.05412
+   74   -12.96288    -8.56197    -8.42071    -7.34775    -7.28443    -6.96605    17.92946    22.44831    26.76787    34.03336
+         34.69548    37.99556    45.97870    48.66505    51.68801   -12.75262    -6.45051    -6.29718    -5.09030    -4.43170
+         -3.97873    18.63761    23.12426    27.49660    35.53834    36.17118    39.13925    46.94506    49.55309    52.57102
+   75   -11.83222    -8.80992    -8.46804    -7.23863    -6.91152    -6.68927    11.62239    19.64542    23.90202    32.66519
+         35.57376    41.60996    45.52315    48.43543    55.10436   -11.49256    -6.74849    -6.48380    -4.46181    -4.38958
+         -3.90791    12.40057    20.30422    24.59098    33.48246    36.74625    43.52735    46.66734    49.39910    56.03112
+   76   -10.96649    -9.03089    -8.05110    -7.08537    -6.82016    -5.93431     6.70735    17.54839    21.51331    29.97518
+         34.82870    45.16028    48.59406    55.01046    61.12002   -10.20501    -7.01700    -6.46128    -4.35767    -3.86643
+         -3.61609     7.65099    18.19578    22.17241    30.74259    35.94896    46.25746    49.74610    56.61881    62.23374
+   77   -10.70612    -9.18025    -7.36564    -6.98676    -6.45969    -5.00061     3.00788    16.23088    20.00333    28.11554
+         33.65311    45.55125    50.13613    64.45332    80.21353    -9.41457    -7.19827    -5.94811    -4.25612    -3.76368
+         -2.95363     4.23117    16.86297    20.63991    28.87897    34.79025    46.67935    51.19765    65.43095    81.86110
+   78   -10.68251    -9.23303    -7.14962    -7.00523    -6.15785    -4.24886     1.31799    15.77331    19.49271    27.48310
+         33.18417    45.61473    50.85438    67.34702    96.01191    -9.21452    -7.26214    -5.53306    -4.23273    -3.68699
+         -2.60284     2.79659    16.39658    20.12051    28.24886    34.32756    46.75028    51.90911    68.30074    97.60143
+   79   -10.80579    -9.24271    -7.00536    -6.86795    -5.65382    -5.52740     1.72602    18.88551    22.38269    22.85458
+         31.42363    46.20622    50.45813    67.34435    84.65889    -9.39774    -7.26041    -5.23638    -4.21123    -3.82883
+         -3.14982     3.14524    19.44935    22.85999    23.75284    32.56494    47.34490    51.55644    68.29747    86.46891
+   80   -10.91455    -9.13353    -7.25887    -6.89774    -6.79588    -5.99714     4.55043    19.66576    23.48200    24.10716
+         32.52403    46.44171    48.63674    61.68528    62.91911    -9.87374    -7.12997    -6.04082    -4.26015    -3.86935
+         -3.54557     5.63795    20.23721    24.36982    24.60917    33.66219    47.58144    49.78388    63.52313    63.86144
+   81   -11.47755    -8.93615    -8.14298    -7.11207    -6.94415    -6.56474     8.85101    21.38128    24.73320    27.50786
+         34.09833    43.77727    46.55146    48.47263    57.45283   -10.98359    -6.89365    -6.39773    -4.35453    -4.19334
+         -3.93198     9.70699    21.96626    25.60336    28.06364    35.23645    45.80055    47.66432    49.53675    58.37877
+   82   -12.56809    -8.69110    -8.35746    -7.22165    -7.19101    -6.98983    14.46848    24.05459    26.53296    32.08811
+         34.27203    37.36975    46.44641    47.52302    53.27762   -12.32239    -6.59955    -6.29404    -4.89877    -4.39790
+         -3.99348    15.19782    24.66408    27.38403    32.75426    35.70963    39.28239    47.45796    48.43493    54.17040
+   83   -13.62626    -8.45329    -8.27298    -7.73273    -7.21445    -7.02312    21.66970    27.26713    28.60257    32.41849
+         36.03916    36.05027    47.14020    48.50790    51.00504   -13.44150    -6.31358    -6.12323    -5.50152    -4.31217
+         -4.03888    22.37757    27.93447    29.43920    34.62196    36.92402    37.18368    47.94607    49.35800    51.82361
+   84   -14.32408    -8.28053    -8.22368    -8.09310    -7.10829    -7.04131    28.64749    29.99633    30.35451    31.37261
+         36.64323    37.50539    49.24316    49.69009    50.36634   -14.15245    -6.10562    -6.04733    -5.89873    -4.15132
+         -4.06442    29.43203    30.76189    31.18403    33.69920    37.68121    38.53126    49.90791    50.41174    51.07403
+   85   -14.56362    -8.21960    -8.21735    -8.21735    -7.04682    -7.04682    31.05689    31.05689    31.07462    31.08761
+         37.66040    37.66040    50.38615    50.38615    50.38976   -14.39416    -6.04052    -6.02955    -6.02955    -4.07236
+         -4.07236    31.88469    31.88469    31.89573    33.42882    38.71355    38.71355    51.03195    51.03196    51.03971
+   86   -10.66325    -9.09929    -7.61923    -7.08965    -5.66715    -4.64270     1.80623    16.28266    22.95154    26.00835
+         32.19261    43.61771    50.55379    66.63165    98.76427    -9.21722    -7.11029    -5.86637    -4.37586    -3.15822
+         -3.05129     3.19234    16.91563    23.55840    26.83417    33.35064    44.73497    51.54621    67.58157   100.08464
+   87   -10.70648    -9.18156    -7.36613    -6.98561    -6.45858    -4.99883     3.00925    16.23090    20.00415    28.11946
+         33.65319    45.55072    50.13606    64.44034    80.20703    -9.41624    -7.20486    -5.95192    -4.24878    -3.76009
+         -2.94547     4.22940    16.86170    20.64028    28.88211    34.78858    46.67865    51.19888    65.42080    81.85411
+   88   -10.54214    -9.18769    -7.95876    -7.00029    -6.88903    -4.78314     4.90929    14.70155    15.50621    34.08727
+         36.90971    46.40859    49.17373    60.18801    79.87143    -9.47051    -7.23075    -6.57658    -4.18144    -3.86380
+         -2.71844     5.93488    15.39334    16.11544    34.87414    38.06164    47.55566    50.18605    61.26036    81.48463
+   89   -10.24096    -9.15683    -8.78079    -7.03074    -6.86911    -4.63368     7.38128    11.09369    14.66000    38.90513
+         40.51935    45.20608    48.30064    56.74536    82.51357    -9.43608    -7.22971    -7.05262    -4.16858    -3.87651
+         -2.54597     8.26267    11.80857    15.30343    39.81235    41.53150    46.34918    49.27676    57.90610    84.07692
+   90   -10.24079    -9.15607    -8.78152    -7.03130    -6.86894    -4.63370     7.37987    11.09441    14.66062    38.89762
+         40.52231    45.20578    48.30453    56.74918    82.51272    -9.43550    -7.22555    -7.05563    -4.17146    -3.87535
+         -2.54700     8.26159    11.80961    15.30405    39.80848    41.53174    46.35008    49.27989    57.90828    84.07604
+   91   -10.54182    -9.18666    -7.95941    -7.00184    -6.88876    -4.78314     4.90747    14.69916    15.50982    34.07971
+         36.91038    46.40886    49.17767    60.19922    79.86957    -9.46906    -7.22535    -6.57817    -4.18819    -3.86269
+         -2.72118     5.93433    15.39202    16.11865    34.86906    38.06325    47.55578    50.18907    61.26868    81.48261
+   92   -10.70613    -9.18036    -7.36572    -6.98697    -6.46060    -4.99837     3.00730    16.23118    20.00346    28.11529
+         33.65270    45.55131    50.13747    64.45669    80.20585    -9.41426    -7.19880    -5.95066    -4.25653    -3.76371
+         -2.94839     4.22981    16.86282    20.63938    28.87960    34.79031    46.67928    51.19894    65.43418    81.85279
+   93   -10.66289    -9.09802    -7.61898    -7.09107    -5.66993    -4.64153     1.80419    16.28340    22.95137    26.00225
+         32.19245    43.61831    50.55567    66.64814    98.76564    -9.21488    -7.10394    -5.86488    -4.38301    -3.16805
+         -3.05059     3.19349    16.91743    23.55656    26.83156    33.35200    44.73582    51.54702    67.59492   100.08567
+   94   -10.42605    -8.97434    -8.11415    -7.17418    -5.86612    -3.22461     1.40258    12.53945    24.04201    26.88703
+         35.30760    41.06565    50.63435    65.98045   113.69600    -8.87380    -6.97941    -6.33750    -4.51811    -3.36570
+         -1.80553     2.82803    13.19719    24.73170    27.78405    36.43093    42.17737    51.56599    66.92206   114.49693
+   95   -10.02851    -8.98771    -8.60650    -7.10506    -6.20558    -2.20901     2.26410     8.22986    24.80993    29.17801
+         37.74917    39.89823    51.57181    62.70004   101.69014    -8.42933    -7.06282    -6.76993    -4.51008    -3.64964
+         -0.73556     3.49214     8.97130    25.66407    30.10472    38.78287    40.97174    52.49436    63.63510   102.38429
+   96    -9.62586    -9.34514    -8.69848    -6.98258    -6.42244    -1.94584     4.05722     5.35498    24.74247    31.61219
+         35.65232    41.71934    54.05287    58.70285    94.73349    -8.10397    -7.40433    -6.78967    -4.42782    -3.82939
+         -0.39624     5.12849     6.16254    25.63946    32.66195    36.59403    42.72897    54.99908    59.62549    95.43780
+   97   -10.02893    -8.98786    -8.60674    -7.10459    -6.20466    -2.20945     2.26678     8.22750    24.80976    29.18256
+         37.74788    39.90138    51.57173    62.68589   101.69241    -8.43191    -7.06238    -6.77178    -4.50672    -3.64838
+         -0.73317     3.49311     8.96822    25.66400    30.10737    38.78298    40.97404    52.49185    63.62449   102.38707
+   98   -10.42645    -8.97544    -8.11413    -7.17310    -5.86459    -3.22503     1.40494    12.53767    24.04115    26.89347
+         35.30998    41.06521    50.63183    65.96404   113.69614    -8.87640    -6.98494    -6.33683    -4.51237    -3.36310
+         -1.80078     2.82711    13.19453    24.73232    27.78647    36.43322    42.17649    51.56324    66.90895   114.49783
+   99   -10.43574    -8.94268    -8.23965    -7.17128    -6.06561    -4.29439     3.27392    12.96555    24.63286    27.36078
+         35.46451    40.95425    50.60876    63.35027    95.58205    -9.07072    -6.94976    -6.47634    -4.53467    -3.53916
+         -2.44448     4.44321    13.63022    25.35078    28.25340    36.57112    42.03740    51.55916    64.29465    96.42460
+  100   -10.75593    -8.99469    -7.95529    -7.08042    -6.01544    -5.93998     4.74128    16.94374    24.60014    26.78984
+         33.13078    43.29452    50.12346    62.34007    69.64235    -9.68262    -6.98558    -6.29763    -4.43320    -3.56070
+         -3.51830     5.80701    17.58586    25.27030    27.60614    34.27637    44.36014    51.14716    63.28204    71.09013
+  101   -10.96675    -9.03227    -8.05240    -7.08388    -6.81963    -5.93151     6.70815    17.54872    21.51446    29.97833
+         34.82901    45.16004    48.59513    55.01253    61.10085   -10.20544    -7.02379    -6.46754    -4.35044    -3.86128
+         -3.60914     7.64920    18.19466    22.17283    30.74618    35.94869    46.25681    49.74757    56.62134    62.21645
+  102   -11.05619    -9.01178    -8.63462    -7.08924    -6.94288    -5.83525     9.22430    16.20340    17.63179    36.12326
+         37.81473    46.12486    46.58390    51.01355    60.05126   -10.55177    -7.01004    -6.79077    -4.25036    -3.94509
+         -3.58129    10.05317    16.90266    18.24037    36.92086    38.92805    47.25226    47.72100    52.65953    61.25829
+  103   -11.06960    -8.96842    -8.92688    -7.09832    -6.94603    -5.78805    11.54840    13.46427    17.13835    39.18517
+         39.77942    44.89027    46.97683    49.11828    59.99082   -10.67103    -6.97198    -6.95097    -4.22136    -3.97470
+         -3.54159    12.32762    14.16482    17.75788    40.18198    40.64677    46.06774    47.95522    50.89244    61.26569
+  104   -11.05602    -9.01081    -8.63499    -7.09063    -6.94246    -5.83553     9.22351    16.20035    17.63517    36.11525
+         37.81719    46.12490    46.58561    51.01884    60.05364   -10.55135    -7.00486    -6.79192    -4.25625    -3.94334
+         -3.58347    10.05342    16.90043    18.24282    36.91603    38.92949    47.25150    47.72388    52.66363    61.25887
+  105   -10.96649    -9.03111    -8.05195    -7.08575    -6.82016    -5.93193     6.70699    17.54868    21.51359    29.97460
+         34.82856    45.16059    48.59565    55.01895    61.10625   -10.20462    -7.01803    -6.46517    -4.35804    -3.86558
+         -3.60981     7.64981    18.19530    22.17138    30.74390    35.94962    46.25755    49.74770    56.62786    62.21846
+  106   -10.75562    -8.99339    -7.95481    -7.08185    -6.01801    -5.93946     4.73999    16.94456    24.59973    26.78382
+         33.13064    43.29564    50.12500    62.35464    69.64156    -9.68141    -6.97915    -6.29425    -4.44050    -3.56973
+         -3.51807     5.80815    17.58753    25.26817    27.60343    34.27701    44.36191    51.14786    63.29358    71.08896
+  107   -10.43536    -8.94144    -8.23968    -7.17234    -6.06639    -4.29575     3.27258    12.96709    24.63388    27.35411
+         35.46255    40.95487    50.61029    63.36531    95.58345    -9.06902    -6.94310    -6.47616    -4.54030    -3.53996
+         -2.45253     4.44472    13.63268    25.35061    28.25049    36.56869    42.03854    51.56096    64.30661    96.42535
+  108   -10.02848    -8.98705    -8.60717    -7.10487    -6.20546    -2.21058     2.26517     8.22979    24.80972    29.17827
+         37.74700    39.89991    51.57023    62.70161   101.69341    -8.42963    -7.05810    -6.77366    -4.50963    -3.64934
+         -0.73988     3.49454     8.97150    25.66436    30.10446    38.78354    40.97017    52.49310    63.63692   102.38752
+  109    -9.55844    -9.08753    -9.04348    -6.82931    -6.45010    -0.00889     1.83873     4.58785    24.45554    32.36134
+         35.63460    41.62347    55.20458    60.36923    92.33081    -7.80121    -7.23316    -7.17436    -4.26117    -3.88414
+          1.24595     3.05038     5.46098    25.37025    33.39124    36.71723    42.53651    56.14121    61.30517    93.05784
+  110    -9.55896    -9.08765    -9.04307    -6.82964    -6.44944    -0.00891     1.84124     4.58546    24.45569    32.36355
+         35.63412    41.62417    55.21303    60.35472    92.33116    -7.80402    -7.23007    -7.17600    -4.26070    -3.88342
+          1.25025     3.04966     5.45796    25.37009    33.39345    36.71581    42.53862    56.14569    61.29426    93.05844
+  111   -10.02893    -8.98786    -8.60674    -7.10459    -6.20466    -2.20945     2.26678     8.22750    24.80976    29.18256
+         37.74788    39.90138    51.57173    62.68589   101.69242    -8.43191    -7.06238    -6.77178    -4.50672    -3.64838
+         -0.73317     3.49311     8.96822    25.66400    30.10737    38.78298    40.97404    52.49185    63.62449   102.38707
+  112   -10.08305    -9.13760    -8.48762    -7.21763    -6.42562    -4.05349     5.56751     9.12460    25.59479    29.63092
+         35.89376    41.41653    51.43115    58.33292    88.78729    -8.88680    -7.15486    -6.58342    -4.65292    -3.78921
+         -2.11398     6.54656     9.85796    26.43666    30.60649    36.78013    42.54950    52.37977    59.27226    89.48003
+  113   -10.66153    -8.85832    -8.45824    -7.27154    -6.49628    -5.65823     7.11508    14.18393    26.28673    28.59749
+         35.27199    41.45762    50.51416    57.98741    69.01953    -9.83387    -6.83015    -6.55520    -4.69851    -3.86896
+         -3.28836     8.03867    14.85988    27.06755    29.50617    36.32577    42.52821    51.50250    58.95502    70.03717
+  114   -11.29145    -8.80568    -8.35453    -7.24625    -6.64725    -6.58977     9.10396    18.36566    27.44167    28.25410
+         34.14194    43.32520    49.07983    50.61180    57.05315   -10.76915    -6.75968    -6.44121    -4.61275    -4.21619
+         -3.73008     9.95421    19.01939    28.22691    29.05569    35.28936    44.34670    50.43794    51.92584    57.98383
+  115   -11.83237    -8.81136    -8.46954    -7.23714    -6.91093    -6.68681    11.62288    19.64607    23.90332    32.66653
+         35.57460    41.61461    45.52217    48.43431    55.08946   -11.49257    -6.75570    -6.49070    -4.45464    -4.37871
+         -3.90762    12.39867    20.30325    24.59148    33.48618    36.74788    43.53306    46.66509    49.39628    56.01867
+  116   -12.13844    -8.77822    -8.68828    -7.14529    -7.01812    -6.67678    14.67665    18.51025    20.43511    37.48910
+         37.78870    39.48330    46.16702    47.18718    53.50299   -11.87675    -6.71856    -6.63079    -4.39892    -4.26285
+         -4.05216    15.40069    19.21716    21.03854    38.64924    38.71988    41.54873    47.19466    48.13197    54.44630
+  117   -12.13839    -8.77727    -8.68876    -7.14632    -7.01759    -6.67702    14.67726    18.50633    20.43798    37.49438
+         37.78118    39.48188    46.16604    47.19165    53.50514   -11.87667    -6.71339    -6.63347    -4.39988    -4.26727
+         -4.05012    15.40220    19.21388    21.04022    38.64580    38.72279    41.54565    47.19191    48.13952    54.44677
+  118   -11.83224    -8.81024    -8.46912    -7.23873    -6.91127    -6.68723    11.62252    19.64516    23.90240    32.66428
+         35.57519    41.61048    45.52297    48.43916    55.09608   -11.49237    -6.74984    -6.48886    -4.46093    -4.38384
+         -3.90640    12.39989    20.30309    24.58958    33.48443    36.74862    43.52790    46.66729    49.40207    56.02231
+  119   -11.29126    -8.80435    -8.35363    -7.24777    -6.64706    -6.59201     9.10318    18.36651    27.44100    28.24844
+         34.14227    43.32646    49.07796    50.61306    57.06482   -10.76887    -6.75309    -6.43647    -4.61925    -4.22489
+         -3.73016     9.95552    19.02079    28.22441    29.05294    35.28892    44.34962    50.43564    51.92662    57.99275
+  120   -10.66129    -8.85695    -8.45791    -7.27255    -6.49619    -5.66082     7.11416    14.18531    26.28787    28.59061
+         35.27107    41.45862    50.51343    57.99897    69.02215    -9.83354    -6.82216    -6.55336    -4.70323    -3.87215
+         -3.29531     8.04018    14.86184    27.06806    29.50216    36.32339    42.53018    51.50228    58.96409    70.03875
+  121   -10.08276    -9.13676    -8.48775    -7.21786    -6.42583    -4.05590     5.56655     9.12654    25.59450    29.62733
+         35.89286    41.41614    51.42546    58.34846    88.79101    -8.88641    -7.14930    -6.58339    -4.65523    -3.78959
+         -2.12254     6.54820     9.86045    26.43744    30.60315    36.78049    42.54650    52.37711    59.28502    89.48305
+  122    -9.62566    -9.34445    -8.69908    -6.98224    -6.42282    -1.94797     4.05702     5.35661    24.74209    31.61126
+         35.65052    41.71976    54.04108    58.71916    94.73755    -8.10404    -7.39967    -6.79210    -4.42789    -3.82975
+         -0.40320     5.13184     6.16378    25.63991    32.65971    36.59534    42.72599    54.99084    59.63948    95.44143
+  123    -9.55844    -9.08753    -9.04348    -6.82931    -6.45010    -0.00889     1.83873     4.58785    24.45554    32.36134
+         35.63461    41.62347    55.20458    60.36923    92.33081    -7.80121    -7.23317    -7.17436    -4.26117    -3.88414
+          1.24595     3.05038     5.46098    25.37025    33.39123    36.71723    42.53651    56.14121    61.30517    93.05784
+  124    -9.62586    -9.34514    -8.69848    -6.98258    -6.42244    -1.94584     4.05722     5.35498    24.74247    31.61218
+         35.65233    41.71935    54.05287    58.70285    94.73349    -8.10397    -7.40432    -6.78967    -4.42782    -3.82939
+         -0.39624     5.12849     6.16254    25.63946    32.66195    36.59403    42.72897    54.99908    59.62549    95.43780
+  125   -10.08281    -9.13768    -8.48708    -7.21830    -6.42599    -4.05341     5.56566     9.12650    25.59514    29.62697
+         35.89585    41.41404    51.43209    58.33999    88.78578    -8.88590    -7.15479    -6.58147    -4.65587    -3.78955
+         -2.11495     6.54547     9.85992    26.43666    30.60435    36.78062    42.54841    52.38213    59.27669    89.47820
+  126   -10.57687    -9.00397    -8.43928    -7.42823    -6.63038    -5.55365     9.38834    11.42111    27.14761    29.65167
+         34.83449    42.45328    50.75262    55.14672    69.33461    -9.88148    -6.90116    -6.48173    -4.86057    -3.95682
+         -3.19873    10.26275    12.10563    27.96425    30.66571    35.71740    43.61124    51.70969    56.12940    70.20473
+  127   -11.46367    -8.67483    -8.46805    -7.51457    -6.83561    -6.50780    12.00370    16.12585    28.54954    29.76560
+         34.55801    43.02380    50.34838    51.14735    54.91645   -11.06511    -6.55487    -6.41895    -4.89421    -4.45141
+         -3.65080    12.78835    16.79885    29.41028    30.68146    35.72366    44.09874    51.31524    52.42243    55.85877
+  128   -12.35274    -8.57156    -8.36771    -7.45196    -7.22135    -6.81227    14.68513    20.62846    30.04065    30.22612
+         33.93365    41.14784    44.83658    49.56641    53.09696   -12.08970    -6.47901    -6.26049    -4.92749    -4.71225
+         -3.81527    15.41618    21.29343    30.83300    31.15037    35.43124    42.45928    45.99388    50.50721    54.00070
+  129   -12.96296    -8.56361    -8.42200    -7.34522    -7.28318    -6.96590    17.92998    22.44927    26.76897    34.03388
+         34.69430    38.00025    45.97907    48.66401    51.67657   -12.75259    -6.45889    -6.30249    -5.07946    -4.42704
+         -3.97798    18.63556    23.12344    27.49712    35.54127    36.17221    39.14545    46.94455    49.55008    52.56138
+  130   -13.17600    -8.52482    -8.52350    -7.34385    -7.11202    -7.11131    21.62134    21.62812    23.66480    34.04892
+         37.41171    37.41881    47.51734    47.52145    50.79428   -12.97913    -6.40932    -6.40218    -5.09048    -4.17453
+         -4.17187    22.34385    22.34981    24.28892    36.39866    38.37703    38.37879    48.38269    48.38944    51.68866
+  131   -12.96291    -8.56230    -8.42216    -7.34590    -7.28426    -6.96570    17.93083    22.44675    26.76819    34.03531
+         34.69521    37.99571    45.97851    48.66824    51.67994   -12.75255    -6.45180    -6.30420    -5.08270    -4.43100
+         -3.97732    18.63784    23.12205    27.49497    35.54142    36.17338    39.14076    46.94425    49.55629    52.56230
+  132   -12.35265    -8.57018    -8.36673    -7.45319    -7.22324    -6.81233    14.68459    20.62918    30.03606    30.22578
+         33.93406    41.14604    44.83755    49.56755    53.10514   -12.08966    -6.47226    -6.25629    -4.93538    -4.71709
+         -3.81568    15.41767    21.29444    30.83057    31.14790    35.43087    42.45568    45.99685    50.50880    54.00672
+  133   -11.46356    -8.67326    -8.46753    -7.51522    -6.83664    -6.50941    12.00251    16.12775    28.55071    29.76002
+         34.55650    43.02560    50.34408    51.14601    54.93078   -11.06515    -6.54601    -6.41683    -4.89761    -4.46045
+         -3.65236    12.78969    16.80055    29.41105    30.67776    35.72052    44.10121    51.31190    52.41995    55.87110
+  134   -10.57678    -9.00291    -8.43925    -7.42814    -6.63039    -5.55630     9.38742    11.42272    27.14690    29.65022
+         34.83200    42.45557    50.74326    55.16028    69.33851    -9.88172    -6.89454    -6.48107    -4.86165    -3.95984
+         -3.20535    10.26474    12.10673    27.96543    30.66279    35.71615    43.61072    51.70325    56.14121    70.20763
+  135   -10.08276    -9.13676    -8.48775    -7.21786    -6.42583    -4.05590     5.56655     9.12654    25.59450    29.62733
+         35.89286    41.41614    51.42546    58.34846    88.79101    -8.88641    -7.14930    -6.58339    -4.65523    -3.78959
+         -2.12254     6.54820     9.86045    26.43744    30.60315    36.78049    42.54650    52.37711    59.28502    89.48305
+  136   -10.02848    -8.98705    -8.60717    -7.10487    -6.20547    -2.21058     2.26517     8.22979    24.80972    29.17827
+         37.74701    39.89991    51.57023    62.70161   101.69341    -8.42963    -7.05810    -6.77366    -4.50963    -3.64934
+         -0.73988     3.49454     8.97150    25.66436    30.10445    38.78355    40.97017    52.49310    63.63692   102.38752
+  137   -10.02851    -8.98771    -8.60650    -7.10506    -6.20558    -2.20901     2.26410     8.22986    24.80993    29.17800
+         37.74917    39.89823    51.57181    62.70004   101.69014    -8.42933    -7.06282    -6.76993    -4.51007    -3.64964
+         -0.73556     3.49214     8.97130    25.66407    30.10471    38.78287    40.97174    52.49436    63.63510   102.38429
+  138   -10.43538    -8.94179    -8.23934    -7.17258    -6.06700    -4.29402     3.27196    12.96732    24.63379    27.35413
+         35.46292    40.95457    50.61157    63.36477    95.57963    -9.06875    -6.94533    -6.47540    -4.54099    -3.54125
+         -2.44740     4.44330    13.63251    25.35007    28.25078    36.56901    42.03899    51.56211    64.30585    96.42135
+  139   -10.66131    -8.85773    -8.45750    -7.27306    -6.49678    -5.65848     7.11379    14.18539    26.28819    28.59036
+         35.27285    41.45695    50.51685    57.99649    69.01763    -9.83323    -6.82642    -6.55262    -4.70418    -3.87094
+         -3.29029     8.03893    14.86134    27.06717    29.50296    36.32483    42.53013    51.50503    58.96138    70.03449
+  140   -11.46360    -8.67435    -8.46747    -7.51553    -6.83596    -6.50802    12.00292    16.12681    28.55247    29.75893
+         34.55918    43.02351    50.34988    51.14596    54.92111   -11.06501    -6.55093    -6.41806    -4.89734    -4.45423
+         -3.65104    12.78890    16.79932    29.41083    30.67827    35.72362    44.10014    51.31633    52.42076    55.86187
+  141   -12.53285    -8.39038    -8.37523    -7.60794    -7.37692    -6.76953    17.44322    19.08423    29.90248    30.99596
+         33.81438    42.32246    45.41844    50.53466    51.83333   -12.29175    -6.27105    -6.23624    -5.11402    -4.86494
+         -3.77111    18.16575    19.74465    30.89686    31.81613    35.47787    43.23770    46.70252    51.43524    52.73558
+  142   -13.39487    -8.34690    -8.24186    -7.76388    -7.44282    -6.89162    21.50974    23.69649    31.42248    31.71416
+         32.65138    39.57110    45.71960    50.09837    51.02888   -13.20238    -6.20908    -6.09302    -5.53036    -4.59004
+         -3.88667    22.20870    24.38414    32.22356    32.71964    34.80105    40.49631    46.66846    50.94189    51.86950
+  143   -13.85416    -8.36328    -8.30763    -7.82715    -7.20736    -7.01595    25.14871    25.93385    29.26926    32.14725
+         35.42686    37.83855    47.43938    49.46721    50.23463   -13.67532    -6.21782    -6.14767    -5.60499    -4.28308
+         -4.03533    25.89077    26.64470    30.05242    34.44960    36.43585    38.81799    48.21235    50.24294    51.04615
+  144   -13.85415    -8.36167    -8.30879    -7.82745    -7.20772    -7.01585    25.15562    25.92575    29.26856    32.14739
+         35.42973    37.83604    47.43821    49.47132    50.23386   -13.67532    -6.20974    -6.15364    -5.60649    -4.28434
+         -4.03498    25.89657    26.64001    30.05053    34.44989    36.43586    38.81703    48.21069    50.24878    51.04396
+  145   -13.39484    -8.34554    -8.24133    -7.76543    -7.44342    -6.89168    21.50917    23.69699    31.41987    31.71489
+         32.65079    39.57075    45.71978    50.09907    51.03290   -13.20238    -6.20249    -6.09124    -5.53723    -4.59212
+         -3.88698    22.21008    24.38471    32.22207    32.71807    34.80052    40.49450    46.66911    50.94350    51.87239
+  146   -12.53280    -8.38869    -8.37501    -7.60830    -7.37882    -6.76974    17.43980    19.08845    29.90120    30.99516
+         33.81256    42.32219    45.41988    50.52756    51.84507   -12.29178    -6.27028    -6.22790    -5.12191    -4.86683
+         -3.77181    18.16513    19.74764    30.89417    31.81754    35.47472    43.23687    46.70331    51.42942    52.74623
+  147   -11.46356    -8.67326    -8.46753    -7.51522    -6.83664    -6.50941    12.00251    16.12775    28.55072    29.76002
+         34.55650    43.02560    50.34408    51.14601    54.93078   -11.06515    -6.54601    -6.41683    -4.89761    -4.46045
+         -3.65236    12.78969    16.80055    29.41105    30.67775    35.72052    44.10121    51.31190    52.41995    55.87110
+  148   -10.66129    -8.85695    -8.45791    -7.27255    -6.49619    -5.66082     7.11416    14.18531    26.28787    28.59061
+         35.27107    41.45863    50.51343    57.99897    69.02215    -9.83354    -6.82216    -6.55336    -4.70323    -3.87215
+         -3.29531     8.04018    14.86184    27.06806    29.50216    36.32339    42.53018    51.50228    58.96409    70.03875
+  149   -10.43536    -8.94144    -8.23968    -7.17234    -6.06639    -4.29575     3.27258    12.96709    24.63388    27.35411
+         35.46255    40.95488    50.61029    63.36531    95.58345    -9.06902    -6.94310    -6.47616    -4.54030    -3.53996
+         -2.45253     4.44472    13.63268    25.35061    28.25049    36.56869    42.03855    51.56096    64.30661    96.42535
+  150   -10.42605    -8.97434    -8.11415    -7.17418    -5.86612    -3.22461     1.40258    12.53945    24.04201    26.88703
+         35.30760    41.06566    50.63435    65.98044   113.69600    -8.87380    -6.97941    -6.33750    -4.51811    -3.36570
+         -1.80554     2.82803    13.19719    24.73170    27.78405    36.43092    42.17737    51.56599    66.92206   114.49693
+  151   -10.66288    -9.09802    -7.61898    -7.09107    -5.66993    -4.64153     1.80419    16.28340    22.95137    26.00225
+         32.19245    43.61832    50.55567    66.64814    98.76564    -9.21488    -7.10394    -5.86488    -4.38301    -3.16805
+         -3.05059     3.19349    16.91743    23.55656    26.83156    33.35200    44.73583    51.54702    67.59492   100.08567
+  152   -10.75562    -8.99339    -7.95481    -7.08185    -6.01801    -5.93946     4.73999    16.94456    24.59973    26.78382
+         33.13064    43.29564    50.12500    62.35464    69.64156    -9.68141    -6.97915    -6.29425    -4.44050    -3.56973
+         -3.51807     5.80815    17.58753    25.26817    27.60343    34.27700    44.36191    51.14786    63.29358    71.08896
+  153   -11.29126    -8.80435    -8.35363    -7.24777    -6.64706    -6.59201     9.10318    18.36651    27.44100    28.24844
+         34.14227    43.32646    49.07797    50.61306    57.06482   -10.76887    -6.75309    -6.43647    -4.61925    -4.22489
+         -3.73016     9.95551    19.02079    28.22441    29.05294    35.28891    44.34963    50.43564    51.92662    57.99275
+  154   -12.35265    -8.57018    -8.36673    -7.45319    -7.22324    -6.81233    14.68459    20.62918    30.03606    30.22578
+         33.93406    41.14604    44.83755    49.56755    53.10514   -12.08966    -6.47226    -6.25629    -4.93538    -4.71709
+         -3.81568    15.41767    21.29444    30.83057    31.14790    35.43087    42.45568    45.99686    50.50880    54.00672
+  155   -13.39484    -8.34554    -8.24133    -7.76543    -7.44342    -6.89169    21.50917    23.69699    31.41987    31.71488
+         32.65079    39.57075    45.71979    50.09907    51.03290   -13.20238    -6.20249    -6.09124    -5.53723    -4.59211
+         -3.88698    22.21008    24.38471    32.22207    32.71806    34.80052    40.49450    46.66911    50.94350    51.87239
+  156   -14.08625    -8.21780    -8.21630    -8.09072    -7.25418    -6.96513    27.19775    27.20703    31.59416    31.62161
+         33.96298    38.85735    47.40824    50.40916    50.41341   -13.91129    -6.05218    -6.04480    -5.89051    -4.33255
+         -3.96998    27.93655    27.94255    32.43922    33.90089    34.99507    39.85887    48.14062    51.16149    51.16713
+  157   -14.32409    -8.28203    -8.22381    -8.09156    -7.10808    -7.04131    28.64781    29.98561    30.36621    31.37322
+         36.64247    37.50546    49.24539    49.68750    50.36456   -14.15245    -6.11325    -6.04739    -5.89151    -4.15055
+         -4.06442    29.43081    30.75532    31.19109    33.69979    37.68253    38.53149    49.91272    50.40622    51.07276
+  158   -14.08625    -8.21780    -8.21630    -8.09072    -7.25418    -6.96513    27.19775    27.20703    31.59416    31.62161
+         33.96299    38.85735    47.40824    50.40916    50.41341   -13.91129    -6.05218    -6.04480    -5.89051    -4.33255
+         -3.96998    27.93655    27.94255    32.43922    33.90089    34.99507    39.85887    48.14061    51.16149    51.16713
+  159   -13.39484    -8.34554    -8.24133    -7.76543    -7.44342    -6.89168    21.50917    23.69699    31.41987    31.71489
+         32.65079    39.57075    45.71978    50.09907    51.03290   -13.20238    -6.20249    -6.09124    -5.53723    -4.59212
+         -3.88698    22.21008    24.38471    32.22207    32.71807    34.80052    40.49450    46.66911    50.94350    51.87239
+  160   -12.35265    -8.57018    -8.36673    -7.45319    -7.22324    -6.81233    14.68459    20.62918    30.03606    30.22578
+         33.93406    41.14604    44.83755    49.56755    53.10514   -12.08966    -6.47226    -6.25629    -4.93538    -4.71709
+         -3.81568    15.41767    21.29444    30.83057    31.14790    35.43086    42.45568    45.99685    50.50880    54.00672
+  161   -11.29126    -8.80435    -8.35363    -7.24777    -6.64706    -6.59201     9.10318    18.36651    27.44100    28.24844
+         34.14227    43.32646    49.07797    50.61306    57.06482   -10.76887    -6.75309    -6.43647    -4.61925    -4.22489
+         -3.73016     9.95552    19.02079    28.22441    29.05294    35.28891    44.34962    50.43564    51.92662    57.99275
+  162   -10.75562    -8.99339    -7.95481    -7.08185    -6.01801    -5.93946     4.73999    16.94456    24.59973    26.78382
+         33.13064    43.29564    50.12500    62.35464    69.64156    -9.68141    -6.97915    -6.29425    -4.44050    -3.56973
+         -3.51807     5.80815    17.58753    25.26817    27.60343    34.27700    44.36191    51.14786    63.29358    71.08896
+  163   -10.66288    -9.09802    -7.61898    -7.09107    -5.66993    -4.64153     1.80419    16.28340    22.95137    26.00225
+         32.19245    43.61832    50.55567    66.64814    98.76564    -9.21488    -7.10394    -5.86488    -4.38301    -3.16805
+         -3.05059     3.19349    16.91743    23.55656    26.83156    33.35200    44.73583    51.54702    67.59492   100.08567
+  164   -10.68251    -9.23303    -7.14962    -7.00523    -6.15785    -4.24886     1.31799    15.77331    19.49271    27.48310
+         33.18417    45.61473    50.85438    67.34702    96.01191    -9.21452    -7.26214    -5.53306    -4.23273    -3.68699
+         -2.60284     2.79659    16.39658    20.12051    28.24886    34.32756    46.75028    51.90911    68.30074    97.60143
+  165   -10.70612    -9.18025    -7.36564    -6.98677    -6.45969    -5.00061     3.00788    16.23088    20.00333    28.11554
+         33.65311    45.55125    50.13613    64.45332    80.21353    -9.41457    -7.19827    -5.94811    -4.25612    -3.76368
+         -2.95363     4.23117    16.86297    20.63991    28.87897    34.79025    46.67935    51.19765    65.43095    81.86110
+  166   -10.96649    -9.03089    -8.05110    -7.08537    -6.82016    -5.93431     6.70735    17.54839    21.51331    29.97518
+         34.82870    45.16028    48.59406    55.01046    61.12002   -10.20501    -7.01700    -6.46128    -4.35767    -3.86643
+         -3.61609     7.65099    18.19578    22.17241    30.74259    35.94896    46.25746    49.74610    56.61881    62.23374
+  167   -11.83222    -8.80992    -8.46804    -7.23863    -6.91152    -6.68927    11.62239    19.64542    23.90202    32.66519
+         35.57376    41.60996    45.52315    48.43543    55.10436   -11.49256    -6.74849    -6.48380    -4.46181    -4.38958
+         -3.90791    12.40057    20.30422    24.59098    33.48246    36.74625    43.52735    46.66734    49.39910    56.03112
+  168   -12.96288    -8.56197    -8.42071    -7.34775    -7.28443    -6.96605    17.92946    22.44831    26.76787    34.03336
+         34.69547    37.99556    45.97870    48.66505    51.68801   -12.75262    -6.45051    -6.29718    -5.09030    -4.43170
+         -3.97873    18.63761    23.12426    27.49660    35.53834    36.17118    39.13925    46.94507    49.55309    52.57102
+  169   -13.85413    -8.36115    -8.30714    -7.82948    -7.20797    -7.01609    25.14838    25.93318    29.26746    32.14657
+         35.42850    37.83678    47.43800    49.46713    50.24288   -13.67534    -6.20736    -6.14585    -5.61563    -4.28535
+         -4.03589    25.89334    26.64531    30.05139    34.44855    36.43315    38.81492    48.21049    50.24396    51.05412
+  170   -14.32408    -8.28053    -8.22368    -8.09310    -7.10829    -7.04131    28.64749    29.99633    30.35451    31.37261
+         36.64323    37.50539    49.24316    49.69009    50.36634   -14.15245    -6.10562    -6.04733    -5.89873    -4.15132
+         -4.06442    29.43203    30.76189    31.18403    33.69920    37.68121    38.53126    49.90791    50.41174    51.07403
+  171   -14.32409    -8.28203    -8.22381    -8.09156    -7.10808    -7.04131    28.64781    29.98561    30.36621    31.37322
+         36.64248    37.50546    49.24539    49.68750    50.36456   -14.15245    -6.11325    -6.04739    -5.89151    -4.15055
+         -4.06442    29.43081    30.75532    31.19109    33.69979    37.68253    38.53149    49.91272    50.40622    51.07276
+  172   -13.85415    -8.36167    -8.30879    -7.82745    -7.20772    -7.01585    25.15562    25.92575    29.26856    32.14739
+         35.42973    37.83604    47.43821    49.47132    50.23386   -13.67532    -6.20974    -6.15364    -5.60649    -4.28434
+         -4.03498    25.89657    26.64001    30.05053    34.44989    36.43586    38.81703    48.21069    50.24878    51.04396
+  173   -12.96291    -8.56230    -8.42216    -7.34590    -7.28426    -6.96570    17.93083    22.44675    26.76819    34.03531
+         34.69521    37.99571    45.97851    48.66824    51.67994   -12.75255    -6.45180    -6.30420    -5.08270    -4.43100
+         -3.97733    18.63784    23.12205    27.49497    35.54142    36.17338    39.14076    46.94426    49.55629    52.56229
+  174   -11.83224    -8.81024    -8.46912    -7.23873    -6.91127    -6.68723    11.62252    19.64516    23.90240    32.66428
+         35.57519    41.61048    45.52297    48.43916    55.09608   -11.49237    -6.74984    -6.48886    -4.46093    -4.38384
+         -3.90640    12.39989    20.30309    24.58958    33.48444    36.74862    43.52790    46.66729    49.40207    56.02231
+  175   -10.96649    -9.03111    -8.05195    -7.08575    -6.82016    -5.93193     6.70699    17.54868    21.51359    29.97460
+         34.82856    45.16059    48.59566    55.01895    61.10625   -10.20462    -7.01803    -6.46517    -4.35804    -3.86558
+         -3.60981     7.64981    18.19530    22.17138    30.74390    35.94962    46.25755    49.74770    56.62786    62.21846
+  176   -10.70613    -9.18036    -7.36572    -6.98697    -6.46060    -4.99837     3.00730    16.23118    20.00346    28.11529
+         33.65269    45.55132    50.13747    64.45669    80.20585    -9.41426    -7.19880    -5.95066    -4.25652    -3.76371
+         -2.94839     4.22981    16.86282    20.63938    28.87960    34.79031    46.67928    51.19894    65.43418    81.85279
+  177   -10.48153    -9.28070    -7.23040    -6.94917    -6.85997    -3.55972     1.90716    13.95817    14.35663    32.87337
+         36.15946    46.52915    51.32308    65.35504   101.18124    -9.04004    -7.34310    -6.02216    -4.13704    -3.81843
+         -1.94368     3.24689    14.64512    14.95778    33.66218    37.33042    47.67359    52.35762    66.31921   102.57966
+  178   -10.48151    -9.28061    -7.22997    -6.94900    -6.86012    -3.56154     1.90810    13.95833    14.35629    32.87358
+         36.15968    46.52920    51.32110    65.35492   101.18660    -9.04036    -7.34266    -6.01983    -4.13691    -3.81910
+         -1.94829     3.24892    14.64566    14.95770    33.66195    37.33031    47.67375    52.35579    66.31925   102.58548
+  179   -10.54182    -9.18639    -7.95817    -7.00167    -6.88921    -4.78628     4.90847    14.69958    15.50897    34.08041
+         36.91067    46.40895    49.17256    60.19815    79.88205    -9.46995    -7.22406    -6.57256    -4.18796    -3.86463
+         -2.72989     5.93699    15.39357    16.11841    34.86827    38.06262    47.55633    50.18442    61.26812    81.49572
+  180   -11.05604    -9.01036    -8.63347    -7.09054    -6.94315    -5.83856     9.22374    16.20090    17.63450    36.11664
+         37.81588    46.12480    46.58138    51.01148    60.07225   -10.55200    -7.00283    -6.78489    -4.25624    -3.94629
+         -3.59309    10.05523    16.90277    18.24272    36.91434    38.92705    47.25270    47.71949    52.65715    61.27803
+  181   -12.13834    -8.77668    -8.68708    -7.14637    -7.01845    -6.67972    14.67592    18.50679    20.43897    37.48976
+         37.78336    39.48068    46.16555    47.18569    53.52125   -11.87691    -6.71083    -6.62513    -4.41005    -4.26760
+         -4.05364    15.40264    19.21672    21.04115    38.64285    38.71729    41.54432    47.19400    48.13388    54.46309
+  182   -13.17594    -8.52286    -8.52286    -7.34635    -7.11218    -7.11218    21.62145    21.62145    23.67091    34.04752
+         37.41397    37.41397    47.51695    47.51695    50.80877   -12.97919    -6.39956    -6.39956    -5.10099    -4.17529
+         -4.17528    22.34684    22.34684    24.29284    36.39667    38.37367    38.37367    48.38468    48.38468    51.70296
+  183   -13.85413    -8.36115    -8.30714    -7.82948    -7.20798    -7.01609    25.14838    25.93318    29.26746    32.14657
+         35.42850    37.83677    47.43800    49.46713    50.24288   -13.67534    -6.20736    -6.14585    -5.61563    -4.28535
+         -4.03589    25.89334    26.64531    30.05139    34.44855    36.43315    38.81491    48.21049    50.24396    51.05412
+  184   -14.08625    -8.21780    -8.21630    -8.09072    -7.25418    -6.96513    27.19775    27.20703    31.59416    31.62161
+         33.96299    38.85735    47.40824    50.40916    50.41341   -13.91129    -6.05218    -6.04480    -5.89051    -4.33255
+         -3.96998    27.93655    27.94255    32.43922    33.90089    34.99507    39.85887    48.14061    51.16149    51.16713
+  185   -13.85416    -8.36328    -8.30763    -7.82715    -7.20736    -7.01595    25.14871    25.93385    29.26926    32.14725
+         35.42687    37.83855    47.43938    49.46721    50.23463   -13.67532    -6.21782    -6.14767    -5.60499    -4.28308
+         -4.03533    25.89077    26.64470    30.05242    34.44960    36.43585    38.81799    48.21234    50.24294    51.04615
+  186   -13.17600    -8.52482    -8.52350    -7.34385    -7.11202    -7.11132    21.62134    21.62812    23.66480    34.04892
+         37.41171    37.41881    47.51734    47.52145    50.79428   -12.97913    -6.40932    -6.40218    -5.09048    -4.17453
+         -4.17187    22.34385    22.34981    24.28892    36.39866    38.37703    38.37878    48.38270    48.38944    51.68866
+  187   -12.13839    -8.77727    -8.68876    -7.14632    -7.01759    -6.67702    14.67726    18.50633    20.43798    37.49438
+         37.78118    39.48188    46.16604    47.19164    53.50514   -11.87667    -6.71339    -6.63347    -4.39988    -4.26727
+         -4.05012    15.40220    19.21388    21.04022    38.64580    38.72279    41.54565    47.19191    48.13952    54.44677
+  188   -11.05602    -9.01081    -8.63499    -7.09063    -6.94246    -5.83553     9.22351    16.20035    17.63517    36.11525
+         37.81718    46.12490    46.58561    51.01884    60.05364   -10.55135    -7.00486    -6.79192    -4.25624    -3.94334
+         -3.58347    10.05342    16.90043    18.24282    36.91603    38.92948    47.25151    47.72388    52.66363    61.25887
+  189   -10.54182    -9.18666    -7.95941    -7.00184    -6.88876    -4.78314     4.90747    14.69916    15.50982    34.07971
+         36.91038    46.40886    49.17767    60.19922    79.86957    -9.46906    -7.22535    -6.57817    -4.18819    -3.86269
+         -2.72118     5.93433    15.39202    16.11865    34.86906    38.06325    47.55578    50.18907    61.26868    81.48261
+  190   -10.08806    -9.26238    -8.17487    -6.95142    -6.81550    -3.14020     3.58544     9.86591    13.19973    37.78966
+         40.31302    45.99264    50.90085    61.63870   105.04080    -8.72071    -7.36850    -6.77171    -4.09856    -3.81861
+         -1.41857     4.67084    10.57843    13.86072    38.68871    41.39600    47.13621    51.88868    62.64122   106.23502
+  191   -10.10624    -9.29695    -7.87804    -6.91861    -6.78527    -1.95606     1.57804     9.44679    12.73462    37.32981
+         40.08410    46.34056    52.23080    63.91278   110.13460    -8.57717    -7.41443    -6.48728    -4.06457    -3.79984
+         -0.60095     2.91822    10.15395    13.40179    38.22812    41.18183    47.48588    53.24039    64.87141   111.13816
+  192   -10.08803    -9.26208    -8.17427    -6.95141    -6.81577    -3.14338     3.58716     9.86601    13.19961    37.79025
+         40.31285    45.99281    50.89398    61.64407   105.04967    -8.72183    -7.36695    -6.76759    -4.09877    -3.82003
+         -1.42740     4.67502    10.57922    13.86125    38.68836    41.39548    47.13618    51.88292    62.64662   106.24410
+  193   -10.24086    -9.15541    -8.78035    -7.03144    -6.86948    -4.63730     7.38061    11.09490    14.66033    38.89883
+         40.52039    45.20604    48.29554    56.75597    82.52569    -9.43690    -7.22194    -7.04972    -4.17230    -3.87791
+         -2.55797     8.26483    11.81119    15.30473    39.80724    41.52934    46.35019    49.27349    57.91457    84.08931
+  194   -11.06957    -8.96699    -8.92598    -7.09873    -6.94672    -5.79140    11.54721    13.46537    17.13868    39.18249
+         39.77824    44.89039    46.97034    49.11711    60.01132   -10.67164    -6.96430    -6.94701    -4.22343    -3.97753
+         -3.55317    12.32935    14.16706    17.75875    40.17754    40.64244    46.06914    47.95158    50.89065    61.28567
+  195   -12.13834    -8.77668    -8.68708    -7.14637    -7.01844    -6.67972    14.67592    18.50679    20.43897    37.48976
+         37.78336    39.48068    46.16555    47.18569    53.52125   -11.87691    -6.71083    -6.62513    -4.41005    -4.26760
+         -4.05364    15.40264    19.21672    21.04115    38.64284    38.71729    41.54432    47.19400    48.13388    54.46309
+  196   -12.96288    -8.56197    -8.42071    -7.34775    -7.28443    -6.96605    17.92946    22.44831    26.76787    34.03336
+         34.69548    37.99556    45.97870    48.66505    51.68801   -12.75262    -6.45051    -6.29718    -5.09030    -4.43170
+         -3.97873    18.63761    23.12426    27.49660    35.53834    36.17118    39.13925    46.94506    49.55309    52.57102
+  197   -13.39484    -8.34554    -8.24133    -7.76543    -7.44342    -6.89168    21.50917    23.69699    31.41987    31.71489
+         32.65079    39.57075    45.71978    50.09907    51.03290   -13.20238    -6.20249    -6.09124    -5.53723    -4.59212
+         -3.88698    22.21008    24.38471    32.22207    32.71807    34.80052    40.49450    46.66911    50.94350    51.87239
+  198   -13.39487    -8.34690    -8.24186    -7.76388    -7.44282    -6.89161    21.50974    23.69649    31.42248    31.71416
+         32.65138    39.57110    45.71960    50.09837    51.02888   -13.20238    -6.20908    -6.09302    -5.53036    -4.59004
+         -3.88667    22.20870    24.38414    32.22356    32.71965    34.80105    40.49631    46.66845    50.94189    51.86950
+  199   -12.96296    -8.56361    -8.42200    -7.34522    -7.28318    -6.96590    17.92998    22.44927    26.76897    34.03388
+         34.69430    38.00025    45.97907    48.66401    51.67657   -12.75259    -6.45889    -6.30249    -5.07946    -4.42704
+         -3.97798    18.63556    23.12344    27.49712    35.54127    36.17221    39.14545    46.94455    49.55008    52.56138
+  200   -12.13844    -8.77822    -8.68828    -7.14529    -7.01812    -6.67678    14.67665    18.51025    20.43511    37.48910
+         37.78870    39.48330    46.16702    47.18718    53.50299   -11.87675    -6.71856    -6.63079    -4.39892    -4.26284
+         -4.05216    15.40069    19.21716    21.03854    38.64924    38.71988    41.54873    47.19466    48.13197    54.44630
+  201   -11.06960    -8.96842    -8.92688    -7.09832    -6.94603    -5.78805    11.54840    13.46427    17.13835    39.18516
+         39.77942    44.89028    46.97683    49.11828    59.99082   -10.67103    -6.97198    -6.95097    -4.22136    -3.97470
+         -3.54159    12.32762    14.16482    17.75788    40.18198    40.64677    46.06774    47.95522    50.89244    61.26569
+  202   -10.24079    -9.15607    -8.78152    -7.03130    -6.86894    -4.63370     7.37987    11.09441    14.66062    38.89761
+         40.52231    45.20578    48.30453    56.74918    82.51272    -9.43550    -7.22555    -7.05563    -4.17146    -3.87535
+         -2.54700     8.26159    11.80961    15.30405    39.80848    41.53173    46.35009    49.27989    57.90828    84.07604
+  203    -9.76741    -9.22256    -8.72377    -6.96242    -6.80205    -3.01761     5.62356     7.04333    12.87620    41.12169
+         41.67595    45.47263    50.38075    59.36294   105.47718    -8.48885    -7.40394    -7.13705    -4.09076    -3.82548
+         -1.23932     6.59115     7.78844    13.55262    42.20650    42.56349    46.61568    51.33276    60.41205   106.61153
+  204    -9.71533    -9.21269    -8.52394    -6.88954    -6.77639    -1.01733     2.67010     5.80356    12.06431    41.02835
+         43.31571    45.40152    53.21071    60.68663   107.99708    -8.11466    -7.43310    -7.01135    -4.00804    -3.82652
+          0.36912     3.78811     6.60823    12.75982    42.04888    44.31956    46.53397    54.17962    61.66121   108.85015
+  205    -9.71527    -9.21231    -8.52403    -6.88968    -6.77641    -1.01994     2.67198     5.80381    12.06434    41.02871
+         43.31378    45.40300    53.20346    60.69475   108.00058    -8.11538    -7.43100    -7.01067    -4.00883    -3.82667
+          0.36191     3.79314     6.60879    12.76020    42.04864    44.31963    46.53315    54.17406    61.66851   108.85346
+  206    -9.76735    -9.22142    -8.72387    -6.96282    -6.80221    -3.02113     5.62349     7.04531    12.87628    41.12122
+         41.67337    45.47402    50.37021    59.37699   105.48630    -8.49048    -7.39767    -7.13559    -4.09291    -3.82634
+         -1.25009     6.59480     7.79088    13.55361    42.20459    42.56243    46.61491    51.32569    60.42414   106.62066
+  207   -10.24086    -9.15541    -8.78035    -7.03144    -6.86948    -4.63730     7.38061    11.09490    14.66033    38.89883
+         40.52039    45.20604    48.29554    56.75597    82.52569    -9.43690    -7.22194    -7.04972    -4.17230    -3.87791
+         -2.55797     8.26483    11.81119    15.30473    39.80724    41.52934    46.35019    49.27349    57.91457    84.08931
+  208   -11.05604    -9.01036    -8.63347    -7.09054    -6.94315    -5.83856     9.22374    16.20090    17.63450    36.11664
+         37.81588    46.12480    46.58138    51.01148    60.07225   -10.55200    -7.00283    -6.78489    -4.25624    -3.94628
+         -3.59309    10.05523    16.90277    18.24272    36.91434    38.92706    47.25270    47.71949    52.65715    61.27803
+  209   -11.83222    -8.80992    -8.46804    -7.23863    -6.91152    -6.68927    11.62239    19.64542    23.90202    32.66519
+         35.57376    41.60996    45.52315    48.43543    55.10436   -11.49256    -6.74849    -6.48380    -4.46181    -4.38958
+         -3.90791    12.40057    20.30422    24.59098    33.48246    36.74625    43.52735    46.66734    49.39910    56.03112
+  210   -12.35265    -8.57018    -8.36673    -7.45319    -7.22324    -6.81233    14.68459    20.62918    30.03606    30.22578
+         33.93406    41.14604    44.83755    49.56755    53.10514   -12.08966    -6.47226    -6.25629    -4.93538    -4.71709
+         -3.81568    15.41767    21.29444    30.83057    31.14790    35.43087    42.45568    45.99685    50.50880    54.00672
+  211   -12.53285    -8.39038    -8.37523    -7.60794    -7.37692    -6.76953    17.44322    19.08423    29.90248    30.99596
+         33.81438    42.32246    45.41844    50.53466    51.83333   -12.29175    -6.27105    -6.23624    -5.11402    -4.86494
+         -3.77111    18.16575    19.74465    30.89686    31.81613    35.47787    43.23770    46.70252    51.43524    52.73558
+  212   -12.35274    -8.57156    -8.36771    -7.45196    -7.22135    -6.81227    14.68513    20.62846    30.04065    30.22612
+         33.93365    41.14784    44.83658    49.56641    53.09696   -12.08970    -6.47901    -6.26049    -4.92749    -4.71225
+         -3.81527    15.41618    21.29343    30.83300    31.15038    35.43124    42.45928    45.99388    50.50722    54.00070
+  213   -11.83237    -8.81136    -8.46954    -7.23714    -6.91093    -6.68681    11.62288    19.64607    23.90332    32.66653
+         35.57460    41.61461    45.52217    48.43431    55.08946   -11.49257    -6.75570    -6.49070    -4.45464    -4.37871
+         -3.90762    12.39867    20.30325    24.59148    33.48618    36.74788    43.53306    46.66509    49.39628    56.01867
+  214   -11.05619    -9.01178    -8.63462    -7.08924    -6.94288    -5.83525     9.22430    16.20340    17.63179    36.12326
+         37.81473    46.12486    46.58390    51.01355    60.05126   -10.55177    -7.01004    -6.79077    -4.25036    -3.94509
+         -3.58129    10.05317    16.90266    18.24037    36.92086    38.92805    47.25226    47.72100    52.65953    61.25829
+  215   -10.24096    -9.15683    -8.78079    -7.03073    -6.86911    -4.63368     7.38128    11.09369    14.66000    38.90513
+         40.51935    45.20608    48.30064    56.74536    82.51357    -9.43608    -7.22971    -7.05262    -4.16858    -3.87651
+         -2.54597     8.26267    11.80857    15.30343    39.81234    41.53150    46.34918    49.27676    57.90610    84.07692
+  216   -10.08837    -9.26328    -8.17385    -6.95041    -6.81590    -3.14042     3.58807     9.86408    13.19918    37.79657
+         40.31305    45.99268    50.89709    61.62861   105.04273    -8.72253    -7.37340    -6.76771    -4.09376    -3.82044
+         -1.41650     4.67287    10.57559    13.85986    38.69272    41.39679    47.13559    51.88562    62.63401   106.23678
+  217    -9.71546    -9.21350    -8.52311    -6.88895    -6.77673    -1.01756     2.67326     5.80079    12.06417    41.03245
+         43.31420    45.40249    53.21270    60.67743   107.99773    -8.11567    -7.43739    -7.00736    -4.00512    -3.82818
+          0.37094     3.79113     6.60402    12.75942    42.05013    44.32166    46.53350    54.18021    61.65451   108.85074
+  218    -9.60122    -8.91415    -8.91285    -6.81544    -6.81487     1.37800     1.37851     3.75235    11.71679    43.80060
+         43.80064    44.09471    57.30567    57.32364   105.10933    -7.87020    -7.29166    -7.28501    -3.90492    -3.90195
+          2.53794     2.54485     4.65429    12.42522    44.92674    44.92786    45.02020    58.26511    58.27855   105.87829
+  219    -9.71527    -9.21231    -8.52403    -6.88968    -6.77641    -1.01994     2.67198     5.80381    12.06434    41.02872
+         43.31378    45.40300    53.20346    60.69475   108.00058    -8.11538    -7.43100    -7.01067    -4.00883    -3.82667
+          0.36191     3.79314     6.60879    12.76020    42.04864    44.31963    46.53314    54.17406    61.66851   108.85346
+  220   -10.08803    -9.26208    -8.17427    -6.95141    -6.81577    -3.14338     3.58716     9.86601    13.19961    37.79025
+         40.31286    45.99280    50.89398    61.64407   105.04967    -8.72183    -7.36695    -6.76759    -4.09877    -3.82003
+         -1.42740     4.67502    10.57922    13.86125    38.68836    41.39549    47.13618    51.88292    62.64662   106.24410
+  221   -10.54182    -9.18639    -7.95817    -7.00167    -6.88921    -4.78628     4.90847    14.69958    15.50897    34.08041
+         36.91068    46.40895    49.17256    60.19815    79.88205    -9.46995    -7.22406    -6.57256    -4.18796    -3.86462
+         -2.72989     5.93699    15.39357    16.11841    34.86827    38.06262    47.55632    50.18442    61.26812    81.49572
+  222   -10.96649    -9.03089    -8.05110    -7.08537    -6.82016    -5.93431     6.70735    17.54839    21.51331    29.97518
+         34.82870    45.16028    48.59405    55.01046    61.12002   -10.20501    -7.01700    -6.46128    -4.35767    -3.86643
+         -3.61609     7.65099    18.19578    22.17241    30.74259    35.94896    46.25746    49.74610    56.61881    62.23374
+  223   -11.29126    -8.80435    -8.35363    -7.24777    -6.64706    -6.59201     9.10318    18.36651    27.44100    28.24844
+         34.14227    43.32646    49.07796    50.61306    57.06482   -10.76887    -6.75309    -6.43647    -4.61925    -4.22489
+         -3.73016     9.95552    19.02079    28.22441    29.05294    35.28892    44.34962    50.43564    51.92662    57.99275
+  224   -11.46360    -8.67435    -8.46747    -7.51553    -6.83596    -6.50801    12.00293    16.12681    28.55247    29.75894
+         34.55918    43.02351    50.34988    51.14596    54.92111   -11.06501    -6.55093    -6.41806    -4.89734    -4.45423
+         -3.65104    12.78890    16.79932    29.41083    30.67827    35.72362    44.10014    51.31633    52.42076    55.86187
+  225   -11.46367    -8.67483    -8.46805    -7.51457    -6.83561    -6.50780    12.00370    16.12585    28.54954    29.76560
+         34.55801    43.02380    50.34838    51.14735    54.91645   -11.06511    -6.55487    -6.41895    -4.89422    -4.45141
+         -3.65080    12.78835    16.79885    29.41029    30.68147    35.72366    44.09874    51.31524    52.42243    55.85877
+  226   -11.29145    -8.80568    -8.35453    -7.24625    -6.64725    -6.58977     9.10396    18.36566    27.44167    28.25410
+         34.14194    43.32520    49.07983    50.61180    57.05315   -10.76915    -6.75968    -6.44121    -4.61275    -4.21619
+         -3.73008     9.95421    19.01939    28.22692    29.05569    35.28936    44.34670    50.43794    51.92584    57.98383
+  227   -10.96675    -9.03227    -8.05240    -7.08388    -6.81963    -5.93151     6.70815    17.54872    21.51446    29.97833
+         34.82901    45.16004    48.59513    55.01253    61.10085   -10.20544    -7.02379    -6.46754    -4.35044    -3.86128
+         -3.60914     7.64920    18.19466    22.17283    30.74618    35.94869    46.25681    49.74757    56.62134    62.21645
+  228   -10.54214    -9.18769    -7.95876    -7.00029    -6.88903    -4.78314     4.90929    14.70155    15.50621    34.08727
+         36.90971    46.40859    49.17373    60.18801    79.87143    -9.47051    -7.23075    -6.57658    -4.18144    -3.86380
+         -2.71844     5.93488    15.39334    16.11544    34.87414    38.06164    47.55566    50.18605    61.26036    81.48463
+  229   -10.48189    -9.28180    -7.22951    -6.94762    -6.86007    -3.56000     1.90977    13.96013    14.35300    32.88052
+         36.15905    46.52876    51.32080    65.33931   101.18198    -9.04238    -7.34886    -6.01998    -4.13017    -3.81884
+         -1.93928     3.24714    14.64569    14.95403    33.66729    37.32854    47.67307    52.35693    66.30664   102.58005
+  230   -10.10660    -9.29798    -7.87701    -6.91744    -6.78572    -1.95556     1.58066     9.44450    12.73416    37.33629
+         40.08477    46.34035    52.23076    63.89703   110.13424    -8.57921    -7.41994    -6.48401    -4.05897    -3.80165
+         -0.59442     2.91796    10.15011    13.40067    38.23219    41.18278    47.48529    53.24068    64.85890   111.13750
+  231    -9.71546    -9.21350    -8.52311    -6.88895    -6.77673    -1.01756     2.67326     5.80079    12.06417    41.03245
+         43.31420    45.40249    53.21270    60.67743   107.99773    -8.11567    -7.43739    -7.00736    -4.00512    -3.82818
+          0.37094     3.79113     6.60402    12.75942    42.05013    44.32166    46.53350    54.18021    61.65451   108.85074
+  232    -9.71533    -9.21269    -8.52394    -6.88954    -6.77639    -1.01733     2.67010     5.80356    12.06431    41.02835
+         43.31571    45.40152    53.21071    60.68663   107.99708    -8.11466    -7.43310    -7.01135    -4.00804    -3.82652
+          0.36912     3.78811     6.60823    12.75982    42.04888    44.31957    46.53396    54.17962    61.66121   108.85015
+  233   -10.10624    -9.29695    -7.87804    -6.91861    -6.78527    -1.95606     1.57804     9.44679    12.73462    37.32981
+         40.08410    46.34056    52.23080    63.91278   110.13460    -8.57717    -7.41443    -6.48728    -4.06457    -3.79984
+         -0.60095     2.91822    10.15395    13.40179    38.22812    41.18183    47.48588    53.24039    64.87141   111.13816
+  234   -10.48151    -9.28061    -7.22997    -6.94900    -6.86012    -3.56154     1.90810    13.95833    14.35629    32.87358
+         36.15968    46.52920    51.32110    65.35492   101.18660    -9.04037    -7.34266    -6.01983    -4.13691    -3.81910
+         -1.94829     3.24892    14.64566    14.95770    33.66195    37.33031    47.67375    52.35579    66.31925   102.58548
+  235   -10.70612    -9.18025    -7.36564    -6.98677    -6.45969    -5.00061     3.00788    16.23088    20.00333    28.11554
+         33.65311    45.55125    50.13613    64.45332    80.21353    -9.41457    -7.19827    -5.94811    -4.25612    -3.76368
+         -2.95363     4.23117    16.86297    20.63991    28.87897    34.79025    46.67935    51.19765    65.43095    81.86110
+  236   -10.75562    -8.99339    -7.95481    -7.08185    -6.01801    -5.93946     4.73999    16.94456    24.59973    26.78382
+         33.13064    43.29564    50.12500    62.35464    69.64156    -9.68141    -6.97915    -6.29425    -4.44050    -3.56973
+         -3.51807     5.80815    17.58753    25.26817    27.60343    34.27701    44.36191    51.14786    63.29358    71.08896
+  237   -10.66131    -8.85773    -8.45750    -7.27306    -6.49678    -5.65848     7.11379    14.18539    26.28819    28.59036
+         35.27285    41.45695    50.51685    57.99649    69.01763    -9.83323    -6.82642    -6.55262    -4.70418    -3.87094
+         -3.29029     8.03893    14.86134    27.06717    29.50296    36.32483    42.53012    51.50503    58.96138    70.03449
+  238   -10.57687    -9.00397    -8.43928    -7.42823    -6.63038    -5.55365     9.38834    11.42111    27.14761    29.65167
+         34.83449    42.45327    50.75262    55.14672    69.33461    -9.88148    -6.90117    -6.48173    -4.86057    -3.95682
+         -3.19873    10.26275    12.10563    27.96425    30.66572    35.71740    43.61123    51.70969    56.12940    70.20473
+  239   -10.66153    -8.85832    -8.45824    -7.27154    -6.49628    -5.65823     7.11508    14.18393    26.28674    28.59749
+         35.27199    41.45762    50.51416    57.98741    69.01953    -9.83387    -6.83015    -6.55520    -4.69851    -3.86896
+         -3.28836     8.03867    14.85988    27.06755    29.50617    36.32577    42.52821    51.50250    58.95502    70.03717
+  240   -10.75593    -8.99469    -7.95529    -7.08042    -6.01544    -5.93998     4.74128    16.94374    24.60014    26.78984
+         33.13078    43.29452    50.12346    62.34007    69.64235    -9.68262    -6.98558    -6.29763    -4.43320    -3.56070
+         -3.51830     5.80701    17.58586    25.27030    27.60614    34.27637    44.36014    51.14716    63.28204    71.09013
+  241   -10.70648    -9.18156    -7.36613    -6.98561    -6.45858    -4.99883     3.00925    16.23090    20.00415    28.11946
+         33.65319    45.55072    50.13606    64.44034    80.20703    -9.41624    -7.20486    -5.95192    -4.24878    -3.76009
+         -2.94547     4.22940    16.86170    20.64028    28.88211    34.78858    46.67865    51.19888    65.42080    81.85411
+  242   -10.68287    -9.23427    -7.15013    -7.00369    -6.15577    -4.24929     1.32029    15.77307    19.49335    27.48731
+         33.18440    45.61418    50.85359    67.33028    96.00901    -9.21696    -7.26848    -5.53459    -4.22539    -3.68236
+         -2.59794     2.79545    16.39526    20.12102    28.25163    34.32554    46.74959    51.90997    68.28709    97.59808
+  243   -10.48189    -9.28180    -7.22951    -6.94762    -6.86007    -3.56000     1.90977    13.96013    14.35300    32.88052
+         36.15905    46.52876    51.32080    65.33931   101.18198    -9.04238    -7.34886    -6.01998    -4.13017    -3.81884
+         -1.93928     3.24714    14.64569    14.95403    33.66729    37.32854    47.67307    52.35693    66.30664   102.58005
+  244   -10.08837    -9.26328    -8.17385    -6.95041    -6.81590    -3.14042     3.58807     9.86408    13.19918    37.79657
+         40.31305    45.99268    50.89709    61.62861   105.04273    -8.72253    -7.37340    -6.76771    -4.09376    -3.82044
+         -1.41650     4.67287    10.57559    13.85986    38.69272    41.39679    47.13559    51.88562    62.63401   106.23678
+  245    -9.76741    -9.22256    -8.72377    -6.96242    -6.80205    -3.01761     5.62356     7.04333    12.87620    41.12169
+         41.67595    45.47263    50.38075    59.36294   105.47718    -8.48885    -7.40394    -7.13705    -4.09076    -3.82548
+         -1.23932     6.59115     7.78844    13.55262    42.20651    42.56349    46.61568    51.33276    60.41205   106.61153
+  246   -10.08806    -9.26238    -8.17487    -6.95142    -6.81550    -3.14020     3.58544     9.86591    13.19973    37.78966
+         40.31302    45.99264    50.90085    61.63870   105.04080    -8.72071    -7.36850    -6.77171    -4.09856    -3.81861
+         -1.41857     4.67084    10.57843    13.86072    38.68871    41.39601    47.13621    51.88868    62.64122   106.23502
+  247   -10.48153    -9.28070    -7.23040    -6.94917    -6.85996    -3.55972     1.90716    13.95817    14.35663    32.87337
+         36.15946    46.52914    51.32308    65.35504   101.18124    -9.04004    -7.34310    -6.02216    -4.13704    -3.81843
+         -1.94368     3.24689    14.64512    14.95778    33.66218    37.33043    47.67359    52.35762    66.31921   102.57966
+  248   -10.68251    -9.23303    -7.14962    -7.00523    -6.15785    -4.24886     1.31799    15.77331    19.49271    27.48310
+         33.18417    45.61473    50.85438    67.34702    96.01191    -9.21452    -7.26214    -5.53306    -4.23273    -3.68698
+         -2.60284     2.79659    16.39658    20.12051    28.24886    34.32756    46.75027    51.90911    68.30074    97.60143
+  249   -10.66289    -9.09802    -7.61898    -7.09107    -5.66993    -4.64153     1.80419    16.28340    22.95137    26.00225
+         32.19245    43.61831    50.55567    66.64814    98.76564    -9.21488    -7.10394    -5.86488    -4.38301    -3.16805
+         -3.05059     3.19349    16.91743    23.55656    26.83156    33.35200    44.73582    51.54702    67.59492   100.08567
+  250   -10.43538    -8.94179    -8.23934    -7.17258    -6.06700    -4.29402     3.27196    12.96732    24.63379    27.35413
+         35.46292    40.95457    50.61157    63.36477    95.57963    -9.06876    -6.94533    -6.47540    -4.54099    -3.54125
+         -2.44740     4.44330    13.63251    25.35007    28.25078    36.56901    42.03899    51.56211    64.30585    96.42135
+  251   -10.08281    -9.13768    -8.48708    -7.21830    -6.42599    -4.05341     5.56566     9.12650    25.59514    29.62697
+         35.89585    41.41404    51.43209    58.33999    88.78578    -8.88590    -7.15479    -6.58147    -4.65587    -3.78955
+         -2.11495     6.54547     9.85992    26.43666    30.60435    36.78062    42.54841    52.38213    59.27669    89.47820
+  252   -10.08305    -9.13760    -8.48762    -7.21763    -6.42562    -4.05349     5.56751     9.12460    25.59479    29.63092
+         35.89376    41.41653    51.43116    58.33292    88.78729    -8.88680    -7.15486    -6.58342    -4.65292    -3.78921
+         -2.11398     6.54656     9.85796    26.43666    30.60650    36.78013    42.54950    52.37977    59.27226    89.48003
+  253   -10.43574    -8.94268    -8.23965    -7.17128    -6.06561    -4.29439     3.27392    12.96555    24.63286    27.36078
+         35.46451    40.95425    50.60876    63.35027    95.58205    -9.07072    -6.94976    -6.47634    -4.53467    -3.53916
+         -2.44448     4.44321    13.63022    25.35078    28.25340    36.57112    42.03740    51.55915    64.29465    96.42460
+  254   -10.66325    -9.09929    -7.61923    -7.08965    -5.66715    -4.64270     1.80623    16.28266    22.95154    26.00835
+         32.19261    43.61771    50.55379    66.63165    98.76427    -9.21722    -7.11029    -5.86637    -4.37586    -3.15822
+         -3.05129     3.19234    16.91563    23.55840    26.83417    33.35064    44.73497    51.54621    67.58157   100.08464
+  255   -10.32035    -8.67902    -8.58634    -7.31926    -5.71162    -3.19991     2.02314    12.98642    20.75743    30.99764
+         34.71576    37.63743    50.64267    64.79633   120.14571    -8.74033    -6.73646    -6.65265    -4.76967    -3.20834
+         -1.74698     3.32097    13.62942    21.50245    31.81183    35.93916    38.73919    51.54603    65.72967   120.39410
+  256   -10.43585    -8.94300    -8.24006    -7.17078    -6.06392    -4.29555     3.27366    12.96755    24.63486    27.35772
+         35.46412    40.95372    50.60795    63.35025    95.58208    -9.07113    -6.95048    -6.47911    -4.53234    -3.52981
+         -2.45154     4.44280    13.63148    25.35283    28.25196    36.56857    42.03725    51.55872    64.29433    96.42425
+  257   -10.41383    -9.10947    -8.24305    -7.08759    -6.66328    -4.60593     5.08625    11.99294    19.31753    32.75521
+         37.73228    43.68243    50.16263    59.33215    79.67129    -9.31049    -7.14980    -6.65418    -4.35297    -3.79208
+         -2.56903     6.09894    12.67598    19.99349    33.63529    38.76620    44.79699    51.17968    60.38559    81.07976
+  258   -10.24118    -9.15661    -8.78130    -7.02984    -6.86901    -4.63402     7.38054    11.09687    14.65805    38.90239
+         40.52451    45.20568    48.29688    56.74492    82.51407    -9.43659    -7.22767    -7.05630    -4.16521    -3.87551
+         -2.54750     8.26207    11.81076    15.30186    39.81249    41.53286    46.34919    49.27258    57.90666    84.07729
+  259   -10.06757    -9.15697    -9.15623    -6.95312    -6.95199    -4.62438     9.79955     9.80185    12.59476    42.50540
+         42.51600    45.71730    45.72098    55.78686    85.40031    -9.46904    -7.24458    -7.24001    -4.00032    -3.99569
+         -2.52029    10.60086    10.60199    13.19261    43.45487    43.45948    46.78140    46.78710    56.97950    87.00642
+  260   -10.24079    -9.15607    -8.78152    -7.03130    -6.86894    -4.63370     7.37987    11.09441    14.66062    38.89762
+         40.52231    45.20578    48.30453    56.74918    82.51272    -9.43550    -7.22555    -7.05563    -4.17146    -3.87535
+         -2.54700     8.26159    11.80961    15.30405    39.80848    41.53174    46.35008    49.27989    57.90828    84.07604
+  261   -10.41337    -9.10855    -8.24258    -7.08954    -6.66470    -4.60509     5.08481    11.99209    19.31769    32.75274
+         37.73001    43.68295    50.16694    59.34256    79.66917    -9.30865    -7.14583    -6.65185    -4.36116    -3.79740
+         -2.56703     6.09873    12.67623    19.99357    33.63340    38.76557    44.79859    51.18341    60.39311    81.07746
+  262   -10.43538    -8.94179    -8.23934    -7.17258    -6.06700    -4.29402     3.27196    12.96732    24.63379    27.35413
+         35.46292    40.95457    50.61157    63.36477    95.57963    -9.06876    -6.94533    -6.47540    -4.54099    -3.54125
+         -2.44740     4.44330    13.63251    25.35007    28.25078    36.56901    42.03899    51.56211    64.30585    96.42135
+  263   -10.31986    -8.67761    -8.58607    -7.32067    -5.71439    -3.19878     2.02124    12.98682    20.75710    30.99111
+         34.71520    37.63804    50.64673    64.81221   120.14495    -8.73747    -6.73554    -6.64595    -4.77686    -3.21828
+         -1.74556     3.32195    13.63116    21.50116    31.80843    35.93889    38.74022    51.55087    65.74243   120.39273
+  264   -10.08807    -9.00035    -8.52326    -7.26553    -5.82785    -1.66236     1.58478     9.57480    21.65698    31.40858
+         34.34851    37.81484    51.40138    63.78474   107.31576    -8.34276    -7.12988    -6.48280    -4.81884    -3.33789
+         -0.39836     2.89804    10.27300    22.46010    32.36803    35.43648    38.90170    52.29252    64.70686   107.88215
+  265    -9.76725    -9.39687    -8.56971    -6.91340    -6.14431    -0.87825     2.81906     5.81524    25.54069    30.51308
+         31.34381    40.06524    54.33615    60.70767    96.67573    -7.94681    -7.47443    -6.57421    -4.50111    -3.67292
+          0.44850     3.91583     6.64477    26.50128    31.50949    32.38388    41.04007    55.25208    61.61934    97.40266
+  266    -9.76771    -9.39659    -8.56984    -6.91391    -6.14310    -0.87876     2.82149     5.81321    25.54254    30.51367
+         31.34291    40.06639    54.33992    60.69701    96.67634    -7.94975    -7.47240    -6.57505    -4.50165    -3.66970
+          0.44890     3.91745     6.64230    26.50367    31.50749    32.38405    41.04189    55.25245    61.61179    97.40354
+  267   -10.08857    -9.00040    -8.52395    -7.26521    -5.82578    -1.66332     1.58724     9.57313    21.65878    31.41122
+         34.34789    37.81791    51.39998    63.76904   107.31632    -8.34604    -7.12939    -6.48642    -4.81559    -3.33173
+         -0.39706     2.89764    10.27058    22.46218    32.36821    35.43536    38.90569    52.28837    64.69450   107.88327
+  268   -10.06540    -9.10595    -8.42497    -7.29155    -6.00640    -3.16034     3.78207     9.97739    22.27046    31.52023
+         32.86967    38.70252    51.35230    61.39378   100.19795    -8.53451    -7.15274    -6.37827    -4.85005    -3.52869
+         -1.52650     4.85259    10.67884    23.09971    32.48437    33.79600    39.85500    52.26632    62.31451   100.57199
+  269   -10.36548    -8.74279    -8.58876    -7.32439    -6.07242    -4.88405     5.21939    13.63764    22.32029    31.80630
+         33.63685    38.27528    50.67060    60.68545    93.89980    -9.18028    -6.77899    -6.54566    -4.81907    -3.62593
+         -2.81324     6.23041    14.29370    23.15045    32.61287    34.70426    39.41907    51.62158    61.61740    94.06858
+  270   -10.66166    -8.85849    -8.45875    -7.27106    -6.49426    -5.65972     7.11461    14.18609    26.28941    28.59319
+         35.27285    41.45690    50.51231    57.98698    69.02105    -9.83421    -6.82895    -6.55995    -4.69536    -3.86044
+         -3.29540     8.03815    14.86107    27.07051    29.50408    36.32415    42.52737    51.50085    58.95469    70.03879
+  271   -10.91979    -8.95863    -8.63628    -7.23655    -6.79784    -5.78846     9.37443    13.76189    21.22396    34.17876
+         37.59706    43.65927    49.10869    51.96386    60.63599   -10.37264    -6.94012    -6.74970    -4.48305    -3.87928
+         -3.49508    10.21315    14.43910    21.89456    35.12587    38.55136    44.81065    50.11528    53.47958    61.85683
+  272   -11.06970    -8.96797    -8.92765    -7.09723    -6.94642    -5.78814    11.54618    13.46919    17.13610    39.17983
+         39.78731    44.89205    46.97129    49.11842    59.99033   -10.67124    -6.96882    -6.95604    -4.21697    -3.97545
+         -3.54239    12.32575    14.16803    17.75663    40.18045    40.65028    46.06886    47.94889    50.89408    61.26582
+  273   -11.06960    -8.96842    -8.92688    -7.09832    -6.94603    -5.78805    11.54840    13.46427    17.13835    39.18517
+         39.77942    44.89027    46.97683    49.11828    59.99082   -10.67103    -6.97198    -6.95097    -4.22136    -3.97470
+         -3.54159    12.32762    14.16482    17.75788    40.18198    40.64677    46.06774    47.95522    50.89244    61.26569
+  274   -10.91953    -8.95819    -8.63557    -7.23829    -6.79853    -5.78799     9.37457    13.75940    21.22435    34.17859
+         37.59507    43.65841    49.11453    51.96489    60.63736   -10.37203    -6.93852    -6.74529    -4.48997    -3.88556
+         -3.49063    10.21410    14.43778    21.89410    35.12495    38.55080    44.81208    50.12107    53.47917    61.85639
+  275   -10.66131    -8.85773    -8.45750    -7.27306    -6.49678    -5.65848     7.11379    14.18539    26.28819    28.59036
+         35.27285    41.45695    50.51685    57.99649    69.01763    -9.83323    -6.82642    -6.55262    -4.70418    -3.87094
+         -3.29029     8.03893    14.86134    27.06717    29.50296    36.32483    42.53012    51.50503    58.96138    70.03449
+  276   -10.36507    -8.74243    -8.58733    -7.32579    -6.07495    -4.88353     5.21828    13.63802    22.31967    31.79996
+         33.63776    38.27531    50.67371    60.69931    93.89732    -9.17888    -6.77622    -6.53901    -4.82627    -3.63524
+         -2.81181     6.23139    14.29515    23.14869    32.60948    34.70463    39.42040    51.62526    61.62831    94.06519
+  277   -10.06493    -9.10561    -8.42456    -7.29177    -6.00813    -3.16091     3.78087     9.97882    22.26880    31.51928
+         32.86819    38.70026    51.35175    61.41031   100.19732    -8.53254    -7.15033    -6.37609    -4.85294    -3.53366
+         -1.52975     4.85361    10.68104    23.09760    32.48443    33.79731    39.85064    52.26859    62.32797   100.57076
+  278    -9.76722    -9.39653    -8.57008    -6.91296    -6.14466    -0.87948     2.82004     5.81517    25.54070    30.51446
+         31.34102    40.06567    54.33164    60.71511    96.67620    -7.94728    -7.47167    -6.57629    -4.49987    -3.67377
+          0.44499     3.91832     6.64492    26.50099    31.50763    32.38615    41.03864    55.24861    61.62648    97.40300
+  279    -9.55502    -9.55469    -8.71710    -6.46168    -6.46005     1.66446     1.66519     3.47209    28.87102    28.87209
+         30.57367    40.31162    58.24754    58.26581    94.82361    -7.60178    -7.59873    -6.83346    -4.01738    -4.01325
+          2.80041     2.80380     4.40232    29.94174    29.94414    31.59436    41.17790    59.17164    59.18516    95.63400
+  280    -9.76771    -9.39659    -8.56984    -6.91391    -6.14310    -0.87876     2.82149     5.81321    25.54254    30.51367
+         31.34291    40.06639    54.33992    60.69701    96.67634    -7.94975    -7.47240    -6.57505    -4.50165    -3.66970
+          0.44890     3.91745     6.64230    26.50367    31.50749    32.38405    41.04189    55.25245    61.61179    97.40354
+  281    -9.80672    -9.45853    -8.34823    -7.15196    -6.26695    -3.14747     6.10742     6.88831    25.41723    28.62407
+         32.00624    40.51633    53.25471    58.12117    93.39604    -8.41737    -7.34064    -6.29063    -4.77491    -3.78306
+         -1.44254     7.07711     7.63636    26.47409    29.33995    32.98814    41.62229    54.19435    59.01720    93.84362
+  282   -10.22728    -9.11685    -8.25658    -7.44222    -6.42347    -4.95969     7.78684    11.16092    23.68653    29.71108
+         33.27293    40.14769    51.47297    56.71975    87.70510    -9.23210    -6.93660    -6.19355    -5.06320    -3.95649
+         -2.78702     8.66245    11.86373    24.64123    30.51224    34.13437    41.34140    52.42463    57.64605    87.78523
+  283   -10.81484    -8.72731    -8.42831    -7.50085    -6.66043    -6.07172     9.70764    14.96880    24.40677    32.09292
+         33.06518    40.68316    50.92478    55.74646    71.68273   -10.18270    -6.53376    -6.35511    -5.08272    -4.29690
+         -3.39747    10.53909    15.63616    25.38879    33.13102    33.85932    41.82646    51.90773    56.68063    72.05942
+  284   -11.46376    -8.67466    -8.46919    -7.51360    -6.83384    -6.50926    12.00242    16.12888    28.55229    29.76125
+         34.55841    43.02428    50.34391    51.14891    54.91765   -11.06527    -6.55259    -6.42558    -4.89003    -4.44845
+         -3.65269    12.78714    16.80039    29.41378    30.68009    35.72135    44.09825    51.31051    52.42442    55.86085
+  285   -11.95773    -8.70516    -8.65756    -7.32026    -6.88965    -6.67330    14.08571    16.77033    23.91788    34.69823
+         36.66968    41.47955    45.43353    48.82438    53.79502   -11.66677    -6.62384    -6.61455    -4.52031    -4.42123
+         -3.87250    14.83925    17.42422    24.59683    35.69375    37.93011    43.03805    46.69410    49.75894    54.73375
+  286   -12.13844    -8.77822    -8.68828    -7.14529    -7.01812    -6.67678    14.67665    18.51025    20.43511    37.48910
+         37.78870    39.48330    46.16702    47.18718    53.50299   -11.87675    -6.71856    -6.63079    -4.39892    -4.26285
+         -4.05216    15.40069    19.21716    21.03854    38.64924    38.71988    41.54873    47.19466    48.13197    54.44630
+  287   -11.95764    -8.70554    -8.65630    -7.32147    -6.89042    -6.67258    14.08854    16.76496    23.91850    34.70238
+         36.66874    41.47347    45.43240    48.83075    53.79617   -11.66663    -6.61909    -6.61521    -4.52495    -4.42380
+         -3.87056    14.84210    17.42091    24.59585    35.69454    37.93166    43.03334    46.69382    49.76575    54.73281
+  288   -11.46360    -8.67435    -8.46747    -7.51553    -6.83596    -6.50801    12.00293    16.12681    28.55247    29.75894
+         34.55918    43.02351    50.34988    51.14596    54.92111   -11.06501    -6.55093    -6.41806    -4.89734    -4.45423
+         -3.65104    12.78890    16.79932    29.41083    30.67827    35.72362    44.10014    51.31633    52.42076    55.86187
+  289   -10.81463    -8.72667    -8.42690    -7.50220    -6.66257    -6.07142     9.70698    14.96911    24.40604    32.09432
+         33.05969    40.68314    50.92648    55.75687    71.67994   -10.18237    -6.52920    -6.34857    -5.08937    -4.30512
+         -3.39685    10.54027    15.63715    25.38631    33.13191    33.85627    41.82820    51.90966    56.68855    72.05547
+  290   -10.22702    -9.11626    -8.25621    -7.44231    -6.42464    -4.96078     7.78585    11.16224    23.68482    29.71312
+         33.26852    40.14714    51.46819    56.73611    87.70379    -9.23168    -6.93178    -6.19201    -5.06516    -3.96144
+         -2.79021     8.66350    11.86530    24.63851    30.51427    34.13404    41.33822    52.42250    57.65981    87.78308
+  291    -9.80651    -9.45805    -8.34873    -7.15112    -6.26780    -3.14891     6.10667     6.88972    25.41610    28.62508
+         32.00355    40.51642    53.24337    58.14063    93.39607    -8.41709    -7.33688    -6.29292    -4.77302    -3.78535
+         -1.44735     7.07920     7.63704    26.47168    29.34136    32.98940    41.61870    54.18633    59.03473    93.84324
+  292    -9.76722    -9.39653    -8.57008    -6.91296    -6.14466    -0.87948     2.82004     5.81517    25.54070    30.51446
+         31.34102    40.06567    54.33164    60.71511    96.67620    -7.94728    -7.47167    -6.57629    -4.49987    -3.67377
+          0.44499     3.91832     6.64492    26.50099    31.50763    32.38615    41.03864    55.24861    61.62648    97.40300
+  293    -9.76725    -9.39687    -8.56971    -6.91340    -6.14431    -0.87825     2.81906     5.81524    25.54068    30.51309
+         31.34381    40.06524    54.33615    60.70767    96.67573    -7.94681    -7.47443    -6.57421    -4.50111    -3.67292
+          0.44850     3.91583     6.64477    26.50128    31.50949    32.38388    41.04007    55.25208    61.61934    97.40266
+  294   -10.06496    -9.10612    -8.42390    -7.29215    -6.00822    -3.15979     3.78024     9.97906    22.26846    31.51799
+         32.87160    38.69893    51.35368    61.40622   100.19671    -8.53235    -7.15325    -6.37340    -4.85423    -3.53396
+         -1.52632     4.85223    10.68090    23.09755    32.48518    33.79588    39.85241    52.27000    62.32360   100.57027
+  295   -10.22709    -9.11685    -8.25552    -7.44310    -6.42444    -4.95950     7.78557    11.16226    23.68481    29.71248
+         33.27199    40.14520    51.47345    56.72685    87.70403    -9.23160    -6.93578    -6.18937    -5.06736    -3.95944
+         -2.78685     8.66230    11.86490    24.63925    30.51396    34.13353    41.34014    52.42643    57.65071    87.78383
+  296   -10.86676    -8.78628    -8.14792    -7.73171    -6.87325    -6.07028    12.20537    13.39590    24.16782    30.15945
+         34.46371    41.69104    51.60373    53.48609    73.42930   -10.30376    -6.47571    -6.06818    -5.36858    -4.51665
+         -3.37893    12.99187    14.07357    25.20958    31.10796    35.25913    42.87534    52.55163    54.43654    73.62099
+  297   -11.75668    -8.39171    -8.24253    -7.82485    -7.28868    -6.53140    15.06180    17.03335    25.32747    32.30422
+         33.91460    43.25948    51.25741    52.47235    55.95343   -11.42149    -6.13594    -6.12936    -5.31110    -5.00026
+         -3.59665    15.78413    17.70148    26.35848    33.65795    34.70278    44.33004    52.19702    53.39756    56.81722
+  298   -12.53289    -8.38993    -8.37702    -7.60682    -7.37622    -6.76971    17.43937    19.08976    29.90004    30.99837
+         33.81352    42.32447    45.41949    50.52784    51.83497   -12.29180    -6.28000    -6.23248    -5.11128    -4.86139
+         -3.77136    18.16192    19.74815    30.89695    31.81956    35.47532    43.23976    46.70233    51.42832    52.73870
+  299   -12.96296    -8.56361    -8.42200    -7.34522    -7.28318    -6.96590    17.92998    22.44927    26.76897    34.03388
+         34.69430    38.00025    45.97907    48.66401    51.67657   -12.75259    -6.45889    -6.30249    -5.07946    -4.42704
+         -3.97798    18.63556    23.12344    27.49712    35.54127    36.17221    39.14545    46.94455    49.55008    52.56138
+  300   -12.96294    -8.56338    -8.42191    -7.34560    -7.28343    -6.96570    17.93118    22.44601    26.76949    34.03377
+         34.69997    37.99462    45.97822    48.66737    51.67619   -12.75258    -6.45708    -6.30294    -5.08011    -4.42860
+         -3.97743    18.63658    23.12246    27.49581    35.54144    36.17526    39.14213    46.94390    49.55352    52.56045
+  301   -12.53285    -8.39038    -8.37523    -7.60794    -7.37692    -6.76953    17.44322    19.08423    29.90248    30.99596
+         33.81438    42.32246    45.41844    50.53466    51.83333   -12.29175    -6.27105    -6.23624    -5.11402    -4.86494
+         -3.77111    18.16575    19.74465    30.89686    31.81613    35.47787    43.23770    46.70252    51.43524    52.73558
+  302   -11.75661    -8.39075    -8.24125    -7.82606    -7.29027    -6.53135    15.06143    17.03353    25.32751    32.30458
+         33.91138    43.25976    51.25789    52.47788    55.95201   -11.42144    -6.13021    -6.12475    -5.31632    -5.00669
+         -3.59669    15.78539    17.70195    26.35656    33.65811    34.70095    44.33151    52.19756    53.40162    56.81500
+  303   -10.86668    -8.78550    -8.14815    -7.73113    -6.87446    -6.07088    12.20345    13.39824    24.16681    30.16076
+         34.45941    41.69291    51.59442    53.50069    73.42828   -10.30374    -6.46941    -6.06914    -5.36856    -4.52282
+         -3.37980    12.99243    14.07496    25.20730    31.10941    35.25763    42.87517    52.54465    54.44913    73.61904
+  304   -10.22702    -9.11626    -8.25621    -7.44231    -6.42464    -4.96078     7.78585    11.16224    23.68482    29.71312
+         33.26852    40.14714    51.46819    56.73611    87.70379    -9.23168    -6.93178    -6.19201    -5.06516    -3.96144
+         -2.79021     8.66350    11.86530    24.63850    30.51427    34.13404    41.33822    52.42250    57.65981    87.78308
+  305   -10.06493    -9.10561    -8.42456    -7.29177    -6.00813    -3.16091     3.78087     9.97882    22.26880    31.51928
+         32.86819    38.70026    51.35175    61.41031   100.19732    -8.53254    -7.15033    -6.37609    -4.85294    -3.53366
+         -1.52975     4.85361    10.68104    23.09760    32.48443    33.79731    39.85064    52.26859    62.32797   100.57076
+  306   -10.08806    -9.00035    -8.52326    -7.26553    -5.82785    -1.66236     1.58478     9.57480    21.65697    31.40858
+         34.34851    37.81484    51.40138    63.78474   107.31576    -8.34275    -7.12988    -6.48280    -4.81884    -3.33789
+         -0.39836     2.89804    10.27300    22.46010    32.36803    35.43649    38.90170    52.29252    64.70686   107.88214
+  307   -10.31986    -8.67761    -8.58607    -7.32067    -5.71439    -3.19878     2.02124    12.98682    20.75709    30.99111
+         34.71520    37.63805    50.64673    64.81221   120.14495    -8.73747    -6.73554    -6.64595    -4.77685    -3.21828
+         -1.74556     3.32195    13.63116    21.50115    31.80843    35.93889    38.74022    51.55087    65.74243   120.39273
+  308   -10.36507    -8.74243    -8.58733    -7.32579    -6.07495    -4.88353     5.21828    13.63802    22.31966    31.79996
+         33.63775    38.27531    50.67371    60.69931    93.89732    -9.17888    -6.77622    -6.53901    -4.82627    -3.63524
+         -2.81181     6.23139    14.29515    23.14869    32.60948    34.70463    39.42040    51.62526    61.62831    94.06519
+  309   -10.81463    -8.72666    -8.42690    -7.50220    -6.66257    -6.07143     9.70698    14.96911    24.40604    32.09432
+         33.05969    40.68314    50.92648    55.75687    71.67994   -10.18237    -6.52920    -6.34857    -5.08937    -4.30512
+         -3.39685    10.54027    15.63715    25.38631    33.13191    33.85627    41.82820    51.90966    56.68855    72.05547
+  310   -11.75661    -8.39075    -8.24125    -7.82606    -7.29027    -6.53135    15.06143    17.03353    25.32750    32.30458
+         33.91138    43.25976    51.25789    52.47788    55.95201   -11.42144    -6.13021    -6.12475    -5.31632    -5.00669
+         -3.59669    15.78539    17.70195    26.35656    33.65811    34.70095    44.33152    52.19756    53.40162    56.81500
+  311   -12.72953    -8.15523    -8.15376    -7.83237    -7.73338    -6.73043    19.92832    19.93378    26.89313    32.88842
+         33.42791    43.44299    46.44958    51.24850    51.25558   -12.50248    -6.02469    -6.01761    -5.48999    -5.05997
+         -3.72684    20.59779    20.60142    27.93220    34.22568    34.69559    44.16511    47.76328    52.13545    52.14206
+  312   -13.39487    -8.34690    -8.24186    -7.76388    -7.44282    -6.89162    21.50974    23.69649    31.42248    31.71416
+         32.65138    39.57110    45.71960    50.09837    51.02888   -13.20238    -6.20908    -6.09302    -5.53036    -4.59004
+         -3.88667    22.20870    24.38414    32.22356    32.71964    34.80105    40.49631    46.66846    50.94189    51.86950
+  313   -13.62629    -8.45473    -8.27357    -7.73104    -7.21367    -7.02312    21.67042    27.25905    28.61348    32.41889
+         36.03859    36.05072    47.14165    48.50510    50.99956   -13.44150    -6.32074    -6.12547    -5.49387    -4.30923
+         -4.03889    22.37599    27.92944    29.44543    34.62213    36.92539    37.18704    47.94926    49.35178    51.81967
+  314   -13.39487    -8.34690    -8.24186    -7.76388    -7.44282    -6.89161    21.50974    23.69649    31.42248    31.71416
+         32.65138    39.57110    45.71960    50.09837    51.02888   -13.20238    -6.20908    -6.09302    -5.53036    -4.59004
+         -3.88667    22.20870    24.38414    32.22356    32.71965    34.80105    40.49631    46.66845    50.94189    51.86950
+  315   -12.72953    -8.15523    -8.15376    -7.83238    -7.73338    -6.73042    19.92832    19.93378    26.89314    32.88842
+         33.42791    43.44299    46.44958    51.24850    51.25558   -12.50248    -6.02469    -6.01761    -5.48999    -5.05997
+         -3.72684    20.59779    20.60142    27.93221    34.22568    34.69559    44.16511    47.76328    52.13545    52.14206
+  316   -11.75661    -8.39075    -8.24125    -7.82606    -7.29027    -6.53135    15.06143    17.03353    25.32751    32.30458
+         33.91138    43.25976    51.25789    52.47788    55.95201   -11.42144    -6.13021    -6.12475    -5.31632    -5.00669
+         -3.59669    15.78539    17.70195    26.35656    33.65811    34.70095    44.33151    52.19756    53.40162    56.81500
+  317   -10.81463    -8.72667    -8.42690    -7.50220    -6.66257    -6.07142     9.70698    14.96911    24.40604    32.09432
+         33.05969    40.68314    50.92648    55.75687    71.67994   -10.18237    -6.52920    -6.34857    -5.08937    -4.30512
+         -3.39685    10.54027    15.63715    25.38631    33.13191    33.85627    41.82820    51.90966    56.68855    72.05547
+  318   -10.36507    -8.74243    -8.58733    -7.32579    -6.07495    -4.88353     5.21828    13.63802    22.31967    31.79996
+         33.63776    38.27531    50.67371    60.69931    93.89732    -9.17888    -6.77622    -6.53901    -4.82627    -3.63524
+         -2.81181     6.23139    14.29515    23.14869    32.60948    34.70463    39.42040    51.62526    61.62831    94.06519
+  319   -10.31986    -8.67761    -8.58607    -7.32067    -5.71439    -3.19878     2.02124    12.98682    20.75709    30.99111
+         34.71520    37.63805    50.64673    64.81221   120.14495    -8.73747    -6.73555    -6.64595    -4.77685    -3.21828
+         -1.74556     3.32195    13.63116    21.50115    31.80843    35.93889    38.74022    51.55087    65.74243   120.39273
+  320   -10.42605    -8.97434    -8.11415    -7.17418    -5.86612    -3.22461     1.40258    12.53945    24.04201    26.88703
+         35.30760    41.06566    50.63435    65.98044   113.69600    -8.87380    -6.97941    -6.33750    -4.51811    -3.36570
+         -1.80554     2.82803    13.19719    24.73170    27.78405    36.43092    42.17737    51.56599    66.92206   114.49693
+  321   -10.43536    -8.94144    -8.23968    -7.17234    -6.06639    -4.29575     3.27258    12.96709    24.63388    27.35411
+         35.46255    40.95488    50.61029    63.36531    95.58345    -9.06902    -6.94310    -6.47616    -4.54030    -3.53996
+         -2.45253     4.44472    13.63268    25.35061    28.25049    36.56869    42.03855    51.56096    64.30661    96.42535
+  322   -10.66129    -8.85695    -8.45791    -7.27255    -6.49619    -5.66082     7.11416    14.18531    26.28787    28.59060
+         35.27107    41.45863    50.51343    57.99897    69.02215    -9.83354    -6.82216    -6.55336    -4.70323    -3.87215
+         -3.29531     8.04018    14.86184    27.06806    29.50216    36.32339    42.53019    51.50228    58.96409    70.03875
+  323   -11.46356    -8.67326    -8.46753    -7.51521    -6.83664    -6.50941    12.00251    16.12775    28.55071    29.76002
+         34.55650    43.02560    50.34408    51.14601    54.93078   -11.06515    -6.54601    -6.41683    -4.89761    -4.46045
+         -3.65237    12.78969    16.80055    29.41105    30.67775    35.72052    44.10121    51.31190    52.41996    55.87110
+  324   -12.53280    -8.38869    -8.37501    -7.60830    -7.37882    -6.76974    17.43980    19.08845    29.90119    30.99516
+         33.81256    42.32219    45.41989    50.52756    51.84507   -12.29178    -6.27028    -6.22790    -5.12191    -4.86683
+         -3.77182    18.16513    19.74764    30.89416    31.81754    35.47472    43.23687    46.70331    51.42942    52.74623
+  325   -13.39484    -8.34554    -8.24133    -7.76543    -7.44342    -6.89169    21.50917    23.69699    31.41987    31.71488
+         32.65079    39.57075    45.71979    50.09907    51.03290   -13.20238    -6.20249    -6.09124    -5.53723    -4.59211
+         -3.88698    22.21008    24.38471    32.22207    32.71806    34.80052    40.49450    46.66911    50.94350    51.87239
+  326   -13.85415    -8.36167    -8.30879    -7.82745    -7.20772    -7.01585    25.15562    25.92575    29.26856    32.14739
+         35.42972    37.83604    47.43821    49.47132    50.23386   -13.67532    -6.20974    -6.15364    -5.60649    -4.28434
+         -4.03498    25.89657    26.64001    30.05053    34.44989    36.43586    38.81703    48.21069    50.24878    51.04396
+  327   -13.85416    -8.36328    -8.30763    -7.82715    -7.20736    -7.01595    25.14871    25.93385    29.26926    32.14725
+         35.42687    37.83855    47.43938    49.46721    50.23463   -13.67532    -6.21782    -6.14767    -5.60499    -4.28308
+         -4.03533    25.89077    26.64470    30.05242    34.44960    36.43585    38.81799    48.21234    50.24294    51.04615
+  328   -13.39487    -8.34690    -8.24186    -7.76388    -7.44282    -6.89161    21.50974    23.69649    31.42248    31.71416
+         32.65138    39.57110    45.71960    50.09837    51.02888   -13.20238    -6.20908    -6.09302    -5.53036    -4.59004
+         -3.88667    22.20870    24.38414    32.22356    32.71965    34.80105    40.49631    46.66845    50.94189    51.86950
+  329   -12.53285    -8.39038    -8.37523    -7.60794    -7.37692    -6.76953    17.44322    19.08423    29.90248    30.99596
+         33.81438    42.32246    45.41844    50.53466    51.83333   -12.29175    -6.27105    -6.23624    -5.11402    -4.86494
+         -3.77111    18.16575    19.74465    30.89686    31.81613    35.47787    43.23770    46.70252    51.43524    52.73558
+  330   -11.46360    -8.67435    -8.46747    -7.51553    -6.83596    -6.50802    12.00293    16.12681    28.55247    29.75894
+         34.55918    43.02351    50.34988    51.14596    54.92111   -11.06501    -6.55093    -6.41806    -4.89734    -4.45423
+         -3.65104    12.78890    16.79932    29.41083    30.67827    35.72362    44.10014    51.31633    52.42076    55.86187
+  331   -10.66131    -8.85773    -8.45750    -7.27306    -6.49678    -5.65848     7.11379    14.18539    26.28819    28.59036
+         35.27285    41.45695    50.51685    57.99649    69.01763    -9.83323    -6.82642    -6.55262    -4.70418    -3.87094
+         -3.29029     8.03893    14.86134    27.06717    29.50296    36.32483    42.53012    51.50503    58.96138    70.03449
+  332   -10.43538    -8.94179    -8.23934    -7.17258    -6.06700    -4.29402     3.27196    12.96732    24.63379    27.35413
+         35.46292    40.95457    50.61157    63.36477    95.57963    -9.06875    -6.94533    -6.47540    -4.54099    -3.54125
+         -2.44740     4.44330    13.63251    25.35007    28.25078    36.56901    42.03899    51.56211    64.30585    96.42135
+  333   -10.35456    -9.17783    -7.86245    -7.02201    -6.44780    -3.18998     1.99324    11.07389    18.37082    31.78496
+         37.42933    44.05708    50.80551    64.54619    96.68240    -8.87463    -7.23222    -6.30775    -4.26731    -3.72037
+         -1.61798     3.30456    11.74956    19.05247    32.64303    38.51024    45.18296    51.81942    65.50450    97.92935
+  334   -10.35454    -9.17768    -7.86246    -7.02189    -6.44758    -3.19174     1.99423    11.07381    18.37072    31.78524
+         37.42926    44.05708    50.80405    64.54554    96.68779    -8.87495    -7.23141    -6.30659    -4.26715    -3.72028
+         -1.62265     3.30670    11.74978    19.05273    32.64283    38.51008    45.18280    51.81809    65.50408    97.93505
+  335   -10.41336    -9.10809    -8.24222    -7.08927    -6.66456    -4.60815     5.08580    11.99199    19.31735    32.75348
+         37.72913    43.68339    50.16234    59.34242    79.68079    -9.30947    -7.14317    -6.64872    -4.36109    -3.79790
+         -2.57586     6.10143    12.67687    19.99424    33.63264    38.76458    44.79836    51.17959    60.39337    81.08944
+  336   -10.91952    -8.95732    -8.63478    -7.23828    -6.79870    -5.79109     9.37465    13.75987    21.22384    34.17910
+         37.59238    43.65988    49.10781    51.96241    60.65428   -10.37260    -6.93396    -6.74130    -4.49085    -3.88755
+         -3.49975    10.21605    14.43894    21.89509    35.12306    38.54778    44.81267    50.11613    53.47654    61.87325
+  337   -11.95758    -8.70400    -8.65563    -7.32184    -6.89073    -6.67540    14.08659    16.76728    23.91808    34.70020
+         36.66659    41.47276    45.43406    48.82380    53.81258   -11.66683    -6.61394    -6.60945    -4.52697    -4.43348
+         -3.87285    14.84295    17.42294    24.59720    35.69079    37.92714    43.03223    46.69497    49.76092    54.74860
+  338   -12.96288    -8.56197    -8.42071    -7.34775    -7.28443    -6.96605    17.92946    22.44831    26.76787    34.03336
+         34.69547    37.99556    45.97870    48.66505    51.68801   -12.75262    -6.45051    -6.29718    -5.09030    -4.43170
+         -3.97873    18.63761    23.12426    27.49660    35.53834    36.17118    39.13925    46.94507    49.55309    52.57102
+  339   -13.62626    -8.45329    -8.27298    -7.73273    -7.21445    -7.02312    21.66970    27.26713    28.60257    32.41849
+         36.03916    36.05027    47.14020    48.50790    51.00504   -13.44150    -6.31358    -6.12323    -5.50152    -4.31217
+         -4.03888    22.37757    27.93447    29.43920    34.62196    36.92402    37.18368    47.94607    49.35800    51.82361
+  340   -13.85415    -8.36167    -8.30879    -7.82745    -7.20772    -7.01585    25.15562    25.92575    29.26856    32.14739
+         35.42973    37.83604    47.43821    49.47132    50.23386   -13.67532    -6.20974    -6.15364    -5.60649    -4.28434
+         -4.03498    25.89657    26.64001    30.05053    34.44989    36.43586    38.81703    48.21069    50.24878    51.04396
+  341   -13.62629    -8.45473    -8.27357    -7.73104    -7.21367    -7.02312    21.67042    27.25905    28.61348    32.41890
+         36.03860    36.05072    47.14165    48.50510    50.99956   -13.44150    -6.32074    -6.12547    -5.49387    -4.30923
+         -4.03889    22.37599    27.92944    29.44543    34.62213    36.92539    37.18704    47.94926    49.35178    51.81967
+  342   -12.96294    -8.56338    -8.42191    -7.34560    -7.28343    -6.96570    17.93118    22.44601    26.76949    34.03378
+         34.69997    37.99462    45.97822    48.66737    51.67619   -12.75258    -6.45708    -6.30294    -5.08011    -4.42860
+         -3.97743    18.63658    23.12246    27.49581    35.54144    36.17525    39.14213    46.94390    49.55352    52.56045
+  343   -11.95764    -8.70554    -8.65630    -7.32147    -6.89042    -6.67258    14.08854    16.76496    23.91850    34.70238
+         36.66874    41.47347    45.43240    48.83075    53.79617   -11.66663    -6.61909    -6.61521    -4.52495    -4.42380
+         -3.87056    14.84210    17.42091    24.59585    35.69454    37.93166    43.03334    46.69382    49.76575    54.73281
+  344   -10.91953    -8.95819    -8.63557    -7.23829    -6.79853    -5.78799     9.37457    13.75940    21.22435    34.17859
+         37.59507    43.65841    49.11453    51.96489    60.63736   -10.37203    -6.93852    -6.74529    -4.48997    -3.88556
+         -3.49063    10.21410    14.43778    21.89410    35.12495    38.55080    44.81208    50.12107    53.47916    61.85639
+  345   -10.41337    -9.10855    -8.24258    -7.08954    -6.66471    -4.60509     5.08481    11.99209    19.31769    32.75274
+         37.73001    43.68295    50.16694    59.34256    79.66917    -9.30865    -7.14583    -6.65185    -4.36116    -3.79741
+         -2.56703     6.09873    12.67623    19.99357    33.63340    38.76557    44.79860    51.18341    60.39311    81.07746
+  346   -10.08806    -9.26238    -8.17487    -6.95142    -6.81550    -3.14020     3.58544     9.86591    13.19973    37.78966
+         40.31302    45.99264    50.90085    61.63870   105.04080    -8.72071    -7.36850    -6.77171    -4.09856    -3.81861
+         -1.41857     4.67084    10.57843    13.86072    38.68871    41.39600    47.13621    51.88868    62.64122   106.23502
+  347   -10.10624    -9.29695    -7.87804    -6.91861    -6.78527    -1.95606     1.57804     9.44679    12.73462    37.32981
+         40.08410    46.34056    52.23080    63.91278   110.13460    -8.57717    -7.41443    -6.48728    -4.06457    -3.79984
+         -0.60095     2.91822    10.15395    13.40179    38.22812    41.18183    47.48588    53.24039    64.87141   111.13816
+  348   -10.08803    -9.26208    -8.17427    -6.95141    -6.81577    -3.14338     3.58716     9.86601    13.19961    37.79025
+         40.31285    45.99281    50.89398    61.64407   105.04967    -8.72183    -7.36695    -6.76759    -4.09877    -3.82003
+         -1.42740     4.67502    10.57922    13.86125    38.68836    41.39548    47.13619    51.88292    62.64662   106.24410
+  349   -10.24086    -9.15541    -8.78035    -7.03144    -6.86948    -4.63730     7.38061    11.09490    14.66033    38.89883
+         40.52039    45.20604    48.29554    56.75597    82.52569    -9.43690    -7.22194    -7.04972    -4.17230    -3.87791
+         -2.55797     8.26483    11.81119    15.30473    39.80724    41.52934    46.35019    49.27349    57.91457    84.08931
+  350   -11.06957    -8.96699    -8.92598    -7.09873    -6.94672    -5.79140    11.54721    13.46537    17.13868    39.18248
+         39.77824    44.89039    46.97033    49.11712    60.01132   -10.67164    -6.96430    -6.94701    -4.22343    -3.97753
+         -3.55317    12.32935    14.16706    17.75875    40.17754    40.64244    46.06914    47.95157    50.89065    61.28567
+  351   -12.13834    -8.77668    -8.68708    -7.14637    -7.01845    -6.67972    14.67592    18.50679    20.43897    37.48976
+         37.78336    39.48068    46.16555    47.18569    53.52125   -11.87691    -6.71083    -6.62513    -4.41005    -4.26760
+         -4.05364    15.40264    19.21672    21.04115    38.64285    38.71729    41.54432    47.19400    48.13388    54.46309
+  352   -12.96288    -8.56197    -8.42071    -7.34775    -7.28443    -6.96605    17.92946    22.44831    26.76787    34.03336
+         34.69548    37.99556    45.97870    48.66505    51.68801   -12.75262    -6.45051    -6.29718    -5.09030    -4.43170
+         -3.97873    18.63761    23.12426    27.49660    35.53834    36.17118    39.13925    46.94506    49.55309    52.57102
+  353   -13.39484    -8.34554    -8.24133    -7.76543    -7.44342    -6.89168    21.50917    23.69699    31.41987    31.71489
+         32.65079    39.57075    45.71978    50.09907    51.03290   -13.20238    -6.20249    -6.09124    -5.53723    -4.59212
+         -3.88698    22.21008    24.38471    32.22207    32.71807    34.80052    40.49450    46.66911    50.94350    51.87239
+  354   -13.39487    -8.34690    -8.24186    -7.76388    -7.44282    -6.89161    21.50974    23.69649    31.42248    31.71416
+         32.65138    39.57110    45.71960    50.09837    51.02888   -13.20238    -6.20908    -6.09302    -5.53036    -4.59004
+         -3.88667    22.20870    24.38414    32.22356    32.71965    34.80105    40.49631    46.66845    50.94189    51.86950
+  355   -12.96296    -8.56361    -8.42200    -7.34522    -7.28318    -6.96590    17.92998    22.44927    26.76897    34.03388
+         34.69430    38.00025    45.97907    48.66401    51.67657   -12.75259    -6.45889    -6.30249    -5.07946    -4.42704
+         -3.97798    18.63556    23.12344    27.49712    35.54127    36.17221    39.14545    46.94455    49.55008    52.56138
+  356   -12.13844    -8.77822    -8.68828    -7.14529    -7.01812    -6.67678    14.67665    18.51025    20.43511    37.48910
+         37.78870    39.48330    46.16702    47.18718    53.50299   -11.87675    -6.71856    -6.63079    -4.39892    -4.26285
+         -4.05216    15.40069    19.21716    21.03854    38.64924    38.71988    41.54873    47.19465    48.13197    54.44630
+  357   -11.06960    -8.96842    -8.92688    -7.09832    -6.94603    -5.78805    11.54840    13.46427    17.13835    39.18517
+         39.77942    44.89027    46.97683    49.11828    59.99082   -10.67103    -6.97198    -6.95097    -4.22136    -3.97470
+         -3.54159    12.32762    14.16482    17.75788    40.18198    40.64677    46.06774    47.95522    50.89244    61.26569
+  358   -10.24079    -9.15607    -8.78152    -7.03130    -6.86894    -4.63370     7.37987    11.09441    14.66062    38.89761
+         40.52231    45.20578    48.30453    56.74918    82.51272    -9.43550    -7.22555    -7.05563    -4.17146    -3.87535
+         -2.54700     8.26159    11.80961    15.30405    39.80848    41.53174    46.35009    49.27989    57.90828    84.07604
+  359    -9.63323    -9.27080    -8.88082    -6.91298    -6.87426    -3.11122     5.91370     8.70646     9.99150    43.26631
+         43.47037    46.29781    48.59751    59.85521   116.31783    -8.47074    -7.41587    -7.30268    -3.97435    -3.85980
+         -1.30288     6.82433     9.52113    10.61091    44.14092    44.59303    47.45434    49.53667    60.90812   117.42100
+  360    -9.71109    -9.32301    -8.37306    -6.87484    -6.84343    -1.25591     2.60365     8.17936     8.88029    42.93565
+         43.21995    47.23561    52.42059    61.52511   125.55384    -8.17627    -7.50038    -6.95512    -3.94218    -3.79778
+          0.13924     3.73172     8.99982     9.51504    43.81540    44.37374    48.39237    53.39532    62.50436   126.29286
+  361    -9.71101    -9.32284    -8.37281    -6.87484    -6.84373    -1.25861     2.60571     8.17959     8.88023    42.93595
+         43.22002    47.23577    52.41330    61.53296   125.55763    -8.17702    -7.49960    -6.95271    -3.94224    -3.79906
+          0.13221     3.73655     9.00055     9.51531    43.81534    44.37353    48.39257    53.38917    62.51163   126.29645
+  362    -9.63322    -9.27031    -8.87991    -6.91301    -6.87510    -3.11490     5.91515     8.70712     9.99155    43.26770
+         43.46987    46.29766    48.58543    59.86883   116.32746    -8.47332    -7.41362    -7.29558    -3.97465    -3.86344
+         -1.31361     6.82896     9.52320    10.61153    44.14006    44.59164    47.45552    49.52734    60.92027   117.43066
+  363   -10.06769    -9.15547    -9.15547    -6.95325    -6.95324    -4.62805     9.80049     9.80049    12.59617    42.50854
+         42.50855    45.71583    45.71583    55.79802    85.41260    -9.47038    -7.23647    -7.23647    -4.00111    -4.00111
+         -2.53187    10.60391    10.60391    13.19394    43.45187    43.45188    46.78462    46.78462    56.98840    87.01906
+  364   -11.06957    -8.96699    -8.92598    -7.09873    -6.94672    -5.79140    11.54721    13.46537    17.13868    39.18249
+         39.77824    44.89039    46.97034    49.11711    60.01132   -10.67164    -6.96430    -6.94701    -4.22343    -3.97753
+         -3.55317    12.32935    14.16706    17.75875    40.17754    40.64244    46.06914    47.95158    50.89065    61.28567
+  365   -11.95758    -8.70400    -8.65563    -7.32184    -6.89073    -6.67540    14.08659    16.76728    23.91808    34.70021
+         36.66659    41.47276    45.43406    48.82380    53.81258   -11.66683    -6.61394    -6.60945    -4.52697    -4.43348
+         -3.87285    14.84295    17.42294    24.59720    35.69079    37.92714    43.03223    46.69496    49.76092    54.74860
+  366   -12.53280    -8.38869    -8.37501    -7.60830    -7.37882    -6.76974    17.43980    19.08845    29.90120    30.99516
+         33.81256    42.32219    45.41988    50.52756    51.84507   -12.29178    -6.27028    -6.22790    -5.12191    -4.86683
+         -3.77181    18.16513    19.74764    30.89417    31.81754    35.47472    43.23687    46.70331    51.42942    52.74623
+  367   -12.72953    -8.15523    -8.15376    -7.83238    -7.73338    -6.73042    19.92832    19.93378    26.89314    32.88842
+         33.42791    43.44299    46.44958    51.24850    51.25558   -12.50248    -6.02469    -6.01761    -5.48999    -5.05997
+         -3.72684    20.59779    20.60142    27.93221    34.22568    34.69559    44.16511    47.76328    52.13545    52.14206
+  368   -12.53289    -8.38993    -8.37702    -7.60682    -7.37622    -6.76971    17.43937    19.08976    29.90004    30.99837
+         33.81352    42.32447    45.41948    50.52784    51.83497   -12.29180    -6.28000    -6.23248    -5.11128    -4.86139
+         -3.77136    18.16192    19.74815    30.89695    31.81956    35.47532    43.23976    46.70232    51.42832    52.73870
+  369   -11.95773    -8.70516    -8.65756    -7.32026    -6.88965    -6.67330    14.08571    16.77033    23.91788    34.69823
+         36.66968    41.47955    45.43352    48.82438    53.79502   -11.66677    -6.62384    -6.61455    -4.52031    -4.42123
+         -3.87250    14.83925    17.42422    24.59683    35.69375    37.93011    43.03805    46.69410    49.75894    54.73375
+  370   -11.06970    -8.96797    -8.92765    -7.09723    -6.94642    -5.78814    11.54618    13.46919    17.13610    39.17984
+         39.78731    44.89205    46.97129    49.11842    59.99033   -10.67124    -6.96882    -6.95604    -4.21697    -3.97545
+         -3.54239    12.32575    14.16803    17.75663    40.18045    40.65028    46.06885    47.94889    50.89408    61.26582
+  371   -10.06757    -9.15697    -9.15623    -6.95311    -6.95199    -4.62438     9.79955     9.80185    12.59476    42.50540
+         42.51600    45.71730    45.72098    55.78686    85.40031    -9.46904    -7.24458    -7.24001    -4.00031    -3.99569
+         -2.52029    10.60086    10.60199    13.19261    43.45487    43.45948    46.78141    46.78710    56.97950    87.00642
+  372    -9.63360    -9.27151    -8.87998    -6.91188    -6.87477    -3.11144     5.91541     8.70776     9.98862    43.27661
+         43.46862    46.29761    48.58917    59.85207   116.31864    -8.47218    -7.42000    -7.29878    -3.96959    -3.86194
+         -1.30291     6.82665     9.52093    10.60814    44.14785    44.59232    47.45477    49.52890    60.90648   117.42157
+  373    -9.43779    -9.21996    -8.82642    -6.86453    -6.83784    -1.13539     4.59976     5.57165     8.30964    45.38460
+         46.30556    46.87924    51.10923    60.28534   132.45903    -7.85301    -7.49500    -7.35518    -3.88283    -3.81143
+          0.32204     5.58530     6.37541     9.01514    46.52216    47.24051    48.01568    52.05005    61.29278   133.10978
+  374    -9.45617    -9.17984    -8.73611    -6.84209    -6.82855     0.81247     2.31143     4.93003     7.92474    45.75189
+         47.09237    47.25540    54.20447    58.60024   135.93873    -7.79044    -7.49700    -7.21293    -3.85200    -3.79464
+          1.98047     3.42764     5.77938     8.65102    46.88585    48.03376    48.41344    55.16998    59.56269   136.45911
+  375    -9.43757    -9.21888    -8.82692    -6.86494    -6.83817    -1.13863     4.59979     5.57401     8.31004    45.38483
+         46.30208    46.88068    51.09780    60.30267   132.46402    -7.85502    -7.48919    -7.35465    -3.88475    -3.81289
+          0.31265     5.58918     6.37871     9.01621    46.52147    47.23925    48.01493    52.04178    61.30752   133.11444
+  376    -9.63322    -9.27031    -8.87991    -6.91301    -6.87510    -3.11490     5.91515     8.70712     9.99155    43.26770
+         43.46987    46.29765    48.58543    59.86883   116.32746    -8.47332    -7.41362    -7.29558    -3.97465    -3.86344
+         -1.31361     6.82896     9.52320    10.61153    44.14006    44.59165    47.45551    49.52734    60.92027   117.43066
+  377   -10.24086    -9.15541    -8.78035    -7.03144    -6.86948    -4.63730     7.38061    11.09490    14.66033    38.89883
+         40.52039    45.20604    48.29554    56.75597    82.52569    -9.43690    -7.22194    -7.04972    -4.17230    -3.87791
+         -2.55797     8.26483    11.81119    15.30473    39.80724    41.52934    46.35019    49.27349    57.91457    84.08931
+  378   -10.91952    -8.95732    -8.63478    -7.23828    -6.79870    -5.79109     9.37465    13.75987    21.22384    34.17910
+         37.59238    43.65988    49.10781    51.96241    60.65429   -10.37260    -6.93396    -6.74130    -4.49085    -3.88755
+         -3.49975    10.21605    14.43894    21.89509    35.12306    38.54778    44.81267    50.11613    53.47654    61.87325
+  379   -11.46356    -8.67326    -8.46753    -7.51522    -6.83664    -6.50941    12.00251    16.12775    28.55071    29.76002
+         34.55650    43.02560    50.34408    51.14601    54.93078   -11.06515    -6.54601    -6.41683    -4.89761    -4.46045
+         -3.65236    12.78969    16.80055    29.41105    30.67776    35.72052    44.10121    51.31190    52.41995    55.87110
+  380   -11.75661    -8.39075    -8.24125    -7.82606    -7.29027    -6.53135    15.06143    17.03353    25.32751    32.30458
+         33.91138    43.25976    51.25789    52.47788    55.95201   -11.42144    -6.13021    -6.12475    -5.31632    -5.00669
+         -3.59669    15.78539    17.70195    26.35656    33.65811    34.70095    44.33151    52.19756    53.40162    56.81500
+  381   -11.75668    -8.39171    -8.24253    -7.82485    -7.28868    -6.53140    15.06180    17.03335    25.32748    32.30422
+         33.91460    43.25948    51.25741    52.47235    55.95343   -11.42149    -6.13594    -6.12936    -5.31110    -5.00026
+         -3.59665    15.78413    17.70148    26.35849    33.65795    34.70278    44.33003    52.19702    53.39756    56.81722
+  382   -11.46376    -8.67466    -8.46919    -7.51360    -6.83384    -6.50926    12.00242    16.12888    28.55229    29.76125
+         34.55841    43.02428    50.34391    51.14891    54.91765   -11.06527    -6.55259    -6.42558    -4.89003    -4.44845
+         -3.65268    12.78714    16.80039    29.41378    30.68010    35.72135    44.09825    51.31051    52.42442    55.86085
+  383   -10.91979    -8.95863    -8.63628    -7.23655    -6.79784    -5.78846     9.37443    13.76189    21.22396    34.17876
+         37.59706    43.65927    49.10869    51.96386    60.63599   -10.37264    -6.94012    -6.74970    -4.48305    -3.87928
+         -3.49508    10.21315    14.43910    21.89456    35.12587    38.55136    44.81065    50.11528    53.47958    61.85683
+  384   -10.24118    -9.15661    -8.78130    -7.02984    -6.86901    -4.63402     7.38054    11.09687    14.65805    38.90239
+         40.52451    45.20568    48.29688    56.74492    82.51407    -9.43659    -7.22767    -7.05630    -4.16521    -3.87551
+         -2.54750     8.26207    11.81076    15.30186    39.81249    41.53286    46.34919    49.27258    57.90666    84.07729
+  385   -10.08856    -9.26327    -8.17449    -6.94982    -6.81505    -3.14088     3.58773     9.86682    13.19726    37.79539
+         40.31531    45.99211    50.89470    61.62841   105.04242    -8.72330    -7.37311    -6.76981    -4.09155    -3.81723
+         -1.41868     4.67246    10.57806    13.85777    38.69342    41.39623    47.13556    51.88355    62.63394   106.23608
+  386    -9.71150    -9.32389    -8.37225    -6.87364    -6.84360    -1.25646     2.60679     8.18030     8.87657    42.94532
+         43.21921    47.23542    52.41546    61.51504   125.55405    -8.17861    -7.50527    -6.95116    -3.93679    -3.79849
+          0.14046     3.73468     8.99865     9.51101    43.82268    44.37285    48.39208    53.39090    62.49689   126.29276
+  387    -9.45624    -9.18095    -8.73521    -6.84136    -6.82886     0.81277     2.31436     4.92707     7.92443    45.75294
+         47.09577    47.25541    54.21098    58.58626   135.93765    -7.79036    -7.50310    -7.20873    -3.84874    -3.79590
+          1.98534     3.42844     5.77421     8.65041    46.88584    48.03794    48.41310    55.17427    59.55179   136.45811
+  388    -9.45617    -9.17984    -8.73611    -6.84209    -6.82855     0.81247     2.31143     4.93003     7.92474    45.75189
+         47.09237    47.25540    54.20447    58.60024   135.93873    -7.79044    -7.49700    -7.21293    -3.85201    -3.79463
+          1.98047     3.42764     5.77938     8.65102    46.88585    48.03376    48.41344    55.16998    59.56269   136.45911
+  389    -9.71101    -9.32284    -8.37281    -6.87484    -6.84373    -1.25861     2.60571     8.17959     8.88023    42.93595
+         43.22002    47.23577    52.41330    61.53296   125.55763    -8.17702    -7.49960    -6.95271    -3.94224    -3.79906
+          0.13221     3.73655     9.00055     9.51531    43.81534    44.37353    48.39256    53.38917    62.51163   126.29645
+  390   -10.08803    -9.26208    -8.17427    -6.95141    -6.81577    -3.14338     3.58716     9.86601    13.19961    37.79025
+         40.31286    45.99280    50.89398    61.64407   105.04967    -8.72183    -7.36695    -6.76759    -4.09877    -3.82003
+         -1.42740     4.67502    10.57922    13.86125    38.68836    41.39549    47.13618    51.88292    62.64662   106.24410
+  391   -10.41336    -9.10809    -8.24222    -7.08928    -6.66456    -4.60815     5.08580    11.99199    19.31735    32.75348
+         37.72914    43.68338    50.16234    59.34242    79.68079    -9.30947    -7.14317    -6.64872    -4.36109    -3.79790
+         -2.57586     6.10143    12.67687    19.99424    33.63264    38.76458    44.79836    51.17959    60.39337    81.08944
+  392   -10.66129    -8.85695    -8.45791    -7.27255    -6.49619    -5.66082     7.11416    14.18531    26.28787    28.59061
+         35.27107    41.45862    50.51343    57.99897    69.02215    -9.83354    -6.82216    -6.55336    -4.70323    -3.87215
+         -3.29531     8.04018    14.86184    27.06806    29.50216    36.32339    42.53018    51.50228    58.96409    70.03875
+  393   -10.81463    -8.72667    -8.42690    -7.50220    -6.66257    -6.07142     9.70698    14.96911    24.40604    32.09432
+         33.05969    40.68314    50.92648    55.75687    71.67994   -10.18237    -6.52920    -6.34857    -5.08937    -4.30512
+         -3.39685    10.54027    15.63715    25.38631    33.13191    33.85627    41.82820    51.90966    56.68855    72.05547
+  394   -10.86676    -8.78628    -8.14792    -7.73171    -6.87325    -6.07028    12.20537    13.39590    24.16782    30.15945
+         34.46371    41.69103    51.60373    53.48609    73.42930   -10.30376    -6.47571    -6.06818    -5.36858    -4.51665
+         -3.37893    12.99187    14.07357    25.20958    31.10796    35.25913    42.87533    52.55163    54.43654    73.62099
+  395   -10.81484    -8.72731    -8.42831    -7.50085    -6.66043    -6.07172     9.70764    14.96880    24.40677    32.09292
+         33.06518    40.68315    50.92478    55.74646    71.68273   -10.18270    -6.53376    -6.35511    -5.08272    -4.29690
+         -3.39747    10.53909    15.63616    25.38880    33.13102    33.85932    41.82646    51.90773    56.68063    72.05942
+  396   -10.66166    -8.85849    -8.45875    -7.27106    -6.49426    -5.65972     7.11461    14.18609    26.28941    28.59319
+         35.27285    41.45689    50.51231    57.98698    69.02105    -9.83421    -6.82895    -6.55995    -4.69536    -3.86044
+         -3.29540     8.03815    14.86107    27.07051    29.50408    36.32415    42.52737    51.50085    58.95469    70.03879
+  397   -10.41383    -9.10947    -8.24305    -7.08759    -6.66328    -4.60593     5.08625    11.99294    19.31753    32.75521
+         37.73228    43.68243    50.16263    59.33215    79.67129    -9.31049    -7.14980    -6.65418    -4.35297    -3.79208
+         -2.56903     6.09894    12.67598    19.99349    33.63529    38.76620    44.79699    51.17968    60.38559    81.07976
+  398   -10.35506    -9.17900    -7.86299    -7.02022    -6.44561    -3.19111     1.99561    11.07410    18.37077    31.78789
+         37.43164    44.05630    50.80300    64.53061    96.68303    -8.87752    -7.23811    -6.30854    -4.25913    -3.71340
+         -1.61850     3.30460    11.74840    19.05193    32.64530    38.51023    45.18212    51.81777    65.49189    97.92943
+  399   -10.10677    -9.29803    -7.87791    -6.91704    -6.78438    -1.95607     1.58039     9.44720    12.73222    37.33538
+         40.08630    46.33997    52.22845    63.89719   110.13334    -8.57994    -7.42017    -6.48603    -4.05744    -3.79717
+         -0.59700     2.91772    10.15279    13.39834    38.23296    41.18176    47.48534    53.23913    64.85874   111.13616
+  400    -9.71150    -9.32389    -8.37225    -6.87364    -6.84360    -1.25646     2.60679     8.18030     8.87657    42.94532
+         43.21921    47.23542    52.41546    61.51504   125.55405    -8.17861    -7.50527    -6.95116    -3.93679    -3.79849
+          0.14046     3.73468     8.99865     9.51101    43.82268    44.37285    48.39208    53.39090    62.49689   126.29276
+  401    -9.43779    -9.21996    -8.82642    -6.86453    -6.83784    -1.13539     4.59976     5.57165     8.30964    45.38460
+         46.30556    46.87924    51.10923    60.28534   132.45903    -7.85301    -7.49500    -7.35518    -3.88283    -3.81143
+          0.32204     5.58530     6.37541     9.01514    46.52217    47.24051    48.01567    52.05005    61.29278   133.10978
+  402    -9.71109    -9.32301    -8.37306    -6.87485    -6.84343    -1.25591     2.60365     8.17936     8.88029    42.93565
+         43.21995    47.23561    52.42059    61.52511   125.55384    -8.17627    -7.50038    -6.95512    -3.94218    -3.79778
+          0.13924     3.73172     8.99982     9.51504    43.81540    44.37375    48.39237    53.39532    62.50436   126.29286
+  403   -10.10624    -9.29695    -7.87804    -6.91861    -6.78527    -1.95606     1.57804     9.44679    12.73462    37.32981
+         40.08410    46.34056    52.23080    63.91278   110.13460    -8.57717    -7.41443    -6.48728    -4.06457    -3.79984
+         -0.60095     2.91822    10.15395    13.40179    38.22812    41.18183    47.48588    53.24039    64.87141   111.13816
+  404   -10.35454    -9.17768    -7.86246    -7.02189    -6.44758    -3.19174     1.99423    11.07381    18.37072    31.78524
+         37.42927    44.05708    50.80405    64.54554    96.68779    -8.87495    -7.23141    -6.30659    -4.26715    -3.72028
+         -1.62265     3.30670    11.74978    19.05273    32.64283    38.51008    45.18279    51.81809    65.50408    97.93505
+  405   -10.43536    -8.94144    -8.23968    -7.17234    -6.06639    -4.29575     3.27258    12.96709    24.63388    27.35411
+         35.46255    40.95487    50.61029    63.36531    95.58345    -9.06902    -6.94310    -6.47616    -4.54030    -3.53996
+         -2.45253     4.44472    13.63268    25.35061    28.25049    36.56869    42.03854    51.56096    64.30661    96.42535
+  406   -10.36507    -8.74243    -8.58733    -7.32579    -6.07495    -4.88353     5.21828    13.63802    22.31967    31.79996
+         33.63776    38.27531    50.67371    60.69931    93.89732    -9.17888    -6.77622    -6.53901    -4.82627    -3.63524
+         -2.81181     6.23139    14.29515    23.14869    32.60948    34.70463    39.42040    51.62526    61.62831    94.06519
+  407   -10.22709    -9.11685    -8.25552    -7.44310    -6.42444    -4.95950     7.78557    11.16226    23.68481    29.71248
+         33.27199    40.14520    51.47345    56.72685    87.70403    -9.23160    -6.93578    -6.18937    -5.06736    -3.95944
+         -2.78685     8.66230    11.86490    24.63926    30.51396    34.13352    41.34014    52.42643    57.65071    87.78383
+  408   -10.22728    -9.11685    -8.25658    -7.44222    -6.42347    -4.95969     7.78684    11.16092    23.68653    29.71108
+         33.27293    40.14769    51.47297    56.71975    87.70510    -9.23210    -6.93660    -6.19355    -5.06320    -3.95649
+         -2.78701     8.66245    11.86373    24.64123    30.51224    34.13437    41.34140    52.42463    57.64605    87.78523
+  409   -10.36548    -8.74279    -8.58876    -7.32439    -6.07242    -4.88405     5.21939    13.63764    22.32030    31.80630
+         33.63685    38.27528    50.67060    60.68545    93.89980    -9.18028    -6.77899    -6.54566    -4.81907    -3.62593
+         -2.81323     6.23041    14.29370    23.15045    32.61287    34.70426    39.41906    51.62158    61.61740    94.06858
+  410   -10.43585    -8.94300    -8.24006    -7.17078    -6.06392    -4.29555     3.27366    12.96755    24.63486    27.35772
+         35.46412    40.95372    50.60795    63.35025    95.58208    -9.07113    -6.95048    -6.47911    -4.53234    -3.52981
+         -2.45154     4.44280    13.63148    25.35283    28.25196    36.56857    42.03725    51.55872    64.29433    96.42425
+  411   -10.42654    -8.97576    -8.11464    -7.17245    -5.86315    -3.22602     1.40473    12.53966    24.04286    26.89089
+         35.30901    41.06489    50.63127    65.96422   113.69546    -8.87676    -6.98631    -6.33926    -4.50991    -3.35427
+         -1.80732     2.82681    13.19585    24.73402    27.78536    36.43026    42.17659    51.56309    66.90880   114.49639
+  412   -10.35506    -9.17900    -7.86299    -7.02022    -6.44561    -3.19111     1.99561    11.07410    18.37077    31.78789
+         37.43164    44.05630    50.80300    64.53061    96.68303    -8.87752    -7.23811    -6.30854    -4.25913    -3.71340
+         -1.61850     3.30460    11.74840    19.05193    32.64530    38.51023    45.18212    51.81777    65.49189    97.92943
+  413   -10.08856    -9.26327    -8.17449    -6.94982    -6.81505    -3.14088     3.58773     9.86682    13.19726    37.79539
+         40.31531    45.99211    50.89470    61.62841   105.04242    -8.72330    -7.37311    -6.76981    -4.09155    -3.81724
+         -1.41868     4.67246    10.57806    13.85777    38.69342    41.39623    47.13556    51.88355    62.63394   106.23608
+  414    -9.63360    -9.27151    -8.87998    -6.91188    -6.87477    -3.11144     5.91541     8.70776     9.98862    43.27661
+         43.46862    46.29761    48.58917    59.85207   116.31864    -8.47218    -7.42000    -7.29878    -3.96959    -3.86194
+         -1.30291     6.82665     9.52093    10.60814    44.14785    44.59232    47.45477    49.52890    60.90648   117.42157
+  415    -9.63323    -9.27080    -8.88082    -6.91298    -6.87426    -3.11122     5.91370     8.70646     9.99150    43.26631
+         43.47038    46.29780    48.59751    59.85521   116.31783    -8.47074    -7.41587    -7.30268    -3.97435    -3.85980
+         -1.30288     6.82433     9.52113    10.61091    44.14092    44.59303    47.45433    49.53667    60.90812   117.42100
+  416   -10.08806    -9.26238    -8.17487    -6.95142    -6.81550    -3.14020     3.58544     9.86591    13.19973    37.78966
+         40.31302    45.99264    50.90085    61.63870   105.04080    -8.72071    -7.36850    -6.77171    -4.09856    -3.81861
+         -1.41857     4.67084    10.57843    13.86072    38.68871    41.39601    47.13621    51.88868    62.64122   106.23502
+  417   -10.35456    -9.17783    -7.86245    -7.02202    -6.44780    -3.18998     1.99324    11.07389    18.37082    31.78497
+         37.42933    44.05708    50.80551    64.54619    96.68240    -8.87464    -7.23222    -6.30775    -4.26731    -3.72037
+         -1.61798     3.30456    11.74956    19.05247    32.64303    38.51024    45.18296    51.81942    65.50450    97.92935
+  418   -10.42605    -8.97434    -8.11415    -7.17418    -5.86612    -3.22461     1.40258    12.53945    24.04201    26.88703
+         35.30760    41.06565    50.63435    65.98045   113.69600    -8.87380    -6.97941    -6.33750    -4.51811    -3.36570
+         -1.80553     2.82803    13.19719    24.73170    27.78405    36.43093    42.17737    51.56599    66.92206   114.49693
+  419   -10.31986    -8.67761    -8.58607    -7.32067    -5.71439    -3.19878     2.02124    12.98682    20.75710    30.99111
+         34.71520    37.63804    50.64673    64.81221   120.14495    -8.73747    -6.73554    -6.64595    -4.77686    -3.21828
+         -1.74556     3.32195    13.63116    21.50116    31.80843    35.93889    38.74022    51.55087    65.74243   120.39273
+  420   -10.06496    -9.10612    -8.42390    -7.29215    -6.00822    -3.15979     3.78024     9.97906    22.26847    31.51799
+         32.87160    38.69893    51.35368    61.40622   100.19671    -8.53235    -7.15325    -6.37340    -4.85423    -3.53396
+         -1.52632     4.85223    10.68090    23.09755    32.48518    33.79588    39.85241    52.27000    62.32360   100.57027
+  421    -9.80671    -9.45853    -8.34823    -7.15196    -6.26695    -3.14747     6.10742     6.88831    25.41724    28.62407
+         32.00624    40.51633    53.25471    58.12117    93.39604    -8.41737    -7.34064    -6.29063    -4.77491    -3.78306
+         -1.44254     7.07711     7.63636    26.47409    29.33995    32.98814    41.62229    54.19435    59.01720    93.84362
+  422   -10.06540    -9.10595    -8.42497    -7.29155    -6.00640    -3.16034     3.78207     9.97739    22.27046    31.52023
+         32.86967    38.70252    51.35230    61.39378   100.19795    -8.53451    -7.15274    -6.37827    -4.85005    -3.52869
+         -1.52650     4.85259    10.67884    23.09971    32.48437    33.79600    39.85500    52.26632    62.31451   100.57199
+  423   -10.32035    -8.67902    -8.58634    -7.31926    -5.71162    -3.19991     2.02314    12.98642    20.75743    30.99764
+         34.71576    37.63743    50.64267    64.79633   120.14571    -8.74033    -6.73646    -6.65265    -4.76967    -3.20834
+         -1.74698     3.32097    13.62942    21.50245    31.81183    35.93917    38.73919    51.54603    65.72967   120.39410
+  424   -10.06361    -9.39497    -8.02762    -7.34229    -5.77384    -1.62926     2.48504    10.20272    17.18577    29.93202
+         36.54374    36.89150    50.91155    62.43950    78.71390    -8.24767    -7.45090    -5.93293    -5.02372    -3.27863
+         -0.34061     3.62553    10.83221    18.05150    30.96169    37.70275    37.71984    51.82387    63.35189    79.95436
+  425   -10.06551    -9.10632    -8.42594    -7.29012    -6.00523    -3.16119     3.78168     9.97930    22.26817    31.52293
+         32.87175    38.70116    51.34759    61.39388   100.19772    -8.53500    -7.15420    -6.38269    -4.84457    -3.52233
+         -1.53081     4.85185    10.67970    23.09854    32.48862    33.79671    39.85107    52.26347    62.31423   100.57103
+  426   -10.08341    -9.13800    -8.48868    -7.21608    -6.42353    -4.05486     5.56642     9.12759    25.59843    29.62686
+         35.89488    41.41685    51.42446    58.33301    88.78803    -8.88801    -7.15556    -6.58958    -4.64628    -3.77973
+         -2.12018     6.54523     9.85963    26.43982    30.60487    36.77996    42.54728    52.37476    59.27220    89.48039
+  427   -10.17302    -9.15793    -8.61940    -7.15139    -6.70277    -4.47563     7.19577     9.14003    19.08998    35.56117
+         38.38134    43.83550    50.19940    56.00068    79.28375    -9.23110    -7.21270    -6.84652    -4.41457    -3.81356
+         -2.42131     8.12783     9.84239    19.78449    36.59912    39.20058    44.99420    51.16046    57.13507    80.61173
+  428   -10.24118    -9.15661    -8.78130    -7.02984    -6.86901    -4.63402     7.38054    11.09687    14.65805    38.90239
+         40.52451    45.20568    48.29688    56.74492    82.51407    -9.43659    -7.22767    -7.05630    -4.16521    -3.87551
+         -2.54750     8.26207    11.81076    15.30186    39.81249    41.53286    46.34919    49.27258    57.90666    84.07729
+  429   -10.24096    -9.15683    -8.78079    -7.03074    -6.86911    -4.63368     7.38128    11.09369    14.66000    38.90513
+         40.51935    45.20608    48.30064    56.74536    82.51357    -9.43608    -7.22971    -7.05262    -4.16858    -3.87651
+         -2.54597     8.26267    11.80857    15.30343    39.81235    41.53150    46.34918    49.27676    57.90610    84.07692
+  430   -10.17250    -9.15791    -8.61840    -7.15305    -6.70409    -4.47464     7.19745     9.13606    19.09015    35.56421
+         38.37641    43.83400    50.20844    56.00178    79.28264    -9.22967    -7.21348    -6.84059    -4.42142    -3.81948
+         -2.41713     8.12932     9.84014    19.78461    36.59987    39.19791    44.99545    51.16861    57.13440    80.61066
+  431   -10.08281    -9.13768    -8.48708    -7.21830    -6.42599    -4.05341     5.56566     9.12650    25.59514    29.62697
+         35.89585    41.41404    51.43209    58.33999    88.78578    -8.88590    -7.15479    -6.58147    -4.65587    -3.78955
+         -2.11495     6.54547     9.85992    26.43666    30.60435    36.78062    42.54841    52.38213    59.27669    89.47820
+  432   -10.06496    -9.10612    -8.42390    -7.29215    -6.00822    -3.15979     3.78024     9.97906    22.26847    31.51799
+         32.87160    38.69893    51.35368    61.40622   100.19671    -8.53235    -7.15325    -6.37340    -4.85423    -3.53396
+         -1.52632     4.85223    10.68090    23.09755    32.48518    33.79588    39.85241    52.27000    62.32360   100.57027
+  433   -10.06314    -9.39478    -8.02597    -7.34343    -5.77661    -1.62822     2.48330    10.20309    17.18561    29.93308
+         36.54336    36.88369    50.91453    62.45459    78.71442    -8.24467    -7.45010    -5.92582    -5.03034    -3.28850
+         -0.33887     3.62596    10.83387    18.05069    30.96281    37.69840    37.71885    51.82833    63.36389    79.95502
+  434   -10.01623    -9.70407    -7.91334    -6.94576    -5.86448     0.17301     2.03374     7.25724    18.77869    27.53425
+         34.52557    39.19880    53.03680    61.46427    65.44154    -8.02407    -7.75102    -5.83788    -4.64774    -3.39101
+          1.26556     3.16145     7.98558    19.71475    28.62300    35.48206    40.02914    53.98483    62.36593    67.12758
+  435    -9.92172    -9.89213    -7.94957    -6.52165    -6.10009     0.65693     3.67093     4.27001    22.73811    24.20661
+         33.34360    39.29016    56.67032    59.11761    61.88645    -7.94761    -7.84913    -5.92322    -4.16254    -3.66543
+          1.77535     4.64249     5.11053    23.84508    25.16409    34.20206    40.15767    57.57711    60.06320    63.67192
+  436   -10.01657    -9.70411    -7.91347    -6.94681    -5.86214     0.17160     2.03640     7.25598    18.77986    27.53345
+         34.52555    39.20149    53.04272    61.44935    65.44053    -8.02692    -7.75065    -5.83801    -4.65017    -3.38338
+          1.26526     3.16200     7.98372    19.71600    28.62169    35.48118    40.03235    53.98762    62.35433    67.12633
+  437    -9.95288    -9.70810    -7.86809    -7.02497    -6.02791    -1.82962     4.66780     7.63428    19.26849    24.49496
+         36.01161    39.80167    53.21214    59.12206    67.99281    -8.20227    -7.60714    -5.76708    -4.74119    -3.57512
+         -0.45954     5.59256     8.36930    20.18726    25.39906    37.11402    40.66294    54.14314    60.03253    69.50379
+  438   -10.03966    -9.38282    -7.96497    -7.39714    -6.14931    -3.74792     5.96669    10.90340    18.48932    26.32993
+         37.53252    38.06613    51.25634    58.32881    80.04822    -8.63739    -7.22295    -5.86096    -5.09076    -3.71365
+         -2.00403     6.87494    11.55571    19.35059    27.14706    38.33513    39.34920    52.19551    59.24573    80.86499
+  439   -10.22745    -9.11713    -8.25765    -7.44092    -6.42184    -4.96075     7.78605    11.16322    23.68435    29.71120
+         33.27732    40.14742    51.46649    56.72002    87.70580    -9.23259    -6.93756    -6.19931    -5.05737    -3.94951
+         -2.79144     8.66151    11.86480    24.64041    30.51294    34.13801    41.33843    52.41977    57.64647    87.78574
+  440   -10.57718    -9.00414    -8.44081    -7.42634    -6.62835    -5.55504     9.38620    11.42514    27.15068    29.64905
+         34.83482    42.45494    50.74385    55.14640    69.33714    -9.88217    -6.90118    -6.48970    -4.85281    -3.94777
+         -3.20497    10.26040    12.10812    27.96777    30.66542    35.71583    43.60972    51.70175    56.13073    70.20760
+  441   -10.91979    -8.95863    -8.63628    -7.23655    -6.79784    -5.78846     9.37443    13.76189    21.22396    34.17876
+         37.59706    43.65927    49.10869    51.96386    60.63599   -10.37264    -6.94012    -6.74970    -4.48305    -3.87928
+         -3.49508    10.21315    14.43910    21.89456    35.12587    38.55136    44.81065    50.11528    53.47958    61.85683
+  442   -11.05619    -9.01178    -8.63462    -7.08924    -6.94288    -5.83525     9.22430    16.20340    17.63179    36.12326
+         37.81473    46.12486    46.58390    51.01355    60.05126   -10.55177    -7.01004    -6.79077    -4.25036    -3.94509
+         -3.58129    10.05317    16.90266    18.24037    36.92086    38.92805    47.25226    47.72100    52.65953    61.25829
+  443   -10.91962    -8.95882    -8.63533    -7.23768    -6.79866    -5.78770     9.37561    13.75842    21.22422    34.18387
+         37.59299    43.65905    49.11227    51.96265    60.63591   -10.37227    -6.94222    -6.74397    -4.48770    -3.88609
+         -3.48858    10.21422    14.43716    21.89397    35.12772    38.55098    44.81108    50.11961    53.47737    61.85594
+  444   -10.57687    -9.00397    -8.43928    -7.42823    -6.63038    -5.55365     9.38834    11.42111    27.14761    29.65167
+         34.83449    42.45327    50.75262    55.14672    69.33461    -9.88148    -6.90117    -6.48173    -4.86057    -3.95682
+         -3.19873    10.26275    12.10563    27.96425    30.66572    35.71740    43.61123    51.70969    56.12940    70.20473
+  445   -10.22709    -9.11685    -8.25552    -7.44310    -6.42444    -4.95950     7.78557    11.16226    23.68481    29.71248
+         33.27199    40.14520    51.47345    56.72685    87.70403    -9.23160    -6.93578    -6.18937    -5.06736    -3.95944
+         -2.78685     8.66230    11.86490    24.63926    30.51396    34.13352    41.34014    52.42643    57.65071    87.78383
+  446   -10.03930    -9.38257    -7.96336    -7.39821    -6.15175    -3.74752     5.96566    10.90369    18.48895    26.33171
+         37.52522    38.06539    51.25839    58.34152    80.04815    -8.63613    -7.22065    -5.85409    -5.09689    -3.72254
+         -2.00243     6.87543    11.55693    19.34962    27.14848    38.33061    39.34857    52.19874    59.25560    80.86499
+  447    -9.95257    -9.70796    -7.86821    -7.02367    -6.03012    -1.82991     4.66677     7.63529    19.26752    24.49612
+         36.01060    39.79904    53.20463    59.13897    67.99355    -8.20114    -7.60537    -5.76813    -4.73775    -3.58214
+         -0.46071     5.59291     8.37087    20.18624    25.40026    37.11574    40.65804    54.13896    60.04625    69.50471
+  448    -9.92157    -9.89212    -7.94973    -6.52000    -6.10191     0.65645     3.66975     4.27151    22.73717    24.20714
+         33.34368    39.28993    56.65722    59.13127    61.88917    -7.94793    -7.84760    -5.92435    -4.15744    -3.67103
+          1.77346     4.64348     5.11147    23.84320    25.16572    34.20295    40.15644    57.56742    60.07452    63.67394
+  449    -9.92172    -9.89213    -7.94957    -6.52165    -6.10009     0.65693     3.67093     4.27001    22.73811    24.20661
+         33.34360    39.29016    56.67032    59.11761    61.88645    -7.94761    -7.84913    -5.92322    -4.16254    -3.66543
+          1.77535     4.64249     5.11053    23.84508    25.16409    34.20206    40.15767    57.57711    60.06320    63.67192
+  450    -9.95260    -9.70815    -7.86781    -7.02445    -6.02952    -1.82930     4.66628     7.63561    19.26713    24.49648
+         36.01144    39.79905    53.20769    59.13285    67.99323    -8.20108    -7.60689    -5.76589    -4.74055    -3.58037
+         -0.45885     5.59180     8.37079    20.18599    25.40056    37.11410    40.66077    54.14116    60.04042    69.50436
+  451   -10.01312    -9.50027    -7.78179    -7.29979    -6.38877    -3.92103     8.54973     8.87937    20.12325    21.66020
+         37.65032    40.25178    53.00891    55.09239    74.49234    -8.68765    -7.22002    -5.64482    -5.07578    -3.97632
+         -2.12493     9.36667     9.56697    21.25701    22.15999    38.77260    41.21158    53.94183    56.01390    75.48060
+  452   -10.32283    -9.10308    -7.87387    -7.60571    -6.73290    -5.31941    10.42354    12.27066    20.18907    24.82230
+         38.03322    39.79603    51.84520    53.80737    81.47071    -9.43040    -6.72310    -5.75834    -5.39808    -4.37407
+         -2.99684    11.18206    12.94361    21.26527    25.38409    38.81704    41.09067    52.79696    54.74335    81.65276
+  453   -10.86689    -8.78658    -8.14990    -7.72974    -6.87162    -6.07108    12.20258    13.40001    24.16639    30.15941
+         34.46678    41.69231    51.59477    53.48760    73.43111   -10.30399    -6.47660    -6.07762    -5.36020    -4.51159
+         -3.38061    12.98885    14.07626    25.21003    31.10817    35.26123    42.87401    52.54376    54.43913    73.62307
+  454   -11.46376    -8.67466    -8.46919    -7.51360    -6.83384    -6.50926    12.00242    16.12888    28.55229    29.76125
+         34.55841    43.02428    50.34391    51.14891    54.91765   -11.06527    -6.55259    -6.42558    -4.89003    -4.44845
+         -3.65269    12.78714    16.80039    29.41378    30.68009    35.72135    44.09825    51.31051    52.42442    55.86085
+  455   -11.83237    -8.81136    -8.46954    -7.23714    -6.91093    -6.68681    11.62288    19.64607    23.90332    32.66653
+         35.57460    41.61461    45.52217    48.43431    55.08946   -11.49257    -6.75570    -6.49070    -4.45464    -4.37871
+         -3.90762    12.39867    20.30325    24.59148    33.48618    36.74788    43.53306    46.66509    49.39628    56.01867
+  456   -11.83234    -8.81139    -8.46919    -7.23769    -6.91146    -6.68615    11.62325    19.64400    23.90345    32.67101
+         35.57303    41.61181    45.52183    48.43641    55.08942   -11.49252    -6.75576    -6.48939    -4.45774    -4.37858
+         -3.90621    12.39900    20.30268    24.59024    33.48847    36.74817    43.53106    46.66447    49.39862    56.01821
+  457   -11.46367    -8.67483    -8.46805    -7.51457    -6.83561    -6.50780    12.00370    16.12585    28.54954    29.76560
+         34.55801    43.02380    50.34838    51.14735    54.91645   -11.06511    -6.55487    -6.41895    -4.89422    -4.45141
+         -3.65080    12.78835    16.79885    29.41029    30.68147    35.72366    44.09874    51.31524    52.42243    55.85877
+  458   -10.86676    -8.78628    -8.14792    -7.73171    -6.87325    -6.07028    12.20537    13.39590    24.16782    30.15945
+         34.46371    41.69103    51.60373    53.48609    73.42930   -10.30376    -6.47571    -6.06818    -5.36858    -4.51665
+         -3.37893    12.99187    14.07357    25.20958    31.10796    35.25913    42.87533    52.55163    54.43654    73.62099
+  459   -10.32268    -9.10275    -7.87250    -7.60650    -6.73468    -5.31920    10.42290    12.27082    20.18859    24.82381
+         38.02831    39.79554    51.84613    53.81499    81.47012    -9.43010    -6.72017    -5.75265    -5.40271    -4.38067
+         -2.99605    11.18263    12.94420    21.26348    25.38578    38.81399    41.09045    52.79846    54.74907    81.65203
+  460   -10.01300    -9.50002    -7.78234    -7.29845    -6.39013    -3.92142     8.54809     8.88088    20.12243    21.66153
+         37.64836    40.25062    52.99773    55.10995    74.49236    -8.68735    -7.21786    -5.64757    -5.07136    -3.98096
+         -2.12607     9.36718     9.56758    21.25515    22.16201    38.77485    41.20649    53.93359    56.02876    75.48067
+  461    -9.95257    -9.70796    -7.86821    -7.02367    -6.03012    -1.82991     4.66677     7.63529    19.26752    24.49613
+         36.01060    39.79904    53.20463    59.13897    67.99355    -8.20114    -7.60537    -5.76813    -4.73775    -3.58214
+         -0.46071     5.59291     8.37087    20.18624    25.40026    37.11574    40.65804    54.13896    60.04625    69.50471
+  462   -10.01623    -9.70407    -7.91334    -6.94576    -5.86448     0.17301     2.03374     7.25724    18.77869    27.53426
+         34.52557    39.19880    53.03680    61.46427    65.44154    -8.02407    -7.75102    -5.83788    -4.64774    -3.39101
+          1.26556     3.16145     7.98558    19.71475    28.62301    35.48206    40.02914    53.98483    62.36593    67.12758
+  463   -10.06314    -9.39478    -8.02597    -7.34342    -5.77661    -1.62822     2.48330    10.20309    17.18560    29.93308
+         36.54336    36.88369    50.91453    62.45459    78.71442    -8.24467    -7.45010    -5.92582    -5.03034    -3.28850
+         -0.33887     3.62596    10.83387    18.05069    30.96282    37.69840    37.71885    51.82833    63.36389    79.95502
+  464   -10.03930    -9.38257    -7.96336    -7.39821    -6.15175    -3.74752     5.96566    10.90369    18.48894    26.33171
+         37.52522    38.06539    51.25839    58.34152    80.04815    -8.63613    -7.22065    -5.85409    -5.09689    -3.72254
+         -2.00243     6.87543    11.55693    19.34962    27.14848    38.33061    39.34858    52.19874    59.25560    80.86499
+  465   -10.32268    -9.10275    -7.87250    -7.60650    -6.73468    -5.31920    10.42290    12.27082    20.18858    24.82381
+         38.02831    39.79554    51.84613    53.81499    81.47013    -9.43010    -6.72017    -5.75265    -5.40271    -4.38067
+         -2.99605    11.18263    12.94420    21.26348    25.38578    38.81399    41.09045    52.79846    54.74907    81.65203
+  466   -10.97101    -8.64904    -7.89947    -7.89792    -7.21835    -6.12758    14.28857    14.29209    21.08726    28.56238
+         36.87728    41.87712    52.00637    52.01560    75.42538   -10.44803    -6.08562    -5.78586    -5.77877    -4.91077
+         -3.38336    14.96513    14.96737    22.21645    29.44882    37.65490    43.09040    52.95112    52.95870    75.44642
+  467   -11.75668    -8.39171    -8.24253    -7.82485    -7.28868    -6.53140    15.06180    17.03335    25.32747    32.30422
+         33.91460    43.25948    51.25741    52.47235    55.95343   -11.42149    -6.13594    -6.12936    -5.31110    -5.00026
+         -3.59665    15.78413    17.70148    26.35848    33.65795    34.70278    44.33004    52.19702    53.39756    56.81722
+  468   -12.35274    -8.57156    -8.36771    -7.45196    -7.22135    -6.81227    14.68513    20.62846    30.04065    30.22612
+         33.93365    41.14784    44.83658    49.56641    53.09696   -12.08970    -6.47901    -6.26049    -4.92749    -4.71225
+         -3.81527    15.41618    21.29343    30.83300    31.15037    35.43124    42.45928    45.99388    50.50721    54.00070
+  469   -12.56819    -8.69247    -8.35843    -7.22034    -7.18907    -6.98983    14.46913    24.04865    26.54294    32.08885
+         34.27134    37.37156    46.44689    47.51978    53.26861   -12.32243    -6.60641    -6.29820    -4.89060    -4.39254
+         -3.99349    15.19636    24.66021    27.38924    32.75675    35.70994    39.28634    47.45916    48.42850    54.16377
+  470   -12.35274    -8.57156    -8.36771    -7.45196    -7.22135    -6.81227    14.68513    20.62846    30.04065    30.22612
+         33.93365    41.14784    44.83658    49.56641    53.09696   -12.08970    -6.47901    -6.26049    -4.92749    -4.71225
+         -3.81527    15.41618    21.29343    30.83300    31.15038    35.43124    42.45928    45.99388    50.50722    54.00070
+  471   -11.75668    -8.39171    -8.24253    -7.82485    -7.28868    -6.53140    15.06180    17.03335    25.32748    32.30422
+         33.91460    43.25948    51.25741    52.47235    55.95343   -11.42149    -6.13594    -6.12936    -5.31110    -5.00026
+         -3.59665    15.78413    17.70148    26.35849    33.65795    34.70278    44.33003    52.19702    53.39756    56.81722
+  472   -10.97101    -8.64904    -7.89947    -7.89792    -7.21835    -6.12758    14.28857    14.29209    21.08726    28.56238
+         36.87728    41.87712    52.00637    52.01560    75.42538   -10.44803    -6.08562    -5.78586    -5.77877    -4.91077
+         -3.38336    14.96513    14.96737    22.21645    29.44882    37.65490    43.09040    52.95112    52.95870    75.44642
+  473   -10.32268    -9.10275    -7.87250    -7.60650    -6.73468    -5.31920    10.42290    12.27082    20.18858    24.82381
+         38.02831    39.79554    51.84613    53.81499    81.47012    -9.43010    -6.72017    -5.75265    -5.40271    -4.38067
+         -2.99605    11.18263    12.94420    21.26348    25.38578    38.81399    41.09045    52.79846    54.74907    81.65203
+  474   -10.03930    -9.38257    -7.96336    -7.39821    -6.15175    -3.74752     5.96566    10.90369    18.48894    26.33171
+         37.52522    38.06539    51.25839    58.34152    80.04815    -8.63613    -7.22065    -5.85409    -5.09688    -3.72254
+         -2.00243     6.87543    11.55693    19.34962    27.14848    38.33061    39.34857    52.19874    59.25560    80.86499
+  475   -10.06314    -9.39478    -8.02597    -7.34342    -5.77661    -1.62822     2.48330    10.20309    17.18560    29.93308
+         36.54336    36.88369    50.91453    62.45459    78.71442    -8.24467    -7.45010    -5.92582    -5.03034    -3.28850
+         -0.33887     3.62596    10.83387    18.05069    30.96282    37.69840    37.71885    51.82833    63.36389    79.95502
+  476   -10.08806    -9.00035    -8.52326    -7.26553    -5.82785    -1.66236     1.58478     9.57480    21.65697    31.40858
+         34.34851    37.81484    51.40138    63.78474   107.31576    -8.34275    -7.12988    -6.48280    -4.81884    -3.33789
+         -0.39836     2.89804    10.27300    22.46010    32.36803    35.43649    38.90170    52.29252    64.70686   107.88214
+  477   -10.06493    -9.10561    -8.42456    -7.29177    -6.00813    -3.16091     3.78087     9.97882    22.26880    31.51928
+         32.86819    38.70026    51.35175    61.41031   100.19732    -8.53254    -7.15033    -6.37609    -4.85294    -3.53366
+         -1.52975     4.85361    10.68104    23.09760    32.48443    33.79731    39.85065    52.26859    62.32797   100.57076
+  478   -10.22702    -9.11626    -8.25621    -7.44231    -6.42464    -4.96078     7.78585    11.16224    23.68482    29.71312
+         33.26852    40.14715    51.46819    56.73611    87.70379    -9.23168    -6.93178    -6.19201    -5.06516    -3.96144
+         -2.79021     8.66350    11.86530    24.63850    30.51427    34.13404    41.33822    52.42250    57.65981    87.78308
+  479   -10.86668    -8.78550    -8.14815    -7.73113    -6.87446    -6.07088    12.20344    13.39824    24.16681    30.16076
+         34.45941    41.69291    51.59442    53.50069    73.42828   -10.30374    -6.46941    -6.06914    -5.36856    -4.52282
+         -3.37980    12.99243    14.07496    25.20730    31.10941    35.25763    42.87517    52.54465    54.44913    73.61904
+  480   -11.75661    -8.39075    -8.24125    -7.82606    -7.29027    -6.53135    15.06143    17.03353    25.32750    32.30458
+         33.91138    43.25976    51.25789    52.47788    55.95201   -11.42144    -6.13021    -6.12475    -5.31632    -5.00669
+         -3.59669    15.78539    17.70195    26.35656    33.65811    34.70095    44.33152    52.19756    53.40162    56.81500
+  481   -12.53285    -8.39038    -8.37523    -7.60794    -7.37692    -6.76953    17.44322    19.08423    29.90248    30.99596
+         33.81438    42.32246    45.41844    50.53466    51.83333   -12.29175    -6.27105    -6.23624    -5.11402    -4.86494
+         -3.77111    18.16575    19.74465    30.89686    31.81613    35.47787    43.23770    46.70252    51.43524    52.73558
+  482   -12.96294    -8.56338    -8.42191    -7.34560    -7.28343    -6.96570    17.93118    22.44601    26.76949    34.03377
+         34.69997    37.99462    45.97822    48.66736    51.67619   -12.75258    -6.45708    -6.30294    -5.08011    -4.42860
+         -3.97743    18.63658    23.12246    27.49581    35.54144    36.17526    39.14213    46.94391    49.55352    52.56045
+  483   -12.96296    -8.56361    -8.42200    -7.34522    -7.28318    -6.96590    17.92998    22.44927    26.76897    34.03388
+         34.69430    38.00025    45.97907    48.66401    51.67657   -12.75259    -6.45889    -6.30249    -5.07946    -4.42704
+         -3.97798    18.63556    23.12344    27.49712    35.54127    36.17221    39.14545    46.94455    49.55008    52.56138
+  484   -12.53289    -8.38993    -8.37702    -7.60682    -7.37622    -6.76971    17.43937    19.08976    29.90004    30.99837
+         33.81352    42.32447    45.41948    50.52784    51.83497   -12.29180    -6.28000    -6.23248    -5.11128    -4.86139
+         -3.77136    18.16192    19.74815    30.89695    31.81956    35.47532    43.23976    46.70232    51.42832    52.73870
+  485   -11.75668    -8.39171    -8.24253    -7.82485    -7.28868    -6.53140    15.06180    17.03335    25.32748    32.30422
+         33.91460    43.25948    51.25741    52.47235    55.95343   -11.42149    -6.13594    -6.12936    -5.31110    -5.00026
+         -3.59665    15.78413    17.70148    26.35849    33.65795    34.70278    44.33003    52.19702    53.39756    56.81722
+  486   -10.86676    -8.78628    -8.14792    -7.73171    -6.87325    -6.07028    12.20537    13.39590    24.16782    30.15945
+         34.46371    41.69103    51.60373    53.48609    73.42930   -10.30376    -6.47571    -6.06818    -5.36858    -4.51665
+         -3.37893    12.99187    14.07357    25.20958    31.10796    35.25913    42.87533    52.55163    54.43654    73.62099
+  487   -10.22709    -9.11685    -8.25552    -7.44310    -6.42444    -4.95950     7.78557    11.16226    23.68481    29.71248
+         33.27199    40.14520    51.47345    56.72685    87.70403    -9.23160    -6.93578    -6.18937    -5.06736    -3.95944
+         -2.78685     8.66230    11.86490    24.63925    30.51396    34.13352    41.34014    52.42643    57.65071    87.78383
+  488   -10.06496    -9.10612    -8.42390    -7.29215    -6.00822    -3.15979     3.78024     9.97906    22.26846    31.51799
+         32.87160    38.69893    51.35368    61.40622   100.19671    -8.53235    -7.15325    -6.37340    -4.85423    -3.53396
+         -1.52632     4.85223    10.68090    23.09755    32.48518    33.79588    39.85241    52.27000    62.32360   100.57027
+  489   -10.02851    -8.98771    -8.60650    -7.10506    -6.20558    -2.20901     2.26410     8.22986    24.80993    29.17801
+         37.74917    39.89823    51.57181    62.70004   101.69014    -8.42933    -7.06283    -6.76993    -4.51007    -3.64964
+         -0.73556     3.49214     8.97130    25.66407    30.10471    38.78288    40.97173    52.49436    63.63510   102.38429
+  490   -10.02848    -8.98705    -8.60717    -7.10487    -6.20547    -2.21058     2.26517     8.22979    24.80972    29.17827
+         37.74701    39.89991    51.57023    62.70161   101.69341    -8.42963    -7.05810    -6.77366    -4.50963    -3.64934
+         -0.73988     3.49454     8.97150    25.66436    30.10445    38.78354    40.97017    52.49310    63.63692   102.38752
+  491   -10.08276    -9.13676    -8.48775    -7.21786    -6.42583    -4.05590     5.56655     9.12654    25.59450    29.62733
+         35.89286    41.41615    51.42546    58.34846    88.79101    -8.88641    -7.14930    -6.58339    -4.65523    -3.78959
+         -2.12254     6.54820     9.86045    26.43744    30.60315    36.78049    42.54650    52.37711    59.28502    89.48305
+  492   -10.57678    -9.00291    -8.43925    -7.42814    -6.63039    -5.55630     9.38742    11.42272    27.14690    29.65022
+         34.83200    42.45557    50.74326    55.16028    69.33851    -9.88173    -6.89454    -6.48107    -4.86165    -3.95984
+         -3.20535    10.26474    12.10673    27.96543    30.66279    35.71615    43.61073    51.70325    56.14121    70.20763
+  493   -11.46356    -8.67326    -8.46753    -7.51521    -6.83664    -6.50941    12.00251    16.12775    28.55071    29.76002
+         34.55650    43.02560    50.34408    51.14601    54.93078   -11.06515    -6.54601    -6.41683    -4.89761    -4.46045
+         -3.65237    12.78969    16.80055    29.41105    30.67775    35.72052    44.10121    51.31190    52.41996    55.87110
+  494   -12.35265    -8.57018    -8.36673    -7.45319    -7.22324    -6.81233    14.68459    20.62918    30.03606    30.22578
+         33.93406    41.14604    44.83755    49.56755    53.10514   -12.08966    -6.47226    -6.25629    -4.93538    -4.71709
+         -3.81568    15.41767    21.29444    30.83057    31.14790    35.43087    42.45568    45.99686    50.50880    54.00672
+  495   -12.96291    -8.56230    -8.42216    -7.34590    -7.28426    -6.96570    17.93083    22.44675    26.76819    34.03531
+         34.69521    37.99571    45.97851    48.66824    51.67994   -12.75255    -6.45180    -6.30420    -5.08270    -4.43100
+         -3.97733    18.63784    23.12205    27.49497    35.54142    36.17338    39.14076    46.94426    49.55629    52.56230
+  496   -13.17600    -8.52482    -8.52350    -7.34385    -7.11202    -7.11132    21.62134    21.62812    23.66480    34.04892
+         37.41171    37.41881    47.51734    47.52145    50.79428   -12.97913    -6.40932    -6.40218    -5.09048    -4.17453
+         -4.17187    22.34385    22.34981    24.28892    36.39866    38.37703    38.37878    48.38270    48.38944    51.68866
+  497   -12.96296    -8.56361    -8.42200    -7.34522    -7.28318    -6.96590    17.92998    22.44927    26.76897    34.03388
+         34.69430    38.00025    45.97907    48.66401    51.67657   -12.75259    -6.45889    -6.30249    -5.07946    -4.42704
+         -3.97798    18.63556    23.12344    27.49712    35.54127    36.17221    39.14545    46.94455    49.55008    52.56138
+  498   -12.35274    -8.57156    -8.36771    -7.45196    -7.22135    -6.81227    14.68513    20.62846    30.04065    30.22612
+         33.93365    41.14784    44.83658    49.56641    53.09696   -12.08970    -6.47901    -6.26049    -4.92749    -4.71225
+         -3.81527    15.41618    21.29343    30.83300    31.15038    35.43124    42.45928    45.99388    50.50721    54.00070
+  499   -11.46367    -8.67483    -8.46805    -7.51457    -6.83561    -6.50780    12.00370    16.12585    28.54954    29.76560
+         34.55801    43.02380    50.34838    51.14735    54.91645   -11.06511    -6.55487    -6.41895    -4.89422    -4.45141
+         -3.65080    12.78835    16.79885    29.41029    30.68147    35.72366    44.09874    51.31524    52.42243    55.85877
+  500   -10.57687    -9.00397    -8.43928    -7.42823    -6.63038    -5.55365     9.38834    11.42111    27.14761    29.65167
+         34.83449    42.45327    50.75262    55.14672    69.33461    -9.88148    -6.90117    -6.48173    -4.86057    -3.95682
+         -3.19873    10.26275    12.10563    27.96425    30.66572    35.71740    43.61123    51.70969    56.12940    70.20473
+  501   -10.08281    -9.13769    -8.48708    -7.21830    -6.42599    -4.05341     5.56566     9.12650    25.59514    29.62697
+         35.89585    41.41403    51.43209    58.33999    88.78578    -8.88590    -7.15479    -6.58147    -4.65587    -3.78955
+         -2.11495     6.54547     9.85992    26.43666    30.60435    36.78062    42.54841    52.38213    59.27669    89.47820
+  502    -9.91672    -9.19375    -8.49456    -7.01624    -6.61208    -2.72220     3.85484     7.26063    17.82134    35.59671
+         39.72254    43.22269    51.76200    59.51982    91.30634    -8.48250    -7.31668    -6.83925    -4.28270    -3.81252
+         -1.04662     4.91618     8.02424    18.53993    36.58929    40.65918    44.33767    52.74134    60.51998    92.42635
+  503    -9.91161    -9.16321    -8.43287    -6.95583    -6.55448    -1.26359     1.67736     6.80336    17.41119    35.35972
+         41.17031    42.10228    52.07517    62.51298    91.40386    -8.30258    -7.27354    -6.80811    -4.20813    -3.80885
+          0.06315     2.97048     7.57519    18.13920    36.33299    42.14459    43.21830    53.06657    63.46301    92.44272
+  504    -9.91667    -9.19307    -8.49484    -7.01618    -6.61201    -2.72510     3.85636     7.26081    17.82120    35.59722
+         39.71956    43.22477    51.75561    59.52451    91.31545    -8.48344    -7.31229    -6.83944    -4.28327    -3.81241
+         -1.05515     4.92043     8.02488    18.54047    36.58840    40.65925    44.33622    52.73658    60.52452    92.43540
+  505   -10.17245    -9.15678    -8.61833    -7.15327    -6.70404    -4.47803     7.19708     9.13754    19.08985    35.56301
+         38.37397    43.83572    50.19871    56.01135    79.29454    -9.23051    -7.20694    -6.83924    -4.42319    -3.81977
+         -2.42799     8.13228     9.84159    19.78551    36.59711    39.19678    44.99461    51.16221    57.14225    80.62251
+  506   -10.91952    -8.95732    -8.63478    -7.23828    -6.79870    -5.79109     9.37465    13.75987    21.22384    34.17910
+         37.59238    43.65988    49.10781    51.96241    60.65428   -10.37260    -6.93396    -6.74130    -4.49085    -3.88755
+         -3.49975    10.21605    14.43894    21.89509    35.12306    38.54778    44.81267    50.11613    53.47654    61.87325
+  507   -11.83222    -8.80992    -8.46804    -7.23863    -6.91152    -6.68927    11.62239    19.64542    23.90202    32.66519
+         35.57376    41.60996    45.52315    48.43543    55.10436   -11.49256    -6.74849    -6.48380    -4.46181    -4.38958
+         -3.90791    12.40057    20.30422    24.59098    33.48246    36.74625    43.52735    46.66734    49.39910    56.03112
+  508   -12.56809    -8.69110    -8.35746    -7.22165    -7.19101    -6.98983    14.46848    24.05459    26.53296    32.08811
+         34.27203    37.36975    46.44641    47.52302    53.27762   -12.32239    -6.59955    -6.29404    -4.89877    -4.39790
+         -3.99348    15.19782    24.66408    27.38403    32.75426    35.70963    39.28239    47.45796    48.43493    54.17040
+  509   -12.96291    -8.56230    -8.42216    -7.34590    -7.28426    -6.96570    17.93083    22.44675    26.76819    34.03531
+         34.69521    37.99571    45.97851    48.66824    51.67994   -12.75255    -6.45180    -6.30420    -5.08270    -4.43100
+         -3.97733    18.63784    23.12205    27.49497    35.54142    36.17338    39.14076    46.94426    49.55629    52.56229
+  510   -12.96294    -8.56338    -8.42191    -7.34560    -7.28343    -6.96570    17.93118    22.44601    26.76949    34.03378
+         34.69997    37.99462    45.97822    48.66737    51.67619   -12.75258    -6.45708    -6.30294    -5.08011    -4.42860
+         -3.97743    18.63658    23.12246    27.49581    35.54144    36.17525    39.14213    46.94390    49.55352    52.56045
+  511   -12.56819    -8.69247    -8.35843    -7.22034    -7.18907    -6.98983    14.46913    24.04865    26.54294    32.08885
+         34.27134    37.37156    46.44688    47.51978    53.26861   -12.32243    -6.60641    -6.29820    -4.89060    -4.39254
+         -3.99348    15.19636    24.66021    27.38924    32.75675    35.70994    39.28634    47.45916    48.42850    54.16377
+  512   -11.83234    -8.81139    -8.46919    -7.23769    -6.91146    -6.68615    11.62325    19.64400    23.90345    32.67101
+         35.57304    41.61181    45.52183    48.43641    55.08942   -11.49252    -6.75576    -6.48939    -4.45774    -4.37858
+         -3.90621    12.39900    20.30268    24.59024    33.48847    36.74818    43.53106    46.66447    49.39862    56.01821
+  513   -10.91962    -8.95882    -8.63533    -7.23768    -6.79866    -5.78770     9.37561    13.75842    21.22422    34.18387
+         37.59299    43.65905    49.11227    51.96265    60.63591   -10.37227    -6.94222    -6.74397    -4.48770    -3.88609
+         -3.48858    10.21422    14.43716    21.89397    35.12772    38.55099    44.81108    50.11961    53.47738    61.85594
+  514   -10.17250    -9.15791    -8.61840    -7.15305    -6.70409    -4.47464     7.19745     9.13606    19.09015    35.56421
+         38.37641    43.83400    50.20844    56.00178    79.28264    -9.22967    -7.21348    -6.84059    -4.42142    -3.81948
+         -2.41713     8.12932     9.84014    19.78461    36.59987    39.19791    44.99545    51.16861    57.13440    80.61066
+  515    -9.76741    -9.22256    -8.72377    -6.96242    -6.80205    -3.01761     5.62356     7.04333    12.87620    41.12169
+         41.67595    45.47263    50.38075    59.36294   105.47718    -8.48885    -7.40394    -7.13705    -4.09076    -3.82548
+         -1.23932     6.59115     7.78844    13.55262    42.20651    42.56349    46.61568    51.33276    60.41205   106.61153
+  516    -9.71533    -9.21269    -8.52394    -6.88954    -6.77639    -1.01733     2.67010     5.80356    12.06431    41.02835
+         43.31571    45.40152    53.21071    60.68663   107.99708    -8.11466    -7.43310    -7.01135    -4.00804    -3.82652
+          0.36912     3.78811     6.60823    12.75982    42.04888    44.31957    46.53396    54.17962    61.66121   108.85015
+  517    -9.71527    -9.21231    -8.52403    -6.88968    -6.77641    -1.01994     2.67198     5.80381    12.06434    41.02871
+         43.31378    45.40300    53.20346    60.69475   108.00058    -8.11538    -7.43100    -7.01067    -4.00883    -3.82667
+          0.36191     3.79314     6.60879    12.76020    42.04864    44.31963    46.53315    54.17406    61.66851   108.85346
+  518    -9.76735    -9.22142    -8.72387    -6.96282    -6.80221    -3.02113     5.62349     7.04531    12.87628    41.12122
+         41.67337    45.47403    50.37021    59.37699   105.48630    -8.49048    -7.39767    -7.13559    -4.09291    -3.82635
+         -1.25009     6.59480     7.79088    13.55361    42.20458    42.56243    46.61492    51.32569    60.42414   106.62066
+  519   -10.24086    -9.15541    -8.78035    -7.03144    -6.86948    -4.63730     7.38061    11.09490    14.66033    38.89883
+         40.52039    45.20604    48.29554    56.75597    82.52569    -9.43690    -7.22194    -7.04972    -4.17230    -3.87791
+         -2.55797     8.26483    11.81119    15.30473    39.80724    41.52934    46.35019    49.27349    57.91457    84.08931
+  520   -11.05604    -9.01036    -8.63347    -7.09054    -6.94315    -5.83856     9.22374    16.20090    17.63450    36.11664
+         37.81588    46.12480    46.58138    51.01148    60.07225   -10.55200    -7.00283    -6.78489    -4.25624    -3.94629
+         -3.59309    10.05523    16.90277    18.24272    36.91434    38.92705    47.25270    47.71949    52.65715    61.27803
+  521   -11.83222    -8.80992    -8.46804    -7.23863    -6.91152    -6.68927    11.62239    19.64542    23.90202    32.66519
+         35.57376    41.60996    45.52315    48.43543    55.10436   -11.49256    -6.74849    -6.48380    -4.46181    -4.38958
+         -3.90791    12.40057    20.30422    24.59098    33.48246    36.74625    43.52735    46.66734    49.39910    56.03112
+  522   -12.35265    -8.57018    -8.36673    -7.45319    -7.22324    -6.81233    14.68459    20.62918    30.03606    30.22578
+         33.93406    41.14604    44.83755    49.56755    53.10514   -12.08966    -6.47226    -6.25629    -4.93538    -4.71709
+         -3.81568    15.41767    21.29444    30.83057    31.14790    35.43086    42.45568    45.99685    50.50880    54.00672
+  523   -12.53285    -8.39038    -8.37523    -7.60794    -7.37692    -6.76953    17.44322    19.08423    29.90248    30.99596
+         33.81438    42.32246    45.41844    50.53466    51.83333   -12.29175    -6.27105    -6.23624    -5.11402    -4.86494
+         -3.77111    18.16575    19.74465    30.89686    31.81613    35.47787    43.23770    46.70252    51.43524    52.73558
+  524   -12.35274    -8.57156    -8.36771    -7.45196    -7.22135    -6.81227    14.68513    20.62846    30.04065    30.22612
+         33.93365    41.14784    44.83658    49.56641    53.09696   -12.08970    -6.47901    -6.26049    -4.92749    -4.71225
+         -3.81527    15.41618    21.29343    30.83300    31.15038    35.43124    42.45928    45.99388    50.50721    54.00070
+  525   -11.83237    -8.81136    -8.46954    -7.23714    -6.91093    -6.68681    11.62288    19.64607    23.90332    32.66653
+         35.57461    41.61461    45.52216    48.43431    55.08946   -11.49257    -6.75570    -6.49070    -4.45464    -4.37871
+         -3.90762    12.39867    20.30325    24.59148    33.48618    36.74788    43.53306    46.66509    49.39628    56.01867
+  526   -11.05619    -9.01178    -8.63462    -7.08924    -6.94288    -5.83525     9.22430    16.20340    17.63179    36.12325
+         37.81473    46.12486    46.58390    51.01355    60.05126   -10.55177    -7.01004    -6.79077    -4.25036    -3.94509
+         -3.58129    10.05317    16.90266    18.24037    36.92086    38.92805    47.25225    47.72100    52.65953    61.25829
+  527   -10.24096    -9.15683    -8.78079    -7.03074    -6.86911    -4.63368     7.38128    11.09369    14.66000    38.90513
+         40.51935    45.20608    48.30064    56.74536    82.51357    -9.43608    -7.22971    -7.05262    -4.16858    -3.87651
+         -2.54597     8.26267    11.80857    15.30343    39.81235    41.53150    46.34918    49.27676    57.90610    84.07692
+  528    -9.63360    -9.27151    -8.87998    -6.91188    -6.87477    -3.11144     5.91541     8.70776     9.98862    43.27661
+         43.46862    46.29761    48.58917    59.85207   116.31864    -8.47218    -7.42000    -7.29878    -3.96959    -3.86194
+         -1.30291     6.82665     9.52093    10.60814    44.14785    44.59232    47.45476    49.52890    60.90648   117.42157
+  529    -9.43779    -9.21996    -8.82642    -6.86453    -6.83784    -1.13539     4.59976     5.57165     8.30964    45.38460
+         46.30556    46.87924    51.10923    60.28534   132.45903    -7.85301    -7.49500    -7.35518    -3.88283    -3.81143
+          0.32204     5.58530     6.37541     9.01514    46.52217    47.24051    48.01567    52.05005    61.29278   133.10978
+  530    -9.45617    -9.17984    -8.73611    -6.84209    -6.82855     0.81247     2.31143     4.93003     7.92474    45.75189
+         47.09237    47.25540    54.20447    58.60024   135.93873    -7.79044    -7.49700    -7.21293    -3.85200    -3.79464
+          1.98047     3.42764     5.77938     8.65102    46.88585    48.03376    48.41344    55.16998    59.56269   136.45911
+  531    -9.43757    -9.21888    -8.82692    -6.86494    -6.83817    -1.13863     4.59979     5.57401     8.31004    45.38483
+         46.30208    46.88068    51.09780    60.30267   132.46402    -7.85502    -7.48919    -7.35465    -3.88475    -3.81289
+          0.31265     5.58918     6.37871     9.01621    46.52146    47.23925    48.01494    52.04178    61.30752   133.11444
+  532    -9.63322    -9.27031    -8.87991    -6.91301    -6.87510    -3.11490     5.91515     8.70712     9.99155    43.26770
+         43.46987    46.29766    48.58543    59.86883   116.32746    -8.47332    -7.41362    -7.29558    -3.97465    -3.86344
+         -1.31361     6.82896     9.52320    10.61153    44.14006    44.59164    47.45552    49.52734    60.92027   117.43066
+  533   -10.24086    -9.15541    -8.78035    -7.03144    -6.86948    -4.63730     7.38061    11.09490    14.66033    38.89883
+         40.52039    45.20604    48.29554    56.75597    82.52569    -9.43690    -7.22194    -7.04972    -4.17230    -3.87791
+         -2.55797     8.26483    11.81119    15.30473    39.80724    41.52934    46.35019    49.27349    57.91457    84.08931
+  534   -10.91952    -8.95732    -8.63478    -7.23828    -6.79870    -5.79109     9.37465    13.75987    21.22384    34.17910
+         37.59238    43.65988    49.10781    51.96241    60.65428   -10.37260    -6.93396    -6.74130    -4.49085    -3.88755
+         -3.49975    10.21605    14.43894    21.89509    35.12306    38.54778    44.81267    50.11613    53.47654    61.87325
+  535   -11.46356    -8.67326    -8.46753    -7.51522    -6.83664    -6.50941    12.00251    16.12775    28.55072    29.76002
+         34.55650    43.02560    50.34408    51.14601    54.93078   -11.06515    -6.54601    -6.41683    -4.89761    -4.46045
+         -3.65236    12.78969    16.80055    29.41105    30.67775    35.72052    44.10121    51.31190    52.41995    55.87110
+  536   -11.75661    -8.39075    -8.24125    -7.82606    -7.29027    -6.53135    15.06143    17.03353    25.32751    32.30458
+         33.91138    43.25976    51.25789    52.47788    55.95201   -11.42144    -6.13021    -6.12475    -5.31632    -5.00669
+         -3.59669    15.78539    17.70195    26.35656    33.65811    34.70095    44.33151    52.19756    53.40162    56.81500
+  537   -11.75668    -8.39171    -8.24253    -7.82485    -7.28868    -6.53140    15.06180    17.03335    25.32748    32.30422
+         33.91460    43.25948    51.25741    52.47235    55.95343   -11.42149    -6.13594    -6.12936    -5.31110    -5.00026
+         -3.59665    15.78413    17.70148    26.35849    33.65795    34.70278    44.33003    52.19702    53.39756    56.81722
+  538   -11.46376    -8.67466    -8.46919    -7.51360    -6.83384    -6.50926    12.00242    16.12888    28.55229    29.76125
+         34.55841    43.02428    50.34391    51.14891    54.91765   -11.06527    -6.55259    -6.42558    -4.89004    -4.44845
+         -3.65268    12.78714    16.80039    29.41378    30.68010    35.72135    44.09825    51.31051    52.42442    55.86085
+  539   -10.91979    -8.95863    -8.63628    -7.23655    -6.79784    -5.78846     9.37443    13.76189    21.22396    34.17876
+         37.59706    43.65927    49.10869    51.96386    60.63599   -10.37264    -6.94012    -6.74970    -4.48305    -3.87928
+         -3.49508    10.21315    14.43910    21.89456    35.12587    38.55136    44.81065    50.11528    53.47958    61.85683
+  540   -10.24118    -9.15661    -8.78130    -7.02984    -6.86901    -4.63402     7.38054    11.09687    14.65805    38.90239
+         40.52451    45.20568    48.29688    56.74492    82.51407    -9.43659    -7.22767    -7.05630    -4.16521    -3.87551
+         -2.54750     8.26207    11.81076    15.30186    39.81249    41.53286    46.34919    49.27258    57.90666    84.07729
+  541    -9.76818    -9.22239    -8.72417    -6.96111    -6.80140    -3.01830     5.62231     7.04738    12.87399    41.11918
+         41.68458    45.47400    50.37080    59.36019   105.47767    -8.49137    -7.40225    -7.14051    -4.08538    -3.82284
+         -1.24144     6.59079     7.79072    13.54997    42.20582    42.56973    46.61499    51.32411    60.41102   106.61139
+  542    -9.43872    -9.21955    -8.82635    -6.86372    -6.83776    -1.13578     4.59896     5.57599     8.30627    45.38337
+         46.31508    46.88145    51.09800    60.28316   132.45866    -7.85715    -7.49220    -7.35591    -3.87946    -3.81112
+          0.32123     5.58630     6.37813     9.01080    46.52194    47.24886    48.01550    52.04083    61.29142   133.10908
+  543    -9.19787    -9.19696    -8.95880    -6.83235    -6.83202     1.23140     4.09338     4.09389     5.43587    47.63900
+         47.63927    51.74957    51.76538    57.29827   154.07710    -7.52632    -7.52107    -7.43734    -3.78776    -3.78636
+          2.40088     5.08500     5.08820     6.08852    48.80227    48.80234    52.69350    52.70595    58.27291   154.45811
+  544    -9.19672    -9.19672    -8.95979    -6.83247    -6.83247     1.22900     4.09368     4.09368     5.43824    47.63943
+         47.63944    51.74963    51.74963    57.31613   154.07927    -7.52000    -7.52000    -7.44258    -3.78829    -3.78829
+          2.39350     5.08926     5.08926     6.09086    48.80230    48.80231    52.69375    52.69375    58.28743   154.46014
+  545    -9.43757    -9.21888    -8.82692    -6.86494    -6.83817    -1.13863     4.59979     5.57401     8.31004    45.38483
+         46.30208    46.88068    51.09780    60.30267   132.46402    -7.85502    -7.48919    -7.35465    -3.88475    -3.81289
+          0.31265     5.58918     6.37871     9.01621    46.52147    47.23925    48.01493    52.04178    61.30752   133.11444
+  546    -9.76735    -9.22142    -8.72387    -6.96282    -6.80221    -3.02113     5.62349     7.04531    12.87628    41.12122
+         41.67337    45.47402    50.37021    59.37699   105.48630    -8.49048    -7.39767    -7.13559    -4.09291    -3.82634
+         -1.25009     6.59480     7.79088    13.55361    42.20459    42.56243    46.61491    51.32569    60.42414   106.62066
+  547   -10.17245    -9.15678    -8.61833    -7.15327    -6.70403    -4.47803     7.19708     9.13754    19.08985    35.56301
+         38.37397    43.83572    50.19872    56.01135    79.29454    -9.23051    -7.20694    -6.83924    -4.42319    -3.81977
+         -2.42799     8.13228     9.84159    19.78551    36.59712    39.19678    44.99461    51.16221    57.14225    80.62251
+  548   -10.57678    -9.00291    -8.43925    -7.42814    -6.63039    -5.55630     9.38742    11.42272    27.14690    29.65022
+         34.83200    42.45557    50.74326    55.16028    69.33851    -9.88172    -6.89454    -6.48107    -4.86165    -3.95984
+         -3.20535    10.26474    12.10673    27.96543    30.66279    35.71615    43.61072    51.70325    56.14121    70.20763
+  549   -10.86668    -8.78550    -8.14815    -7.73113    -6.87446    -6.07088    12.20345    13.39824    24.16681    30.16076
+         34.45941    41.69291    51.59442    53.50069    73.42828   -10.30374    -6.46941    -6.06914    -5.36856    -4.52282
+         -3.37980    12.99243    14.07496    25.20730    31.10941    35.25763    42.87517    52.54465    54.44913    73.61904
+  550   -10.97101    -8.64904    -7.89947    -7.89792    -7.21835    -6.12758    14.28857    14.29209    21.08726    28.56238
+         36.87728    41.87712    52.00637    52.01560    75.42538   -10.44803    -6.08562    -5.78586    -5.77877    -4.91077
+         -3.38336    14.96513    14.96737    22.21645    29.44882    37.65490    43.09040    52.95112    52.95870    75.44642
+  551   -10.86689    -8.78658    -8.14990    -7.72974    -6.87162    -6.07108    12.20258    13.40001    24.16640    30.15941
+         34.46678    41.69231    51.59477    53.48760    73.43111   -10.30399    -6.47660    -6.07762    -5.36020    -4.51159
+         -3.38061    12.98885    14.07626    25.21003    31.10817    35.26123    42.87401    52.54376    54.43913    73.62307
+  552   -10.57718    -9.00414    -8.44081    -7.42634    -6.62835    -5.55504     9.38620    11.42514    27.15068    29.64905
+         34.83482    42.45494    50.74385    55.14640    69.33714    -9.88217    -6.90118    -6.48970    -4.85282    -3.94776
+         -3.20497    10.26040    12.10811    27.96777    30.66542    35.71583    43.60972    51.70175    56.13073    70.20760
+  553   -10.17302    -9.15793    -8.61940    -7.15139    -6.70277    -4.47563     7.19577     9.14003    19.08998    35.56117
+         38.38134    43.83550    50.19940    56.00068    79.28375    -9.23110    -7.21270    -6.84652    -4.41457    -3.81356
+         -2.42131     8.12783     9.84239    19.78449    36.59912    39.20058    44.99420    51.16046    57.13507    80.61173
+  554    -9.91747    -9.19431    -8.49530    -7.01427    -6.61023    -2.72346     3.85619     7.26167    17.82121    35.59734
+         39.72512    43.22512    51.75492    59.51056    91.30741    -8.48593    -7.31830    -6.84294    -4.27441    -3.80541
+         -1.05007     4.91706     8.02358    18.53915    36.59017    40.66188    44.33704    52.73483    60.51332    92.42670
+  555    -9.71619    -9.21324    -8.52396    -6.88798    -6.77530    -1.01837     2.67219     5.80461    12.06197    41.03165
+         43.32087    45.40238    53.20247    60.67707   107.99670    -8.11894    -7.43594    -7.01057    -4.00137    -3.82249
+          0.36780     3.79028     6.60739    12.75634    42.05169    44.32396    46.53341    54.17241    61.65394   108.84900
+  556    -9.45718    -9.18020    -8.73561    -6.84102    -6.82815     0.81238     2.31343     4.93146     7.92108    45.75173
+         47.10544    47.25492    54.20023    58.58635   135.93651    -7.79490    -7.49951    -7.21015    -3.84741    -3.79306
+          1.98376     3.42849     5.77875     8.64573    46.88645    48.04317    48.41315    55.16612    59.55156   136.45668
+  557    -9.19787    -9.19696    -8.95880    -6.83236    -6.83202     1.23140     4.09338     4.09389     5.43587    47.63899
+         47.63927    51.74957    51.76538    57.29827   154.07710    -7.52632    -7.52107    -7.43734    -3.78777    -3.78636
+          2.40088     5.08500     5.08820     6.08852    48.80227    48.80234    52.69350    52.70595    58.27291   154.45811
+  558    -9.45617    -9.17984    -8.73611    -6.84209    -6.82855     0.81247     2.31143     4.93003     7.92474    45.75189
+         47.09237    47.25540    54.20447    58.60024   135.93873    -7.79044    -7.49700    -7.21293    -3.85201    -3.79463
+          1.98047     3.42764     5.77938     8.65102    46.88585    48.03376    48.41344    55.16998    59.56269   136.45911
+  559    -9.71527    -9.21231    -8.52403    -6.88968    -6.77641    -1.01994     2.67198     5.80381    12.06434    41.02872
+         43.31378    45.40300    53.20346    60.69475   108.00058    -8.11538    -7.43100    -7.01067    -4.00883    -3.82667
+          0.36191     3.79314     6.60879    12.76020    42.04864    44.31963    46.53314    54.17406    61.66851   108.85346
+  560    -9.91667    -9.19307    -8.49484    -7.01618    -6.61201    -2.72510     3.85636     7.26081    17.82120    35.59722
+         39.71956    43.22477    51.75561    59.52451    91.31545    -8.48344    -7.31229    -6.83944    -4.28327    -3.81240
+         -1.05515     4.92043     8.02488    18.54047    36.58840    40.65925    44.33622    52.73658    60.52452    92.43540
+  561   -10.08276    -9.13676    -8.48775    -7.21786    -6.42583    -4.05590     5.56655     9.12654    25.59450    29.62733
+         35.89286    41.41614    51.42546    58.34846    88.79101    -8.88641    -7.14930    -6.58339    -4.65523    -3.78959
+         -2.12254     6.54820     9.86045    26.43744    30.60315    36.78049    42.54650    52.37711    59.28502    89.48305
+  562   -10.22702    -9.11626    -8.25621    -7.44231    -6.42464    -4.96078     7.78585    11.16224    23.68482    29.71312
+         33.26852    40.14714    51.46819    56.73611    87.70379    -9.23168    -6.93178    -6.19201    -5.06516    -3.96144
+         -2.79021     8.66350    11.86530    24.63851    30.51427    34.13404    41.33822    52.42250    57.65981    87.78308
+  563   -10.32268    -9.10275    -7.87250    -7.60650    -6.73468    -5.31920    10.42290    12.27082    20.18859    24.82381
+         38.02831    39.79554    51.84613    53.81499    81.47012    -9.43010    -6.72017    -5.75265    -5.40271    -4.38067
+         -2.99605    11.18263    12.94420    21.26348    25.38578    38.81399    41.09045    52.79846    54.74907    81.65203
+  564   -10.32283    -9.10308    -7.87387    -7.60571    -6.73290    -5.31941    10.42354    12.27066    20.18908    24.82230
+         38.03322    39.79603    51.84520    53.80737    81.47071    -9.43040    -6.72310    -5.75834    -5.39808    -4.37407
+         -2.99683    11.18206    12.94361    21.26527    25.38409    38.81704    41.09067    52.79696    54.74335    81.65276
+  565   -10.22745    -9.11713    -8.25765    -7.44092    -6.42184    -4.96075     7.78605    11.16322    23.68435    29.71120
+         33.27732    40.14742    51.46649    56.72002    87.70580    -9.23259    -6.93757    -6.19931    -5.05737    -3.94951
+         -2.79144     8.66151    11.86480    24.64041    30.51294    34.13801    41.33843    52.41977    57.64647    87.78574
+  566   -10.08341    -9.13800    -8.48868    -7.21608    -6.42353    -4.05486     5.56642     9.12759    25.59843    29.62686
+         35.89488    41.41684    51.42446    58.33301    88.78803    -8.88801    -7.15556    -6.58958    -4.64628    -3.77973
+         -2.12018     6.54523     9.85963    26.43982    30.60487    36.77996    42.54727    52.37476    59.27220    89.48039
+  567   -10.02917    -8.98863    -8.60753    -7.10298    -6.20279    -2.21070     2.26608     8.23008    24.81356    29.17850
+         37.74790    39.90150    51.56679    62.68620   101.69166    -8.43294    -7.06496    -6.77623    -4.50057    -3.63882
+         -0.73917     3.49205     8.96982    25.66691    30.10548    38.78283    40.97141    52.48889    63.62404   102.38505
+  568    -9.91238    -9.16435    -8.43327    -6.95390    -6.55238    -1.26437     1.67916     6.80373    17.41110    35.36092
+         41.17620    42.10119    52.07158    62.49811    91.40251    -8.30642    -7.27941    -6.80882    -4.19943    -3.80104
+          0.06370     2.96939     7.57359    18.13797    36.33449    42.14800    43.21764    53.06298    63.45075    92.44037
+  569    -9.71619    -9.21324    -8.52396    -6.88798    -6.77531    -1.01837     2.67219     5.80461    12.06197    41.03165
+         43.32087    45.40238    53.20247    60.67707   107.99670    -8.11894    -7.43594    -7.01057    -4.00137    -3.82250
+          0.36780     3.79028     6.60739    12.75634    42.05169    44.32396    46.53341    54.17241    61.65394   108.84900
+  570    -9.43872    -9.21955    -8.82635    -6.86372    -6.83776    -1.13578     4.59896     5.57599     8.30627    45.38337
+         46.31509    46.88146    51.09800    60.28316   132.45866    -7.85715    -7.49220    -7.35591    -3.87946    -3.81112
+          0.32123     5.58630     6.37813     9.01080    46.52193    47.24886    48.01550    52.04083    61.29142   133.10908
+  571    -9.43779    -9.21996    -8.82642    -6.86453    -6.83784    -1.13539     4.59976     5.57165     8.30964    45.38460
+         46.30556    46.87924    51.10923    60.28534   132.45903    -7.85301    -7.49500    -7.35518    -3.88283    -3.81143
+          0.32204     5.58530     6.37541     9.01514    46.52217    47.24051    48.01567    52.05005    61.29278   133.10978
+  572    -9.71533    -9.21269    -8.52394    -6.88954    -6.77639    -1.01733     2.67010     5.80356    12.06431    41.02835
+         43.31571    45.40152    53.21071    60.68663   107.99708    -8.11466    -7.43310    -7.01135    -4.00804    -3.82652
+          0.36912     3.78811     6.60823    12.75982    42.04888    44.31957    46.53396    54.17962    61.66121   108.85015
+  573    -9.91161    -9.16321    -8.43287    -6.95583    -6.55448    -1.26359     1.67736     6.80336    17.41119    35.35972
+         41.17031    42.10228    52.07517    62.51298    91.40386    -8.30258    -7.27354    -6.80811    -4.20814    -3.80885
+          0.06315     2.97048     7.57519    18.13920    36.33299    42.14460    43.21830    53.06657    63.46301    92.44272
+  574   -10.02848    -8.98705    -8.60717    -7.10487    -6.20546    -2.21058     2.26517     8.22979    24.80972    29.17827
+         37.74700    39.89991    51.57023    62.70161   101.69341    -8.42963    -7.05810    -6.77366    -4.50963    -3.64934
+         -0.73988     3.49454     8.97150    25.66436    30.10446    38.78354    40.97017    52.49310    63.63692   102.38752
+  575   -10.06493    -9.10561    -8.42456    -7.29177    -6.00813    -3.16091     3.78087     9.97882    22.26880    31.51928
+         32.86819    38.70026    51.35175    61.41031   100.19732    -8.53254    -7.15033    -6.37609    -4.85294    -3.53366
+         -1.52975     4.85361    10.68104    23.09760    32.48443    33.79731    39.85064    52.26859    62.32797   100.57076
+  576   -10.03930    -9.38257    -7.96336    -7.39821    -6.15175    -3.74752     5.96566    10.90369    18.48895    26.33171
+         37.52522    38.06539    51.25839    58.34152    80.04815    -8.63613    -7.22065    -5.85409    -5.09689    -3.72254
+         -2.00243     6.87543    11.55693    19.34962    27.14848    38.33061    39.34857    52.19874    59.25560    80.86499
+  577   -10.01312    -9.50027    -7.78179    -7.29979    -6.38877    -3.92103     8.54973     8.87937    20.12326    21.66020
+         37.65032    40.25178    53.00891    55.09239    74.49234    -8.68765    -7.22002    -5.64482    -5.07578    -3.97632
+         -2.12493     9.36667     9.56697    21.25701    22.15999    38.77260    41.21158    53.94183    56.01390    75.48060
+  578   -10.03966    -9.38282    -7.96497    -7.39714    -6.14931    -3.74792     5.96669    10.90340    18.48932    26.32993
+         37.53252    38.06613    51.25634    58.32881    80.04822    -8.63739    -7.22295    -5.86096    -5.09076    -3.71365
+         -2.00402     6.87494    11.55571    19.35059    27.14706    38.33513    39.34920    52.19551    59.24573    80.86499
+  579   -10.06551    -9.10632    -8.42594    -7.29012    -6.00523    -3.16119     3.78168     9.97930    22.26817    31.52293
+         32.87175    38.70116    51.34759    61.39388   100.19771    -8.53500    -7.15420    -6.38269    -4.84457    -3.52233
+         -1.53081     4.85185    10.67970    23.09854    32.48863    33.79671    39.85106    52.26347    62.31423   100.57103
+  580   -10.08865    -9.00070    -8.52505    -7.26366    -5.82481    -1.66409     1.58690     9.57500    21.65649    31.41585
+         34.34758    37.81666    51.39580    63.76926   107.31586    -8.34633    -7.13120    -6.49075    -4.80974    -3.32618
+         -0.40106     2.89704    10.27143    22.46099    32.37313    35.43562    38.90132    52.28610    64.69427   107.88173
+  581   -10.02917    -8.98863    -8.60753    -7.10298    -6.20279    -2.21070     2.26608     8.23008    24.81356    29.17850
+         37.74789    39.90150    51.56679    62.68620   101.69166    -8.43294    -7.06496    -6.77623    -4.50057    -3.63882
+         -0.73917     3.49205     8.96982    25.66691    30.10548    38.78283    40.97141    52.48889    63.62404   102.38505
+  582    -9.91747    -9.19431    -8.49530    -7.01427    -6.61023    -2.72346     3.85619     7.26167    17.82121    35.59734
+         39.72512    43.22513    51.75492    59.51056    91.30741    -8.48593    -7.31829    -6.84294    -4.27441    -3.80541
+         -1.05007     4.91706     8.02358    18.53915    36.59017    40.66188    44.33704    52.73483    60.51332    92.42670
+  583    -9.76818    -9.22239    -8.72417    -6.96111    -6.80140    -3.01830     5.62231     7.04738    12.87399    41.11918
+         41.68458    45.47400    50.37080    59.36019   105.47767    -8.49137    -7.40225    -7.14051    -4.08537    -3.82284
+         -1.24144     6.59079     7.79072    13.54997    42.20582    42.56973    46.61500    51.32411    60.41102   106.61139
+  584    -9.63360    -9.27151    -8.87998    -6.91188    -6.87477    -3.11144     5.91541     8.70776     9.98862    43.27661
+         43.46862    46.29761    48.58917    59.85207   116.31864    -8.47218    -7.42000    -7.29878    -3.96959    -3.86194
+         -1.30291     6.82665     9.52093    10.60814    44.14785    44.59232    47.45477    49.52890    60.90648   117.42157
+  585    -9.76741    -9.22256    -8.72377    -6.96242    -6.80205    -3.01761     5.62356     7.04333    12.87620    41.12169
+         41.67595    45.47263    50.38075    59.36294   105.47718    -8.48885    -7.40394    -7.13705    -4.09076    -3.82548
+         -1.23932     6.59115     7.78844    13.55262    42.20651    42.56349    46.61568    51.33276    60.41205   106.61153
+  586    -9.91672    -9.19375    -8.49456    -7.01624    -6.61208    -2.72220     3.85484     7.26063    17.82134    35.59672
+         39.72254    43.22269    51.76200    59.51982    91.30634    -8.48250    -7.31668    -6.83925    -4.28270    -3.81252
+         -1.04662     4.91618     8.02424    18.53993    36.58929    40.65917    44.33767    52.74134    60.51998    92.42635
+  587   -10.02851    -8.98771    -8.60650    -7.10506    -6.20558    -2.20901     2.26410     8.22986    24.80993    29.17801
+         37.74917    39.89823    51.57181    62.70004   101.69014    -8.42933    -7.06282    -6.76993    -4.51008    -3.64964
+         -0.73556     3.49214     8.97130    25.66407    30.10472    38.78287    40.97174    52.49436    63.63510   102.38429
+  588   -10.08807    -9.00035    -8.52326    -7.26553    -5.82785    -1.66236     1.58478     9.57480    21.65698    31.40858
+         34.34851    37.81484    51.40138    63.78474   107.31576    -8.34276    -7.12988    -6.48280    -4.81884    -3.33789
+         -0.39836     2.89804    10.27300    22.46010    32.36803    35.43648    38.90170    52.29252    64.70686   107.88215
+  589   -10.06314    -9.39478    -8.02597    -7.34343    -5.77661    -1.62822     2.48330    10.20309    17.18561    29.93308
+         36.54336    36.88369    50.91453    62.45459    78.71442    -8.24467    -7.45010    -5.92582    -5.03034    -3.28850
+         -0.33887     3.62596    10.83387    18.05069    30.96281    37.69840    37.71885    51.82833    63.36389    79.95502
+  590    -9.95260    -9.70815    -7.86781    -7.02445    -6.02952    -1.82929     4.66628     7.63561    19.26713    24.49647
+         36.01144    39.79905    53.20769    59.13285    67.99323    -8.20108    -7.60689    -5.76589    -4.74055    -3.58037
+         -0.45885     5.59180     8.37079    20.18599    25.40056    37.11410    40.66077    54.14116    60.04042    69.50436
+  591    -9.95288    -9.70810    -7.86809    -7.02497    -6.02791    -1.82962     4.66780     7.63428    19.26850    24.49496
+         36.01160    39.80167    53.21214    59.12206    67.99281    -8.20227    -7.60714    -5.76708    -4.74119    -3.57512
+         -0.45954     5.59256     8.36930    20.18726    25.39906    37.11401    40.66294    54.14314    60.03253    69.50379
+  592   -10.06361    -9.39497    -8.02762    -7.34229    -5.77384    -1.62926     2.48504    10.20272    17.18577    29.93202
+         36.54374    36.89150    50.91155    62.43950    78.71390    -8.24767    -7.45090    -5.93293    -5.02372    -3.27863
+         -0.34061     3.62553    10.83221    18.05150    30.96169    37.70275    37.71983    51.82387    63.35189    79.95435
+  593   -10.15395   -10.00063    -7.23417    -6.91735    -5.83922     0.02150     3.42146     7.97533    15.35053    22.93458
+         32.33356    43.94891    50.87637    56.04023    60.21245    -8.17032    -7.94666    -5.03466    -4.68897    -3.35237
+          1.09483     4.34296     8.55869    16.43750    23.98208    33.24354    44.76668    52.46413    57.49708    61.10549
+  594    -9.95296    -9.70831    -7.87021    -7.02249    -6.02701    -1.83025     4.66737     7.63577    19.26689    24.49488
+         36.01385    39.80732    53.20157    59.12238    67.99222    -8.20279    -7.60824    -5.77562    -4.73140    -3.57054
+         -0.46227     5.59159     8.36958    20.18659    25.39946    37.11863    40.66257    54.13544    60.03266    69.50280
+  595    -9.80711    -9.45883    -8.35008    -7.14968    -6.26481    -3.14873     6.10538     6.89187    25.41557    28.62354
+         32.01201    40.51843    53.24391    58.11921    93.39636    -8.41893    -7.34218    -6.29919    -4.76510    -3.77364
+         -1.44758     7.07464     7.63805    26.47400    29.33989    32.99324    41.62006    54.18524    59.01622    93.84324
+  596   -10.08341    -9.13800    -8.48868    -7.21608    -6.42353    -4.05486     5.56642     9.12759    25.59843    29.62686
+         35.89488    41.41685    51.42446    58.33301    88.78803    -8.88801    -7.15556    -6.58958    -4.64628    -3.77973
+         -2.12018     6.54523     9.85963    26.43982    30.60487    36.77996    42.54728    52.37476    59.27220    89.48039
+  597   -10.41383    -9.10947    -8.24305    -7.08759    -6.66328    -4.60593     5.08625    11.99294    19.31753    32.75521
+         37.73228    43.68243    50.16263    59.33215    79.67129    -9.31049    -7.14980    -6.65418    -4.35297    -3.79208
+         -2.56903     6.09894    12.67598    19.99349    33.63529    38.76620    44.79699    51.17968    60.38559    81.07976
+  598   -10.54214    -9.18769    -7.95876    -7.00029    -6.88903    -4.78314     4.90929    14.70155    15.50621    34.08727
+         36.90971    46.40859    49.17373    60.18801    79.87143    -9.47051    -7.23075    -6.57658    -4.18144    -3.86380
+         -2.71844     5.93488    15.39334    16.11544    34.87414    38.06164    47.55566    50.18605    61.26036    81.48463
+  599   -10.41362    -9.10935    -8.24220    -7.08832    -6.66494    -4.60495     5.08675    11.99033    19.31754    32.75891
+         37.73008    43.68314    50.16421    59.33235    79.67091    -9.30983    -7.15021    -6.65014    -4.35668    -3.79886
+         -2.56380     6.09953    12.67424    19.99329    33.63673    38.76708    44.79726    51.18135    60.38560    81.07943
+  600   -10.08305    -9.13760    -8.48762    -7.21763    -6.42562    -4.05349     5.56751     9.12460    25.59479    29.63092
+         35.89376    41.41653    51.43116    58.33292    88.78729    -8.88680    -7.15486    -6.58342    -4.65292    -3.78921
+         -2.11398     6.54656     9.85796    26.43666    30.60650    36.78013    42.54950    52.37977    59.27226    89.48003
+  601    -9.80671    -9.45853    -8.34823    -7.15196    -6.26695    -3.14747     6.10742     6.88831    25.41724    28.62407
+         32.00624    40.51633    53.25471    58.12117    93.39604    -8.41737    -7.34064    -6.29063    -4.77491    -3.78306
+         -1.44254     7.07711     7.63636    26.47409    29.33995    32.98814    41.62229    54.19435    59.01720    93.84362
+  602    -9.95260    -9.70815    -7.86781    -7.02445    -6.02952    -1.82929     4.66628     7.63561    19.26713    24.49647
+         36.01144    39.79905    53.20769    59.13285    67.99323    -8.20108    -7.60689    -5.76589    -4.74055    -3.58037
+         -0.45885     5.59180     8.37079    20.18599    25.40056    37.11410    40.66077    54.14116    60.04042    69.50436
+  603   -10.15372   -10.00052    -7.23217    -6.91794    -5.84196     0.02221     3.42014     7.97563    15.35053    22.93556
+         32.33417    43.93933    50.87228    56.04541    60.22675    -8.16903    -7.94570    -5.02680    -4.69320    -3.36210
+          1.09642     4.34292     8.55999    16.43718    23.98297    33.24363    44.76008    52.45918    57.50447    61.11673
+  604   -10.24714   -10.20292    -7.12881    -6.37385    -5.91604     2.20603     2.96901     5.53289    17.45884    21.47652
+         26.31377    45.01345    50.17585    56.64811    59.55345    -8.17387    -8.15893    -4.94960    -4.02279    -3.45638
+          3.08784     3.84738     6.22538    18.57986    22.61623    27.15080    46.10603    52.11710    57.56108    60.43837
+  605   -10.24724   -10.20294    -7.12883    -6.37589    -5.91355     2.20407     2.97195     5.53199    17.45947    21.47567
+         26.31339    45.01434    50.18108    56.65402    59.53914    -8.17359    -8.16003    -4.94917    -4.02955    -3.44794
+          3.08635     3.84925     6.22413    18.58050    22.61494    27.15105    46.10677    52.12289    57.56286    60.42735
+  606   -10.17399   -10.13517    -7.12552    -6.57972    -6.00984    -0.21722     5.86398     5.96161    17.74107    17.80490
+         31.46150    45.43348    51.50005    55.73608    58.01523    -8.26428    -7.97363    -4.93494    -4.27716    -3.55810
+          0.85191     6.61258     6.64882    18.68330    18.96798    32.42110    46.37165    53.55028    56.63315    58.92613
+  607   -10.07534    -9.85927    -7.22407    -7.05998    -6.21739    -2.38041     7.00296     8.74500    16.14997    18.77040
+         36.47716    44.14977    53.06300    56.08040    59.21613    -8.39431    -7.62298    -5.03289    -4.84501    -3.78790
+         -1.01106     7.75328     9.36708    17.10583    19.74825    37.58876    44.95183    54.06211    56.98343    60.98580
+  608   -10.01328    -9.50047    -7.78411    -7.29766    -6.38719    -3.92165     8.54714     8.88306    20.12246    21.65929
+         37.65351    40.25601    52.99805    55.09303    74.49202    -8.68823    -7.22140    -5.65457    -5.06645    -3.96976
+         -2.12767     9.36374     9.56937    21.25752    22.15896    38.77886    41.20937    53.93294    56.01508    75.48006
+  609   -10.22745    -9.11713    -8.25765    -7.44092    -6.42184    -4.96075     7.78605    11.16322    23.68435    29.71120
+         33.27732    40.14742    51.46649    56.72002    87.70580    -9.23259    -6.93756    -6.19931    -5.05737    -3.94951
+         -2.79144     8.66151    11.86480    24.64041    30.51294    34.13801    41.33843    52.41977    57.64647    87.78574
+  610   -10.66166    -8.85849    -8.45875    -7.27106    -6.49426    -5.65972     7.11461    14.18609    26.28941    28.59319
+         35.27285    41.45690    50.51231    57.98698    69.02105    -9.83421    -6.82895    -6.55995    -4.69536    -3.86044
+         -3.29540     8.03815    14.86107    27.07051    29.50408    36.32415    42.52737    51.50085    58.95469    70.03879
+  611   -10.96675    -9.03227    -8.05240    -7.08388    -6.81963    -5.93151     6.70815    17.54872    21.51446    29.97833
+         34.82901    45.16004    48.59513    55.01253    61.10085   -10.20544    -7.02379    -6.46754    -4.35044    -3.86128
+         -3.60914     7.64920    18.19466    22.17283    30.74618    35.94869    46.25681    49.74757    56.62134    62.21645
+  612   -10.96671    -9.03224    -8.05199    -7.08412    -6.82054    -5.93091     6.70830    17.54715    21.51425    29.98147
+         34.82808    45.15979    48.59483    55.01282    61.10066   -10.20532    -7.02394    -6.46611    -4.35200    -3.86748
+         -3.60304     7.64936    18.19403    22.17178    30.74822    35.94906    46.25639    49.74782    56.62145    62.21599
+  613   -10.66153    -8.85832    -8.45824    -7.27154    -6.49628    -5.65823     7.11508    14.18393    26.28674    28.59749
+         35.27199    41.45762    50.51416    57.98741    69.01953    -9.83387    -6.83015    -6.55520    -4.69851    -3.86896
+         -3.28836     8.03867    14.85988    27.06755    29.50617    36.32577    42.52821    51.50250    58.95502    70.03717
+  614   -10.22728    -9.11685    -8.25658    -7.44222    -6.42347    -4.95969     7.78684    11.16092    23.68653    29.71108
+         33.27293    40.14769    51.47297    56.71975    87.70510    -9.23210    -6.93660    -6.19355    -5.06320    -3.95649
+         -2.78701     8.66245    11.86373    24.64123    30.51224    34.13437    41.34140    52.42463    57.64605    87.78523
+  615   -10.01312    -9.50027    -7.78179    -7.29979    -6.38877    -3.92103     8.54973     8.87937    20.12326    21.66020
+         37.65032    40.25178    53.00891    55.09239    74.49234    -8.68765    -7.22002    -5.64482    -5.07578    -3.97632
+         -2.12493     9.36667     9.56697    21.25701    22.15999    38.77260    41.21158    53.94183    56.01390    75.48060
+  616   -10.07522    -9.85915    -7.22235    -7.06043    -6.21953    -2.38022     7.00216     8.74517    16.15000    18.77141
+         36.47716    44.14200    53.06165    56.09094    59.21832    -8.39380    -7.62185    -5.02632    -4.84819    -3.79544
+         -1.01004     7.75334     9.36781    17.10601    19.74849    37.58864    44.94648    54.06108    56.99149    60.98852
+  617   -10.17394   -10.13509    -7.12583    -6.57775    -6.01190    -0.21736     5.86193     5.96352    17.74041    17.80591
+         31.46181    45.43178    51.49678    55.72327    58.03527    -8.26415    -7.97285    -4.93683    -4.27034    -3.56492
+          0.85162     6.61189     6.65031    18.68493    18.96663    32.42132    46.37017    53.54629    56.62352    58.94384
+  618   -10.24714   -10.20292    -7.12881    -6.37385    -5.91604     2.20603     2.96901     5.53289    17.45883    21.47652
+         26.31377    45.01345    50.17585    56.64811    59.55345    -8.17387    -8.15893    -4.94960    -4.02279    -3.45638
+          3.08784     3.84738     6.22538    18.57986    22.61623    27.15080    46.10603    52.11710    57.56108    60.43837
+  619   -10.15372   -10.00052    -7.23217    -6.91794    -5.84196     0.02221     3.42014     7.97563    15.35053    22.93556
+         32.33417    43.93933    50.87228    56.04541    60.22675    -8.16903    -7.94570    -5.02680    -4.69320    -3.36210
+          1.09642     4.34292     8.55999    16.43718    23.98297    33.24363    44.76008    52.45918    57.50447    61.11673
+  620   -10.07522    -9.85914    -7.22235    -7.06043    -6.21953    -2.38022     7.00216     8.74517    16.15000    18.77141
+         36.47716    44.14200    53.06165    56.09094    59.21832    -8.39380    -7.62185    -5.02632    -4.84819    -3.79544
+         -1.01004     7.75334     9.36781    17.10601    19.74849    37.58864    44.94648    54.06108    56.99149    60.98852
+  621   -10.09711    -9.50674    -7.35916    -7.35736    -6.65704    -4.17566    10.19893    10.20187    17.41740    18.53115
+         38.68799    42.52851    52.97058    52.98164    69.35650    -8.79195    -7.15205    -5.20347    -5.19606    -4.27742
+         -2.33979    10.85916    10.86119    18.67808    18.99321    39.95570    43.30516    53.90308    53.91170    70.55218
+  622   -10.32283    -9.10308    -7.87387    -7.60571    -6.73290    -5.31941    10.42354    12.27066    20.18907    24.82230
+         38.03322    39.79603    51.84520    53.80737    81.47071    -9.43040    -6.72310    -5.75834    -5.39808    -4.37407
+         -2.99684    11.18206    12.94361    21.26527    25.38409    38.81704    41.09067    52.79696    54.74335    81.65276
+  623   -10.81484    -8.72731    -8.42831    -7.50085    -6.66043    -6.07172     9.70764    14.96880    24.40677    32.09292
+         33.06518    40.68316    50.92478    55.74646    71.68273   -10.18270    -6.53376    -6.35511    -5.08272    -4.29690
+         -3.39747    10.53909    15.63616    25.38879    33.13102    33.85932    41.82646    51.90773    56.68063    72.05942
+  624   -11.29145    -8.80568    -8.35453    -7.24625    -6.64725    -6.58977     9.10396    18.36566    27.44167    28.25410
+         34.14194    43.32520    49.07983    50.61180    57.05315   -10.76915    -6.75968    -6.44121    -4.61275    -4.21619
+         -3.73008     9.95421    19.01939    28.22691    29.05569    35.28936    44.34670    50.43794    51.92584    57.98383
+  625   -11.47773    -8.93745    -8.14408    -7.11051    -6.94417    -6.56247     8.85189    21.37672    24.74236    27.50839
+         34.09801    43.78089    46.55139    48.46788    57.44077   -10.98385    -6.90023    -6.40252    -4.34777    -4.18457
+         -3.93193     9.70573    21.96302    25.60765    28.06625    35.23615    45.80601    47.66444    49.52968    58.36955
+  626   -11.29145    -8.80568    -8.35453    -7.24625    -6.64725    -6.58977     9.10396    18.36566    27.44167    28.25410
+         34.14194    43.32520    49.07983    50.61180    57.05315   -10.76915    -6.75968    -6.44121    -4.61275    -4.21619
+         -3.73008     9.95421    19.01939    28.22692    29.05569    35.28936    44.34670    50.43794    51.92584    57.98383
+  627   -10.81484    -8.72731    -8.42831    -7.50085    -6.66043    -6.07172     9.70764    14.96880    24.40677    32.09292
+         33.06518    40.68315    50.92478    55.74646    71.68273   -10.18270    -6.53376    -6.35511    -5.08272    -4.29690
+         -3.39747    10.53909    15.63616    25.38880    33.13102    33.85932    41.82646    51.90773    56.68063    72.05942
+  628   -10.32283    -9.10308    -7.87387    -7.60571    -6.73290    -5.31941    10.42354    12.27066    20.18908    24.82230
+         38.03322    39.79603    51.84520    53.80737    81.47071    -9.43040    -6.72310    -5.75834    -5.39808    -4.37407
+         -2.99683    11.18206    12.94361    21.26527    25.38409    38.81704    41.09067    52.79696    54.74335    81.65276
+  629   -10.09711    -9.50674    -7.35916    -7.35736    -6.65704    -4.17566    10.19893    10.20187    17.41741    18.53115
+         38.68798    42.52851    52.97058    52.98164    69.35650    -8.79195    -7.15205    -5.20347    -5.19606    -4.27742
+         -2.33979    10.85916    10.86119    18.67809    18.99321    39.95570    43.30516    53.90308    53.91170    70.55218
+  630   -10.07522    -9.85915    -7.22235    -7.06043    -6.21953    -2.38022     7.00216     8.74517    16.15000    18.77141
+         36.47716    44.14200    53.06165    56.09094    59.21832    -8.39380    -7.62186    -5.02632    -4.84819    -3.79544
+         -1.01004     7.75334     9.36781    17.10601    19.74850    37.58864    44.94648    54.06108    56.99149    60.98852
+  631   -10.15372   -10.00052    -7.23217    -6.91794    -5.84196     0.02221     3.42014     7.97563    15.35053    22.93557
+         32.33417    43.93933    50.87228    56.04541    60.22675    -8.16903    -7.94570    -5.02680    -4.69320    -3.36210
+          1.09642     4.34292     8.55999    16.43718    23.98297    33.24363    44.76008    52.45918    57.50447    61.11673
+  632   -10.01623    -9.70407    -7.91334    -6.94576    -5.86448     0.17301     2.03374     7.25724    18.77869    27.53426
+         34.52557    39.19880    53.03680    61.46427    65.44154    -8.02407    -7.75102    -5.83788    -4.64774    -3.39101
+          1.26556     3.16145     7.98558    19.71475    28.62301    35.48206    40.02914    53.98483    62.36593    67.12758
+  633    -9.95257    -9.70796    -7.86821    -7.02367    -6.03012    -1.82991     4.66677     7.63529    19.26752    24.49612
+         36.01060    39.79904    53.20463    59.13897    67.99355    -8.20114    -7.60537    -5.76813    -4.73775    -3.58214
+         -0.46071     5.59291     8.37087    20.18624    25.40026    37.11574    40.65804    54.13896    60.04625    69.50471
+  634   -10.01300    -9.50002    -7.78234    -7.29845    -6.39013    -3.92142     8.54809     8.88088    20.12243    21.66153
+         37.64836    40.25062    52.99773    55.10995    74.49236    -8.68736    -7.21786    -5.64757    -5.07136    -3.98096
+         -2.12607     9.36718     9.56758    21.25514    22.16201    38.77485    41.20649    53.93359    56.02876    75.48067
+  635   -10.32268    -9.10275    -7.87250    -7.60650    -6.73468    -5.31920    10.42290    12.27082    20.18858    24.82381
+         38.02831    39.79554    51.84613    53.81499    81.47013    -9.43010    -6.72017    -5.75265    -5.40271    -4.38067
+         -2.99605    11.18263    12.94420    21.26348    25.38578    38.81399    41.09045    52.79846    54.74907    81.65203
+  636   -10.86676    -8.78628    -8.14792    -7.73171    -6.87325    -6.07028    12.20537    13.39590    24.16782    30.15945
+         34.46371    41.69104    51.60373    53.48609    73.42930   -10.30376    -6.47571    -6.06818    -5.36858    -4.51665
+         -3.37893    12.99187    14.07357    25.20958    31.10796    35.25913    42.87534    52.55163    54.43654    73.62099
+  637   -11.46367    -8.67483    -8.46805    -7.51457    -6.83561    -6.50780    12.00370    16.12585    28.54954    29.76560
+         34.55801    43.02380    50.34838    51.14735    54.91645   -11.06511    -6.55487    -6.41895    -4.89421    -4.45141
+         -3.65080    12.78835    16.79885    29.41028    30.68146    35.72366    44.09874    51.31524    52.42243    55.85877
+  638   -11.83234    -8.81139    -8.46919    -7.23768    -6.91146    -6.68615    11.62325    19.64400    23.90345    32.67101
+         35.57303    41.61181    45.52183    48.43641    55.08942   -11.49252    -6.75576    -6.48939    -4.45774    -4.37858
+         -3.90621    12.39900    20.30268    24.59024    33.48847    36.74817    43.53106    46.66448    49.39862    56.01821
+  639   -11.83237    -8.81136    -8.46954    -7.23714    -6.91093    -6.68681    11.62288    19.64607    23.90332    32.66653
+         35.57460    41.61461    45.52217    48.43431    55.08946   -11.49257    -6.75570    -6.49070    -4.45464    -4.37871
+         -3.90762    12.39867    20.30325    24.59148    33.48618    36.74788    43.53306    46.66509    49.39628    56.01867
+  640   -11.46376    -8.67466    -8.46919    -7.51360    -6.83384    -6.50926    12.00242    16.12888    28.55229    29.76125
+         34.55841    43.02428    50.34391    51.14891    54.91765   -11.06527    -6.55259    -6.42558    -4.89003    -4.44845
+         -3.65268    12.78714    16.80039    29.41378    30.68010    35.72135    44.09825    51.31051    52.42442    55.86085
+  641   -10.86689    -8.78658    -8.14990    -7.72974    -6.87162    -6.07108    12.20258    13.40001    24.16640    30.15941
+         34.46678    41.69231    51.59477    53.48760    73.43111   -10.30399    -6.47660    -6.07762    -5.36020    -4.51159
+         -3.38061    12.98885    14.07626    25.21003    31.10817    35.26123    42.87401    52.54376    54.43913    73.62307
+  642   -10.32283    -9.10308    -7.87387    -7.60571    -6.73290    -5.31941    10.42354    12.27066    20.18908    24.82230
+         38.03322    39.79603    51.84520    53.80737    81.47071    -9.43040    -6.72310    -5.75834    -5.39808    -4.37407
+         -2.99683    11.18206    12.94361    21.26527    25.38409    38.81704    41.09067    52.79696    54.74335    81.65276
+  643   -10.01312    -9.50027    -7.78179    -7.29979    -6.38877    -3.92103     8.54973     8.87937    20.12326    21.66020
+         37.65032    40.25178    53.00891    55.09239    74.49234    -8.68765    -7.22002    -5.64482    -5.07578    -3.97632
+         -2.12493     9.36667     9.56697    21.25701    22.15999    38.77260    41.21158    53.94183    56.01390    75.48060
+  644    -9.95260    -9.70815    -7.86781    -7.02445    -6.02952    -1.82929     4.66628     7.63561    19.26713    24.49648
+         36.01144    39.79905    53.20769    59.13285    67.99323    -8.20107    -7.60689    -5.76589    -4.74055    -3.58037
+         -0.45885     5.59180     8.37079    20.18599    25.40056    37.11410    40.66077    54.14116    60.04042    69.50436
+  645    -9.76725    -9.39687    -8.56971    -6.91340    -6.14431    -0.87825     2.81906     5.81524    25.54068    30.51309
+         31.34381    40.06524    54.33615    60.70767    96.67573    -7.94681    -7.47443    -6.57421    -4.50111    -3.67292
+          0.44850     3.91583     6.64477    26.50128    31.50949    32.38388    41.04007    55.25208    61.61934    97.40266
+  646    -9.76722    -9.39653    -8.57008    -6.91296    -6.14466    -0.87948     2.82004     5.81517    25.54070    30.51446
+         31.34102    40.06567    54.33164    60.71511    96.67620    -7.94728    -7.47167    -6.57629    -4.49987    -3.67377
+          0.44499     3.91832     6.64492    26.50099    31.50763    32.38615    41.03864    55.24861    61.62648    97.40300
+  647    -9.80651    -9.45805    -8.34873    -7.15112    -6.26780    -3.14891     6.10667     6.88972    25.41610    28.62508
+         32.00355    40.51642    53.24337    58.14063    93.39607    -8.41709    -7.33688    -6.29292    -4.77302    -3.78535
+         -1.44735     7.07920     7.63704    26.47167    29.34136    32.98940    41.61870    54.18633    59.03473    93.84324
+  648   -10.22702    -9.11626    -8.25621    -7.44231    -6.42464    -4.96078     7.78585    11.16224    23.68482    29.71312
+         33.26852    40.14715    51.46819    56.73611    87.70379    -9.23168    -6.93178    -6.19201    -5.06516    -3.96144
+         -2.79021     8.66350    11.86530    24.63850    30.51427    34.13404    41.33822    52.42250    57.65981    87.78308
+  649   -10.81463    -8.72666    -8.42690    -7.50220    -6.66257    -6.07143     9.70698    14.96911    24.40604    32.09432
+         33.05969    40.68314    50.92648    55.75687    71.67994   -10.18237    -6.52920    -6.34857    -5.08937    -4.30512
+         -3.39685    10.54027    15.63715    25.38631    33.13191    33.85627    41.82820    51.90966    56.68855    72.05547
+  650   -11.46360    -8.67435    -8.46747    -7.51553    -6.83596    -6.50802    12.00292    16.12681    28.55247    29.75893
+         34.55918    43.02351    50.34988    51.14596    54.92111   -11.06501    -6.55093    -6.41806    -4.89734    -4.45423
+         -3.65104    12.78890    16.79932    29.41083    30.67827    35.72362    44.10014    51.31633    52.42076    55.86187
+  651   -11.95764    -8.70554    -8.65630    -7.32147    -6.89042    -6.67258    14.08854    16.76496    23.91850    34.70238
+         36.66874    41.47347    45.43241    48.83075    53.79617   -11.66663    -6.61909    -6.61521    -4.52495    -4.42380
+         -3.87056    14.84210    17.42091    24.59585    35.69454    37.93166    43.03334    46.69382    49.76575    54.73281
+  652   -12.13844    -8.77822    -8.68828    -7.14529    -7.01812    -6.67678    14.67665    18.51025    20.43511    37.48910
+         37.78870    39.48330    46.16702    47.18718    53.50299   -11.87675    -6.71856    -6.63079    -4.39892    -4.26284
+         -4.05216    15.40069    19.21716    21.03854    38.64924    38.71988    41.54873    47.19466    48.13197    54.44630
+  653   -11.95773    -8.70516    -8.65756    -7.32026    -6.88965    -6.67330    14.08571    16.77033    23.91788    34.69823
+         36.66968    41.47955    45.43352    48.82438    53.79502   -11.66677    -6.62384    -6.61455    -4.52031    -4.42123
+         -3.87250    14.83925    17.42422    24.59683    35.69375    37.93011    43.03805    46.69410    49.75894    54.73375
+  654   -11.46376    -8.67466    -8.46919    -7.51360    -6.83384    -6.50926    12.00242    16.12888    28.55229    29.76125
+         34.55841    43.02428    50.34391    51.14891    54.91765   -11.06527    -6.55259    -6.42558    -4.89004    -4.44845
+         -3.65268    12.78714    16.80039    29.41378    30.68010    35.72135    44.09825    51.31051    52.42442    55.86085
+  655   -10.81484    -8.72731    -8.42831    -7.50085    -6.66043    -6.07172     9.70764    14.96880    24.40678    32.09292
+         33.06518    40.68315    50.92478    55.74646    71.68273   -10.18270    -6.53376    -6.35511    -5.08272    -4.29690
+         -3.39747    10.53909    15.63616    25.38880    33.13102    33.85932    41.82646    51.90773    56.68064    72.05942
+  656   -10.22728    -9.11685    -8.25658    -7.44222    -6.42347    -4.95969     7.78684    11.16092    23.68653    29.71108
+         33.27293    40.14769    51.47297    56.71975    87.70510    -9.23210    -6.93660    -6.19355    -5.06320    -3.95649
+         -2.78701     8.66245    11.86373    24.64123    30.51224    34.13437    41.34140    52.42463    57.64605    87.78523
+  657    -9.80671    -9.45853    -8.34823    -7.15196    -6.26695    -3.14747     6.10742     6.88831    25.41724    28.62407
+         32.00624    40.51633    53.25471    58.12117    93.39604    -8.41737    -7.34064    -6.29063    -4.77491    -3.78306
+         -1.44254     7.07711     7.63636    26.47409    29.33995    32.98814    41.62229    54.19435    59.01720    93.84362
+  658    -9.62586    -9.34514    -8.69848    -6.98258    -6.42244    -1.94584     4.05722     5.35498    24.74247    31.61219
+         35.65232    41.71934    54.05287    58.70285    94.73349    -8.10397    -7.40433    -6.78967    -4.42782    -3.82939
+         -0.39624     5.12849     6.16254    25.63946    32.66195    36.59403    42.72897    54.99908    59.62549    95.43780
+  659    -9.55844    -9.08753    -9.04348    -6.82931    -6.45010    -0.00889     1.83873     4.58785    24.45554    32.36134
+         35.63461    41.62347    55.20458    60.36923    92.33081    -7.80121    -7.23317    -7.17436    -4.26117    -3.88414
+          1.24595     3.05038     5.46098    25.37025    33.39123    36.71723    42.53651    56.14121    61.30517    93.05784
+  660    -9.62566    -9.34445    -8.69908    -6.98224    -6.42282    -1.94797     4.05702     5.35661    24.74209    31.61126
+         35.65052    41.71976    54.04108    58.71916    94.73755    -8.10404    -7.39967    -6.79210    -4.42789    -3.82975
+         -0.40320     5.13184     6.16378    25.63991    32.65970    36.59534    42.72599    54.99084    59.63948    95.44143
+  661   -10.08276    -9.13676    -8.48775    -7.21786    -6.42583    -4.05590     5.56655     9.12654    25.59450    29.62733
+         35.89286    41.41615    51.42546    58.34846    88.79101    -8.88641    -7.14930    -6.58339    -4.65523    -3.78959
+         -2.12254     6.54820     9.86045    26.43744    30.60315    36.78049    42.54650    52.37711    59.28502    89.48305
+  662   -10.66129    -8.85695    -8.45791    -7.27255    -6.49619    -5.66082     7.11416    14.18531    26.28787    28.59060
+         35.27107    41.45863    50.51343    57.99897    69.02215    -9.83354    -6.82216    -6.55336    -4.70323    -3.87215
+         -3.29531     8.04018    14.86184    27.06806    29.50216    36.32339    42.53019    51.50228    58.96409    70.03875
+  663   -11.29126    -8.80435    -8.35363    -7.24777    -6.64706    -6.59201     9.10318    18.36651    27.44100    28.24844
+         34.14227    43.32646    49.07797    50.61306    57.06482   -10.76887    -6.75309    -6.43647    -4.61925    -4.22489
+         -3.73016     9.95551    19.02079    28.22441    29.05294    35.28891    44.34963    50.43564    51.92662    57.99275
+  664   -11.83224    -8.81024    -8.46912    -7.23873    -6.91128    -6.68723    11.62252    19.64516    23.90240    32.66428
+         35.57519    41.61048    45.52298    48.43916    55.09608   -11.49237    -6.74984    -6.48886    -4.46093    -4.38384
+         -3.90640    12.39989    20.30309    24.58958    33.48443    36.74862    43.52790    46.66729    49.40207    56.02231
+  665   -12.13839    -8.77727    -8.68876    -7.14632    -7.01759    -6.67702    14.67726    18.50633    20.43798    37.49438
+         37.78118    39.48188    46.16604    47.19164    53.50514   -11.87667    -6.71339    -6.63347    -4.39988    -4.26727
+         -4.05012    15.40220    19.21388    21.04022    38.64580    38.72279    41.54565    47.19191    48.13952    54.44677
+  666   -12.13844    -8.77822    -8.68828    -7.14529    -7.01812    -6.67678    14.67665    18.51025    20.43511    37.48910
+         37.78870    39.48330    46.16702    47.18718    53.50299   -11.87675    -6.71856    -6.63079    -4.39892    -4.26285
+         -4.05216    15.40069    19.21716    21.03854    38.64924    38.71988    41.54873    47.19465    48.13197    54.44630
+  667   -11.83237    -8.81136    -8.46954    -7.23714    -6.91093    -6.68681    11.62288    19.64607    23.90332    32.66653
+         35.57461    41.61461    45.52216    48.43431    55.08946   -11.49257    -6.75570    -6.49070    -4.45464    -4.37871
+         -3.90762    12.39867    20.30325    24.59148    33.48618    36.74788    43.53306    46.66509    49.39628    56.01867
+  668   -11.29145    -8.80568    -8.35453    -7.24625    -6.64725    -6.58977     9.10396    18.36566    27.44167    28.25410
+         34.14194    43.32520    49.07983    50.61180    57.05315   -10.76915    -6.75968    -6.44121    -4.61275    -4.21619
+         -3.73008     9.95421    19.01939    28.22692    29.05569    35.28936    44.34669    50.43794    51.92584    57.98383
+  669   -10.66153    -8.85832    -8.45824    -7.27154    -6.49628    -5.65823     7.11508    14.18393    26.28674    28.59749
+         35.27199    41.45762    50.51416    57.98741    69.01953    -9.83387    -6.83015    -6.55520    -4.69851    -3.86896
+         -3.28836     8.03867    14.85988    27.06755    29.50618    36.32577    42.52821    51.50250    58.95502    70.03717
+  670   -10.08305    -9.13760    -8.48762    -7.21763    -6.42562    -4.05349     5.56751     9.12460    25.59479    29.63093
+         35.89376    41.41653    51.43115    58.33292    88.78729    -8.88680    -7.15486    -6.58342    -4.65293    -3.78921
+         -2.11398     6.54656     9.85796    26.43666    30.60650    36.78013    42.54950    52.37977    59.27226    89.48003
+  671    -9.91694    -9.19412    -8.49424    -7.01569    -6.61216    -2.72231     3.85734     7.25830    17.82129    35.60052
+         39.72075    43.22459    51.76305    59.51073    91.30782    -8.48379    -7.31836    -6.83784    -4.28028    -3.81349
+         -1.04521     4.91838     8.02124    18.53974    36.59093    40.66022    44.33798    52.74108    60.51358    92.42777
+  672    -9.61061    -9.15051    -8.78878    -6.85811    -6.66824    -0.39331     2.47415     4.26821    17.10526    38.08366
+         39.87222    42.46018    55.52762    59.09234    86.11554    -7.91904    -7.37754    -7.08616    -4.12031    -3.91197
+          0.94712     3.60765     5.13714    17.85004    39.16492    40.88814    43.43166    56.47850    60.05994    87.12008
+  673    -9.61051    -9.14965    -8.78954    -6.85822    -6.66822    -0.39540     2.47434     4.26975    17.10524    38.08323
+         39.86996    42.46178    55.51503    59.10651    86.11862    -7.91930    -7.37245    -7.08956    -4.12187    -3.91094
+          0.93984     3.61214     5.13862    17.85032    39.16328    40.88984    43.42976    56.46949    60.07116    87.12301
+  674    -9.91667    -9.19307    -8.49484    -7.01618    -6.61201    -2.72510     3.85636     7.26081    17.82120    35.59722
+         39.71956    43.22477    51.75561    59.52451    91.31545    -8.48344    -7.31229    -6.83944    -4.28327    -3.81241
+         -1.05515     4.92043     8.02488    18.54047    36.58840    40.65925    44.33622    52.73658    60.52452    92.43540
+  675   -10.41336    -9.10809    -8.24222    -7.08927    -6.66456    -4.60815     5.08580    11.99199    19.31735    32.75348
+         37.72913    43.68339    50.16234    59.34242    79.68079    -9.30947    -7.14317    -6.64872    -4.36109    -3.79790
+         -2.57586     6.10143    12.67687    19.99424    33.63264    38.76458    44.79836    51.17959    60.39337    81.08944
+  676   -10.96649    -9.03089    -8.05110    -7.08537    -6.82016    -5.93431     6.70735    17.54839    21.51331    29.97518
+         34.82870    45.16028    48.59406    55.01046    61.12002   -10.20501    -7.01700    -6.46128    -4.35767    -3.86643
+         -3.61609     7.65099    18.19578    22.17241    30.74259    35.94896    46.25746    49.74610    56.61881    62.23374
+  677   -11.47755    -8.93615    -8.14298    -7.11207    -6.94415    -6.56474     8.85101    21.38128    24.73320    27.50786
+         34.09833    43.77727    46.55146    48.47263    57.45283   -10.98359    -6.89365    -6.39773    -4.35453    -4.19334
+         -3.93198     9.70699    21.96626    25.60336    28.06364    35.23645    45.80055    47.66432    49.53675    58.37877
+  678   -11.83224    -8.81024    -8.46912    -7.23873    -6.91127    -6.68723    11.62252    19.64516    23.90240    32.66428
+         35.57519    41.61048    45.52297    48.43916    55.09608   -11.49237    -6.74984    -6.48886    -4.46093    -4.38384
+         -3.90640    12.39989    20.30309    24.58958    33.48444    36.74862    43.52790    46.66729    49.40207    56.02231
+  679   -11.95764    -8.70554    -8.65630    -7.32147    -6.89042    -6.67258    14.08854    16.76496    23.91850    34.70238
+         36.66874    41.47347    45.43240    48.83075    53.79617   -11.66663    -6.61909    -6.61521    -4.52495    -4.42380
+         -3.87056    14.84210    17.42091    24.59585    35.69454    37.93166    43.03334    46.69382    49.76575    54.73281
+  680   -11.83234    -8.81139    -8.46919    -7.23769    -6.91146    -6.68615    11.62325    19.64400    23.90345    32.67101
+         35.57304    41.61181    45.52183    48.43641    55.08942   -11.49252    -6.75576    -6.48939    -4.45774    -4.37858
+         -3.90621    12.39900    20.30268    24.59024    33.48847    36.74818    43.53106    46.66447    49.39862    56.01821
+  681   -11.47773    -8.93745    -8.14408    -7.11051    -6.94417    -6.56247     8.85189    21.37672    24.74236    27.50839
+         34.09801    43.78089    46.55139    48.46788    57.44077   -10.98385    -6.90023    -6.40252    -4.34777    -4.18457
+         -3.93193     9.70573    21.96302    25.60765    28.06625    35.23615    45.80601    47.66443    49.52968    58.36955
+  682   -10.96671    -9.03224    -8.05199    -7.08412    -6.82054    -5.93091     6.70830    17.54715    21.51425    29.98147
+         34.82808    45.15978    48.59483    55.01282    61.10066   -10.20532    -7.02394    -6.46611    -4.35200    -3.86748
+         -3.60304     7.64936    18.19403    22.17178    30.74822    35.94906    46.25639    49.74782    56.62145    62.21599
+  683   -10.41362    -9.10935    -8.24220    -7.08832    -6.66494    -4.60495     5.08675    11.99033    19.31754    32.75891
+         37.73008    43.68313    50.16421    59.33235    79.67091    -9.30983    -7.15021    -6.65014    -4.35668    -3.79886
+         -2.56380     6.09953    12.67424    19.99329    33.63673    38.76708    44.79725    51.18135    60.38560    81.07943
+  684   -10.08837    -9.26328    -8.17385    -6.95041    -6.81590    -3.14042     3.58807     9.86408    13.19918    37.79657
+         40.31305    45.99268    50.89709    61.62861   105.04273    -8.72253    -7.37340    -6.76771    -4.09376    -3.82044
+         -1.41650     4.67287    10.57559    13.85986    38.69272    41.39679    47.13559    51.88562    62.63401   106.23678
+  685    -9.71546    -9.21350    -8.52311    -6.88895    -6.77673    -1.01756     2.67326     5.80079    12.06417    41.03245
+         43.31420    45.40248    53.21270    60.67743   107.99773    -8.11567    -7.43739    -7.00736    -4.00512    -3.82818
+          0.37094     3.79113     6.60402    12.75942    42.05013    44.32166    46.53350    54.18021    61.65451   108.85074
+  686    -9.60122    -8.91415    -8.91285    -6.81543    -6.81487     1.37800     1.37851     3.75235    11.71679    43.80061
+         43.80063    44.09471    57.30567    57.32364   105.10933    -7.87020    -7.29166    -7.28501    -3.90492    -3.90195
+          2.53794     2.54485     4.65429    12.42522    44.92674    44.92787    45.02020    58.26511    58.27855   105.87829
+  687    -9.71527    -9.21231    -8.52403    -6.88968    -6.77641    -1.01994     2.67198     5.80381    12.06434    41.02871
+         43.31378    45.40300    53.20346    60.69475   108.00058    -8.11538    -7.43100    -7.01067    -4.00883    -3.82667
+          0.36191     3.79314     6.60879    12.76020    42.04864    44.31963    46.53315    54.17406    61.66851   108.85346
+  688   -10.08803    -9.26208    -8.17427    -6.95141    -6.81577    -3.14338     3.58716     9.86601    13.19961    37.79025
+         40.31285    45.99281    50.89398    61.64407   105.04967    -8.72183    -7.36695    -6.76759    -4.09877    -3.82003
+         -1.42740     4.67502    10.57922    13.86125    38.68836    41.39548    47.13619    51.88292    62.64662   106.24410
+  689   -10.54182    -9.18639    -7.95817    -7.00167    -6.88921    -4.78628     4.90847    14.69958    15.50897    34.08041
+         36.91067    46.40895    49.17256    60.19815    79.88205    -9.46995    -7.22406    -6.57256    -4.18796    -3.86463
+         -2.72989     5.93699    15.39357    16.11841    34.86827    38.06262    47.55633    50.18442    61.26812    81.49572
+  690   -10.96649    -9.03089    -8.05110    -7.08537    -6.82016    -5.93431     6.70735    17.54839    21.51331    29.97518
+         34.82870    45.16028    48.59406    55.01046    61.12002   -10.20501    -7.01700    -6.46128    -4.35767    -3.86643
+         -3.61609     7.65099    18.19578    22.17241    30.74259    35.94896    46.25746    49.74610    56.61881    62.23374
+  691   -11.29126    -8.80435    -8.35363    -7.24777    -6.64706    -6.59201     9.10318    18.36651    27.44100    28.24844
+         34.14227    43.32646    49.07797    50.61306    57.06482   -10.76887    -6.75309    -6.43647    -4.61925    -4.22489
+         -3.73016     9.95552    19.02079    28.22441    29.05294    35.28891    44.34962    50.43564    51.92662    57.99275
+  692   -11.46360    -8.67435    -8.46747    -7.51553    -6.83596    -6.50802    12.00293    16.12681    28.55247    29.75894
+         34.55918    43.02351    50.34988    51.14596    54.92111   -11.06501    -6.55093    -6.41806    -4.89734    -4.45423
+         -3.65104    12.78890    16.79932    29.41083    30.67827    35.72362    44.10014    51.31633    52.42076    55.86187
+  693   -11.46367    -8.67483    -8.46805    -7.51457    -6.83561    -6.50780    12.00370    16.12585    28.54954    29.76560
+         34.55801    43.02380    50.34838    51.14735    54.91645   -11.06511    -6.55487    -6.41895    -4.89422    -4.45141
+         -3.65080    12.78835    16.79885    29.41029    30.68147    35.72366    44.09874    51.31524    52.42243    55.85877
+  694   -11.29145    -8.80568    -8.35453    -7.24625    -6.64725    -6.58977     9.10396    18.36566    27.44167    28.25410
+         34.14194    43.32520    49.07983    50.61180    57.05315   -10.76915    -6.75968    -6.44121    -4.61275    -4.21619
+         -3.73008     9.95421    19.01939    28.22692    29.05569    35.28936    44.34669    50.43794    51.92584    57.98383
+  695   -10.96675    -9.03227    -8.05240    -7.08388    -6.81963    -5.93151     6.70815    17.54872    21.51446    29.97833
+         34.82901    45.16004    48.59513    55.01253    61.10085   -10.20544    -7.02379    -6.46754    -4.35044    -3.86128
+         -3.60914     7.64920    18.19466    22.17283    30.74618    35.94869    46.25681    49.74757    56.62134    62.21645
+  696   -10.54214    -9.18769    -7.95876    -7.00029    -6.88903    -4.78314     4.90929    14.70155    15.50621    34.08727
+         36.90971    46.40859    49.17373    60.18801    79.87143    -9.47051    -7.23075    -6.57658    -4.18145    -3.86380
+         -2.71844     5.93488    15.39334    16.11544    34.87414    38.06164    47.55565    50.18605    61.26036    81.48463
+  697   -10.08856    -9.26327    -8.17449    -6.94982    -6.81505    -3.14088     3.58773     9.86682    13.19726    37.79539
+         40.31531    45.99211    50.89470    61.62841   105.04242    -8.72330    -7.37311    -6.76981    -4.09155    -3.81723
+         -1.41868     4.67246    10.57806    13.85777    38.69342    41.39623    47.13556    51.88355    62.63394   106.23608
+  698    -9.71150    -9.32389    -8.37225    -6.87364    -6.84360    -1.25646     2.60679     8.18030     8.87657    42.94532
+         43.21922    47.23542    52.41546    61.51504   125.55405    -8.17861    -7.50527    -6.95116    -3.93680    -3.79849
+          0.14046     3.73468     8.99865     9.51101    43.82268    44.37286    48.39208    53.39090    62.49689   126.29276
+  699    -9.45624    -9.18095    -8.73521    -6.84136    -6.82886     0.81277     2.31436     4.92707     7.92443    45.75294
+         47.09577    47.25540    54.21098    58.58626   135.93765    -7.79036    -7.50310    -7.20873    -3.84874    -3.79589
+          1.98534     3.42844     5.77421     8.65041    46.88584    48.03794    48.41310    55.17427    59.55179   136.45811
+  700    -9.45617    -9.17984    -8.73611    -6.84209    -6.82855     0.81247     2.31143     4.93003     7.92474    45.75189
+         47.09237    47.25540    54.20447    58.60024   135.93873    -7.79044    -7.49700    -7.21293    -3.85200    -3.79464
+          1.98047     3.42764     5.77938     8.65102    46.88585    48.03376    48.41344    55.16998    59.56269   136.45911
+  701    -9.71101    -9.32284    -8.37281    -6.87484    -6.84373    -1.25861     2.60571     8.17959     8.88023    42.93595
+         43.22002    47.23577    52.41330    61.53296   125.55763    -8.17702    -7.49960    -6.95271    -3.94224    -3.79906
+          0.13221     3.73655     9.00055     9.51531    43.81534    44.37353    48.39257    53.38917    62.51163   126.29645
+  702   -10.08803    -9.26208    -8.17427    -6.95141    -6.81577    -3.14338     3.58716     9.86601    13.19961    37.79025
+         40.31285    45.99281    50.89398    61.64407   105.04967    -8.72183    -7.36695    -6.76759    -4.09877    -3.82003
+         -1.42740     4.67502    10.57922    13.86125    38.68836    41.39548    47.13618    51.88292    62.64662   106.24410
+  703   -10.41336    -9.10809    -8.24222    -7.08927    -6.66456    -4.60815     5.08580    11.99199    19.31735    32.75348
+         37.72914    43.68339    50.16234    59.34242    79.68079    -9.30947    -7.14317    -6.64872    -4.36109    -3.79790
+         -2.57586     6.10143    12.67687    19.99424    33.63264    38.76458    44.79836    51.17959    60.39337    81.08944
+  704   -10.66129    -8.85695    -8.45791    -7.27255    -6.49619    -5.66082     7.11416    14.18531    26.28787    28.59061
+         35.27107    41.45863    50.51343    57.99897    69.02215    -9.83354    -6.82216    -6.55336    -4.70323    -3.87215
+         -3.29531     8.04018    14.86184    27.06806    29.50216    36.32339    42.53018    51.50228    58.96409    70.03875
+  705   -10.81463    -8.72667    -8.42690    -7.50220    -6.66257    -6.07142     9.70698    14.96911    24.40604    32.09432
+         33.05969    40.68314    50.92648    55.75687    71.67994   -10.18237    -6.52920    -6.34857    -5.08937    -4.30512
+         -3.39685    10.54027    15.63715    25.38631    33.13191    33.85627    41.82820    51.90966    56.68855    72.05547
+  706   -10.86676    -8.78628    -8.14792    -7.73171    -6.87325    -6.07028    12.20537    13.39590    24.16782    30.15945
+         34.46371    41.69103    51.60373    53.48609    73.42930   -10.30376    -6.47571    -6.06818    -5.36858    -4.51665
+         -3.37893    12.99187    14.07357    25.20958    31.10796    35.25913    42.87533    52.55163    54.43654    73.62099
+  707   -10.81484    -8.72731    -8.42831    -7.50085    -6.66043    -6.07172     9.70764    14.96880    24.40678    32.09292
+         33.06518    40.68315    50.92478    55.74646    71.68273   -10.18270    -6.53376    -6.35511    -5.08272    -4.29690
+         -3.39747    10.53909    15.63616    25.38880    33.13102    33.85932    41.82646    51.90773    56.68064    72.05942
+  708   -10.66166    -8.85849    -8.45875    -7.27106    -6.49426    -5.65972     7.11461    14.18609    26.28941    28.59319
+         35.27285    41.45689    50.51231    57.98698    69.02105    -9.83421    -6.82895    -6.55995    -4.69536    -3.86044
+         -3.29540     8.03815    14.86107    27.07051    29.50408    36.32415    42.52737    51.50085    58.95469    70.03879
+  709   -10.41383    -9.10947    -8.24305    -7.08759    -6.66328    -4.60593     5.08625    11.99294    19.31753    32.75521
+         37.73228    43.68243    50.16263    59.33215    79.67129    -9.31049    -7.14980    -6.65418    -4.35297    -3.79208
+         -2.56903     6.09894    12.67598    19.99349    33.63529    38.76620    44.79698    51.17968    60.38559    81.07976
+  710    -9.91747    -9.19431    -8.49530    -7.01427    -6.61023    -2.72346     3.85619     7.26167    17.82121    35.59734
+         39.72512    43.22512    51.75492    59.51056    91.30741    -8.48593    -7.31830    -6.84294    -4.27441    -3.80541
+         -1.05007     4.91706     8.02358    18.53915    36.59017    40.66188    44.33704    52.73482    60.51332    92.42670
+  711    -9.71619    -9.21324    -8.52396    -6.88798    -6.77530    -1.01837     2.67219     5.80461    12.06197    41.03165
+         43.32087    45.40237    53.20247    60.67707   107.99670    -8.11894    -7.43594    -7.01057    -4.00137    -3.82249
+          0.36780     3.79028     6.60739    12.75634    42.05169    44.32396    46.53341    54.17241    61.65394   108.84900
+  712    -9.45718    -9.18020    -8.73561    -6.84102    -6.82815     0.81238     2.31343     4.93146     7.92108    45.75174
+         47.10544    47.25492    54.20023    58.58635   135.93651    -7.79490    -7.49951    -7.21015    -3.84742    -3.79306
+          1.98376     3.42849     5.77875     8.64573    46.88645    48.04318    48.41315    55.16612    59.55156   136.45668
+  713    -9.19787    -9.19696    -8.95880    -6.83235    -6.83202     1.23140     4.09338     4.09389     5.43587    47.63900
+         47.63927    51.74957    51.76538    57.29827   154.07710    -7.52632    -7.52107    -7.43734    -3.78776    -3.78636
+          2.40088     5.08500     5.08820     6.08852    48.80227    48.80234    52.69350    52.70595    58.27291   154.45811
+  714    -9.45617    -9.17984    -8.73611    -6.84209    -6.82855     0.81247     2.31143     4.93003     7.92474    45.75189
+         47.09237    47.25540    54.20447    58.60024   135.93873    -7.79044    -7.49700    -7.21293    -3.85200    -3.79464
+          1.98047     3.42764     5.77938     8.65102    46.88585    48.03376    48.41344    55.16998    59.56269   136.45911
+  715    -9.71527    -9.21231    -8.52403    -6.88968    -6.77641    -1.01994     2.67198     5.80381    12.06434    41.02871
+         43.31378    45.40300    53.20346    60.69475   108.00058    -8.11538    -7.43100    -7.01067    -4.00883    -3.82667
+          0.36191     3.79314     6.60879    12.76020    42.04864    44.31963    46.53315    54.17406    61.66851   108.85346
+  716    -9.91667    -9.19307    -8.49484    -7.01618    -6.61201    -2.72510     3.85636     7.26081    17.82120    35.59722
+         39.71956    43.22477    51.75561    59.52451    91.31545    -8.48344    -7.31229    -6.83944    -4.28327    -3.81240
+         -1.05515     4.92043     8.02488    18.54047    36.58840    40.65926    44.33622    52.73658    60.52452    92.43540
+  717   -10.08276    -9.13676    -8.48775    -7.21786    -6.42583    -4.05590     5.56655     9.12654    25.59450    29.62733
+         35.89286    41.41614    51.42546    58.34846    88.79101    -8.88641    -7.14930    -6.58339    -4.65523    -3.78959
+         -2.12254     6.54820     9.86045    26.43744    30.60315    36.78049    42.54650    52.37711    59.28502    89.48305
+  718   -10.22702    -9.11626    -8.25621    -7.44231    -6.42464    -4.96078     7.78585    11.16224    23.68482    29.71312
+         33.26852    40.14714    51.46819    56.73611    87.70379    -9.23168    -6.93178    -6.19201    -5.06516    -3.96144
+         -2.79021     8.66350    11.86530    24.63850    30.51427    34.13404    41.33822    52.42250    57.65981    87.78308
+  719   -10.32268    -9.10275    -7.87250    -7.60650    -6.73468    -5.31920    10.42290    12.27082    20.18858    24.82381
+         38.02831    39.79554    51.84613    53.81499    81.47012    -9.43010    -6.72017    -5.75265    -5.40271    -4.38067
+         -2.99605    11.18263    12.94420    21.26348    25.38578    38.81399    41.09045    52.79846    54.74907    81.65203
+  720   -10.32283    -9.10308    -7.87387    -7.60571    -6.73290    -5.31941    10.42354    12.27066    20.18908    24.82230
+         38.03322    39.79603    51.84520    53.80737    81.47071    -9.43040    -6.72310    -5.75834    -5.39808    -4.37407
+         -2.99683    11.18206    12.94361    21.26527    25.38409    38.81704    41.09067    52.79696    54.74335    81.65276
+  721   -10.22745    -9.11713    -8.25765    -7.44092    -6.42184    -4.96075     7.78605    11.16322    23.68435    29.71120
+         33.27732    40.14742    51.46649    56.72002    87.70580    -9.23259    -6.93757    -6.19931    -5.05737    -3.94951
+         -2.79144     8.66151    11.86480    24.64041    30.51294    34.13801    41.33843    52.41977    57.64647    87.78574
+  722   -10.08341    -9.13800    -8.48868    -7.21608    -6.42353    -4.05486     5.56642     9.12759    25.59843    29.62686
+         35.89488    41.41684    51.42446    58.33301    88.78803    -8.88801    -7.15556    -6.58958    -4.64628    -3.77973
+         -2.12018     6.54523     9.85963    26.43982    30.60487    36.77996    42.54727    52.37476    59.27220    89.48039
+  723    -9.62663    -9.34544    -8.69980    -6.98036    -6.42022    -1.94729     4.05559     5.35845    24.74641    31.61011
+         35.65138    41.72293    54.04171    58.70067    94.73445    -8.10715    -7.40536    -6.79634    -4.41856    -3.81963
+         -0.40129     5.12677     6.16378    25.64227    32.66140    36.59410    42.72837    54.98960    59.62378    95.43761
+  724    -9.61166    -9.15071    -8.78967    -6.85620    -6.66623    -0.39471     2.47298     4.27182    17.10513    38.08174
+         39.87272    42.46693    55.51561    59.08860    86.11545    -7.92428    -7.37764    -7.09016    -4.11259    -3.90338
+          0.94308     3.60709     5.13830    17.84886    39.16423    40.88993    43.43412    56.46840    60.05652    87.11902
+  725    -9.60229    -8.91377    -8.91377    -6.81373    -6.81373     1.37749     1.37749     3.75592    11.71444    43.79936
+         43.79937    44.10656    57.30603    57.30603   105.10769    -7.87618    -7.28880    -7.28880    -3.89766    -3.89766
+          2.54084     2.54084     4.65522    12.42150    44.92707    44.92708    45.02800    58.26441    58.26441   105.87604
+  726    -9.45718    -9.18020    -8.73561    -6.84102    -6.82815     0.81238     2.31343     4.93146     7.92108    45.75173
+         47.10544    47.25492    54.20023    58.58635   135.93651    -7.79490    -7.49951    -7.21015    -3.84741    -3.79306
+          1.98376     3.42849     5.77875     8.64573    46.88645    48.04317    48.41315    55.16612    59.55156   136.45668
+  727    -9.45624    -9.18095    -8.73521    -6.84136    -6.82886     0.81277     2.31436     4.92707     7.92443    45.75294
+         47.09577    47.25541    54.21098    58.58626   135.93765    -7.79036    -7.50310    -7.20873    -3.84874    -3.79590
+          1.98534     3.42844     5.77421     8.65041    46.88584    48.03794    48.41310    55.17427    59.55179   136.45811
+  728    -9.60122    -8.91415    -8.91285    -6.81544    -6.81487     1.37800     1.37851     3.75235    11.71679    43.80060
+         43.80064    44.09471    57.30567    57.32364   105.10933    -7.87020    -7.29166    -7.28501    -3.90492    -3.90195
+          2.53794     2.54485     4.65429    12.42522    44.92674    44.92786    45.02020    58.26511    58.27855   105.87829
+  729    -9.61051    -9.14965    -8.78954    -6.85822    -6.66822    -0.39540     2.47434     4.26975    17.10524    38.08324
+         39.86995    42.46178    55.51503    59.10651    86.11862    -7.91930    -7.37245    -7.08956    -4.12187    -3.91094
+          0.93984     3.61214     5.13862    17.85032    39.16329    40.88983    43.42976    56.46949    60.07116    87.12301
+  730    -9.62566    -9.34445    -8.69908    -6.98224    -6.42282    -1.94797     4.05702     5.35661    24.74209    31.61126
+         35.65052    41.71976    54.04108    58.71916    94.73755    -8.10404    -7.39967    -6.79210    -4.42789    -3.82975
+         -0.40320     5.13184     6.16378    25.63991    32.65971    36.59534    42.72599    54.99084    59.63948    95.44143
+  731    -9.80651    -9.45805    -8.34873    -7.15112    -6.26780    -3.14891     6.10667     6.88972    25.41610    28.62508
+         32.00355    40.51642    53.24337    58.14063    93.39607    -8.41709    -7.33688    -6.29292    -4.77302    -3.78535
+         -1.44735     7.07920     7.63704    26.47168    29.34136    32.98940    41.61870    54.18633    59.03473    93.84324
+  732   -10.01300    -9.50002    -7.78234    -7.29845    -6.39013    -3.92142     8.54809     8.88088    20.12243    21.66153
+         37.64836    40.25062    52.99773    55.10995    74.49236    -8.68735    -7.21786    -5.64757    -5.07136    -3.98096
+         -2.12607     9.36718     9.56758    21.25515    22.16201    38.77485    41.20649    53.93359    56.02876    75.48067
+  733   -10.09711    -9.50674    -7.35916    -7.35736    -6.65704    -4.17566    10.19893    10.20187    17.41741    18.53115
+         38.68798    42.52851    52.97058    52.98164    69.35650    -8.79195    -7.15205    -5.20347    -5.19606    -4.27742
+         -2.33979    10.85916    10.86119    18.67809    18.99321    39.95570    43.30516    53.90308    53.91170    70.55218
+  734   -10.01328    -9.50047    -7.78411    -7.29766    -6.38719    -3.92165     8.54714     8.88306    20.12247    21.65929
+         37.65351    40.25601    52.99805    55.09303    74.49202    -8.68823    -7.22141    -5.65457    -5.06645    -3.96976
+         -2.12767     9.36374     9.56937    21.25752    22.15896    38.77886    41.20937    53.93294    56.01508    75.48006
+  735    -9.80711    -9.45883    -8.35008    -7.14968    -6.26481    -3.14873     6.10538     6.89187    25.41558    28.62354
+         32.01201    40.51843    53.24391    58.11921    93.39636    -8.41893    -7.34218    -6.29919    -4.76510    -3.77364
+         -1.44758     7.07464     7.63805    26.47400    29.33989    32.99324    41.62006    54.18524    59.01622    93.84324
+  736    -9.76786    -9.39709    -8.57158    -6.91131    -6.14162    -0.87990     2.82040     5.81572    25.54013    30.51566
+         31.34640    40.06818    54.32859    60.69727    96.67651    -7.95047    -7.47508    -6.58241    -4.49146    -3.66207
+          0.44430     3.91562     6.64326    26.50229    31.51050    32.38734    41.03911    55.24444    61.61131    97.40215
+  737    -9.55936    -9.08875    -9.04391    -6.82725    -6.44752    -0.01027     1.83944     4.58903    24.45977    32.36059
+         35.63320    41.62778    55.20016    60.35524    92.33182    -7.80595    -7.23459    -7.18031    -4.25157    -3.87384
+          1.24450     3.04820     5.45976    25.37279    33.39197    36.71651    42.53785    56.13612    61.29359    93.05734
+  738    -9.61166    -9.15071    -8.78967    -6.85620    -6.66623    -0.39471     2.47298     4.27182    17.10513    38.08173
+         39.87273    42.46693    55.51561    59.08860    86.11545    -7.92428    -7.37764    -7.09016    -4.11259    -3.90338
+          0.94308     3.60709     5.13830    17.84886    39.16423    40.88993    43.43412    56.46840    60.05652    87.11902
+  739    -9.71619    -9.21324    -8.52396    -6.88798    -6.77531    -1.01837     2.67219     5.80461    12.06197    41.03165
+         43.32087    45.40238    53.20247    60.67707   107.99670    -8.11894    -7.43594    -7.01057    -4.00137    -3.82250
+          0.36780     3.79028     6.60739    12.75634    42.05169    44.32396    46.53341    54.17241    61.65394   108.84900
+  740    -9.71150    -9.32389    -8.37225    -6.87364    -6.84360    -1.25646     2.60679     8.18030     8.87657    42.94532
+         43.21921    47.23542    52.41546    61.51504   125.55405    -8.17861    -7.50527    -6.95116    -3.93679    -3.79849
+          0.14046     3.73468     8.99865     9.51101    43.82268    44.37285    48.39208    53.39090    62.49689   126.29276
+  741    -9.71546    -9.21350    -8.52311    -6.88895    -6.77673    -1.01756     2.67326     5.80079    12.06417    41.03245
+         43.31420    45.40249    53.21270    60.67743   107.99773    -8.11567    -7.43739    -7.00736    -4.00512    -3.82818
+          0.37094     3.79113     6.60402    12.75942    42.05013    44.32166    46.53350    54.18021    61.65451   108.85074
+  742    -9.61061    -9.15051    -8.78878    -6.85811    -6.66824    -0.39331     2.47415     4.26821    17.10526    38.08366
+         39.87222    42.46018    55.52762    59.09234    86.11554    -7.91904    -7.37754    -7.08616    -4.12031    -3.91197
+          0.94712     3.60765     5.13714    17.85004    39.16492    40.88814    43.43166    56.47850    60.05994    87.12008
+  743    -9.55844    -9.08753    -9.04348    -6.82931    -6.45010    -0.00889     1.83873     4.58785    24.45554    32.36134
+         35.63460    41.62347    55.20458    60.36923    92.33081    -7.80121    -7.23316    -7.17436    -4.26117    -3.88414
+          1.24595     3.05038     5.46098    25.37025    33.39124    36.71723    42.53651    56.14121    61.30517    93.05784
+  744    -9.76722    -9.39653    -8.57008    -6.91296    -6.14466    -0.87948     2.82004     5.81517    25.54070    30.51446
+         31.34102    40.06567    54.33164    60.71511    96.67620    -7.94728    -7.47167    -6.57629    -4.49987    -3.67377
+          0.44499     3.91832     6.64492    26.50099    31.50763    32.38615    41.03864    55.24861    61.62648    97.40300
+  745    -9.95257    -9.70796    -7.86821    -7.02367    -6.03012    -1.82991     4.66677     7.63529    19.26752    24.49612
+         36.01060    39.79904    53.20463    59.13897    67.99355    -8.20114    -7.60537    -5.76813    -4.73775    -3.58214
+         -0.46071     5.59291     8.37087    20.18624    25.40026    37.11574    40.65804    54.13896    60.04625    69.50471
+  746   -10.07522    -9.85915    -7.22235    -7.06043    -6.21953    -2.38022     7.00216     8.74517    16.15000    18.77141
+         36.47716    44.14200    53.06165    56.09094    59.21832    -8.39380    -7.62185    -5.02632    -4.84819    -3.79544
+         -1.01004     7.75334     9.36781    17.10601    19.74849    37.58864    44.94648    54.06108    56.99149    60.98852
+  747   -10.07534    -9.85927    -7.22407    -7.05998    -6.21739    -2.38041     7.00296     8.74500    16.14997    18.77040
+         36.47715    44.14977    53.06300    56.08040    59.21613    -8.39431    -7.62298    -5.03289    -4.84501    -3.78790
+         -1.01106     7.75328     9.36708    17.10583    19.74825    37.58876    44.95183    54.06211    56.98343    60.98580
+  748    -9.95296    -9.70831    -7.87021    -7.02249    -6.02701    -1.83025     4.66737     7.63577    19.26689    24.49488
+         36.01385    39.80732    53.20157    59.12238    67.99222    -8.20279    -7.60824    -5.77562    -4.73140    -3.57054
+         -0.46227     5.59159     8.36958    20.18659    25.39946    37.11863    40.66257    54.13544    60.03266    69.50280
+  749   -10.01664    -9.70429    -7.91558    -6.94416    -5.86151     0.17100     2.03600     7.25740    18.77827    27.53327
+         34.52657    39.20887    53.03213    61.44954    65.43993    -8.02709    -7.75194    -5.84652    -4.63982    -3.37982
+          1.26261     3.16112     7.98398    19.71537    28.62214    35.48422    40.03395    53.98013    62.35407    67.12530
+  750    -9.76786    -9.39709    -8.57158    -6.91131    -6.14162    -0.87990     2.82040     5.81572    25.54013    30.51566
+         31.34640    40.06818    54.32859    60.69727    96.67651    -7.95047    -7.47508    -6.58241    -4.49146    -3.66207
+          0.44430     3.91562     6.64326    26.50229    31.51050    32.38734    41.03911    55.24444    61.61131    97.40215
+  751    -9.62663    -9.34544    -8.69980    -6.98036    -6.42022    -1.94729     4.05559     5.35845    24.74641    31.61011
+         35.65138    41.72293    54.04171    58.70067    94.73445    -8.10715    -7.40536    -6.79634    -4.41856    -3.81963
+         -0.40129     5.12677     6.16378    25.64227    32.66139    36.59410    42.72837    54.98960    59.62378    95.43761
+  752    -9.91747    -9.19431    -8.49530    -7.01427    -6.61023    -2.72346     3.85619     7.26167    17.82121    35.59734
+         39.72512    43.22513    51.75492    59.51056    91.30741    -8.48593    -7.31829    -6.84294    -4.27441    -3.80541
+         -1.05007     4.91706     8.02358    18.53915    36.59017    40.66188    44.33704    52.73483    60.51332    92.42670
+  753   -10.08856    -9.26327    -8.17449    -6.94982    -6.81505    -3.14088     3.58773     9.86682    13.19726    37.79539
+         40.31531    45.99211    50.89470    61.62841   105.04242    -8.72330    -7.37311    -6.76981    -4.09155    -3.81724
+         -1.41868     4.67246    10.57806    13.85777    38.69342    41.39623    47.13556    51.88355    62.63394   106.23608
+  754   -10.08837    -9.26328    -8.17385    -6.95041    -6.81590    -3.14042     3.58807     9.86408    13.19918    37.79657
+         40.31305    45.99268    50.89709    61.62861   105.04273    -8.72253    -7.37340    -6.76771    -4.09376    -3.82044
+         -1.41650     4.67287    10.57559    13.85986    38.69272    41.39679    47.13559    51.88562    62.63401   106.23678
+  755    -9.91694    -9.19412    -8.49424    -7.01569    -6.61216    -2.72231     3.85734     7.25830    17.82129    35.60052
+         39.72075    43.22459    51.76305    59.51073    91.30782    -8.48379    -7.31836    -6.83784    -4.28028    -3.81349
+         -1.04521     4.91838     8.02124    18.53974    36.59093    40.66022    44.33798    52.74108    60.51358    92.42777
+  756    -9.62586    -9.34514    -8.69848    -6.98258    -6.42244    -1.94584     4.05722     5.35498    24.74247    31.61219
+         35.65232    41.71934    54.05287    58.70285    94.73349    -8.10397    -7.40433    -6.78967    -4.42782    -3.82939
+         -0.39624     5.12849     6.16254    25.63946    32.66195    36.59403    42.72897    54.99908    59.62549    95.43780
+  757    -9.76725    -9.39687    -8.56971    -6.91340    -6.14431    -0.87825     2.81906     5.81524    25.54069    30.51308
+         31.34381    40.06524    54.33615    60.70767    96.67573    -7.94681    -7.47443    -6.57421    -4.50111    -3.67292
+          0.44850     3.91583     6.64477    26.50128    31.50949    32.38388    41.04007    55.25208    61.61934    97.40266
+  758   -10.01623    -9.70407    -7.91334    -6.94576    -5.86448     0.17301     2.03374     7.25724    18.77869    27.53425
+         34.52557    39.19880    53.03680    61.46427    65.44154    -8.02407    -7.75102    -5.83788    -4.64774    -3.39101
+          1.26556     3.16145     7.98558    19.71475    28.62300    35.48206    40.02914    53.98483    62.36593    67.12758
+  759   -10.15372   -10.00052    -7.23217    -6.91794    -5.84196     0.02221     3.42014     7.97563    15.35053    22.93556
+         32.33417    43.93933    50.87228    56.04541    60.22675    -8.16903    -7.94570    -5.02680    -4.69320    -3.36210
+          1.09642     4.34292     8.55999    16.43718    23.98297    33.24363    44.76008    52.45918    57.50447    61.11673
+  760   -10.17399   -10.13517    -7.12552    -6.57972    -6.00984    -0.21722     5.86398     5.96161    17.74107    17.80490
+         31.46150    45.43348    51.50005    55.73608    58.01523    -8.26428    -7.97363    -4.93494    -4.27716    -3.55810
+          0.85191     6.61258     6.64882    18.68330    18.96798    32.42110    46.37165    53.55028    56.63315    58.92613
+  761   -10.15395   -10.00063    -7.23417    -6.91735    -5.83922     0.02150     3.42146     7.97533    15.35053    22.93458
+         32.33356    43.94891    50.87637    56.04023    60.21245    -8.17032    -7.94666    -5.03466    -4.68897    -3.35237
+          1.09483     4.34296     8.55869    16.43750    23.98208    33.24354    44.76668    52.46413    57.49708    61.10549
+  762   -10.41334   -10.39626    -6.46031    -6.33593    -5.89235     1.84922     4.78120     6.34419    14.67230    17.12120
+         23.54685    47.03927    51.66089    56.47703    58.56364    -8.38342    -8.27093    -4.12539    -3.99505    -3.41207
+          2.65907     5.42981     6.84190    15.93493    18.31067    24.60727    49.21479    52.49873    57.36575    59.44276
+  763   -10.17408   -10.13527    -7.12837    -6.57725    -6.00852    -0.21764     5.86117     5.96515    17.74056    17.80438
+         31.46134    45.44718    51.49618    55.72349    58.01455    -8.26482    -7.97435    -4.94548    -4.26753    -3.55282
+          0.85022     6.60919     6.65127    18.68298    18.96821    32.42125    46.38164    53.54645    56.62312    58.92552
+  764    -9.95296    -9.70831    -7.87021    -7.02249    -6.02701    -1.83025     4.66737     7.63577    19.26689    24.49488
+         36.01385    39.80732    53.20157    59.12238    67.99222    -8.20279    -7.60824    -5.77562    -4.73140    -3.57054
+         -0.46227     5.59159     8.36958    20.18659    25.39946    37.11863    40.66257    54.13544    60.03266    69.50280
+  765   -10.06551    -9.10632    -8.42594    -7.29012    -6.00523    -3.16119     3.78168     9.97930    22.26817    31.52293
+         32.87175    38.70116    51.34759    61.39388   100.19772    -8.53500    -7.15420    -6.38269    -4.84457    -3.52233
+         -1.53081     4.85185    10.67970    23.09854    32.48862    33.79671    39.85107    52.26347    62.31423   100.57103
+  766   -10.43585    -8.94300    -8.24006    -7.17078    -6.06392    -4.29555     3.27366    12.96755    24.63486    27.35772
+         35.46412    40.95372    50.60795    63.35025    95.58208    -9.07113    -6.95048    -6.47911    -4.53234    -3.52981
+         -2.45154     4.44280    13.63148    25.35283    28.25196    36.56857    42.03725    51.55872    64.29433    96.42425
+  767   -10.70648    -9.18156    -7.36613    -6.98561    -6.45858    -4.99883     3.00925    16.23090    20.00415    28.11946
+         33.65319    45.55072    50.13606    64.44034    80.20703    -9.41624    -7.20486    -5.95192    -4.24878    -3.76009
+         -2.94547     4.22940    16.86170    20.64028    28.88211    34.78858    46.67865    51.19888    65.42080    81.85411
+  768   -10.70643    -9.18150    -7.36545    -6.98548    -6.46030    -4.99807     3.00934    16.22948    20.00383    28.12197
+         33.65285    45.55080    50.13577    64.44039    80.20695    -9.41609    -7.20467    -5.95031    -4.24961    -3.76580
+         -2.94113     4.22953    16.86089    20.63950    28.88384    34.78919    46.67855    51.19878    65.42093    81.85399
+  769   -10.43574    -8.94268    -8.23965    -7.17128    -6.06561    -4.29439     3.27392    12.96555    24.63286    27.36078
+         35.46451    40.95425    50.60876    63.35027    95.58205    -9.07072    -6.94976    -6.47634    -4.53467    -3.53916
+         -2.44448     4.44321    13.63022    25.35078    28.25340    36.57112    42.03740    51.55915    64.29465    96.42460
+  770   -10.06540    -9.10595    -8.42497    -7.29155    -6.00640    -3.16034     3.78207     9.97739    22.27046    31.52023
+         32.86967    38.70252    51.35230    61.39378   100.19795    -8.53451    -7.15274    -6.37827    -4.85005    -3.52869
+         -1.52650     4.85259    10.67884    23.09971    32.48437    33.79600    39.85500    52.26632    62.31451   100.57199
+  771    -9.95288    -9.70810    -7.86809    -7.02497    -6.02791    -1.82962     4.66780     7.63428    19.26850    24.49496
+         36.01160    39.80167    53.21214    59.12206    67.99281    -8.20227    -7.60714    -5.76708    -4.74119    -3.57512
+         -0.45954     5.59256     8.36930    20.18726    25.39906    37.11401    40.66294    54.14314    60.03253    69.50379
+  772   -10.17399   -10.13517    -7.12552    -6.57972    -6.00984    -0.21722     5.86398     5.96161    17.74107    17.80490
+         31.46150    45.43348    51.50005    55.73608    58.01523    -8.26428    -7.97363    -4.93494    -4.27716    -3.55810
+          0.85191     6.61258     6.64882    18.68330    18.96798    32.42110    46.37165    53.55028    56.63315    58.92613
+  773   -10.41328   -10.39622    -6.45795    -6.33614    -5.89499     1.84948     4.78056     6.34433    14.67234    17.12171
+         23.54701    47.03809    51.64947    56.47851    58.57709    -8.38320    -8.27046    -4.11669    -3.99687    -3.42132
+          2.65987     5.42972     6.84256    15.93491    18.31091    24.60716    49.21298    52.49023    57.36841    59.45320
+  774   -10.49524   -10.49523    -6.38005    -5.95719    -5.95370     4.28137     4.28503     4.50921    16.65867    16.65937
+         18.18394    46.27140    53.15191    58.32145    58.33993    -8.40559    -8.40536    -4.03319    -3.50924    -3.49714
+          4.89519     4.89891     5.10022    17.94149    17.94255    19.22215    48.40387    54.01817    59.19895    59.21318
+  775   -10.41328   -10.39622    -6.45795    -6.33614    -5.89499     1.84948     4.78056     6.34433    14.67234    17.12171
+         23.54701    47.03809    51.64947    56.47851    58.57709    -8.38320    -8.27046    -4.11669    -3.99687    -3.42132
+          2.65987     5.42972     6.84256    15.93491    18.31091    24.60716    49.21298    52.49023    57.36841    59.45320
+  776   -10.27905   -10.20379    -6.60296    -6.60071    -6.18040    -0.55293     7.18640     7.18951    14.76804    15.38235
+         30.87248    49.61469    50.31686    55.41998    55.43264    -8.38413    -8.00696    -4.32124    -4.31284    -3.73842
+          0.47786     7.74683     7.74963    15.73459    16.75652    31.89201    51.12803    51.81640    56.31639    56.32616
+  777   -10.07534    -9.85927    -7.22407    -7.05998    -6.21739    -2.38041     7.00296     8.74500    16.14997    18.77040
+         36.47716    44.14977    53.06300    56.08040    59.21613    -8.39431    -7.62298    -5.03289    -4.84501    -3.78790
+         -1.01106     7.75328     9.36708    17.10583    19.74825    37.58876    44.95183    54.06211    56.98343    60.98580
+  778   -10.03966    -9.38282    -7.96497    -7.39714    -6.14931    -3.74792     5.96669    10.90340    18.48932    26.32993
+         37.53252    38.06613    51.25634    58.32881    80.04822    -8.63739    -7.22295    -5.86096    -5.09076    -3.71365
+         -2.00403     6.87494    11.55571    19.35059    27.14706    38.33513    39.34920    52.19551    59.24573    80.86499
+  779   -10.36548    -8.74279    -8.58876    -7.32439    -6.07242    -4.88405     5.21939    13.63764    22.32029    31.80630
+         33.63685    38.27528    50.67060    60.68545    93.89980    -9.18028    -6.77899    -6.54566    -4.81907    -3.62593
+         -2.81324     6.23041    14.29370    23.15045    32.61287    34.70426    39.41907    51.62158    61.61740    94.06858
+  780   -10.75593    -8.99469    -7.95529    -7.08042    -6.01544    -5.93998     4.74128    16.94374    24.60014    26.78984
+         33.13078    43.29452    50.12346    62.34007    69.64235    -9.68262    -6.98558    -6.29763    -4.43320    -3.56070
+         -3.51830     5.80701    17.58586    25.27030    27.60614    34.27637    44.36014    51.14716    63.28204    71.09013
+  781   -10.91483    -9.13478    -7.25905    -6.89776    -6.79528    -5.99456     4.55183    19.66209    23.49057    24.10739
+         32.52392    46.44136    48.63692    61.68326    62.90426    -9.87486    -7.13634    -6.04470    -4.25290    -3.86948
+         -3.53594     5.63683    20.23430    24.37344    24.61157    33.66044    47.58101    49.78543    63.52084    63.84950
+  782   -10.75593    -8.99469    -7.95529    -7.08042    -6.01544    -5.93998     4.74128    16.94374    24.60014    26.78984
+         33.13078    43.29452    50.12346    62.34007    69.64235    -9.68262    -6.98558    -6.29763    -4.43320    -3.56070
+         -3.51830     5.80701    17.58586    25.27030    27.60614    34.27637    44.36014    51.14716    63.28204    71.09013
+  783   -10.36548    -8.74279    -8.58876    -7.32439    -6.07242    -4.88405     5.21939    13.63764    22.32030    31.80630
+         33.63685    38.27528    50.67060    60.68545    93.89980    -9.18028    -6.77899    -6.54566    -4.81907    -3.62593
+         -2.81323     6.23041    14.29370    23.15045    32.61287    34.70426    39.41906    51.62158    61.61740    94.06858
+  784   -10.03966    -9.38282    -7.96497    -7.39714    -6.14931    -3.74792     5.96669    10.90340    18.48932    26.32993
+         37.53252    38.06613    51.25634    58.32881    80.04822    -8.63739    -7.22295    -5.86096    -5.09076    -3.71365
+         -2.00402     6.87494    11.55571    19.35059    27.14706    38.33513    39.34920    52.19551    59.24573    80.86499
+  785   -10.07534    -9.85927    -7.22407    -7.05998    -6.21739    -2.38041     7.00296     8.74500    16.14997    18.77040
+         36.47715    44.14977    53.06300    56.08040    59.21613    -8.39431    -7.62298    -5.03289    -4.84501    -3.78790
+         -1.01106     7.75328     9.36708    17.10583    19.74825    37.58876    44.95183    54.06211    56.98343    60.98580
+  786   -10.27905   -10.20379    -6.60296    -6.60071    -6.18040    -0.55293     7.18640     7.18951    14.76804    15.38235
+         30.87248    49.61469    50.31686    55.41998    55.43264    -8.38413    -8.00696    -4.32124    -4.31284    -3.73842
+          0.47786     7.74683     7.74963    15.73459    16.75652    31.89200    51.12803    51.81640    56.31639    56.32616
+  787   -10.41328   -10.39622    -6.45795    -6.33614    -5.89499     1.84948     4.78056     6.34433    14.67234    17.12171
+         23.54701    47.03809    51.64947    56.47851    58.57709    -8.38320    -8.27046    -4.11669    -3.99687    -3.42132
+          2.65987     5.42972     6.84256    15.93491    18.31091    24.60715    49.21298    52.49023    57.36841    59.45320
+  788   -10.24714   -10.20292    -7.12881    -6.37385    -5.91604     2.20603     2.96901     5.53289    17.45883    21.47652
+         26.31377    45.01345    50.17585    56.64811    59.55345    -8.17387    -8.15893    -4.94960    -4.02279    -3.45638
+          3.08784     3.84738     6.22538    18.57986    22.61623    27.15080    46.10603    52.11710    57.56108    60.43837
+  789   -10.17395   -10.13509    -7.12583    -6.57775    -6.01190    -0.21736     5.86193     5.96352    17.74041    17.80591
+         31.46181    45.43178    51.49678    55.72327    58.03527    -8.26415    -7.97285    -4.93683    -4.27034    -3.56492
+          0.85162     6.61189     6.65031    18.68494    18.96662    32.42132    46.37017    53.54629    56.62352    58.94384
+  790   -10.07522    -9.85914    -7.22235    -7.06043    -6.21953    -2.38022     7.00216     8.74517    16.15000    18.77141
+         36.47716    44.14200    53.06165    56.09094    59.21832    -8.39380    -7.62185    -5.02632    -4.84819    -3.79544
+         -1.01004     7.75334     9.36781    17.10601    19.74849    37.58864    44.94648    54.06108    56.99149    60.98852
+  791   -10.01312    -9.50027    -7.78179    -7.29979    -6.38877    -3.92103     8.54973     8.87937    20.12325    21.66020
+         37.65032    40.25178    53.00891    55.09239    74.49234    -8.68765    -7.22002    -5.64482    -5.07578    -3.97632
+         -2.12493     9.36667     9.56697    21.25701    22.15999    38.77260    41.21158    53.94183    56.01390    75.48060
+  792   -10.22728    -9.11685    -8.25658    -7.44222    -6.42347    -4.95969     7.78684    11.16092    23.68653    29.71108
+         33.27293    40.14769    51.47297    56.71975    87.70510    -9.23210    -6.93660    -6.19355    -5.06320    -3.95649
+         -2.78702     8.66245    11.86373    24.64123    30.51224    34.13437    41.34140    52.42463    57.64605    87.78523
+  793   -10.66153    -8.85832    -8.45824    -7.27154    -6.49628    -5.65823     7.11508    14.18393    26.28673    28.59749
+         35.27199    41.45762    50.51416    57.98741    69.01953    -9.83387    -6.83015    -6.55520    -4.69851    -3.86896
+         -3.28836     8.03867    14.85988    27.06755    29.50617    36.32577    42.52821    51.50250    58.95502    70.03717
+  794   -10.96671    -9.03224    -8.05199    -7.08412    -6.82054    -5.93091     6.70830    17.54715    21.51425    29.98147
+         34.82808    45.15979    48.59483    55.01282    61.10066   -10.20532    -7.02394    -6.46611    -4.35200    -3.86748
+         -3.60304     7.64936    18.19403    22.17178    30.74822    35.94906    46.25639    49.74782    56.62145    62.21599
+  795   -10.96675    -9.03227    -8.05240    -7.08388    -6.81963    -5.93151     6.70815    17.54872    21.51446    29.97833
+         34.82901    45.16004    48.59513    55.01253    61.10085   -10.20544    -7.02379    -6.46754    -4.35044    -3.86128
+         -3.60914     7.64920    18.19466    22.17283    30.74618    35.94869    46.25681    49.74757    56.62134    62.21645
+  796   -10.66166    -8.85849    -8.45875    -7.27106    -6.49426    -5.65972     7.11461    14.18609    26.28941    28.59319
+         35.27285    41.45689    50.51231    57.98698    69.02105    -9.83421    -6.82895    -6.55995    -4.69536    -3.86044
+         -3.29540     8.03815    14.86107    27.07051    29.50408    36.32415    42.52737    51.50085    58.95469    70.03879
+  797   -10.22745    -9.11713    -8.25765    -7.44092    -6.42184    -4.96075     7.78605    11.16322    23.68435    29.71120
+         33.27732    40.14742    51.46649    56.72002    87.70580    -9.23259    -6.93757    -6.19931    -5.05737    -3.94951
+         -2.79144     8.66151    11.86480    24.64041    30.51294    34.13801    41.33843    52.41977    57.64647    87.78574
+  798   -10.01328    -9.50047    -7.78411    -7.29766    -6.38719    -3.92165     8.54714     8.88306    20.12247    21.65929
+         37.65351    40.25601    52.99805    55.09303    74.49202    -8.68823    -7.22141    -5.65457    -5.06645    -3.96976
+         -2.12767     9.36374     9.56937    21.25752    22.15896    38.77886    41.20937    53.93294    56.01508    75.48006
+  799   -10.07534    -9.85927    -7.22407    -7.05998    -6.21739    -2.38041     7.00296     8.74500    16.14997    18.77040
+         36.47716    44.14977    53.06300    56.08040    59.21613    -8.39431    -7.62298    -5.03289    -4.84501    -3.78790
+         -1.01106     7.75328     9.36708    17.10583    19.74825    37.58876    44.95183    54.06211    56.98343    60.98580
+  800   -10.17399   -10.13517    -7.12552    -6.57972    -6.00984    -0.21722     5.86398     5.96161    17.74107    17.80490
+         31.46150    45.43348    51.50005    55.73608    58.01523    -8.26428    -7.97363    -4.93494    -4.27716    -3.55810
+          0.85191     6.61258     6.64882    18.68330    18.96798    32.42110    46.37165    53.55028    56.63315    58.92613
+  801    -9.92172    -9.89213    -7.94957    -6.52165    -6.10009     0.65693     3.67093     4.27001    22.73811    24.20661
+         33.34360    39.29016    56.67032    59.11761    61.88645    -7.94761    -7.84913    -5.92322    -4.16254    -3.66543
+          1.77535     4.64249     5.11053    23.84508    25.16409    34.20206    40.15767    57.57711    60.06320    63.67192
+  802    -9.92157    -9.89212    -7.94973    -6.52000    -6.10191     0.65645     3.66975     4.27151    22.73716    24.20714
+         33.34368    39.28993    56.65722    59.13127    61.88917    -7.94793    -7.84760    -5.92435    -4.15744    -3.67103
+          1.77346     4.64348     5.11147    23.84319    25.16572    34.20295    40.15644    57.56742    60.07452    63.67394
+  803    -9.95257    -9.70796    -7.86821    -7.02367    -6.03012    -1.82991     4.66677     7.63529    19.26752    24.49612
+         36.01060    39.79904    53.20463    59.13897    67.99355    -8.20114    -7.60537    -5.76813    -4.73775    -3.58214
+         -0.46071     5.59291     8.37087    20.18624    25.40026    37.11574    40.65804    54.13896    60.04625    69.50471
+  804   -10.03930    -9.38257    -7.96336    -7.39821    -6.15175    -3.74752     5.96566    10.90369    18.48894    26.33171
+         37.52522    38.06539    51.25839    58.34152    80.04815    -8.63613    -7.22065    -5.85409    -5.09689    -3.72254
+         -2.00243     6.87543    11.55693    19.34962    27.14848    38.33061    39.34858    52.19874    59.25560    80.86499
+  805   -10.22709    -9.11685    -8.25552    -7.44310    -6.42444    -4.95950     7.78557    11.16226    23.68481    29.71248
+         33.27199    40.14520    51.47345    56.72685    87.70403    -9.23160    -6.93578    -6.18937    -5.06736    -3.95944
+         -2.78685     8.66230    11.86490    24.63925    30.51396    34.13353    41.34014    52.42643    57.65071    87.78383
+  806   -10.57687    -9.00397    -8.43928    -7.42823    -6.63038    -5.55365     9.38834    11.42111    27.14761    29.65167
+         34.83449    42.45328    50.75262    55.14672    69.33461    -9.88148    -6.90116    -6.48173    -4.86057    -3.95682
+         -3.19873    10.26275    12.10563    27.96425    30.66571    35.71740    43.61124    51.70969    56.12940    70.20473
+  807   -10.91962    -8.95882    -8.63533    -7.23768    -6.79866    -5.78770     9.37561    13.75842    21.22422    34.18387
+         37.59299    43.65906    49.11227    51.96265    60.63591   -10.37227    -6.94222    -6.74397    -4.48770    -3.88609
+         -3.48858    10.21422    14.43716    21.89397    35.12771    38.55098    44.81108    50.11961    53.47738    61.85594
+  808   -11.05619    -9.01178    -8.63462    -7.08924    -6.94288    -5.83525     9.22430    16.20340    17.63179    36.12326
+         37.81473    46.12486    46.58390    51.01355    60.05126   -10.55177    -7.01004    -6.79077    -4.25036    -3.94509
+         -3.58129    10.05317    16.90266    18.24037    36.92086    38.92805    47.25226    47.72100    52.65953    61.25829
+  809   -10.91979    -8.95863    -8.63628    -7.23655    -6.79784    -5.78846     9.37443    13.76189    21.22396    34.17876
+         37.59706    43.65927    49.10869    51.96386    60.63599   -10.37264    -6.94012    -6.74970    -4.48305    -3.87928
+         -3.49508    10.21315    14.43910    21.89456    35.12587    38.55136    44.81065    50.11528    53.47958    61.85683
+  810   -10.57718    -9.00414    -8.44081    -7.42634    -6.62835    -5.55504     9.38620    11.42514    27.15068    29.64905
+         34.83482    42.45494    50.74385    55.14640    69.33714    -9.88217    -6.90118    -6.48970    -4.85282    -3.94776
+         -3.20497    10.26040    12.10811    27.96777    30.66542    35.71583    43.60972    51.70175    56.13073    70.20760
+  811   -10.22745    -9.11713    -8.25765    -7.44092    -6.42184    -4.96075     7.78605    11.16322    23.68435    29.71120
+         33.27732    40.14742    51.46649    56.72002    87.70580    -9.23259    -6.93757    -6.19931    -5.05737    -3.94951
+         -2.79144     8.66151    11.86480    24.64041    30.51294    34.13801    41.33843    52.41977    57.64647    87.78574
+  812   -10.03966    -9.38282    -7.96497    -7.39714    -6.14931    -3.74792     5.96669    10.90340    18.48932    26.32993
+         37.53252    38.06613    51.25634    58.32881    80.04822    -8.63739    -7.22295    -5.86096    -5.09076    -3.71365
+         -2.00402     6.87494    11.55571    19.35059    27.14706    38.33513    39.34920    52.19551    59.24573    80.86499
+  813    -9.95288    -9.70810    -7.86809    -7.02497    -6.02791    -1.82962     4.66780     7.63428    19.26850    24.49496
+         36.01160    39.80167    53.21214    59.12206    67.99281    -8.20227    -7.60714    -5.76708    -4.74119    -3.57512
+         -0.45954     5.59256     8.36930    20.18727    25.39906    37.11401    40.66294    54.14314    60.03253    69.50379
+  814    -9.76771    -9.39659    -8.56984    -6.91391    -6.14310    -0.87876     2.82149     5.81321    25.54254    30.51367
+         31.34291    40.06639    54.33992    60.69701    96.67634    -7.94975    -7.47240    -6.57505    -4.50165    -3.66970
+          0.44890     3.91745     6.64230    26.50367    31.50749    32.38405    41.04189    55.25245    61.61179    97.40354
+  815    -9.55502    -9.55469    -8.71710    -6.46168    -6.46005     1.66446     1.66519     3.47209    28.87102    28.87210
+         30.57367    40.31162    58.24754    58.26581    94.82361    -7.60178    -7.59873    -6.83346    -4.01738    -4.01325
+          2.80041     2.80380     4.40232    29.94173    29.94414    31.59436    41.17790    59.17164    59.18516    95.63400
+  816    -9.76722    -9.39653    -8.57008    -6.91296    -6.14466    -0.87948     2.82004     5.81517    25.54070    30.51446
+         31.34102    40.06567    54.33164    60.71511    96.67620    -7.94728    -7.47167    -6.57629    -4.49987    -3.67377
+          0.44499     3.91832     6.64492    26.50099    31.50763    32.38615    41.03864    55.24861    61.62648    97.40300
+  817   -10.06493    -9.10561    -8.42456    -7.29177    -6.00813    -3.16091     3.78087     9.97882    22.26880    31.51928
+         32.86819    38.70026    51.35175    61.41031   100.19732    -8.53254    -7.15033    -6.37609    -4.85294    -3.53366
+         -1.52975     4.85361    10.68104    23.09760    32.48443    33.79731    39.85065    52.26859    62.32797   100.57076
+  818   -10.36507    -8.74243    -8.58733    -7.32579    -6.07495    -4.88353     5.21828    13.63802    22.31966    31.79996
+         33.63775    38.27531    50.67371    60.69931    93.89732    -9.17888    -6.77622    -6.53901    -4.82627    -3.63524
+         -2.81181     6.23139    14.29515    23.14869    32.60948    34.70463    39.42040    51.62526    61.62831    94.06519
+  819   -10.66131    -8.85773    -8.45750    -7.27306    -6.49678    -5.65848     7.11379    14.18539    26.28819    28.59036
+         35.27285    41.45695    50.51685    57.99649    69.01763    -9.83323    -6.82642    -6.55262    -4.70418    -3.87094
+         -3.29029     8.03893    14.86134    27.06717    29.50296    36.32483    42.53013    51.50503    58.96138    70.03449
+  820   -10.91953    -8.95819    -8.63557    -7.23829    -6.79853    -5.78799     9.37457    13.75940    21.22435    34.17859
+         37.59506    43.65841    49.11453    51.96489    60.63736   -10.37203    -6.93852    -6.74529    -4.48996    -3.88556
+         -3.49063    10.21410    14.43778    21.89410    35.12495    38.55080    44.81208    50.12107    53.47917    61.85639
+  821   -11.06960    -8.96842    -8.92688    -7.09832    -6.94603    -5.78805    11.54840    13.46427    17.13835    39.18516
+         39.77942    44.89028    46.97683    49.11828    59.99082   -10.67103    -6.97198    -6.95097    -4.22136    -3.97470
+         -3.54159    12.32762    14.16482    17.75788    40.18198    40.64677    46.06774    47.95522    50.89244    61.26569
+  822   -11.06970    -8.96797    -8.92765    -7.09723    -6.94642    -5.78814    11.54618    13.46919    17.13610    39.17984
+         39.78731    44.89205    46.97129    49.11842    59.99033   -10.67124    -6.96882    -6.95604    -4.21697    -3.97545
+         -3.54239    12.32575    14.16803    17.75663    40.18045    40.65028    46.06885    47.94889    50.89408    61.26582
+  823   -10.91979    -8.95863    -8.63628    -7.23655    -6.79784    -5.78846     9.37443    13.76189    21.22396    34.17876
+         37.59706    43.65927    49.10869    51.96386    60.63599   -10.37264    -6.94012    -6.74970    -4.48305    -3.87928
+         -3.49508    10.21315    14.43910    21.89456    35.12587    38.55136    44.81065    50.11528    53.47958    61.85683
+  824   -10.66166    -8.85849    -8.45875    -7.27106    -6.49426    -5.65972     7.11461    14.18609    26.28941    28.59319
+         35.27285    41.45689    50.51231    57.98698    69.02105    -9.83421    -6.82895    -6.55995    -4.69536    -3.86044
+         -3.29540     8.03815    14.86107    27.07051    29.50408    36.32415    42.52737    51.50085    58.95469    70.03879
+  825   -10.36548    -8.74279    -8.58876    -7.32439    -6.07242    -4.88405     5.21939    13.63764    22.32030    31.80630
+         33.63685    38.27528    50.67060    60.68545    93.89980    -9.18028    -6.77899    -6.54566    -4.81907    -3.62593
+         -2.81323     6.23041    14.29370    23.15045    32.61287    34.70426    39.41906    51.62158    61.61740    94.06858
+  826   -10.06540    -9.10595    -8.42497    -7.29155    -6.00640    -3.16034     3.78207     9.97739    22.27046    31.52023
+         32.86967    38.70252    51.35230    61.39378   100.19795    -8.53451    -7.15274    -6.37827    -4.85005    -3.52869
+         -1.52650     4.85259    10.67884    23.09971    32.48437    33.79600    39.85500    52.26632    62.31451   100.57199
+  827   -10.02893    -8.98786    -8.60674    -7.10459    -6.20466    -2.20945     2.26678     8.22750    24.80976    29.18256
+         37.74788    39.90138    51.57173    62.68589   101.69242    -8.43191    -7.06238    -6.77178    -4.50672    -3.64838
+         -0.73317     3.49311     8.96822    25.66400    30.10737    38.78298    40.97404    52.49185    63.62449   102.38707
+  828    -9.55896    -9.08765    -9.04307    -6.82964    -6.44944    -0.00891     1.84124     4.58546    24.45569    32.36355
+         35.63412    41.62417    55.21303    60.35472    92.33116    -7.80402    -7.23007    -7.17600    -4.26070    -3.88342
+          1.25025     3.04966     5.45796    25.37009    33.39345    36.71581    42.53862    56.14569    61.29426    93.05844
+  829    -9.55844    -9.08753    -9.04348    -6.82931    -6.45010    -0.00889     1.83873     4.58785    24.45554    32.36134
+         35.63461    41.62347    55.20458    60.36923    92.33081    -7.80121    -7.23317    -7.17436    -4.26117    -3.88414
+          1.24595     3.05038     5.46098    25.37025    33.39123    36.71723    42.53651    56.14121    61.30517    93.05784
+  830   -10.02848    -8.98705    -8.60717    -7.10487    -6.20547    -2.21058     2.26517     8.22979    24.80972    29.17827
+         37.74701    39.89991    51.57023    62.70161   101.69341    -8.42963    -7.05810    -6.77366    -4.50963    -3.64934
+         -0.73988     3.49454     8.97150    25.66436    30.10445    38.78354    40.97017    52.49310    63.63692   102.38752
+  831   -10.43536    -8.94144    -8.23968    -7.17234    -6.06639    -4.29575     3.27258    12.96709    24.63388    27.35411
+         35.46255    40.95488    50.61029    63.36531    95.58345    -9.06902    -6.94310    -6.47616    -4.54030    -3.53996
+         -2.45253     4.44472    13.63268    25.35061    28.25049    36.56869    42.03855    51.56096    64.30661    96.42535
+  832   -10.75562    -8.99339    -7.95481    -7.08185    -6.01801    -5.93946     4.73999    16.94456    24.59973    26.78382
+         33.13064    43.29564    50.12500    62.35464    69.64156    -9.68141    -6.97915    -6.29425    -4.44050    -3.56973
+         -3.51807     5.80815    17.58753    25.26817    27.60343    34.27700    44.36191    51.14786    63.29358    71.08896
+  833   -10.96649    -9.03111    -8.05195    -7.08575    -6.82016    -5.93193     6.70699    17.54868    21.51359    29.97460
+         34.82856    45.16059    48.59566    55.01895    61.10625   -10.20462    -7.01803    -6.46517    -4.35804    -3.86558
+         -3.60981     7.64981    18.19530    22.17138    30.74390    35.94962    46.25755    49.74770    56.62786    62.21846
+  834   -11.05602    -9.01081    -8.63499    -7.09063    -6.94246    -5.83553     9.22351    16.20035    17.63517    36.11525
+         37.81718    46.12490    46.58561    51.01884    60.05364   -10.55135    -7.00486    -6.79192    -4.25624    -3.94334
+         -3.58347    10.05342    16.90043    18.24282    36.91603    38.92948    47.25151    47.72388    52.66363    61.25887
+  835   -11.06960    -8.96842    -8.92688    -7.09832    -6.94603    -5.78805    11.54840    13.46427    17.13835    39.18517
+         39.77942    44.89027    46.97683    49.11828    59.99082   -10.67103    -6.97198    -6.95097    -4.22136    -3.97470
+         -3.54159    12.32762    14.16482    17.75788    40.18198    40.64677    46.06774    47.95522    50.89244    61.26569
+  836   -11.05619    -9.01178    -8.63462    -7.08924    -6.94288    -5.83525     9.22430    16.20340    17.63179    36.12325
+         37.81473    46.12486    46.58390    51.01355    60.05126   -10.55177    -7.01004    -6.79077    -4.25036    -3.94509
+         -3.58129    10.05317    16.90266    18.24037    36.92086    38.92805    47.25225    47.72100    52.65953    61.25829
+  837   -10.96675    -9.03227    -8.05240    -7.08388    -6.81963    -5.93151     6.70815    17.54872    21.51446    29.97833
+         34.82901    45.16004    48.59513    55.01253    61.10085   -10.20544    -7.02379    -6.46754    -4.35044    -3.86128
+         -3.60914     7.64920    18.19466    22.17283    30.74618    35.94869    46.25681    49.74757    56.62134    62.21645
+  838   -10.75593    -8.99469    -7.95529    -7.08042    -6.01544    -5.93998     4.74128    16.94374    24.60014    26.78984
+         33.13079    43.29451    50.12346    62.34007    69.64235    -9.68262    -6.98558    -6.29763    -4.43320    -3.56070
+         -3.51830     5.80701    17.58586    25.27030    27.60614    34.27637    44.36014    51.14716    63.28204    71.09013
+  839   -10.43574    -8.94268    -8.23965    -7.17128    -6.06561    -4.29439     3.27392    12.96555    24.63286    27.36078
+         35.46451    40.95424    50.60876    63.35027    95.58205    -9.07072    -6.94976    -6.47634    -4.53467    -3.53916
+         -2.44448     4.44321    13.63022    25.35078    28.25340    36.57112    42.03740    51.55915    64.29465    96.42460
+  840   -10.35490    -9.17878    -7.86189    -7.02086    -6.44768    -3.19010     1.99595    11.07169    18.37072    31.79087
+         37.43085    44.05682    50.80405    64.53046    96.68399    -8.87684    -7.23723    -6.30497    -4.26182    -3.72224
+         -1.61291     3.30505    11.74651    19.05200    32.64645    38.51205    45.18204    51.81846    65.49213    97.93087
+  841    -9.91194    -9.16401    -8.43217    -6.95523    -6.55450    -1.26318     1.68006     6.80061    17.41117    35.36360
+         41.17147    42.10207    52.07936    62.49769    91.40391    -8.30448    -7.27805    -6.80450    -4.20448    -3.81052
+          0.06925     2.97018     7.57116    18.13874    36.33501    42.14806    43.21736    53.06842    63.45119    92.44258
+  842    -9.61061    -9.15051    -8.78878    -6.85811    -6.66824    -0.39331     2.47415     4.26821    17.10526    38.08366
+         39.87222    42.46018    55.52762    59.09234    86.11554    -7.91904    -7.37754    -7.08616    -4.12031    -3.91197
+          0.94712     3.60765     5.13714    17.85004    39.16492    40.88814    43.43166    56.47850    60.05994    87.12008
+  843    -9.91161    -9.16321    -8.43287    -6.95583    -6.55448    -1.26359     1.67736     6.80336    17.41119    35.35972
+         41.17031    42.10228    52.07517    62.51298    91.40386    -8.30258    -7.27354    -6.80811    -4.20813    -3.80885
+          0.06315     2.97048     7.57519    18.13920    36.33299    42.14459    43.21830    53.06657    63.46301    92.44272
+  844   -10.35454    -9.17768    -7.86246    -7.02189    -6.44758    -3.19174     1.99423    11.07381    18.37072    31.78524
+         37.42926    44.05708    50.80405    64.54554    96.68779    -8.87495    -7.23141    -6.30659    -4.26715    -3.72028
+         -1.62265     3.30670    11.74978    19.05273    32.64283    38.51008    45.18280    51.81809    65.50408    97.93505
+  845   -10.70612    -9.18025    -7.36564    -6.98677    -6.45969    -5.00061     3.00788    16.23088    20.00333    28.11554
+         33.65311    45.55125    50.13613    64.45332    80.21353    -9.41457    -7.19827    -5.94811    -4.25612    -3.76368
+         -2.95363     4.23117    16.86297    20.63991    28.87897    34.79025    46.67935    51.19765    65.43095    81.86110
+  846   -10.91455    -9.13353    -7.25887    -6.89774    -6.79588    -5.99714     4.55043    19.66576    23.48200    24.10716
+         32.52403    46.44171    48.63674    61.68528    62.91911    -9.87374    -7.12997    -6.04082    -4.26015    -3.86935
+         -3.54557     5.63795    20.23721    24.36982    24.60917    33.66219    47.58144    49.78388    63.52313    63.86144
+  847   -10.96649    -9.03111    -8.05195    -7.08575    -6.82016    -5.93193     6.70699    17.54868    21.51359    29.97460
+         34.82856    45.16059    48.59566    55.01895    61.10625   -10.20462    -7.01803    -6.46517    -4.35804    -3.86558
+         -3.60981     7.64981    18.19530    22.17138    30.74390    35.94962    46.25755    49.74770    56.62786    62.21846
+  848   -10.91953    -8.95819    -8.63557    -7.23829    -6.79853    -5.78799     9.37457    13.75940    21.22435    34.17859
+         37.59507    43.65841    49.11453    51.96489    60.63736   -10.37203    -6.93852    -6.74529    -4.48997    -3.88556
+         -3.49063    10.21410    14.43778    21.89410    35.12495    38.55080    44.81208    50.12107    53.47916    61.85639
+  849   -10.91962    -8.95882    -8.63533    -7.23768    -6.79866    -5.78770     9.37561    13.75842    21.22422    34.18387
+         37.59299    43.65905    49.11227    51.96265    60.63591   -10.37227    -6.94222    -6.74397    -4.48770    -3.88609
+         -3.48858    10.21422    14.43716    21.89397    35.12772    38.55099    44.81108    50.11961    53.47738    61.85594
+  850   -10.96671    -9.03224    -8.05199    -7.08412    -6.82054    -5.93091     6.70830    17.54715    21.51425    29.98147
+         34.82808    45.15978    48.59483    55.01282    61.10066   -10.20532    -7.02394    -6.46611    -4.35200    -3.86748
+         -3.60304     7.64936    18.19403    22.17178    30.74822    35.94906    46.25639    49.74782    56.62145    62.21599
+  851   -10.91483    -9.13478    -7.25905    -6.89776    -6.79528    -5.99456     4.55183    19.66209    23.49057    24.10739
+         32.52392    46.44135    48.63692    61.68326    62.90426    -9.87486    -7.13634    -6.04470    -4.25290    -3.86948
+         -3.53594     5.63683    20.23430    24.37344    24.61157    33.66044    47.58101    49.78543    63.52084    63.84950
+  852   -10.70643    -9.18150    -7.36545    -6.98548    -6.46030    -4.99807     3.00934    16.22948    20.00383    28.12197
+         33.65285    45.55080    50.13577    64.44039    80.20695    -9.41609    -7.20467    -5.95031    -4.24961    -3.76580
+         -2.94113     4.22953    16.86089    20.63950    28.88384    34.78919    46.67854    51.19878    65.42093    81.85399
+  853   -10.48189    -9.28180    -7.22951    -6.94762    -6.86007    -3.56000     1.90977    13.96013    14.35300    32.88052
+         36.15906    46.52875    51.32080    65.33931   101.18198    -9.04238    -7.34886    -6.01998    -4.13017    -3.81884
+         -1.93928     3.24714    14.64569    14.95403    33.66729    37.32855    47.67307    52.35693    66.30664   102.58005
+  854   -10.10660    -9.29798    -7.87701    -6.91744    -6.78572    -1.95556     1.58066     9.44450    12.73416    37.33629
+         40.08478    46.34034    52.23076    63.89703   110.13424    -8.57921    -7.41994    -6.48401    -4.05897    -3.80165
+         -0.59442     2.91796    10.15011    13.40067    38.23219    41.18278    47.48528    53.24068    64.85890   111.13750
+  855    -9.71546    -9.21350    -8.52311    -6.88895    -6.77673    -1.01756     2.67326     5.80079    12.06417    41.03245
+         43.31420    45.40248    53.21270    60.67743   107.99773    -8.11567    -7.43739    -7.00736    -4.00512    -3.82818
+          0.37094     3.79113     6.60402    12.75942    42.05013    44.32166    46.53350    54.18021    61.65451   108.85074
+  856    -9.71533    -9.21269    -8.52394    -6.88954    -6.77639    -1.01733     2.67010     5.80356    12.06431    41.02835
+         43.31571    45.40152    53.21071    60.68663   107.99708    -8.11466    -7.43310    -7.01135    -4.00804    -3.82652
+          0.36912     3.78811     6.60823    12.75982    42.04888    44.31957    46.53396    54.17962    61.66121   108.85015
+  857   -10.10624    -9.29695    -7.87804    -6.91861    -6.78527    -1.95606     1.57804     9.44679    12.73462    37.32981
+         40.08410    46.34056    52.23080    63.91278   110.13460    -8.57717    -7.41443    -6.48728    -4.06457    -3.79984
+         -0.60095     2.91822    10.15395    13.40179    38.22812    41.18183    47.48588    53.24039    64.87141   111.13816
+  858   -10.48151    -9.28061    -7.22997    -6.94900    -6.86012    -3.56154     1.90810    13.95833    14.35629    32.87358
+         36.15968    46.52920    51.32110    65.35492   101.18660    -9.04036    -7.34266    -6.01983    -4.13691    -3.81910
+         -1.94829     3.24892    14.64566    14.95770    33.66195    37.33031    47.67375    52.35579    66.31925   102.58548
+  859   -10.70612    -9.18025    -7.36564    -6.98676    -6.45969    -5.00061     3.00788    16.23088    20.00333    28.11554
+         33.65311    45.55125    50.13613    64.45332    80.21353    -9.41457    -7.19827    -5.94811    -4.25612    -3.76368
+         -2.95363     4.23117    16.86297    20.63991    28.87897    34.79025    46.67935    51.19765    65.43095    81.86110
+  860   -10.75562    -8.99339    -7.95481    -7.08185    -6.01801    -5.93946     4.73999    16.94456    24.59973    26.78382
+         33.13064    43.29564    50.12500    62.35464    69.64156    -9.68141    -6.97915    -6.29425    -4.44050    -3.56973
+         -3.51807     5.80815    17.58753    25.26817    27.60343    34.27700    44.36191    51.14786    63.29358    71.08896
+  861   -10.66131    -8.85773    -8.45750    -7.27306    -6.49678    -5.65848     7.11379    14.18539    26.28819    28.59036
+         35.27285    41.45695    50.51685    57.99649    69.01763    -9.83323    -6.82642    -6.55262    -4.70418    -3.87094
+         -3.29029     8.03893    14.86134    27.06717    29.50296    36.32483    42.53012    51.50503    58.96138    70.03449
+  862   -10.57687    -9.00397    -8.43928    -7.42823    -6.63038    -5.55365     9.38834    11.42111    27.14761    29.65167
+         34.83449    42.45327    50.75262    55.14672    69.33461    -9.88148    -6.90117    -6.48173    -4.86057    -3.95682
+         -3.19873    10.26275    12.10563    27.96425    30.66572    35.71740    43.61123    51.70969    56.12940    70.20473
+  863   -10.66153    -8.85832    -8.45824    -7.27154    -6.49628    -5.65823     7.11508    14.18393    26.28674    28.59749
+         35.27199    41.45762    50.51416    57.98741    69.01953    -9.83387    -6.83015    -6.55520    -4.69851    -3.86896
+         -3.28836     8.03867    14.85988    27.06755    29.50618    36.32577    42.52821    51.50250    58.95502    70.03717
+  864   -10.75593    -8.99469    -7.95529    -7.08042    -6.01544    -5.93998     4.74128    16.94374    24.60014    26.78984
+         33.13079    43.29451    50.12346    62.34007    69.64235    -9.68262    -6.98558    -6.29763    -4.43320    -3.56070
+         -3.51830     5.80701    17.58586    25.27030    27.60614    34.27637    44.36014    51.14716    63.28204    71.09013
+  865   -10.70648    -9.18156    -7.36613    -6.98561    -6.45858    -4.99883     3.00925    16.23090    20.00415    28.11946
+         33.65320    45.55071    50.13606    64.44034    80.20703    -9.41624    -7.20486    -5.95192    -4.24878    -3.76009
+         -2.94547     4.22940    16.86170    20.64028    28.88211    34.78859    46.67865    51.19888    65.42080    81.85411
+  866   -10.35506    -9.17900    -7.86299    -7.02022    -6.44561    -3.19111     1.99561    11.07410    18.37077    31.78789
+         37.43164    44.05630    50.80300    64.53061    96.68303    -8.87752    -7.23811    -6.30854    -4.25913    -3.71340
+         -1.61850     3.30460    11.74840    19.05193    32.64530    38.51024    45.18211    51.81777    65.49189    97.92943
+  867   -10.10677    -9.29803    -7.87791    -6.91704    -6.78438    -1.95607     1.58039     9.44720    12.73222    37.33538
+         40.08630    46.33996    52.22845    63.89719   110.13334    -8.57994    -7.42017    -6.48603    -4.05744    -3.79717
+         -0.59700     2.91772    10.15279    13.39834    38.23296    41.18177    47.48534    53.23913    64.85874   111.13616
+  868    -9.71150    -9.32389    -8.37225    -6.87364    -6.84360    -1.25646     2.60679     8.18030     8.87657    42.94532
+         43.21922    47.23542    52.41546    61.51504   125.55405    -8.17861    -7.50527    -6.95116    -3.93680    -3.79849
+          0.14046     3.73468     8.99865     9.51101    43.82268    44.37286    48.39208    53.39090    62.49689   126.29276
+  869    -9.43779    -9.21996    -8.82642    -6.86453    -6.83784    -1.13539     4.59976     5.57165     8.30964    45.38460
+         46.30556    46.87924    51.10923    60.28534   132.45903    -7.85301    -7.49500    -7.35518    -3.88283    -3.81143
+          0.32204     5.58530     6.37541     9.01514    46.52217    47.24051    48.01567    52.05005    61.29278   133.10978
+  870    -9.71109    -9.32301    -8.37306    -6.87484    -6.84343    -1.25591     2.60365     8.17936     8.88029    42.93565
+         43.21995    47.23561    52.42059    61.52511   125.55384    -8.17627    -7.50038    -6.95512    -3.94218    -3.79778
+          0.13924     3.73172     8.99982     9.51504    43.81540    44.37374    48.39237    53.39532    62.50436   126.29286
+  871   -10.10624    -9.29695    -7.87804    -6.91861    -6.78527    -1.95606     1.57804     9.44679    12.73462    37.32981
+         40.08410    46.34056    52.23080    63.91278   110.13460    -8.57717    -7.41443    -6.48728    -4.06457    -3.79984
+         -0.60095     2.91822    10.15395    13.40179    38.22812    41.18183    47.48588    53.24039    64.87141   111.13816
+  872   -10.35454    -9.17768    -7.86246    -7.02189    -6.44758    -3.19174     1.99423    11.07381    18.37072    31.78524
+         37.42926    44.05708    50.80405    64.54554    96.68779    -8.87495    -7.23141    -6.30659    -4.26715    -3.72028
+         -1.62265     3.30670    11.74978    19.05273    32.64283    38.51008    45.18280    51.81809    65.50408    97.93505
+  873   -10.43536    -8.94144    -8.23968    -7.17234    -6.06639    -4.29575     3.27258    12.96709    24.63388    27.35411
+         35.46255    40.95488    50.61029    63.36531    95.58345    -9.06902    -6.94310    -6.47616    -4.54030    -3.53996
+         -2.45253     4.44472    13.63268    25.35061    28.25049    36.56869    42.03855    51.56096    64.30661    96.42535
+  874   -10.36507    -8.74243    -8.58733    -7.32579    -6.07495    -4.88353     5.21828    13.63802    22.31967    31.79996
+         33.63776    38.27531    50.67371    60.69931    93.89732    -9.17888    -6.77622    -6.53901    -4.82627    -3.63524
+         -2.81181     6.23139    14.29515    23.14869    32.60948    34.70463    39.42040    51.62526    61.62831    94.06519
+  875   -10.22709    -9.11685    -8.25552    -7.44310    -6.42444    -4.95950     7.78557    11.16226    23.68481    29.71248
+         33.27199    40.14520    51.47345    56.72685    87.70403    -9.23160    -6.93578    -6.18937    -5.06736    -3.95944
+         -2.78685     8.66230    11.86490    24.63925    30.51396    34.13352    41.34014    52.42643    57.65071    87.78383
+  876   -10.22728    -9.11685    -8.25658    -7.44222    -6.42347    -4.95969     7.78684    11.16092    23.68653    29.71108
+         33.27293    40.14769    51.47297    56.71975    87.70510    -9.23210    -6.93660    -6.19355    -5.06320    -3.95649
+         -2.78701     8.66245    11.86373    24.64123    30.51224    34.13437    41.34140    52.42463    57.64605    87.78523
+  877   -10.36548    -8.74279    -8.58876    -7.32439    -6.07242    -4.88405     5.21939    13.63764    22.32030    31.80630
+         33.63685    38.27528    50.67060    60.68545    93.89980    -9.18028    -6.77899    -6.54566    -4.81907    -3.62593
+         -2.81323     6.23041    14.29370    23.15045    32.61287    34.70426    39.41906    51.62158    61.61740    94.06858
+  878   -10.43585    -8.94300    -8.24006    -7.17078    -6.06392    -4.29555     3.27366    12.96755    24.63486    27.35772
+         35.46412    40.95371    50.60795    63.35025    95.58208    -9.07113    -6.95048    -6.47911    -4.53235    -3.52981
+         -2.45154     4.44280    13.63148    25.35283    28.25196    36.56857    42.03725    51.55872    64.29433    96.42425
+  879   -10.02917    -8.98863    -8.60753    -7.10298    -6.20279    -2.21070     2.26608     8.23008    24.81356    29.17850
+         37.74789    39.90150    51.56679    62.68620   101.69166    -8.43294    -7.06496    -6.77623    -4.50057    -3.63882
+         -0.73917     3.49205     8.96982    25.66691    30.10549    38.78283    40.97141    52.48889    63.62404   102.38505
+  880    -9.91238    -9.16435    -8.43327    -6.95390    -6.55238    -1.26437     1.67916     6.80373    17.41110    35.36092
+         41.17620    42.10118    52.07158    62.49811    91.40251    -8.30642    -7.27941    -6.80882    -4.19943    -3.80104
+          0.06370     2.96939     7.57359    18.13797    36.33450    42.14800    43.21763    53.06298    63.45075    92.44037
+  881    -9.71619    -9.21324    -8.52396    -6.88798    -6.77530    -1.01837     2.67219     5.80461    12.06197    41.03165
+         43.32087    45.40237    53.20247    60.67707   107.99670    -8.11894    -7.43594    -7.01057    -4.00137    -3.82249
+          0.36780     3.79028     6.60739    12.75634    42.05169    44.32396    46.53341    54.17241    61.65394   108.84900
+  882    -9.43872    -9.21955    -8.82635    -6.86372    -6.83776    -1.13578     4.59896     5.57599     8.30627    45.38337
+         46.31508    46.88145    51.09800    60.28316   132.45866    -7.85715    -7.49220    -7.35591    -3.87946    -3.81112
+          0.32123     5.58630     6.37813     9.01080    46.52194    47.24886    48.01550    52.04083    61.29142   133.10908
+  883    -9.43779    -9.21996    -8.82642    -6.86453    -6.83784    -1.13539     4.59976     5.57165     8.30964    45.38460
+         46.30556    46.87924    51.10923    60.28534   132.45903    -7.85301    -7.49500    -7.35518    -3.88283    -3.81143
+          0.32204     5.58530     6.37541     9.01514    46.52216    47.24051    48.01568    52.05005    61.29278   133.10978
+  884    -9.71533    -9.21269    -8.52394    -6.88954    -6.77639    -1.01733     2.67010     5.80356    12.06431    41.02835
+         43.31571    45.40152    53.21071    60.68663   107.99708    -8.11466    -7.43310    -7.01135    -4.00804    -3.82652
+          0.36912     3.78811     6.60823    12.75982    42.04888    44.31956    46.53397    54.17962    61.66121   108.85015
+  885    -9.91161    -9.16321    -8.43287    -6.95583    -6.55448    -1.26359     1.67736     6.80336    17.41119    35.35972
+         41.17031    42.10228    52.07517    62.51298    91.40386    -8.30258    -7.27354    -6.80811    -4.20813    -3.80885
+          0.06315     2.97048     7.57519    18.13920    36.33299    42.14459    43.21830    53.06657    63.46301    92.44272
+  886   -10.02848    -8.98705    -8.60717    -7.10487    -6.20547    -2.21058     2.26517     8.22979    24.80972    29.17827
+         37.74701    39.89991    51.57023    62.70161   101.69341    -8.42963    -7.05810    -6.77366    -4.50963    -3.64934
+         -0.73988     3.49454     8.97150    25.66436    30.10445    38.78355    40.97017    52.49310    63.63692   102.38752
+  887   -10.06493    -9.10561    -8.42456    -7.29177    -6.00813    -3.16091     3.78087     9.97882    22.26880    31.51928
+         32.86819    38.70026    51.35175    61.41031   100.19732    -8.53254    -7.15033    -6.37609    -4.85294    -3.53366
+         -1.52975     4.85361    10.68104    23.09760    32.48443    33.79731    39.85064    52.26859    62.32797   100.57076
+  888   -10.03930    -9.38257    -7.96336    -7.39821    -6.15175    -3.74752     5.96566    10.90369    18.48894    26.33171
+         37.52522    38.06539    51.25839    58.34152    80.04815    -8.63613    -7.22065    -5.85409    -5.09688    -3.72254
+         -2.00243     6.87543    11.55693    19.34962    27.14848    38.33061    39.34857    52.19874    59.25560    80.86499
+  889   -10.01312    -9.50027    -7.78179    -7.29979    -6.38877    -3.92103     8.54973     8.87937    20.12326    21.66020
+         37.65032    40.25178    53.00891    55.09239    74.49234    -8.68765    -7.22002    -5.64482    -5.07578    -3.97632
+         -2.12493     9.36667     9.56697    21.25701    22.15999    38.77260    41.21158    53.94183    56.01390    75.48060
+  890   -10.03966    -9.38282    -7.96497    -7.39714    -6.14931    -3.74792     5.96669    10.90340    18.48932    26.32993
+         37.53252    38.06613    51.25634    58.32881    80.04822    -8.63739    -7.22295    -5.86096    -5.09076    -3.71365
+         -2.00402     6.87494    11.55571    19.35059    27.14706    38.33513    39.34920    52.19551    59.24573    80.86499
+  891   -10.06551    -9.10631    -8.42594    -7.29012    -6.00523    -3.16119     3.78168     9.97930    22.26817    31.52293
+         32.87175    38.70116    51.34759    61.39388   100.19772    -8.53500    -7.15420    -6.38269    -4.84457    -3.52233
+         -1.53081     4.85185    10.67970    23.09855    32.48862    33.79670    39.85107    52.26347    62.31423   100.57103
+  892    -9.76786    -9.39709    -8.57158    -6.91131    -6.14162    -0.87990     2.82040     5.81572    25.54013    30.51565
+         31.34640    40.06818    54.32859    60.69727    96.67651    -7.95047    -7.47508    -6.58241    -4.49146    -3.66207
+          0.44430     3.91562     6.64326    26.50229    31.51050    32.38734    41.03911    55.24444    61.61131    97.40215
+  893    -9.55936    -9.08875    -9.04391    -6.82725    -6.44752    -0.01027     1.83944     4.58903    24.45977    32.36059
+         35.63320    41.62778    55.20016    60.35524    92.33182    -7.80595    -7.23459    -7.18031    -4.25157    -3.87384
+          1.24450     3.04820     5.45976    25.37279    33.39197    36.71650    42.53786    56.13612    61.29359    93.05734
+  894    -9.61166    -9.15071    -8.78967    -6.85620    -6.66623    -0.39471     2.47298     4.27182    17.10513    38.08174
+         39.87272    42.46693    55.51561    59.08860    86.11545    -7.92428    -7.37764    -7.09016    -4.11259    -3.90338
+          0.94308     3.60709     5.13830    17.84886    39.16423    40.88993    43.43412    56.46840    60.05652    87.11902
+  895    -9.71619    -9.21324    -8.52396    -6.88798    -6.77530    -1.01837     2.67219     5.80461    12.06197    41.03165
+         43.32087    45.40238    53.20247    60.67707   107.99670    -8.11894    -7.43594    -7.01057    -4.00137    -3.82249
+          0.36780     3.79028     6.60739    12.75634    42.05169    44.32396    46.53341    54.17241    61.65394   108.84900
+  896    -9.71150    -9.32389    -8.37225    -6.87364    -6.84360    -1.25646     2.60679     8.18030     8.87657    42.94532
+         43.21921    47.23542    52.41546    61.51504   125.55405    -8.17861    -7.50527    -6.95116    -3.93679    -3.79849
+          0.14046     3.73468     8.99865     9.51101    43.82268    44.37285    48.39208    53.39090    62.49689   126.29276
+  897    -9.71546    -9.21350    -8.52311    -6.88895    -6.77673    -1.01756     2.67326     5.80079    12.06417    41.03245
+         43.31420    45.40249    53.21270    60.67743   107.99773    -8.11567    -7.43739    -7.00736    -4.00512    -3.82818
+          0.37094     3.79113     6.60402    12.75942    42.05013    44.32166    46.53350    54.18021    61.65451   108.85074
+  898    -9.61061    -9.15051    -8.78878    -6.85811    -6.66824    -0.39331     2.47415     4.26821    17.10526    38.08366
+         39.87222    42.46018    55.52762    59.09234    86.11554    -7.91904    -7.37754    -7.08616    -4.12031    -3.91197
+          0.94712     3.60765     5.13714    17.85004    39.16492    40.88814    43.43166    56.47850    60.05994    87.12008
+  899    -9.55844    -9.08753    -9.04348    -6.82931    -6.45010    -0.00889     1.83873     4.58785    24.45554    32.36134
+         35.63461    41.62347    55.20458    60.36923    92.33081    -7.80121    -7.23317    -7.17436    -4.26117    -3.88414
+          1.24595     3.05038     5.46098    25.37025    33.39123    36.71723    42.53651    56.14121    61.30517    93.05784
+  900    -9.76722    -9.39653    -8.57008    -6.91296    -6.14466    -0.87948     2.82004     5.81517    25.54070    30.51446
+         31.34102    40.06567    54.33164    60.71511    96.67620    -7.94728    -7.47167    -6.57629    -4.49987    -3.67377
+          0.44499     3.91832     6.64492    26.50099    31.50763    32.38615    41.03864    55.24861    61.62648    97.40300
+  901    -9.95257    -9.70796    -7.86821    -7.02367    -6.03012    -1.82991     4.66677     7.63529    19.26752    24.49613
+         36.01060    39.79904    53.20463    59.13897    67.99355    -8.20114    -7.60537    -5.76813    -4.73775    -3.58214
+         -0.46071     5.59291     8.37087    20.18624    25.40026    37.11574    40.65804    54.13896    60.04625    69.50471
+  902   -10.07522    -9.85915    -7.22235    -7.06043    -6.21953    -2.38022     7.00216     8.74517    16.15000    18.77141
+         36.47716    44.14200    53.06165    56.09094    59.21832    -8.39380    -7.62186    -5.02632    -4.84819    -3.79544
+         -1.01004     7.75334     9.36781    17.10601    19.74850    37.58864    44.94648    54.06108    56.99149    60.98852
+  903   -10.07534    -9.85927    -7.22407    -7.05998    -6.21739    -2.38041     7.00296     8.74500    16.14997    18.77040
+         36.47716    44.14977    53.06300    56.08040    59.21613    -8.39431    -7.62298    -5.03289    -4.84501    -3.78790
+         -1.01106     7.75328     9.36708    17.10583    19.74825    37.58876    44.95183    54.06211    56.98343    60.98580
+  904    -9.95296    -9.70831    -7.87021    -7.02249    -6.02701    -1.83025     4.66737     7.63577    19.26689    24.49488
+         36.01385    39.80732    53.20157    59.12238    67.99222    -8.20279    -7.60824    -5.77562    -4.73140    -3.57054
+         -0.46227     5.59159     8.36958    20.18659    25.39946    37.11863    40.66257    54.13544    60.03266    69.50280
+  905    -9.92194    -9.89238    -7.95186    -6.51902    -6.09846     0.65582     3.66868     4.27354    22.73700    24.20594
+         33.34421    39.30127    56.65761    59.11318    61.88553    -7.94913    -7.85040    -5.93208    -4.15200    -3.65822
+          1.77198     4.63950     5.11193    23.84484    25.16430    34.20421    40.16265    57.56674    60.05960    63.67013
+  906    -9.55528    -9.55528    -8.71887    -6.45858    -6.45858     1.66318     1.66318     3.47551    28.87042    28.87042
+         30.58035    40.31451    58.24804    58.24804    94.82492    -7.60258    -7.60258    -6.84082    -4.00547    -4.00547
+          2.79884     2.79884     4.40308    29.94295    29.94295    31.59981    41.17687    59.17088    59.17088    95.63336
+  907    -9.55936    -9.08875    -9.04391    -6.82725    -6.44752    -0.01027     1.83944     4.58903    24.45977    32.36059
+         35.63320    41.62778    55.20016    60.35524    92.33182    -7.80595    -7.23459    -7.18031    -4.25157    -3.87384
+          1.24450     3.04820     5.45976    25.37279    33.39197    36.71651    42.53785    56.13612    61.29359    93.05734
+  908    -9.91238    -9.16435    -8.43327    -6.95390    -6.55238    -1.26437     1.67916     6.80373    17.41110    35.36092
+         41.17620    42.10119    52.07158    62.49811    91.40251    -8.30642    -7.27941    -6.80882    -4.19943    -3.80104
+          0.06370     2.96939     7.57359    18.13797    36.33449    42.14800    43.21764    53.06298    63.45075    92.44037
+  909   -10.10677    -9.29803    -7.87791    -6.91704    -6.78438    -1.95607     1.58039     9.44720    12.73222    37.33538
+         40.08630    46.33997    52.22845    63.89719   110.13334    -8.57994    -7.42017    -6.48603    -4.05744    -3.79717
+         -0.59700     2.91772    10.15279    13.39834    38.23296    41.18176    47.48534    53.23913    64.85874   111.13616
+  910   -10.10660    -9.29798    -7.87701    -6.91744    -6.78572    -1.95556     1.58066     9.44450    12.73416    37.33629
+         40.08477    46.34035    52.23076    63.89703   110.13424    -8.57921    -7.41994    -6.48401    -4.05897    -3.80165
+         -0.59442     2.91796    10.15011    13.40067    38.23219    41.18278    47.48529    53.24068    64.85890   111.13750
+  911    -9.91194    -9.16401    -8.43217    -6.95523    -6.55450    -1.26318     1.68006     6.80061    17.41117    35.36360
+         41.17147    42.10208    52.07936    62.49769    91.40391    -8.30448    -7.27805    -6.80450    -4.20447    -3.81052
+          0.06925     2.97018     7.57116    18.13874    36.33501    42.14806    43.21737    53.06842    63.45119    92.44258
+  912    -9.55896    -9.08765    -9.04307    -6.82964    -6.44944    -0.00891     1.84124     4.58546    24.45569    32.36355
+         35.63412    41.62417    55.21303    60.35472    92.33116    -7.80402    -7.23007    -7.17600    -4.26070    -3.88342
+          1.25025     3.04966     5.45796    25.37009    33.39345    36.71581    42.53862    56.14569    61.29426    93.05844
+  913    -9.55502    -9.55469    -8.71710    -6.46168    -6.46005     1.66446     1.66519     3.47209    28.87102    28.87209
+         30.57367    40.31162    58.24754    58.26581    94.82361    -7.60178    -7.59873    -6.83346    -4.01738    -4.01325
+          2.80041     2.80380     4.40232    29.94174    29.94414    31.59436    41.17790    59.17164    59.18516    95.63400
+  914    -9.92157    -9.89212    -7.94973    -6.52000    -6.10191     0.65645     3.66975     4.27151    22.73717    24.20714
+         33.34368    39.28993    56.65722    59.13127    61.88917    -7.94793    -7.84760    -5.92435    -4.15744    -3.67103
+          1.77346     4.64348     5.11147    23.84320    25.16572    34.20295    40.15644    57.56742    60.07452    63.67394
+  915   -10.17394   -10.13509    -7.12583    -6.57775    -6.01190    -0.21736     5.86193     5.96352    17.74041    17.80591
+         31.46181    45.43178    51.49678    55.72327    58.03527    -8.26415    -7.97285    -4.93683    -4.27034    -3.56492
+          0.85162     6.61189     6.65031    18.68493    18.96663    32.42132    46.37017    53.54629    56.62352    58.94384
+  916   -10.27905   -10.20379    -6.60296    -6.60071    -6.18040    -0.55293     7.18640     7.18951    14.76804    15.38235
+         30.87248    49.61469    50.31686    55.41998    55.43264    -8.38413    -8.00696    -4.32124    -4.31284    -3.73842
+          0.47786     7.74683     7.74963    15.73459    16.75652    31.89200    51.12803    51.81640    56.31639    56.32616
+  917   -10.17408   -10.13527    -7.12837    -6.57725    -6.00852    -0.21764     5.86118     5.96515    17.74056    17.80438
+         31.46134    45.44718    51.49618    55.72349    58.01455    -8.26482    -7.97435    -4.94548    -4.26753    -3.55282
+          0.85022     6.60919     6.65127    18.68298    18.96821    32.42125    46.38164    53.54645    56.62312    58.92552
+  918   -10.24731   -10.20305    -7.13162    -6.37257    -5.91315     2.20361     2.97145     5.53320    17.45856    21.47564
+         26.31333    45.02896    50.17451    56.64234    59.53929    -8.17443    -8.16032    -4.95951    -4.01716    -3.44573
+          3.08451     3.84817     6.22431    18.58024    22.61553    27.15100    46.11850    52.11487    57.55491    60.42712
+  919    -9.92194    -9.89238    -7.95186    -6.51902    -6.09846     0.65582     3.66868     4.27354    22.73700    24.20594
+         33.34421    39.30127    56.65761    59.11318    61.88553    -7.94913    -7.85040    -5.93208    -4.15200    -3.65822
+          1.77198     4.63950     5.11193    23.84483    25.16430    34.20421    40.16265    57.56674    60.05960    63.67013
+  920    -9.76786    -9.39709    -8.57158    -6.91131    -6.14162    -0.87990     2.82040     5.81572    25.54013    30.51566
+         31.34640    40.06818    54.32859    60.69727    96.67651    -7.95047    -7.47508    -6.58241    -4.49146    -3.66207
+          0.44430     3.91562     6.64326    26.50229    31.51050    32.38734    41.03911    55.24444    61.61131    97.40215
+  921   -10.02917    -8.98863    -8.60753    -7.10298    -6.20279    -2.21070     2.26608     8.23008    24.81356    29.17850
+         37.74789    39.90150    51.56679    62.68620   101.69166    -8.43294    -7.06496    -6.77623    -4.50057    -3.63882
+         -0.73917     3.49205     8.96982    25.66691    30.10548    38.78283    40.97141    52.48889    63.62404   102.38505
+  922   -10.35506    -9.17900    -7.86299    -7.02022    -6.44561    -3.19111     1.99561    11.07410    18.37077    31.78789
+         37.43164    44.05630    50.80300    64.53061    96.68303    -8.87752    -7.23811    -6.30854    -4.25913    -3.71340
+         -1.61850     3.30460    11.74840    19.05193    32.64530    38.51023    45.18212    51.81777    65.49189    97.92943
+  923   -10.48189    -9.28180    -7.22951    -6.94762    -6.86007    -3.56000     1.90977    13.96013    14.35300    32.88052
+         36.15905    46.52876    51.32080    65.33931   101.18198    -9.04238    -7.34886    -6.01998    -4.13017    -3.81884
+         -1.93928     3.24714    14.64569    14.95403    33.66729    37.32854    47.67307    52.35693    66.30664   102.58005
+  924   -10.35490    -9.17878    -7.86189    -7.02086    -6.44768    -3.19010     1.99595    11.07169    18.37072    31.79087
+         37.43085    44.05682    50.80405    64.53046    96.68399    -8.87684    -7.23723    -6.30497    -4.26181    -3.72224
+         -1.61291     3.30505    11.74651    19.05200    32.64645    38.51204    45.18205    51.81846    65.49213    97.93087
+  925   -10.02893    -8.98786    -8.60674    -7.10459    -6.20466    -2.20945     2.26678     8.22750    24.80976    29.18256
+         37.74788    39.90138    51.57173    62.68589   101.69241    -8.43191    -7.06238    -6.77178    -4.50672    -3.64838
+         -0.73317     3.49311     8.96822    25.66400    30.10737    38.78298    40.97404    52.49185    63.62449   102.38707
+  926    -9.76771    -9.39659    -8.56984    -6.91391    -6.14310    -0.87876     2.82149     5.81321    25.54254    30.51367
+         31.34291    40.06639    54.33992    60.69701    96.67634    -7.94975    -7.47240    -6.57505    -4.50165    -3.66970
+          0.44890     3.91745     6.64230    26.50367    31.50749    32.38405    41.04189    55.25245    61.61179    97.40354
+  927    -9.92172    -9.89213    -7.94957    -6.52165    -6.10009     0.65693     3.67093     4.27001    22.73811    24.20661
+         33.34360    39.29016    56.67032    59.11761    61.88645    -7.94761    -7.84913    -5.92322    -4.16254    -3.66543
+          1.77535     4.64249     5.11053    23.84508    25.16409    34.20206    40.15767    57.57711    60.06320    63.67192
+  928   -10.24714   -10.20292    -7.12881    -6.37385    -5.91604     2.20603     2.96901     5.53289    17.45884    21.47652
+         26.31377    45.01345    50.17585    56.64811    59.55345    -8.17387    -8.15893    -4.94960    -4.02279    -3.45638
+          3.08784     3.84738     6.22538    18.57986    22.61623    27.15080    46.10603    52.11710    57.56108    60.43837
+  929   -10.41328   -10.39622    -6.45795    -6.33614    -5.89499     1.84948     4.78056     6.34433    14.67234    17.12171
+         23.54701    47.03809    51.64947    56.47851    58.57709    -8.38320    -8.27046    -4.11669    -3.99687    -3.42132
+          2.65987     5.42972     6.84256    15.93491    18.31091    24.60716    49.21298    52.49023    57.36841    59.45320
+  930   -10.41333   -10.39626    -6.46031    -6.33593    -5.89235     1.84922     4.78120     6.34419    14.67230    17.12120
+         23.54685    47.03927    51.66089    56.47703    58.56364    -8.38342    -8.27093    -4.12539    -3.99505    -3.41207
+          2.65907     5.42981     6.84190    15.93492    18.31067    24.60727    49.21479    52.49873    57.36575    59.44276
+  931   -10.59298   -10.59027    -5.97136    -5.96858    -5.90675     3.93472     5.44416     5.44769    14.41377    14.48720
+         17.05314    45.81788    57.19890    57.90680    57.92062    -8.50936    -8.47583    -3.52522    -3.51508    -3.42843
+          4.48586     5.85472     5.85878    15.70987    15.92369    18.28036    47.93072    58.05928    58.78058    58.79126
+  932   -10.41334   -10.39626    -6.46031    -6.33593    -5.89235     1.84922     4.78120     6.34419    14.67230    17.12120
+         23.54685    47.03927    51.66089    56.47703    58.56364    -8.38342    -8.27093    -4.12539    -3.99505    -3.41207
+          2.65907     5.42981     6.84190    15.93493    18.31067    24.60727    49.21479    52.49873    57.36575    59.44276
+  933   -10.15395   -10.00063    -7.23417    -6.91735    -5.83922     0.02150     3.42146     7.97533    15.35053    22.93458
+         32.33356    43.94891    50.87637    56.04023    60.21245    -8.17032    -7.94666    -5.03466    -4.68897    -3.35237
+          1.09483     4.34296     8.55869    16.43750    23.98208    33.24354    44.76668    52.46413    57.49708    61.10549
+  934   -10.06361    -9.39497    -8.02762    -7.34229    -5.77384    -1.62926     2.48504    10.20272    17.18577    29.93202
+         36.54374    36.89150    50.91155    62.43950    78.71390    -8.24767    -7.45090    -5.93293    -5.02372    -3.27863
+         -0.34061     3.62553    10.83221    18.05150    30.96169    37.70275    37.71984    51.82387    63.35189    79.95436
+  935   -10.32035    -8.67902    -8.58634    -7.31926    -5.71162    -3.19991     2.02314    12.98642    20.75743    30.99764
+         34.71576    37.63743    50.64267    64.79633   120.14571    -8.74033    -6.73646    -6.65265    -4.76967    -3.20834
+         -1.74698     3.32097    13.62942    21.50245    31.81183    35.93916    38.73919    51.54603    65.72967   120.39410
+  936   -10.66325    -9.09929    -7.61923    -7.08965    -5.66715    -4.64270     1.80623    16.28266    22.95154    26.00835
+         32.19261    43.61771    50.55379    66.63165    98.76427    -9.21722    -7.11029    -5.86637    -4.37586    -3.15822
+         -3.05129     3.19234    16.91563    23.55840    26.83417    33.35064    44.73497    51.54621    67.58157   100.08464
+  937   -10.80610    -9.24394    -7.00395    -6.86797    -5.65104    -5.52881     1.72815    18.88234    22.38273    22.86284
+         31.42344    46.20575    50.45780    67.32764    84.65538    -9.39988    -7.26668    -5.23866    -4.20411    -3.82893
+         -3.13977     3.14409    19.44660    22.86224    23.75611    32.56245    47.34423    51.55805    68.28391    86.46496
+  938   -10.66325    -9.09929    -7.61923    -7.08965    -5.66715    -4.64270     1.80623    16.28266    22.95154    26.00835
+         32.19261    43.61771    50.55379    66.63165    98.76427    -9.21722    -7.11029    -5.86637    -4.37586    -3.15822
+         -3.05129     3.19234    16.91563    23.55840    26.83417    33.35064    44.73497    51.54621    67.58157   100.08464
+  939   -10.32035    -8.67902    -8.58634    -7.31926    -5.71162    -3.19991     2.02314    12.98642    20.75743    30.99764
+         34.71576    37.63743    50.64267    64.79633   120.14571    -8.74033    -6.73646    -6.65265    -4.76967    -3.20834
+         -1.74698     3.32097    13.62942    21.50245    31.81183    35.93917    38.73919    51.54603    65.72967   120.39410
+  940   -10.06361    -9.39497    -8.02762    -7.34229    -5.77384    -1.62926     2.48504    10.20272    17.18577    29.93202
+         36.54374    36.89150    50.91155    62.43950    78.71390    -8.24767    -7.45090    -5.93293    -5.02372    -3.27863
+         -0.34061     3.62553    10.83221    18.05150    30.96169    37.70275    37.71983    51.82387    63.35189    79.95435
+  941   -10.15395   -10.00063    -7.23417    -6.91735    -5.83922     0.02150     3.42146     7.97533    15.35053    22.93458
+         32.33356    43.94891    50.87637    56.04023    60.21245    -8.17032    -7.94666    -5.03466    -4.68897    -3.35237
+          1.09483     4.34296     8.55869    16.43750    23.98208    33.24354    44.76668    52.46413    57.49708    61.10549
+  942   -10.41333   -10.39626    -6.46031    -6.33593    -5.89235     1.84922     4.78120     6.34419    14.67230    17.12120
+         23.54685    47.03927    51.66089    56.47703    58.56364    -8.38342    -8.27093    -4.12539    -3.99505    -3.41207
+          2.65907     5.42981     6.84190    15.93492    18.31067    24.60727    49.21479    52.49873    57.36575    59.44276
+  943   -10.59297   -10.59027    -5.97136    -5.96858    -5.90675     3.93472     5.44416     5.44769    14.41377    14.48720
+         17.05314    45.81788    57.19890    57.90680    57.92062    -8.50936    -8.47584    -3.52522    -3.51508    -3.42843
+          4.48586     5.85472     5.85878    15.70986    15.92369    18.28036    47.93072    58.05928    58.78058    58.79126
+  944   -10.49524   -10.49523    -6.38005    -5.95719    -5.95370     4.28137     4.28503     4.50921    16.65867    16.65938
+         18.18394    46.27140    53.15191    58.32145    58.33993    -8.40559    -8.40536    -4.03319    -3.50924    -3.49714
+          4.89519     4.89891     5.10022    17.94148    17.94255    19.22215    48.40387    54.01817    59.19895    59.21318
+  945   -10.41328   -10.39622    -6.45795    -6.33614    -5.89499     1.84948     4.78056     6.34433    14.67234    17.12171
+         23.54701    47.03809    51.64947    56.47851    58.57709    -8.38320    -8.27046    -4.11669    -3.99687    -3.42132
+          2.65987     5.42972     6.84256    15.93491    18.31091    24.60716    49.21298    52.49023    57.36841    59.45320
+  946   -10.17399   -10.13517    -7.12552    -6.57972    -6.00984    -0.21722     5.86398     5.96161    17.74107    17.80490
+         31.46150    45.43348    51.50005    55.73608    58.01523    -8.26428    -7.97363    -4.93494    -4.27716    -3.55810
+          0.85191     6.61258     6.64882    18.68330    18.96798    32.42110    46.37165    53.55028    56.63315    58.92613
+  947    -9.95288    -9.70810    -7.86809    -7.02497    -6.02791    -1.82962     4.66780     7.63428    19.26849    24.49496
+         36.01161    39.80167    53.21214    59.12206    67.99281    -8.20227    -7.60714    -5.76708    -4.74119    -3.57512
+         -0.45954     5.59256     8.36930    20.18726    25.39906    37.11402    40.66294    54.14314    60.03253    69.50379
+  948   -10.06540    -9.10595    -8.42497    -7.29155    -6.00640    -3.16034     3.78207     9.97739    22.27046    31.52023
+         32.86967    38.70252    51.35230    61.39378   100.19795    -8.53451    -7.15274    -6.37827    -4.85005    -3.52869
+         -1.52650     4.85259    10.67884    23.09971    32.48437    33.79600    39.85500    52.26632    62.31451   100.57199
+  949   -10.43574    -8.94268    -8.23965    -7.17128    -6.06561    -4.29439     3.27392    12.96555    24.63286    27.36078
+         35.46451    40.95425    50.60876    63.35027    95.58205    -9.07072    -6.94976    -6.47634    -4.53467    -3.53916
+         -2.44448     4.44321    13.63022    25.35078    28.25340    36.57112    42.03740    51.55916    64.29465    96.42460
+  950   -10.70643    -9.18150    -7.36545    -6.98548    -6.46030    -4.99807     3.00934    16.22948    20.00383    28.12196
+         33.65285    45.55080    50.13577    64.44039    80.20695    -9.41609    -7.20467    -5.95031    -4.24961    -3.76580
+         -2.94113     4.22953    16.86089    20.63950    28.88384    34.78919    46.67855    51.19878    65.42093    81.85399
+  951   -10.70648    -9.18156    -7.36613    -6.98561    -6.45858    -4.99883     3.00925    16.23090    20.00415    28.11946
+         33.65319    45.55072    50.13606    64.44034    80.20703    -9.41624    -7.20486    -5.95192    -4.24878    -3.76009
+         -2.94547     4.22940    16.86170    20.64028    28.88211    34.78858    46.67865    51.19888    65.42080    81.85411
+  952   -10.43585    -8.94300    -8.24006    -7.17078    -6.06392    -4.29555     3.27366    12.96755    24.63486    27.35772
+         35.46412    40.95372    50.60795    63.35025    95.58208    -9.07113    -6.95048    -6.47911    -4.53234    -3.52981
+         -2.45154     4.44280    13.63148    25.35283    28.25196    36.56857    42.03725    51.55872    64.29433    96.42425
+  953   -10.06551    -9.10632    -8.42594    -7.29012    -6.00523    -3.16119     3.78168     9.97930    22.26817    31.52293
+         32.87175    38.70116    51.34759    61.39388   100.19771    -8.53500    -7.15420    -6.38269    -4.84457    -3.52233
+         -1.53081     4.85185    10.67970    23.09854    32.48863    33.79671    39.85106    52.26347    62.31423   100.57103
+  954    -9.95296    -9.70831    -7.87021    -7.02249    -6.02701    -1.83025     4.66737     7.63577    19.26689    24.49488
+         36.01385    39.80732    53.20157    59.12238    67.99222    -8.20279    -7.60824    -5.77562    -4.73140    -3.57054
+         -0.46227     5.59159     8.36958    20.18659    25.39946    37.11863    40.66257    54.13544    60.03266    69.50280
+  955   -10.17408   -10.13527    -7.12837    -6.57725    -6.00852    -0.21764     5.86118     5.96515    17.74056    17.80438
+         31.46134    45.44718    51.49618    55.72349    58.01455    -8.26482    -7.97435    -4.94548    -4.26753    -3.55282
+          0.85022     6.60919     6.65127    18.68298    18.96821    32.42125    46.38164    53.54645    56.62312    58.92552
+  956   -10.41334   -10.39626    -6.46031    -6.33593    -5.89235     1.84922     4.78120     6.34419    14.67230    17.12120
+         23.54685    47.03927    51.66089    56.47703    58.56364    -8.38342    -8.27093    -4.12539    -3.99505    -3.41207
+          2.65907     5.42981     6.84190    15.93493    18.31067    24.60727    49.21479    52.49873    57.36575    59.44276
+  957   -10.24724   -10.20294    -7.12883    -6.37589    -5.91355     2.20407     2.97195     5.53199    17.45947    21.47567
+         26.31340    45.01434    50.18108    56.65402    59.53914    -8.17358    -8.16003    -4.94917    -4.02955    -3.44794
+          3.08635     3.84925     6.22413    18.58050    22.61494    27.15105    46.10677    52.12289    57.56286    60.42735
+  958   -10.24714   -10.20292    -7.12881    -6.37385    -5.91604     2.20603     2.96901     5.53289    17.45883    21.47652
+         26.31377    45.01345    50.17585    56.64811    59.55345    -8.17387    -8.15893    -4.94960    -4.02279    -3.45638
+          3.08784     3.84738     6.22538    18.57986    22.61623    27.15080    46.10603    52.11710    57.56108    60.43837
+  959   -10.15372   -10.00052    -7.23217    -6.91794    -5.84196     0.02221     3.42014     7.97563    15.35053    22.93556
+         32.33417    43.93933    50.87228    56.04541    60.22675    -8.16903    -7.94570    -5.02680    -4.69320    -3.36210
+          1.09642     4.34292     8.55999    16.43718    23.98297    33.24363    44.76008    52.45918    57.50447    61.11673
+  960    -9.95260    -9.70815    -7.86781    -7.02445    -6.02952    -1.82930     4.66628     7.63561    19.26713    24.49648
+         36.01144    39.79905    53.20769    59.13285    67.99323    -8.20108    -7.60689    -5.76589    -4.74055    -3.58037
+         -0.45885     5.59180     8.37079    20.18599    25.40056    37.11410    40.66077    54.14116    60.04042    69.50436
+  961    -9.80672    -9.45853    -8.34823    -7.15196    -6.26695    -3.14747     6.10742     6.88831    25.41723    28.62407
+         32.00624    40.51633    53.25471    58.12117    93.39604    -8.41737    -7.34064    -6.29063    -4.77491    -3.78306
+         -1.44254     7.07711     7.63636    26.47409    29.33995    32.98814    41.62229    54.19435    59.01720    93.84362
+  962   -10.08305    -9.13760    -8.48762    -7.21763    -6.42562    -4.05349     5.56751     9.12460    25.59479    29.63092
+         35.89376    41.41653    51.43115    58.33292    88.78729    -8.88680    -7.15486    -6.58342    -4.65292    -3.78921
+         -2.11398     6.54656     9.85796    26.43666    30.60649    36.78013    42.54950    52.37977    59.27226    89.48003
+  963   -10.41362    -9.10935    -8.24220    -7.08832    -6.66494    -4.60495     5.08675    11.99033    19.31754    32.75891
+         37.73008    43.68314    50.16421    59.33235    79.67091    -9.30983    -7.15021    -6.65014    -4.35668    -3.79886
+         -2.56380     6.09953    12.67424    19.99329    33.63673    38.76708    44.79726    51.18135    60.38560    81.07943
+  964   -10.54214    -9.18769    -7.95876    -7.00029    -6.88903    -4.78314     4.90929    14.70155    15.50621    34.08727
+         36.90971    46.40859    49.17373    60.18801    79.87143    -9.47051    -7.23075    -6.57658    -4.18144    -3.86380
+         -2.71844     5.93488    15.39334    16.11544    34.87414    38.06164    47.55566    50.18605    61.26036    81.48463
+  965   -10.41383    -9.10947    -8.24305    -7.08759    -6.66328    -4.60593     5.08625    11.99294    19.31753    32.75521
+         37.73228    43.68243    50.16263    59.33215    79.67129    -9.31049    -7.14980    -6.65418    -4.35297    -3.79208
+         -2.56903     6.09894    12.67598    19.99349    33.63529    38.76620    44.79699    51.17968    60.38559    81.07976
+  966   -10.08341    -9.13800    -8.48868    -7.21608    -6.42353    -4.05486     5.56642     9.12759    25.59843    29.62686
+         35.89488    41.41684    51.42446    58.33301    88.78803    -8.88801    -7.15556    -6.58958    -4.64628    -3.77973
+         -2.12018     6.54523     9.85963    26.43982    30.60487    36.77996    42.54727    52.37476    59.27220    89.48039
+  967    -9.80711    -9.45883    -8.35008    -7.14968    -6.26481    -3.14873     6.10538     6.89187    25.41558    28.62354
+         32.01201    40.51843    53.24391    58.11921    93.39636    -8.41893    -7.34218    -6.29919    -4.76510    -3.77364
+         -1.44758     7.07464     7.63805    26.47400    29.33989    32.99324    41.62006    54.18524    59.01622    93.84324
+  968    -9.95296    -9.70831    -7.87021    -7.02249    -6.02701    -1.83025     4.66737     7.63577    19.26689    24.49488
+         36.01385    39.80732    53.20157    59.12238    67.99222    -8.20279    -7.60824    -5.77562    -4.73140    -3.57054
+         -0.46227     5.59159     8.36958    20.18659    25.39946    37.11863    40.66257    54.13544    60.03266    69.50280
+  969   -10.15395   -10.00063    -7.23417    -6.91735    -5.83922     0.02150     3.42146     7.97533    15.35053    22.93458
+         32.33356    43.94891    50.87637    56.04023    60.21245    -8.17032    -7.94666    -5.03466    -4.68897    -3.35237
+          1.09483     4.34296     8.55869    16.43751    23.98208    33.24354    44.76668    52.46413    57.49708    61.10549
+  970   -10.01657    -9.70411    -7.91347    -6.94681    -5.86214     0.17160     2.03640     7.25598    18.77986    27.53345
+         34.52555    39.20149    53.04272    61.44935    65.44053    -8.02693    -7.75065    -5.83801    -4.65017    -3.38338
+          1.26526     3.16200     7.98372    19.71600    28.62169    35.48119    40.03235    53.98762    62.35433    67.12633
+  971    -9.92172    -9.89213    -7.94957    -6.52165    -6.10009     0.65693     3.67093     4.27001    22.73811    24.20661
+         33.34360    39.29016    56.67032    59.11761    61.88645    -7.94761    -7.84913    -5.92322    -4.16254    -3.66543
+          1.77535     4.64249     5.11053    23.84508    25.16409    34.20206    40.15767    57.57711    60.06320    63.67192
+  972   -10.01623    -9.70407    -7.91334    -6.94576    -5.86448     0.17301     2.03374     7.25724    18.77869    27.53426
+         34.52557    39.19880    53.03680    61.46427    65.44154    -8.02407    -7.75102    -5.83788    -4.64774    -3.39101
+          1.26556     3.16145     7.98558    19.71475    28.62301    35.48206    40.02914    53.98483    62.36593    67.12758
+  973   -10.06314    -9.39478    -8.02597    -7.34342    -5.77661    -1.62822     2.48330    10.20309    17.18560    29.93308
+         36.54336    36.88369    50.91453    62.45459    78.71442    -8.24467    -7.45010    -5.92582    -5.03034    -3.28850
+         -0.33887     3.62596    10.83387    18.05069    30.96282    37.69840    37.71885    51.82833    63.36389    79.95502
+  974   -10.06496    -9.10612    -8.42390    -7.29215    -6.00822    -3.15979     3.78024     9.97906    22.26846    31.51799
+         32.87160    38.69893    51.35368    61.40622   100.19671    -8.53235    -7.15325    -6.37340    -4.85423    -3.53396
+         -1.52632     4.85223    10.68090    23.09755    32.48518    33.79588    39.85241    52.27000    62.32360   100.57027
+  975   -10.08281    -9.13768    -8.48708    -7.21830    -6.42599    -4.05341     5.56566     9.12650    25.59514    29.62697
+         35.89585    41.41404    51.43209    58.33999    88.78578    -8.88590    -7.15479    -6.58147    -4.65587    -3.78955
+         -2.11495     6.54547     9.85992    26.43666    30.60435    36.78062    42.54841    52.38213    59.27669    89.47820
+  976   -10.17250    -9.15791    -8.61840    -7.15305    -6.70409    -4.47464     7.19745     9.13606    19.09015    35.56421
+         38.37641    43.83400    50.20844    56.00178    79.28264    -9.22967    -7.21348    -6.84059    -4.42142    -3.81948
+         -2.41713     8.12932     9.84014    19.78461    36.59987    39.19791    44.99546    51.16861    57.13440    80.61066
+  977   -10.24096    -9.15683    -8.78079    -7.03073    -6.86911    -4.63368     7.38128    11.09369    14.66000    38.90513
+         40.51935    45.20608    48.30064    56.74536    82.51357    -9.43608    -7.22971    -7.05262    -4.16858    -3.87651
+         -2.54597     8.26267    11.80857    15.30343    39.81234    41.53150    46.34918    49.27676    57.90610    84.07692
+  978   -10.24118    -9.15661    -8.78130    -7.02984    -6.86901    -4.63402     7.38054    11.09687    14.65805    38.90239
+         40.52451    45.20568    48.29688    56.74492    82.51407    -9.43659    -7.22767    -7.05630    -4.16521    -3.87551
+         -2.54750     8.26207    11.81076    15.30186    39.81249    41.53286    46.34919    49.27258    57.90666    84.07729
+  979   -10.17302    -9.15793    -8.61940    -7.15139    -6.70277    -4.47563     7.19577     9.14003    19.08998    35.56117
+         38.38134    43.83550    50.19940    56.00068    79.28375    -9.23110    -7.21270    -6.84652    -4.41457    -3.81356
+         -2.42131     8.12783     9.84239    19.78449    36.59912    39.20058    44.99420    51.16046    57.13507    80.61173
+  980   -10.08341    -9.13800    -8.48868    -7.21608    -6.42353    -4.05486     5.56642     9.12759    25.59843    29.62686
+         35.89488    41.41684    51.42446    58.33301    88.78803    -8.88801    -7.15556    -6.58958    -4.64628    -3.77973
+         -2.12018     6.54523     9.85963    26.43982    30.60487    36.77996    42.54727    52.37476    59.27220    89.48039
+  981   -10.06551    -9.10631    -8.42594    -7.29012    -6.00523    -3.16119     3.78168     9.97930    22.26817    31.52293
+         32.87175    38.70116    51.34759    61.39388   100.19772    -8.53500    -7.15420    -6.38269    -4.84457    -3.52233
+         -1.53081     4.85185    10.67970    23.09855    32.48862    33.79670    39.85107    52.26347    62.31423   100.57103
+  982   -10.06361    -9.39497    -8.02762    -7.34229    -5.77384    -1.62926     2.48504    10.20272    17.18577    29.93202
+         36.54374    36.89150    50.91155    62.43950    78.71390    -8.24767    -7.45090    -5.93293    -5.02372    -3.27863
+         -0.34061     3.62553    10.83221    18.05150    30.96169    37.70275    37.71984    51.82387    63.35189    79.95436
+  983   -10.08857    -9.00040    -8.52395    -7.26521    -5.82578    -1.66332     1.58724     9.57313    21.65879    31.41122
+         34.34789    37.81791    51.39998    63.76904   107.31632    -8.34604    -7.12939    -6.48642    -4.81559    -3.33173
+         -0.39706     2.89764    10.27058    22.46218    32.36821    35.43536    38.90570    52.28837    64.69450   107.88327
+  984    -9.76771    -9.39659    -8.56984    -6.91391    -6.14310    -0.87876     2.82149     5.81321    25.54254    30.51367
+         31.34291    40.06639    54.33992    60.69701    96.67634    -7.94975    -7.47240    -6.57505    -4.50165    -3.66970
+          0.44890     3.91745     6.64230    26.50367    31.50749    32.38405    41.04189    55.25245    61.61179    97.40354
+  985    -9.76725    -9.39687    -8.56971    -6.91340    -6.14431    -0.87825     2.81906     5.81524    25.54068    30.51309
+         31.34381    40.06524    54.33615    60.70767    96.67573    -7.94681    -7.47443    -6.57421    -4.50111    -3.67292
+          0.44850     3.91583     6.64477    26.50128    31.50949    32.38388    41.04007    55.25208    61.61934    97.40266
+  986   -10.08806    -9.00035    -8.52326    -7.26553    -5.82785    -1.66236     1.58478     9.57480    21.65697    31.40858
+         34.34851    37.81484    51.40138    63.78474   107.31576    -8.34275    -7.12988    -6.48280    -4.81884    -3.33789
+         -0.39836     2.89804    10.27300    22.46010    32.36803    35.43649    38.90170    52.29252    64.70686   107.88214
+  987   -10.31986    -8.67761    -8.58607    -7.32067    -5.71439    -3.19878     2.02124    12.98682    20.75709    30.99111
+         34.71520    37.63805    50.64673    64.81221   120.14495    -8.73747    -6.73554    -6.64595    -4.77685    -3.21828
+         -1.74556     3.32195    13.63116    21.50115    31.80843    35.93889    38.74022    51.55087    65.74243   120.39273
+  988   -10.43538    -8.94179    -8.23934    -7.17258    -6.06700    -4.29402     3.27196    12.96732    24.63379    27.35413
+         35.46292    40.95457    50.61157    63.36477    95.57963    -9.06875    -6.94533    -6.47540    -4.54099    -3.54125
+         -2.44740     4.44330    13.63251    25.35007    28.25078    36.56901    42.03899    51.56211    64.30585    96.42135
+  989   -10.41337    -9.10855    -8.24258    -7.08954    -6.66471    -4.60509     5.08481    11.99209    19.31769    32.75274
+         37.73001    43.68295    50.16694    59.34256    79.66917    -9.30865    -7.14583    -6.65185    -4.36116    -3.79741
+         -2.56703     6.09873    12.67623    19.99357    33.63340    38.76557    44.79860    51.18341    60.39311    81.07746
+  990   -10.24079    -9.15607    -8.78152    -7.03130    -6.86894    -4.63370     7.37987    11.09441    14.66062    38.89761
+         40.52231    45.20578    48.30453    56.74918    82.51272    -9.43550    -7.22555    -7.05563    -4.17146    -3.87535
+         -2.54700     8.26159    11.80961    15.30405    39.80848    41.53173    46.35009    49.27989    57.90828    84.07604
+  991   -10.06757    -9.15697    -9.15623    -6.95311    -6.95199    -4.62438     9.79955     9.80185    12.59476    42.50540
+         42.51600    45.71730    45.72098    55.78686    85.40031    -9.46904    -7.24458    -7.24001    -4.00031    -3.99569
+         -2.52029    10.60086    10.60199    13.19261    43.45487    43.45948    46.78141    46.78710    56.97950    87.00642
+  992   -10.24118    -9.15661    -8.78130    -7.02984    -6.86901    -4.63402     7.38054    11.09687    14.65805    38.90239
+         40.52451    45.20568    48.29688    56.74492    82.51407    -9.43659    -7.22767    -7.05630    -4.16521    -3.87551
+         -2.54750     8.26207    11.81076    15.30186    39.81249    41.53286    46.34919    49.27258    57.90666    84.07729
+  993   -10.41383    -9.10947    -8.24305    -7.08759    -6.66328    -4.60593     5.08625    11.99294    19.31753    32.75521
+         37.73228    43.68243    50.16263    59.33215    79.67129    -9.31049    -7.14980    -6.65418    -4.35297    -3.79208
+         -2.56903     6.09894    12.67598    19.99349    33.63529    38.76620    44.79698    51.17968    60.38559    81.07976
+  994   -10.43585    -8.94300    -8.24006    -7.17078    -6.06392    -4.29555     3.27366    12.96755    24.63486    27.35772
+         35.46412    40.95371    50.60795    63.35025    95.58208    -9.07113    -6.95048    -6.47911    -4.53235    -3.52981
+         -2.45154     4.44280    13.63148    25.35283    28.25196    36.56857    42.03725    51.55872    64.29433    96.42425
+  995   -10.32035    -8.67902    -8.58634    -7.31926    -5.71162    -3.19991     2.02314    12.98642    20.75743    30.99764
+         34.71576    37.63743    50.64267    64.79633   120.14571    -8.74033    -6.73646    -6.65265    -4.76967    -3.20834
+         -1.74698     3.32097    13.62942    21.50245    31.81183    35.93917    38.73919    51.54603    65.72967   120.39410
+  996   -10.42645    -8.97544    -8.11413    -7.17310    -5.86459    -3.22503     1.40494    12.53767    24.04115    26.89347
+         35.30998    41.06520    50.63183    65.96404   113.69614    -8.87640    -6.98494    -6.33683    -4.51237    -3.36310
+         -1.80078     2.82711    13.19453    24.73232    27.78647    36.43322    42.17649    51.56324    66.90895   114.49783
+  997   -10.02893    -8.98786    -8.60674    -7.10459    -6.20466    -2.20945     2.26678     8.22750    24.80976    29.18256
+         37.74788    39.90138    51.57173    62.68589   101.69242    -8.43191    -7.06238    -6.77178    -4.50672    -3.64838
+         -0.73317     3.49311     8.96822    25.66400    30.10737    38.78298    40.97404    52.49185    63.62449   102.38707
+  998    -9.62586    -9.34514    -8.69848    -6.98258    -6.42244    -1.94584     4.05722     5.35498    24.74247    31.61219
+         35.65232    41.71934    54.05287    58.70285    94.73349    -8.10397    -7.40433    -6.78967    -4.42782    -3.82939
+         -0.39624     5.12849     6.16254    25.63946    32.66195    36.59403    42.72897    54.99908    59.62549    95.43780
+  999   -10.02851    -8.98771    -8.60650    -7.10506    -6.20558    -2.20901     2.26410     8.22986    24.80993    29.17801
+         37.74917    39.89823    51.57181    62.70004   101.69014    -8.42933    -7.06283    -6.76993    -4.51007    -3.64964
+         -0.73556     3.49214     8.97130    25.66407    30.10471    38.78288    40.97173    52.49436    63.63510   102.38429
+ 1000   -10.42605    -8.97434    -8.11415    -7.17418    -5.86612    -3.22461     1.40258    12.53945    24.04201    26.88703
+         35.30760    41.06566    50.63435    65.98044   113.69600    -8.87380    -6.97941    -6.33750    -4.51811    -3.36570
+         -1.80554     2.82803    13.19719    24.73170    27.78405    36.43092    42.17737    51.56599    66.92206   114.49693
+ 1001   -10.66288    -9.09802    -7.61898    -7.09107    -5.66993    -4.64153     1.80419    16.28340    22.95137    26.00225
+         32.19245    43.61832    50.55567    66.64814    98.76564    -9.21488    -7.10394    -5.86488    -4.38301    -3.16805
+         -3.05059     3.19349    16.91743    23.55656    26.83156    33.35200    44.73583    51.54702    67.59492   100.08567
+ 1002   -10.70613    -9.18036    -7.36572    -6.98697    -6.46060    -4.99837     3.00730    16.23118    20.00346    28.11529
+         33.65269    45.55132    50.13747    64.45669    80.20585    -9.41426    -7.19880    -5.95066    -4.25652    -3.76371
+         -2.94839     4.22981    16.86282    20.63938    28.87960    34.79031    46.67928    51.19894    65.43418    81.85279
+ 1003   -10.54182    -9.18666    -7.95941    -7.00184    -6.88876    -4.78314     4.90747    14.69916    15.50982    34.07971
+         36.91038    46.40886    49.17767    60.19922    79.86957    -9.46906    -7.22535    -6.57817    -4.18819    -3.86269
+         -2.72118     5.93433    15.39202    16.11865    34.86906    38.06325    47.55578    50.18907    61.26868    81.48261
+ 1004   -10.24079    -9.15607    -8.78152    -7.03130    -6.86894    -4.63370     7.37987    11.09441    14.66062    38.89761
+         40.52231    45.20578    48.30453    56.74918    82.51272    -9.43550    -7.22555    -7.05563    -4.17146    -3.87535
+         -2.54700     8.26159    11.80961    15.30405    39.80848    41.53174    46.35009    49.27989    57.90828    84.07604
+ 1005   -10.24096    -9.15683    -8.78079    -7.03074    -6.86911    -4.63368     7.38128    11.09369    14.66000    38.90513
+         40.51935    45.20608    48.30064    56.74536    82.51357    -9.43608    -7.22971    -7.05262    -4.16858    -3.87651
+         -2.54597     8.26267    11.80857    15.30343    39.81235    41.53150    46.34918    49.27676    57.90610    84.07692
+ 1006   -10.54214    -9.18769    -7.95876    -7.00029    -6.88903    -4.78314     4.90929    14.70155    15.50621    34.08727
+         36.90971    46.40859    49.17373    60.18801    79.87143    -9.47051    -7.23075    -6.57658    -4.18145    -3.86380
+         -2.71844     5.93488    15.39334    16.11544    34.87414    38.06164    47.55565    50.18605    61.26036    81.48463
+ 1007   -10.70648    -9.18156    -7.36613    -6.98561    -6.45858    -4.99883     3.00925    16.23090    20.00415    28.11946
+         33.65320    45.55071    50.13606    64.44034    80.20703    -9.41624    -7.20486    -5.95192    -4.24878    -3.76009
+         -2.94547     4.22940    16.86170    20.64028    28.88211    34.78859    46.67865    51.19888    65.42080    81.85411
+ 1008   -10.66325    -9.09929    -7.61923    -7.08965    -5.66715    -4.64270     1.80623    16.28266    22.95154    26.00835
+         32.19261    43.61770    50.55379    66.63165    98.76427    -9.21722    -7.11029    -5.86637    -4.37587    -3.15822
+         -3.05129     3.19234    16.91563    23.55840    26.83417    33.35064    44.73496    51.54621    67.58157   100.08464
+ 1009   -10.68284    -9.23421    -7.14930    -7.00387    -6.15727    -4.24859     1.32036    15.77167    19.49303    27.48962
+         33.18423    45.61431    50.85330    67.33020    96.00922    -9.21682    -7.26818    -5.53235    -4.22608    -3.68927
+         -2.59323     2.79554    16.39435    20.12035    28.25323    34.32622    46.74956    51.90977    68.28714    97.59839
+ 1010   -10.35490    -9.17878    -7.86189    -7.02086    -6.44768    -3.19010     1.99595    11.07169    18.37072    31.79087
+         37.43085    44.05682    50.80405    64.53046    96.68399    -8.87684    -7.23723    -6.30497    -4.26182    -3.72224
+         -1.61291     3.30505    11.74651    19.05200    32.64645    38.51205    45.18204    51.81846    65.49213    97.93087
+ 1011    -9.91694    -9.19412    -8.49424    -7.01569    -6.61216    -2.72231     3.85734     7.25830    17.82129    35.60052
+         39.72075    43.22459    51.76305    59.51073    91.30782    -8.48379    -7.31836    -6.83784    -4.28028    -3.81349
+         -1.04521     4.91838     8.02124    18.53974    36.59093    40.66022    44.33798    52.74108    60.51358    92.42777
+ 1012    -9.91672    -9.19375    -8.49456    -7.01624    -6.61208    -2.72220     3.85484     7.26063    17.82134    35.59671
+         39.72254    43.22269    51.76200    59.51982    91.30634    -8.48250    -7.31668    -6.83925    -4.28270    -3.81252
+         -1.04662     4.91618     8.02424    18.53993    36.58929    40.65918    44.33767    52.74134    60.51998    92.42635
+ 1013   -10.35456    -9.17783    -7.86245    -7.02201    -6.44780    -3.18998     1.99324    11.07389    18.37082    31.78496
+         37.42933    44.05708    50.80551    64.54619    96.68240    -8.87463    -7.23222    -6.30775    -4.26731    -3.72037
+         -1.61798     3.30456    11.74956    19.05247    32.64303    38.51024    45.18296    51.81942    65.50450    97.92935
+ 1014   -10.68251    -9.23303    -7.14962    -7.00523    -6.15785    -4.24886     1.31799    15.77331    19.49271    27.48310
+         33.18417    45.61473    50.85438    67.34702    96.01191    -9.21452    -7.26214    -5.53306    -4.23273    -3.68699
+         -2.60284     2.79659    16.39658    20.12051    28.24886    34.32756    46.75028    51.90911    68.30074    97.60143
+ 1015   -10.80579    -9.24271    -7.00536    -6.86795    -5.65382    -5.52740     1.72602    18.88551    22.38269    22.85458
+         31.42363    46.20622    50.45813    67.34435    84.65889    -9.39774    -7.26041    -5.23638    -4.21123    -3.82883
+         -3.14982     3.14524    19.44935    22.85999    23.75284    32.56494    47.34490    51.55644    68.29747    86.46891
+ 1016   -10.70613    -9.18036    -7.36572    -6.98697    -6.46060    -4.99837     3.00730    16.23118    20.00346    28.11529
+         33.65269    45.55132    50.13747    64.45669    80.20585    -9.41426    -7.19880    -5.95066    -4.25652    -3.76371
+         -2.94839     4.22981    16.86282    20.63938    28.87960    34.79031    46.67928    51.19894    65.43418    81.85279
+ 1017   -10.41337    -9.10855    -8.24258    -7.08954    -6.66471    -4.60509     5.08481    11.99209    19.31769    32.75274
+         37.73001    43.68295    50.16694    59.34256    79.66917    -9.30865    -7.14583    -6.65185    -4.36116    -3.79741
+         -2.56703     6.09873    12.67623    19.99357    33.63340    38.76557    44.79860    51.18341    60.39311    81.07746
+ 1018   -10.17250    -9.15791    -8.61840    -7.15305    -6.70409    -4.47464     7.19745     9.13606    19.09015    35.56421
+         38.37641    43.83400    50.20844    56.00178    79.28264    -9.22967    -7.21348    -6.84059    -4.42142    -3.81948
+         -2.41713     8.12932     9.84014    19.78461    36.59987    39.19791    44.99545    51.16861    57.13440    80.61066
+ 1019   -10.41362    -9.10935    -8.24220    -7.08832    -6.66494    -4.60495     5.08675    11.99033    19.31754    32.75891
+         37.73008    43.68313    50.16421    59.33235    79.67091    -9.30983    -7.15021    -6.65014    -4.35668    -3.79886
+         -2.56380     6.09953    12.67424    19.99329    33.63673    38.76708    44.79725    51.18135    60.38560    81.07943
+ 1020   -10.70643    -9.18150    -7.36545    -6.98548    -6.46030    -4.99807     3.00934    16.22948    20.00383    28.12197
+         33.65285    45.55080    50.13577    64.44039    80.20695    -9.41609    -7.20467    -5.95031    -4.24961    -3.76580
+         -2.94113     4.22953    16.86089    20.63950    28.88384    34.78919    46.67854    51.19878    65.42093    81.85399
+ 1021   -10.80610    -9.24394    -7.00395    -6.86797    -5.65104    -5.52881     1.72815    18.88234    22.38273    22.86284
+         31.42344    46.20575    50.45780    67.32764    84.65538    -9.39988    -7.26668    -5.23866    -4.20411    -3.82893
+         -3.13977     3.14409    19.44660    22.86224    23.75611    32.56246    47.34423    51.55805    68.28391    86.46496
+ 1022   -10.68287    -9.23427    -7.15012    -7.00369    -6.15577    -4.24929     1.32029    15.77307    19.49335    27.48731
+         33.18440    45.61417    50.85360    67.33028    96.00901    -9.21696    -7.26848    -5.53459    -4.22539    -3.68236
+         -2.59794     2.79545    16.39526    20.12102    28.25163    34.32554    46.74959    51.90997    68.28709    97.59808
+ 1023   -10.48189    -9.28180    -7.22951    -6.94762    -6.86007    -3.56000     1.90977    13.96013    14.35300    32.88052
+         36.15906    46.52875    51.32080    65.33931   101.18198    -9.04238    -7.34886    -6.01998    -4.13017    -3.81884
+         -1.93928     3.24714    14.64569    14.95403    33.66729    37.32855    47.67307    52.35693    66.30664   102.58005
+ 1024   -10.08837    -9.26328    -8.17385    -6.95041    -6.81590    -3.14042     3.58807     9.86408    13.19918    37.79657
+         40.31305    45.99268    50.89709    61.62861   105.04273    -8.72253    -7.37340    -6.76771    -4.09376    -3.82044
+         -1.41650     4.67287    10.57559    13.85986    38.69272    41.39679    47.13559    51.88562    62.63401   106.23678
+ 1025    -9.76741    -9.22256    -8.72377    -6.96242    -6.80205    -3.01761     5.62356     7.04333    12.87620    41.12169
+         41.67595    45.47263    50.38075    59.36294   105.47718    -8.48885    -7.40394    -7.13705    -4.09076    -3.82548
+         -1.23932     6.59115     7.78844    13.55262    42.20651    42.56349    46.61568    51.33276    60.41205   106.61153
+ 1026   -10.08806    -9.26238    -8.17487    -6.95142    -6.81550    -3.14020     3.58544     9.86591    13.19973    37.78966
+         40.31302    45.99264    50.90085    61.63870   105.04080    -8.72071    -7.36850    -6.77171    -4.09856    -3.81861
+         -1.41857     4.67084    10.57843    13.86072    38.68871    41.39600    47.13621    51.88868    62.64122   106.23502
+ 1027   -10.48153    -9.28070    -7.23040    -6.94917    -6.85997    -3.55972     1.90716    13.95817    14.35663    32.87337
+         36.15946    46.52915    51.32308    65.35504   101.18124    -9.04004    -7.34310    -6.02216    -4.13704    -3.81843
+         -1.94368     3.24689    14.64512    14.95778    33.66218    37.33042    47.67359    52.35762    66.31921   102.57966
+ 1028   -10.68251    -9.23303    -7.14962    -7.00523    -6.15785    -4.24886     1.31799    15.77331    19.49271    27.48310
+         33.18417    45.61473    50.85438    67.34702    96.01191    -9.21452    -7.26214    -5.53306    -4.23273    -3.68699
+         -2.60284     2.79659    16.39658    20.12051    28.24886    34.32756    46.75028    51.90911    68.30074    97.60143
+ 1029   -10.66288    -9.09802    -7.61898    -7.09107    -5.66993    -4.64153     1.80419    16.28340    22.95137    26.00225
+         32.19245    43.61832    50.55567    66.64814    98.76564    -9.21488    -7.10394    -5.86488    -4.38301    -3.16805
+         -3.05059     3.19349    16.91743    23.55656    26.83156    33.35200    44.73583    51.54702    67.59492   100.08567
+ 1030   -10.43538    -8.94179    -8.23934    -7.17258    -6.06700    -4.29402     3.27196    12.96732    24.63379    27.35413
+         35.46292    40.95457    50.61157    63.36477    95.57963    -9.06875    -6.94533    -6.47540    -4.54099    -3.54125
+         -2.44740     4.44330    13.63251    25.35007    28.25078    36.56901    42.03899    51.56211    64.30585    96.42135
+ 1031   -10.08281    -9.13769    -8.48708    -7.21830    -6.42599    -4.05341     5.56566     9.12650    25.59514    29.62697
+         35.89585    41.41403    51.43209    58.33999    88.78578    -8.88590    -7.15479    -6.58147    -4.65587    -3.78955
+         -2.11495     6.54547     9.85992    26.43666    30.60435    36.78062    42.54841    52.38213    59.27669    89.47820
+ 1032   -10.08305    -9.13760    -8.48762    -7.21763    -6.42562    -4.05349     5.56751     9.12460    25.59479    29.63093
+         35.89376    41.41653    51.43115    58.33292    88.78729    -8.88680    -7.15486    -6.58342    -4.65293    -3.78921
+         -2.11398     6.54656     9.85796    26.43666    30.60650    36.78013    42.54950    52.37977    59.27226    89.48003
+ 1033   -10.43574    -8.94268    -8.23965    -7.17128    -6.06561    -4.29439     3.27392    12.96555    24.63286    27.36078
+         35.46451    40.95424    50.60876    63.35027    95.58205    -9.07072    -6.94976    -6.47634    -4.53467    -3.53916
+         -2.44448     4.44321    13.63022    25.35078    28.25340    36.57112    42.03740    51.55915    64.29465    96.42460
+ 1034   -10.66325    -9.09929    -7.61923    -7.08965    -5.66715    -4.64270     1.80623    16.28266    22.95154    26.00835
+         32.19261    43.61770    50.55379    66.63165    98.76427    -9.21722    -7.11029    -5.86637    -4.37587    -3.15822
+         -3.05129     3.19234    16.91563    23.55840    26.83417    33.35064    44.73496    51.54621    67.58157   100.08464
+ 1035   -10.42654    -8.97576    -8.11464    -7.17245    -5.86315    -3.22602     1.40473    12.53966    24.04286    26.89089
+         35.30901    41.06489    50.63127    65.96422   113.69546    -8.87676    -6.98631    -6.33926    -4.50991    -3.35427
+         -1.80732     2.82681    13.19585    24.73402    27.78536    36.43027    42.17659    51.56309    66.90880   114.49639
+ 1036   -10.35506    -9.17900    -7.86299    -7.02022    -6.44561    -3.19111     1.99561    11.07410    18.37077    31.78789
+         37.43164    44.05630    50.80300    64.53061    96.68303    -8.87752    -7.23811    -6.30854    -4.25913    -3.71340
+         -1.61850     3.30460    11.74840    19.05193    32.64530    38.51024    45.18211    51.81777    65.49189    97.92943
+ 1037   -10.08856    -9.26327    -8.17449    -6.94982    -6.81505    -3.14088     3.58773     9.86682    13.19726    37.79539
+         40.31531    45.99211    50.89470    61.62841   105.04242    -8.72330    -7.37311    -6.76981    -4.09155    -3.81723
+         -1.41868     4.67246    10.57806    13.85777    38.69342    41.39623    47.13556    51.88355    62.63394   106.23608
+ 1038    -9.63360    -9.27151    -8.87998    -6.91188    -6.87477    -3.11144     5.91541     8.70776     9.98862    43.27661
+         43.46862    46.29761    48.58917    59.85207   116.31864    -8.47218    -7.42000    -7.29878    -3.96959    -3.86194
+         -1.30291     6.82665     9.52093    10.60814    44.14785    44.59232    47.45476    49.52890    60.90648   117.42157
+ 1039    -9.63323    -9.27080    -8.88082    -6.91298    -6.87426    -3.11122     5.91370     8.70646     9.99150    43.26631
+         43.47037    46.29781    48.59751    59.85521   116.31783    -8.47074    -7.41587    -7.30268    -3.97435    -3.85980
+         -1.30288     6.82433     9.52113    10.61091    44.14092    44.59303    47.45434    49.53667    60.90812   117.42100
+ 1040   -10.08806    -9.26238    -8.17487    -6.95142    -6.81550    -3.14020     3.58544     9.86591    13.19973    37.78966
+         40.31302    45.99264    50.90085    61.63870   105.04080    -8.72071    -7.36850    -6.77171    -4.09856    -3.81861
+         -1.41857     4.67084    10.57843    13.86072    38.68871    41.39600    47.13621    51.88868    62.64122   106.23502
+ 1041   -10.35456    -9.17783    -7.86245    -7.02201    -6.44780    -3.18998     1.99324    11.07389    18.37082    31.78496
+         37.42933    44.05708    50.80551    64.54619    96.68240    -8.87463    -7.23222    -6.30775    -4.26731    -3.72037
+         -1.61798     3.30456    11.74956    19.05247    32.64303    38.51024    45.18296    51.81942    65.50450    97.92935
+ 1042   -10.42605    -8.97434    -8.11415    -7.17418    -5.86612    -3.22461     1.40258    12.53945    24.04201    26.88703
+         35.30760    41.06566    50.63435    65.98044   113.69600    -8.87380    -6.97941    -6.33750    -4.51811    -3.36570
+         -1.80554     2.82803    13.19719    24.73170    27.78405    36.43092    42.17737    51.56599    66.92206   114.49693
+ 1043   -10.31986    -8.67761    -8.58607    -7.32067    -5.71439    -3.19878     2.02124    12.98682    20.75709    30.99111
+         34.71520    37.63805    50.64673    64.81221   120.14495    -8.73747    -6.73555    -6.64595    -4.77685    -3.21828
+         -1.74556     3.32195    13.63116    21.50115    31.80843    35.93889    38.74022    51.55087    65.74243   120.39273
+ 1044   -10.06496    -9.10612    -8.42390    -7.29215    -6.00822    -3.15979     3.78024     9.97906    22.26846    31.51799
+         32.87160    38.69893    51.35368    61.40622   100.19671    -8.53235    -7.15325    -6.37340    -4.85423    -3.53396
+         -1.52632     4.85223    10.68090    23.09755    32.48518    33.79588    39.85241    52.27000    62.32360   100.57027
+ 1045    -9.80671    -9.45853    -8.34823    -7.15196    -6.26695    -3.14747     6.10742     6.88831    25.41724    28.62407
+         32.00624    40.51633    53.25471    58.12117    93.39604    -8.41737    -7.34064    -6.29063    -4.77491    -3.78306
+         -1.44254     7.07711     7.63636    26.47409    29.33995    32.98814    41.62229    54.19435    59.01720    93.84362
+ 1046   -10.06540    -9.10595    -8.42497    -7.29155    -6.00640    -3.16034     3.78207     9.97739    22.27046    31.52023
+         32.86967    38.70252    51.35230    61.39378   100.19795    -8.53451    -7.15274    -6.37827    -4.85005    -3.52869
+         -1.52650     4.85259    10.67884    23.09971    32.48437    33.79600    39.85500    52.26632    62.31451   100.57199
+ 1047   -10.32035    -8.67902    -8.58634    -7.31926    -5.71162    -3.19991     2.02314    12.98642    20.75743    30.99764
+         34.71576    37.63743    50.64267    64.79633   120.14571    -8.74033    -6.73646    -6.65265    -4.76967    -3.20834
+         -1.74698     3.32097    13.62942    21.50245    31.81183    35.93917    38.73919    51.54603    65.72967   120.39410
+ 1048   -10.08865    -9.00070    -8.52505    -7.26366    -5.82481    -1.66409     1.58690     9.57500    21.65649    31.41585
+         34.34758    37.81667    51.39580    63.76926   107.31586    -8.34633    -7.13120    -6.49075    -4.80974    -3.32618
+         -0.40106     2.89704    10.27143    22.46099    32.37313    35.43562    38.90132    52.28610    64.69427   107.88173
+ 1049   -10.02917    -8.98863    -8.60753    -7.10298    -6.20279    -2.21070     2.26608     8.23008    24.81356    29.17850
+         37.74789    39.90150    51.56679    62.68620   101.69166    -8.43294    -7.06496    -6.77623    -4.50057    -3.63882
+         -0.73917     3.49205     8.96982    25.66691    30.10549    38.78283    40.97141    52.48889    63.62404   102.38505
+ 1050    -9.91747    -9.19431    -8.49530    -7.01427    -6.61023    -2.72346     3.85619     7.26167    17.82121    35.59734
+         39.72512    43.22512    51.75492    59.51056    91.30741    -8.48593    -7.31830    -6.84294    -4.27441    -3.80541
+         -1.05007     4.91706     8.02358    18.53915    36.59017    40.66188    44.33704    52.73482    60.51332    92.42670
+ 1051    -9.76818    -9.22239    -8.72417    -6.96111    -6.80140    -3.01830     5.62231     7.04738    12.87399    41.11918
+         41.68458    45.47400    50.37080    59.36019   105.47767    -8.49137    -7.40225    -7.14051    -4.08538    -3.82284
+         -1.24144     6.59079     7.79072    13.54997    42.20582    42.56973    46.61499    51.32411    60.41102   106.61139
+ 1052    -9.63360    -9.27151    -8.87998    -6.91188    -6.87477    -3.11144     5.91541     8.70776     9.98862    43.27661
+         43.46862    46.29761    48.58917    59.85207   116.31864    -8.47218    -7.42000    -7.29878    -3.96959    -3.86194
+         -1.30291     6.82665     9.52093    10.60814    44.14785    44.59232    47.45477    49.52890    60.90648   117.42157
+ 1053    -9.76741    -9.22256    -8.72377    -6.96242    -6.80205    -3.01761     5.62356     7.04333    12.87620    41.12169
+         41.67595    45.47263    50.38075    59.36294   105.47718    -8.48885    -7.40394    -7.13705    -4.09076    -3.82548
+         -1.23932     6.59115     7.78844    13.55262    42.20650    42.56349    46.61568    51.33276    60.41205   106.61153
+ 1054    -9.91672    -9.19375    -8.49456    -7.01624    -6.61208    -2.72220     3.85484     7.26063    17.82134    35.59671
+         39.72254    43.22269    51.76200    59.51982    91.30634    -8.48250    -7.31668    -6.83925    -4.28270    -3.81252
+         -1.04662     4.91618     8.02424    18.53993    36.58928    40.65917    44.33768    52.74134    60.51998    92.42635
+ 1055   -10.02851    -8.98771    -8.60650    -7.10506    -6.20558    -2.20901     2.26410     8.22986    24.80993    29.17800
+         37.74917    39.89823    51.57181    62.70004   101.69014    -8.42933    -7.06282    -6.76993    -4.51007    -3.64964
+         -0.73556     3.49214     8.97130    25.66407    30.10471    38.78287    40.97174    52.49436    63.63510   102.38429
+ 1056   -10.08806    -9.00035    -8.52326    -7.26553    -5.82785    -1.66236     1.58478     9.57480    21.65697    31.40858
+         34.34851    37.81484    51.40138    63.78474   107.31576    -8.34275    -7.12988    -6.48280    -4.81884    -3.33789
+         -0.39836     2.89804    10.27300    22.46010    32.36803    35.43649    38.90170    52.29252    64.70686   107.88214
+ 1057   -10.06314    -9.39478    -8.02597    -7.34342    -5.77661    -1.62822     2.48330    10.20309    17.18560    29.93308
+         36.54336    36.88369    50.91453    62.45459    78.71442    -8.24467    -7.45010    -5.92582    -5.03034    -3.28850
+         -0.33887     3.62596    10.83387    18.05069    30.96282    37.69840    37.71885    51.82833    63.36389    79.95502
+ 1058    -9.95260    -9.70815    -7.86781    -7.02445    -6.02952    -1.82929     4.66628     7.63561    19.26713    24.49648
+         36.01144    39.79905    53.20769    59.13285    67.99323    -8.20107    -7.60689    -5.76589    -4.74055    -3.58037
+         -0.45885     5.59180     8.37079    20.18599    25.40056    37.11410    40.66077    54.14116    60.04042    69.50436
+ 1059    -9.95288    -9.70810    -7.86809    -7.02497    -6.02791    -1.82962     4.66780     7.63428    19.26850    24.49496
+         36.01160    39.80167    53.21214    59.12206    67.99281    -8.20227    -7.60714    -5.76708    -4.74119    -3.57512
+         -0.45954     5.59256     8.36930    20.18727    25.39906    37.11401    40.66294    54.14314    60.03253    69.50379
+ 1060   -10.06361    -9.39497    -8.02762    -7.34229    -5.77384    -1.62926     2.48504    10.20272    17.18577    29.93202
+         36.54374    36.89150    50.91155    62.43950    78.71390    -8.24767    -7.45090    -5.93293    -5.02372    -3.27863
+         -0.34061     3.62553    10.83221    18.05150    30.96169    37.70275    37.71984    51.82387    63.35189    79.95436
+ 1061   -10.01664    -9.70429    -7.91558    -6.94416    -5.86151     0.17100     2.03600     7.25740    18.77827    27.53326
+         34.52657    39.20887    53.03213    61.44954    65.43993    -8.02709    -7.75194    -5.84652    -4.63982    -3.37982
+          1.26261     3.16112     7.98398    19.71537    28.62213    35.48422    40.03395    53.98013    62.35407    67.12530
+ 1062    -9.76786    -9.39709    -8.57158    -6.91131    -6.14162    -0.87990     2.82040     5.81572    25.54013    30.51565
+         31.34640    40.06818    54.32859    60.69727    96.67651    -7.95047    -7.47508    -6.58241    -4.49146    -3.66207
+          0.44430     3.91562     6.64326    26.50229    31.51050    32.38734    41.03911    55.24444    61.61131    97.40215
+ 1063    -9.62663    -9.34544    -8.69980    -6.98036    -6.42022    -1.94729     4.05559     5.35845    24.74641    31.61011
+         35.65138    41.72293    54.04171    58.70067    94.73445    -8.10715    -7.40536    -6.79634    -4.41856    -3.81963
+         -0.40129     5.12677     6.16378    25.64227    32.66140    36.59410    42.72837    54.98960    59.62378    95.43761
+ 1064    -9.91747    -9.19431    -8.49530    -7.01427    -6.61023    -2.72346     3.85619     7.26167    17.82121    35.59734
+         39.72512    43.22512    51.75492    59.51056    91.30741    -8.48593    -7.31830    -6.84294    -4.27441    -3.80541
+         -1.05007     4.91706     8.02358    18.53915    36.59017    40.66188    44.33704    52.73483    60.51332    92.42670
+ 1065   -10.08856    -9.26327    -8.17449    -6.94982    -6.81505    -3.14088     3.58773     9.86682    13.19726    37.79539
+         40.31531    45.99211    50.89470    61.62841   105.04242    -8.72330    -7.37311    -6.76981    -4.09155    -3.81723
+         -1.41868     4.67246    10.57806    13.85777    38.69342    41.39623    47.13556    51.88355    62.63394   106.23608
+ 1066   -10.08837    -9.26328    -8.17385    -6.95041    -6.81590    -3.14042     3.58807     9.86408    13.19918    37.79657
+         40.31305    45.99268    50.89709    61.62861   105.04273    -8.72253    -7.37340    -6.76771    -4.09376    -3.82044
+         -1.41650     4.67287    10.57559    13.85986    38.69272    41.39679    47.13559    51.88562    62.63401   106.23678
+ 1067    -9.91694    -9.19412    -8.49424    -7.01569    -6.61216    -2.72231     3.85734     7.25830    17.82129    35.60052
+         39.72075    43.22459    51.76305    59.51073    91.30782    -8.48379    -7.31836    -6.83784    -4.28028    -3.81349
+         -1.04521     4.91838     8.02124    18.53974    36.59092    40.66022    44.33798    52.74108    60.51358    92.42777
+ 1068    -9.62586    -9.34514    -8.69848    -6.98258    -6.42244    -1.94584     4.05722     5.35498    24.74247    31.61218
+         35.65233    41.71935    54.05287    58.70285    94.73349    -8.10397    -7.40432    -6.78967    -4.42782    -3.82939
+         -0.39624     5.12849     6.16254    25.63946    32.66195    36.59403    42.72897    54.99908    59.62549    95.43780
+ 1069    -9.76725    -9.39687    -8.56971    -6.91340    -6.14431    -0.87825     2.81906     5.81524    25.54068    30.51309
+         31.34381    40.06524    54.33615    60.70767    96.67573    -7.94681    -7.47443    -6.57421    -4.50111    -3.67292
+          0.44850     3.91583     6.64477    26.50128    31.50949    32.38388    41.04007    55.25208    61.61934    97.40266
+ 1070   -10.01623    -9.70407    -7.91334    -6.94576    -5.86448     0.17301     2.03374     7.25724    18.77869    27.53426
+         34.52557    39.19880    53.03680    61.46427    65.44154    -8.02407    -7.75102    -5.83788    -4.64774    -3.39101
+          1.26556     3.16145     7.98558    19.71475    28.62301    35.48206    40.02914    53.98483    62.36593    67.12758
+ 1071   -10.15372   -10.00052    -7.23217    -6.91794    -5.84196     0.02221     3.42014     7.97563    15.35053    22.93557
+         32.33417    43.93933    50.87228    56.04541    60.22675    -8.16903    -7.94570    -5.02680    -4.69320    -3.36210
+          1.09642     4.34292     8.55999    16.43718    23.98297    33.24363    44.76008    52.45918    57.50447    61.11673
+ 1072   -10.17399   -10.13517    -7.12552    -6.57972    -6.00984    -0.21722     5.86398     5.96161    17.74107    17.80490
+         31.46150    45.43348    51.50005    55.73608    58.01523    -8.26428    -7.97363    -4.93494    -4.27716    -3.55810
+          0.85191     6.61258     6.64882    18.68330    18.96798    32.42110    46.37165    53.55028    56.63315    58.92613
+ 1073   -10.15395   -10.00063    -7.23417    -6.91735    -5.83922     0.02150     3.42146     7.97533    15.35053    22.93458
+         32.33356    43.94891    50.87637    56.04023    60.21245    -8.17032    -7.94666    -5.03466    -4.68897    -3.35237
+          1.09483     4.34296     8.55869    16.43751    23.98208    33.24354    44.76668    52.46413    57.49708    61.10549
+ 1074   -10.24731   -10.20305    -7.13162    -6.37257    -5.91315     2.20361     2.97145     5.53320    17.45857    21.47564
+         26.31333    45.02896    50.17451    56.64234    59.53929    -8.17443    -8.16032    -4.95951    -4.01716    -3.44573
+          3.08451     3.84817     6.22431    18.58024    22.61553    27.15100    46.11850    52.11487    57.55491    60.42712
+ 1075    -9.92194    -9.89238    -7.95186    -6.51902    -6.09846     0.65582     3.66868     4.27354    22.73700    24.20594
+         33.34421    39.30127    56.65761    59.11318    61.88553    -7.94913    -7.85040    -5.93208    -4.15200    -3.65822
+          1.77198     4.63950     5.11193    23.84484    25.16430    34.20421    40.16265    57.56674    60.05960    63.67013
+ 1076    -9.76786    -9.39709    -8.57158    -6.91131    -6.14162    -0.87990     2.82040     5.81572    25.54013    30.51566
+         31.34640    40.06818    54.32859    60.69727    96.67651    -7.95047    -7.47508    -6.58241    -4.49146    -3.66207
+          0.44430     3.91562     6.64326    26.50229    31.51050    32.38734    41.03911    55.24444    61.61131    97.40215
+ 1077   -10.02917    -8.98863    -8.60753    -7.10298    -6.20279    -2.21070     2.26608     8.23008    24.81356    29.17850
+         37.74790    39.90150    51.56679    62.68620   101.69166    -8.43294    -7.06496    -6.77623    -4.50057    -3.63882
+         -0.73917     3.49205     8.96982    25.66691    30.10548    38.78283    40.97141    52.48889    63.62404   102.38505
+ 1078   -10.35506    -9.17900    -7.86299    -7.02022    -6.44561    -3.19111     1.99561    11.07410    18.37077    31.78789
+         37.43164    44.05630    50.80300    64.53061    96.68303    -8.87752    -7.23811    -6.30854    -4.25913    -3.71340
+         -1.61850     3.30460    11.74840    19.05193    32.64530    38.51023    45.18212    51.81777    65.49189    97.92943
+ 1079   -10.48189    -9.28180    -7.22951    -6.94762    -6.86007    -3.56000     1.90977    13.96013    14.35300    32.88052
+         36.15905    46.52876    51.32080    65.33931   101.18198    -9.04238    -7.34886    -6.01998    -4.13017    -3.81884
+         -1.93928     3.24714    14.64569    14.95403    33.66729    37.32854    47.67307    52.35693    66.30664   102.58005
+ 1080   -10.35490    -9.17878    -7.86189    -7.02086    -6.44768    -3.19010     1.99595    11.07169    18.37072    31.79087
+         37.43085    44.05682    50.80405    64.53046    96.68399    -8.87684    -7.23723    -6.30497    -4.26181    -3.72224
+         -1.61291     3.30505    11.74651    19.05200    32.64644    38.51204    45.18205    51.81846    65.49213    97.93087
+ 1081   -10.02893    -8.98786    -8.60674    -7.10459    -6.20466    -2.20945     2.26678     8.22750    24.80976    29.18256
+         37.74788    39.90138    51.57173    62.68589   101.69242    -8.43191    -7.06238    -6.77178    -4.50672    -3.64838
+         -0.73317     3.49311     8.96822    25.66400    30.10737    38.78298    40.97404    52.49185    63.62449   102.38707
+ 1082    -9.76771    -9.39659    -8.56984    -6.91391    -6.14310    -0.87876     2.82149     5.81321    25.54254    30.51367
+         31.34291    40.06639    54.33992    60.69701    96.67634    -7.94975    -7.47240    -6.57505    -4.50165    -3.66970
+          0.44890     3.91745     6.64230    26.50367    31.50749    32.38405    41.04189    55.25245    61.61179    97.40354
+ 1083    -9.92172    -9.89213    -7.94957    -6.52165    -6.10009     0.65693     3.67093     4.27001    22.73811    24.20661
+         33.34360    39.29016    56.67032    59.11761    61.88645    -7.94761    -7.84913    -5.92322    -4.16254    -3.66543
+          1.77535     4.64249     5.11053    23.84508    25.16409    34.20206    40.15767    57.57711    60.06320    63.67192
+ 1084   -10.24714   -10.20292    -7.12881    -6.37385    -5.91604     2.20603     2.96901     5.53289    17.45883    21.47652
+         26.31377    45.01345    50.17585    56.64811    59.55345    -8.17387    -8.15893    -4.94960    -4.02279    -3.45638
+          3.08784     3.84738     6.22538    18.57986    22.61623    27.15080    46.10603    52.11710    57.56108    60.43837
+ 1085   -10.41328   -10.39622    -6.45795    -6.33614    -5.89499     1.84948     4.78056     6.34433    14.67234    17.12171
+         23.54701    47.03809    51.64947    56.47851    58.57709    -8.38320    -8.27046    -4.11669    -3.99687    -3.42132
+          2.65987     5.42972     6.84256    15.93491    18.31091    24.60715    49.21298    52.49023    57.36841    59.45320
+ 1086   -10.41334   -10.39626    -6.46031    -6.33593    -5.89235     1.84922     4.78120     6.34419    14.67230    17.12120
+         23.54685    47.03927    51.66089    56.47703    58.56364    -8.38342    -8.27093    -4.12539    -3.99505    -3.41207
+          2.65907     5.42981     6.84190    15.93493    18.31067    24.60727    49.21479    52.49873    57.36575    59.44276
+ 1087   -10.49528   -10.49528    -6.38341    -5.95351    -5.95351     4.28107     4.28107     4.51367    16.65874    16.65874
+         18.18388    46.27326    53.16598    58.32153    58.32153    -8.40578    -8.40578    -4.04495    -3.49607    -3.49607
+          4.89407     4.89407     5.10451    17.94203    17.94204    19.22223    48.40672    54.02697    59.19882    59.19882
+ 1088   -10.24731   -10.20305    -7.13162    -6.37257    -5.91315     2.20361     2.97145     5.53320    17.45856    21.47564
+         26.31333    45.02896    50.17451    56.64234    59.53929    -8.17443    -8.16032    -4.95951    -4.01716    -3.44573
+          3.08451     3.84817     6.22431    18.58024    22.61553    27.15100    46.11850    52.11487    57.55491    60.42712
+ 1089   -10.01664    -9.70429    -7.91558    -6.94416    -5.86151     0.17100     2.03600     7.25740    18.77827    27.53327
+         34.52657    39.20887    53.03213    61.44954    65.43993    -8.02709    -7.75194    -5.84652    -4.63982    -3.37982
+          1.26261     3.16112     7.98398    19.71537    28.62214    35.48422    40.03395    53.98013    62.35407    67.12530
+ 1090   -10.08865    -9.00070    -8.52505    -7.26366    -5.82481    -1.66409     1.58690     9.57500    21.65649    31.41585
+         34.34758    37.81666    51.39580    63.76926   107.31586    -8.34633    -7.13120    -6.49075    -4.80974    -3.32618
+         -0.40106     2.89704    10.27143    22.46099    32.37313    35.43562    38.90132    52.28610    64.69427   107.88173
+ 1091   -10.42654    -8.97576    -8.11464    -7.17245    -5.86315    -3.22602     1.40473    12.53966    24.04286    26.89089
+         35.30901    41.06489    50.63127    65.96422   113.69546    -8.87676    -6.98631    -6.33926    -4.50991    -3.35427
+         -1.80732     2.82681    13.19585    24.73402    27.78536    36.43026    42.17659    51.56309    66.90880   114.49639
+ 1092   -10.68287    -9.23427    -7.15013    -7.00369    -6.15577    -4.24929     1.32029    15.77307    19.49335    27.48731
+         33.18440    45.61418    50.85359    67.33028    96.00901    -9.21696    -7.26848    -5.53459    -4.22539    -3.68236
+         -2.59794     2.79545    16.39526    20.12102    28.25163    34.32554    46.74959    51.90997    68.28709    97.59808
+ 1093   -10.68284    -9.23421    -7.14930    -7.00387    -6.15727    -4.24859     1.32036    15.77167    19.49303    27.48962
+         33.18423    45.61432    50.85330    67.33020    96.00922    -9.21682    -7.26818    -5.53235    -4.22608    -3.68927
+         -2.59323     2.79554    16.39435    20.12035    28.25323    34.32621    46.74957    51.90977    68.28714    97.59839
+ 1094   -10.42645    -8.97544    -8.11413    -7.17310    -5.86459    -3.22503     1.40494    12.53767    24.04115    26.89347
+         35.30998    41.06521    50.63183    65.96404   113.69614    -8.87640    -6.98494    -6.33683    -4.51237    -3.36310
+         -1.80078     2.82711    13.19453    24.73232    27.78647    36.43322    42.17649    51.56324    66.90895   114.49783
+ 1095   -10.08857    -9.00040    -8.52395    -7.26521    -5.82578    -1.66332     1.58724     9.57313    21.65878    31.41122
+         34.34789    37.81791    51.39998    63.76904   107.31632    -8.34604    -7.12939    -6.48642    -4.81559    -3.33173
+         -0.39706     2.89764    10.27058    22.46218    32.36821    35.43536    38.90569    52.28837    64.69450   107.88327
+ 1096   -10.01657    -9.70411    -7.91347    -6.94681    -5.86214     0.17160     2.03640     7.25598    18.77986    27.53345
+         34.52555    39.20149    53.04272    61.44935    65.44053    -8.02692    -7.75065    -5.83801    -4.65017    -3.38338
+          1.26526     3.16200     7.98372    19.71600    28.62169    35.48118    40.03235    53.98762    62.35433    67.12633
+ 1097   -10.24724   -10.20294    -7.12883    -6.37589    -5.91355     2.20407     2.97195     5.53199    17.45947    21.47567
+         26.31339    45.01434    50.18108    56.65402    59.53914    -8.17359    -8.16003    -4.94917    -4.02955    -3.44794
+          3.08635     3.84925     6.22413    18.58050    22.61494    27.15105    46.10677    52.12289    57.56286    60.42735
+ 1098   -10.49524   -10.49523    -6.38005    -5.95719    -5.95370     4.28137     4.28503     4.50921    16.65867    16.65937
+         18.18394    46.27140    53.15191    58.32145    58.33993    -8.40559    -8.40536    -4.03319    -3.50924    -3.49714
+          4.89519     4.89891     5.10022    17.94149    17.94255    19.22215    48.40387    54.01817    59.19895    59.21318
+ 1099   -10.59297   -10.59027    -5.97136    -5.96858    -5.90675     3.93472     5.44416     5.44769    14.41377    14.48720
+         17.05314    45.81788    57.19890    57.90680    57.92062    -8.50936    -8.47584    -3.52522    -3.51508    -3.42843
+          4.48586     5.85472     5.85878    15.70986    15.92369    18.28036    47.93072    58.05928    58.78058    58.79126
diff --git a/tests/data/parsers/siesta/Fe/Fe.FA b/tests/data/parsers/siesta/Fe/Fe.FA
new file mode 100644
index 0000000000000000000000000000000000000000..8b08e5f75d49d11d9197be221ce2592a17525c41
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.FA
@@ -0,0 +1,2 @@
+     1
+     1   -0.000000    0.000000   -0.000000
diff --git a/tests/data/parsers/siesta/Fe/Fe.KP b/tests/data/parsers/siesta/Fe/Fe.KP
new file mode 100644
index 0000000000000000000000000000000000000000..6bc503c3bedab14780bdb4b0a83a9914a1f22d80
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.KP
@@ -0,0 +1,1100 @@
+  1099
+     1   -0.534696    0.000000   -0.534696       0.000910
+     2   -0.534696    0.089116   -0.445580       0.000910
+     3   -0.534696    0.178232   -0.356464       0.000910
+     4   -0.534696    0.267348   -0.267348       0.000910
+     5   -0.534696    0.356464   -0.178232       0.000910
+     6   -0.534696    0.445580   -0.089116       0.000910
+     7   -0.534696    0.534696    0.000000       0.000910
+     8   -0.534696    0.623812    0.089116       0.000910
+     9   -0.534696    0.712928    0.178232       0.000910
+    10   -0.534696    0.802044    0.267348       0.000910
+    11   -0.534696    0.891160    0.356464       0.000910
+    12   -0.534696    0.980276    0.445580       0.000910
+    13   -0.534696    1.069392    0.534696       0.000910
+    14   -0.445580   -0.089116   -0.534696       0.000910
+    15   -0.445580    0.000000   -0.445580       0.000910
+    16   -0.445580    0.089116   -0.356464       0.000910
+    17   -0.445580    0.178232   -0.267348       0.000910
+    18   -0.445580    0.267348   -0.178232       0.000910
+    19   -0.445580    0.356464   -0.089116       0.000910
+    20   -0.445580    0.445580    0.000000       0.000910
+    21   -0.445580    0.534696    0.089116       0.000910
+    22   -0.445580    0.623812    0.178232       0.000910
+    23   -0.445580    0.712928    0.267348       0.000910
+    24   -0.445580    0.802044    0.356464       0.000910
+    25   -0.445580    0.891160    0.445580       0.000910
+    26   -0.445580    0.980276    0.534696       0.000910
+    27   -0.356464   -0.178232   -0.534696       0.000910
+    28   -0.356464   -0.089116   -0.445580       0.000910
+    29   -0.356464    0.000000   -0.356464       0.000910
+    30   -0.356464    0.089116   -0.267348       0.000910
+    31   -0.356464    0.178232   -0.178232       0.000910
+    32   -0.356464    0.267348   -0.089116       0.000910
+    33   -0.356464    0.356464    0.000000       0.000910
+    34   -0.356464    0.445580    0.089116       0.000910
+    35   -0.356464    0.534696    0.178232       0.000910
+    36   -0.356464    0.623812    0.267348       0.000910
+    37   -0.356464    0.712928    0.356464       0.000910
+    38   -0.356464    0.802044    0.445580       0.000910
+    39   -0.356464    0.891160    0.534696       0.000910
+    40   -0.267348   -0.267348   -0.534696       0.000910
+    41   -0.267348   -0.178232   -0.445580       0.000910
+    42   -0.267348   -0.089116   -0.356464       0.000910
+    43   -0.267348    0.000000   -0.267348       0.000910
+    44   -0.267348    0.089116   -0.178232       0.000910
+    45   -0.267348    0.178232   -0.089116       0.000910
+    46   -0.267348    0.267348    0.000000       0.000910
+    47   -0.267348    0.356464    0.089116       0.000910
+    48   -0.267348    0.445580    0.178232       0.000910
+    49   -0.267348    0.534696    0.267348       0.000910
+    50   -0.267348    0.623812    0.356464       0.000910
+    51   -0.267348    0.712928    0.445580       0.000910
+    52   -0.267348    0.802044    0.534696       0.000910
+    53   -0.178232   -0.356464   -0.534696       0.000910
+    54   -0.178232   -0.267348   -0.445580       0.000910
+    55   -0.178232   -0.178232   -0.356464       0.000910
+    56   -0.178232   -0.089116   -0.267348       0.000910
+    57   -0.178232    0.000000   -0.178232       0.000910
+    58   -0.178232    0.089116   -0.089116       0.000910
+    59   -0.178232    0.178232    0.000000       0.000910
+    60   -0.178232    0.267348    0.089116       0.000910
+    61   -0.178232    0.356464    0.178232       0.000910
+    62   -0.178232    0.445580    0.267348       0.000910
+    63   -0.178232    0.534696    0.356464       0.000910
+    64   -0.178232    0.623812    0.445580       0.000910
+    65   -0.178232    0.712928    0.534696       0.000910
+    66   -0.089116   -0.445580   -0.534696       0.000910
+    67   -0.089116   -0.356464   -0.445580       0.000910
+    68   -0.089116   -0.267348   -0.356464       0.000910
+    69   -0.089116   -0.178232   -0.267348       0.000910
+    70   -0.089116   -0.089116   -0.178232       0.000910
+    71   -0.089116    0.000000   -0.089116       0.000910
+    72   -0.089116    0.089116    0.000000       0.000910
+    73   -0.089116    0.178232    0.089116       0.000910
+    74   -0.089116    0.267348    0.178232       0.000910
+    75   -0.089116    0.356464    0.267348       0.000910
+    76   -0.089116    0.445580    0.356464       0.000910
+    77   -0.089116    0.534696    0.445580       0.000910
+    78   -0.089116    0.623812    0.534696       0.000910
+    79    0.000000   -0.534696   -0.534696       0.000910
+    80    0.000000   -0.445580   -0.445580       0.000910
+    81    0.000000   -0.356464   -0.356464       0.000910
+    82    0.000000   -0.267348   -0.267348       0.000910
+    83    0.000000   -0.178232   -0.178232       0.000910
+    84    0.000000   -0.089116   -0.089116       0.000910
+    85    0.000000    0.000000    0.000000       0.000455
+    86   -0.445580    0.000000   -0.623812       0.000910
+    87   -0.445580    0.089116   -0.534696       0.000910
+    88   -0.445580    0.178232   -0.445580       0.000910
+    89   -0.445580    0.267348   -0.356464       0.000910
+    90   -0.445580    0.356464   -0.267348       0.000910
+    91   -0.445580    0.445580   -0.178232       0.000910
+    92   -0.445580    0.534696   -0.089116       0.000910
+    93   -0.445580    0.623812    0.000000       0.000910
+    94   -0.445580    0.712928    0.089116       0.000910
+    95   -0.445580    0.802044    0.178232       0.000910
+    96   -0.445580    0.891160    0.267348       0.000910
+    97   -0.445580    0.980276    0.356464       0.000910
+    98   -0.445580    1.069392    0.445580       0.000910
+    99   -0.356464   -0.089116   -0.623812       0.000910
+   100   -0.356464    0.000000   -0.534696       0.000910
+   101   -0.356464    0.089116   -0.445580       0.000910
+   102   -0.356464    0.178232   -0.356464       0.000910
+   103   -0.356464    0.267348   -0.267348       0.000910
+   104   -0.356464    0.356464   -0.178232       0.000910
+   105   -0.356464    0.445580   -0.089116       0.000910
+   106   -0.356464    0.534696    0.000000       0.000910
+   107   -0.356464    0.623812    0.089116       0.000910
+   108   -0.356464    0.712928    0.178232       0.000910
+   109   -0.356464    0.802044    0.267348       0.000910
+   110   -0.356464    0.891160    0.356464       0.000910
+   111   -0.356464    0.980276    0.445580       0.000910
+   112   -0.267348   -0.178232   -0.623812       0.000910
+   113   -0.267348   -0.089116   -0.534696       0.000910
+   114   -0.267348    0.000000   -0.445580       0.000910
+   115   -0.267348    0.089116   -0.356464       0.000910
+   116   -0.267348    0.178232   -0.267348       0.000910
+   117   -0.267348    0.267348   -0.178232       0.000910
+   118   -0.267348    0.356464   -0.089116       0.000910
+   119   -0.267348    0.445580    0.000000       0.000910
+   120   -0.267348    0.534696    0.089116       0.000910
+   121   -0.267348    0.623812    0.178232       0.000910
+   122   -0.267348    0.712928    0.267348       0.000910
+   123   -0.267348    0.802044    0.356464       0.000910
+   124   -0.267348    0.891160    0.445580       0.000910
+   125   -0.178232   -0.267348   -0.623812       0.000910
+   126   -0.178232   -0.178232   -0.534696       0.000910
+   127   -0.178232   -0.089116   -0.445580       0.000910
+   128   -0.178232    0.000000   -0.356464       0.000910
+   129   -0.178232    0.089116   -0.267348       0.000910
+   130   -0.178232    0.178232   -0.178232       0.000910
+   131   -0.178232    0.267348   -0.089116       0.000910
+   132   -0.178232    0.356464    0.000000       0.000910
+   133   -0.178232    0.445580    0.089116       0.000910
+   134   -0.178232    0.534696    0.178232       0.000910
+   135   -0.178232    0.623812    0.267348       0.000910
+   136   -0.178232    0.712928    0.356464       0.000910
+   137   -0.178232    0.802044    0.445580       0.000910
+   138   -0.089116   -0.356464   -0.623812       0.000910
+   139   -0.089116   -0.267348   -0.534696       0.000910
+   140   -0.089116   -0.178232   -0.445580       0.000910
+   141   -0.089116   -0.089116   -0.356464       0.000910
+   142   -0.089116    0.000000   -0.267348       0.000910
+   143   -0.089116    0.089116   -0.178232       0.000910
+   144   -0.089116    0.178232   -0.089116       0.000910
+   145   -0.089116    0.267348    0.000000       0.000910
+   146   -0.089116    0.356464    0.089116       0.000910
+   147   -0.089116    0.445580    0.178232       0.000910
+   148   -0.089116    0.534696    0.267348       0.000910
+   149   -0.089116    0.623812    0.356464       0.000910
+   150   -0.089116    0.712928    0.445580       0.000910
+   151    0.000000   -0.445580   -0.623812       0.000910
+   152    0.000000   -0.356464   -0.534696       0.000910
+   153    0.000000   -0.267348   -0.445580       0.000910
+   154    0.000000   -0.178232   -0.356464       0.000910
+   155    0.000000   -0.089116   -0.267348       0.000910
+   156    0.000000    0.000000   -0.178232       0.000910
+   157    0.000000    0.089116   -0.089116       0.000910
+   158    0.000000    0.178232    0.000000       0.000910
+   159    0.000000    0.267348    0.089116       0.000910
+   160    0.000000    0.356464    0.178232       0.000910
+   161    0.000000    0.445580    0.267348       0.000910
+   162    0.000000    0.534696    0.356464       0.000910
+   163    0.000000    0.623812    0.445580       0.000910
+   164    0.089116   -0.534696   -0.623812       0.000910
+   165    0.089116   -0.445580   -0.534696       0.000910
+   166    0.089116   -0.356464   -0.445580       0.000910
+   167    0.089116   -0.267348   -0.356464       0.000910
+   168    0.089116   -0.178232   -0.267348       0.000910
+   169    0.089116   -0.089116   -0.178232       0.000910
+   170    0.089116    0.000000   -0.089116       0.000910
+   171    0.089116    0.089116    0.000000       0.000910
+   172    0.089116    0.178232    0.089116       0.000910
+   173    0.089116    0.267348    0.178232       0.000910
+   174    0.089116    0.356464    0.267348       0.000910
+   175    0.089116    0.445580    0.356464       0.000910
+   176    0.089116    0.534696    0.445580       0.000910
+   177    0.178232   -0.623812   -0.623812       0.000910
+   178    0.178232   -0.534696   -0.534696       0.000910
+   179    0.178232   -0.445580   -0.445580       0.000910
+   180    0.178232   -0.356464   -0.356464       0.000910
+   181    0.178232   -0.267348   -0.267348       0.000910
+   182    0.178232   -0.178232   -0.178232       0.000910
+   183    0.178232   -0.089116   -0.089116       0.000910
+   184    0.178232    0.000000    0.000000       0.000910
+   185    0.178232    0.089116    0.089116       0.000910
+   186    0.178232    0.178232    0.178232       0.000910
+   187    0.178232    0.267348    0.267348       0.000910
+   188    0.178232    0.356464    0.356464       0.000910
+   189    0.178232    0.445580    0.445580       0.000910
+   190    0.267348   -0.712928   -0.623812       0.000910
+   191    0.267348   -0.623812   -0.534696       0.000910
+   192    0.267348   -0.534696   -0.445580       0.000910
+   193    0.267348   -0.445580   -0.356464       0.000910
+   194    0.267348   -0.356464   -0.267348       0.000910
+   195    0.267348   -0.267348   -0.178232       0.000910
+   196    0.267348   -0.178232   -0.089116       0.000910
+   197    0.267348   -0.089116    0.000000       0.000910
+   198    0.267348    0.000000    0.089116       0.000910
+   199    0.267348    0.089116    0.178232       0.000910
+   200    0.267348    0.178232    0.267348       0.000910
+   201    0.267348    0.267348    0.356464       0.000910
+   202    0.267348    0.356464    0.445580       0.000910
+   203    0.356464   -0.802044   -0.623812       0.000910
+   204    0.356464   -0.712928   -0.534696       0.000910
+   205    0.356464   -0.623812   -0.445580       0.000910
+   206    0.356464   -0.534696   -0.356464       0.000910
+   207    0.356464   -0.445580   -0.267348       0.000910
+   208    0.356464   -0.356464   -0.178232       0.000910
+   209    0.356464   -0.267348   -0.089116       0.000910
+   210    0.356464   -0.178232    0.000000       0.000910
+   211    0.356464   -0.089116    0.089116       0.000910
+   212    0.356464    0.000000    0.178232       0.000910
+   213    0.356464    0.089116    0.267348       0.000910
+   214    0.356464    0.178232    0.356464       0.000910
+   215    0.356464    0.267348    0.445580       0.000910
+   216    0.445580   -0.891160   -0.623812       0.000910
+   217    0.445580   -0.802044   -0.534696       0.000910
+   218    0.445580   -0.712928   -0.445580       0.000910
+   219    0.445580   -0.623812   -0.356464       0.000910
+   220    0.445580   -0.534696   -0.267348       0.000910
+   221    0.445580   -0.445580   -0.178232       0.000910
+   222    0.445580   -0.356464   -0.089116       0.000910
+   223    0.445580   -0.267348    0.000000       0.000910
+   224    0.445580   -0.178232    0.089116       0.000910
+   225    0.445580   -0.089116    0.178232       0.000910
+   226    0.445580    0.000000    0.267348       0.000910
+   227    0.445580    0.089116    0.356464       0.000910
+   228    0.445580    0.178232    0.445580       0.000910
+   229    0.534696   -0.980276   -0.623812       0.000910
+   230    0.534696   -0.891160   -0.534696       0.000910
+   231    0.534696   -0.802044   -0.445580       0.000910
+   232    0.534696   -0.712928   -0.356464       0.000910
+   233    0.534696   -0.623812   -0.267348       0.000910
+   234    0.534696   -0.534696   -0.178232       0.000910
+   235    0.534696   -0.445580   -0.089116       0.000910
+   236    0.534696   -0.356464    0.000000       0.000910
+   237    0.534696   -0.267348    0.089116       0.000910
+   238    0.534696   -0.178232    0.178232       0.000910
+   239    0.534696   -0.089116    0.267348       0.000910
+   240    0.534696    0.000000    0.356464       0.000910
+   241    0.534696    0.089116    0.445580       0.000910
+   242    0.623812   -1.069392   -0.623812       0.000910
+   243    0.623812   -0.980276   -0.534696       0.000910
+   244    0.623812   -0.891160   -0.445580       0.000910
+   245    0.623812   -0.802044   -0.356464       0.000910
+   246    0.623812   -0.712928   -0.267348       0.000910
+   247    0.623812   -0.623812   -0.178232       0.000910
+   248    0.623812   -0.534696   -0.089116       0.000910
+   249    0.623812   -0.445580    0.000000       0.000910
+   250    0.623812   -0.356464    0.089116       0.000910
+   251    0.623812   -0.267348    0.178232       0.000910
+   252    0.623812   -0.178232    0.267348       0.000910
+   253    0.623812   -0.089116    0.356464       0.000910
+   254    0.623812    0.000000    0.445580       0.000910
+   255   -0.356464    0.000000   -0.712928       0.000910
+   256   -0.356464    0.089116   -0.623812       0.000910
+   257   -0.356464    0.178232   -0.534696       0.000910
+   258   -0.356464    0.267348   -0.445580       0.000910
+   259   -0.356464    0.356464   -0.356464       0.000910
+   260   -0.356464    0.445580   -0.267348       0.000910
+   261   -0.356464    0.534696   -0.178232       0.000910
+   262   -0.356464    0.623812   -0.089116       0.000910
+   263   -0.356464    0.712928    0.000000       0.000910
+   264   -0.356464    0.802044    0.089116       0.000910
+   265   -0.356464    0.891160    0.178232       0.000910
+   266   -0.356464    0.980276    0.267348       0.000910
+   267   -0.356464    1.069392    0.356464       0.000910
+   268   -0.267348   -0.089116   -0.712928       0.000910
+   269   -0.267348    0.000000   -0.623812       0.000910
+   270   -0.267348    0.089116   -0.534696       0.000910
+   271   -0.267348    0.178232   -0.445580       0.000910
+   272   -0.267348    0.267348   -0.356464       0.000910
+   273   -0.267348    0.356464   -0.267348       0.000910
+   274   -0.267348    0.445580   -0.178232       0.000910
+   275   -0.267348    0.534696   -0.089116       0.000910
+   276   -0.267348    0.623812    0.000000       0.000910
+   277   -0.267348    0.712928    0.089116       0.000910
+   278   -0.267348    0.802044    0.178232       0.000910
+   279   -0.267348    0.891160    0.267348       0.000910
+   280   -0.267348    0.980276    0.356464       0.000910
+   281   -0.178232   -0.178232   -0.712928       0.000910
+   282   -0.178232   -0.089116   -0.623812       0.000910
+   283   -0.178232    0.000000   -0.534696       0.000910
+   284   -0.178232    0.089116   -0.445580       0.000910
+   285   -0.178232    0.178232   -0.356464       0.000910
+   286   -0.178232    0.267348   -0.267348       0.000910
+   287   -0.178232    0.356464   -0.178232       0.000910
+   288   -0.178232    0.445580   -0.089116       0.000910
+   289   -0.178232    0.534696    0.000000       0.000910
+   290   -0.178232    0.623812    0.089116       0.000910
+   291   -0.178232    0.712928    0.178232       0.000910
+   292   -0.178232    0.802044    0.267348       0.000910
+   293   -0.178232    0.891160    0.356464       0.000910
+   294   -0.089116   -0.267348   -0.712928       0.000910
+   295   -0.089116   -0.178232   -0.623812       0.000910
+   296   -0.089116   -0.089116   -0.534696       0.000910
+   297   -0.089116    0.000000   -0.445580       0.000910
+   298   -0.089116    0.089116   -0.356464       0.000910
+   299   -0.089116    0.178232   -0.267348       0.000910
+   300   -0.089116    0.267348   -0.178232       0.000910
+   301   -0.089116    0.356464   -0.089116       0.000910
+   302   -0.089116    0.445580    0.000000       0.000910
+   303   -0.089116    0.534696    0.089116       0.000910
+   304   -0.089116    0.623812    0.178232       0.000910
+   305   -0.089116    0.712928    0.267348       0.000910
+   306   -0.089116    0.802044    0.356464       0.000910
+   307    0.000000   -0.356464   -0.712928       0.000910
+   308    0.000000   -0.267348   -0.623812       0.000910
+   309    0.000000   -0.178232   -0.534696       0.000910
+   310    0.000000   -0.089116   -0.445580       0.000910
+   311    0.000000    0.000000   -0.356464       0.000910
+   312    0.000000    0.089116   -0.267348       0.000910
+   313    0.000000    0.178232   -0.178232       0.000910
+   314    0.000000    0.267348   -0.089116       0.000910
+   315    0.000000    0.356464    0.000000       0.000910
+   316    0.000000    0.445580    0.089116       0.000910
+   317    0.000000    0.534696    0.178232       0.000910
+   318    0.000000    0.623812    0.267348       0.000910
+   319    0.000000    0.712928    0.356464       0.000910
+   320    0.089116   -0.445580   -0.712928       0.000910
+   321    0.089116   -0.356464   -0.623812       0.000910
+   322    0.089116   -0.267348   -0.534696       0.000910
+   323    0.089116   -0.178232   -0.445580       0.000910
+   324    0.089116   -0.089116   -0.356464       0.000910
+   325    0.089116    0.000000   -0.267348       0.000910
+   326    0.089116    0.089116   -0.178232       0.000910
+   327    0.089116    0.178232   -0.089116       0.000910
+   328    0.089116    0.267348    0.000000       0.000910
+   329    0.089116    0.356464    0.089116       0.000910
+   330    0.089116    0.445580    0.178232       0.000910
+   331    0.089116    0.534696    0.267348       0.000910
+   332    0.089116    0.623812    0.356464       0.000910
+   333    0.178232   -0.534696   -0.712928       0.000910
+   334    0.178232   -0.445580   -0.623812       0.000910
+   335    0.178232   -0.356464   -0.534696       0.000910
+   336    0.178232   -0.267348   -0.445580       0.000910
+   337    0.178232   -0.178232   -0.356464       0.000910
+   338    0.178232   -0.089116   -0.267348       0.000910
+   339    0.178232    0.000000   -0.178232       0.000910
+   340    0.178232    0.089116   -0.089116       0.000910
+   341    0.178232    0.178232    0.000000       0.000910
+   342    0.178232    0.267348    0.089116       0.000910
+   343    0.178232    0.356464    0.178232       0.000910
+   344    0.178232    0.445580    0.267348       0.000910
+   345    0.178232    0.534696    0.356464       0.000910
+   346    0.267348   -0.623812   -0.712928       0.000910
+   347    0.267348   -0.534696   -0.623812       0.000910
+   348    0.267348   -0.445580   -0.534696       0.000910
+   349    0.267348   -0.356464   -0.445580       0.000910
+   350    0.267348   -0.267348   -0.356464       0.000910
+   351    0.267348   -0.178232   -0.267348       0.000910
+   352    0.267348   -0.089116   -0.178232       0.000910
+   353    0.267348    0.000000   -0.089116       0.000910
+   354    0.267348    0.089116    0.000000       0.000910
+   355    0.267348    0.178232    0.089116       0.000910
+   356    0.267348    0.267348    0.178232       0.000910
+   357    0.267348    0.356464    0.267348       0.000910
+   358    0.267348    0.445580    0.356464       0.000910
+   359    0.356464   -0.712928   -0.712928       0.000910
+   360    0.356464   -0.623812   -0.623812       0.000910
+   361    0.356464   -0.534696   -0.534696       0.000910
+   362    0.356464   -0.445580   -0.445580       0.000910
+   363    0.356464   -0.356464   -0.356464       0.000910
+   364    0.356464   -0.267348   -0.267348       0.000910
+   365    0.356464   -0.178232   -0.178232       0.000910
+   366    0.356464   -0.089116   -0.089116       0.000910
+   367    0.356464    0.000000    0.000000       0.000910
+   368    0.356464    0.089116    0.089116       0.000910
+   369    0.356464    0.178232    0.178232       0.000910
+   370    0.356464    0.267348    0.267348       0.000910
+   371    0.356464    0.356464    0.356464       0.000910
+   372    0.445580   -0.802044   -0.712928       0.000910
+   373    0.445580   -0.712928   -0.623812       0.000910
+   374    0.445580   -0.623812   -0.534696       0.000910
+   375    0.445580   -0.534696   -0.445580       0.000910
+   376    0.445580   -0.445580   -0.356464       0.000910
+   377    0.445580   -0.356464   -0.267348       0.000910
+   378    0.445580   -0.267348   -0.178232       0.000910
+   379    0.445580   -0.178232   -0.089116       0.000910
+   380    0.445580   -0.089116    0.000000       0.000910
+   381    0.445580    0.000000    0.089116       0.000910
+   382    0.445580    0.089116    0.178232       0.000910
+   383    0.445580    0.178232    0.267348       0.000910
+   384    0.445580    0.267348    0.356464       0.000910
+   385    0.534696   -0.891160   -0.712928       0.000910
+   386    0.534696   -0.802044   -0.623812       0.000910
+   387    0.534696   -0.712928   -0.534696       0.000910
+   388    0.534696   -0.623812   -0.445580       0.000910
+   389    0.534696   -0.534696   -0.356464       0.000910
+   390    0.534696   -0.445580   -0.267348       0.000910
+   391    0.534696   -0.356464   -0.178232       0.000910
+   392    0.534696   -0.267348   -0.089116       0.000910
+   393    0.534696   -0.178232    0.000000       0.000910
+   394    0.534696   -0.089116    0.089116       0.000910
+   395    0.534696    0.000000    0.178232       0.000910
+   396    0.534696    0.089116    0.267348       0.000910
+   397    0.534696    0.178232    0.356464       0.000910
+   398    0.623812   -0.980276   -0.712928       0.000910
+   399    0.623812   -0.891160   -0.623812       0.000910
+   400    0.623812   -0.802044   -0.534696       0.000910
+   401    0.623812   -0.712928   -0.445580       0.000910
+   402    0.623812   -0.623812   -0.356464       0.000910
+   403    0.623812   -0.534696   -0.267348       0.000910
+   404    0.623812   -0.445580   -0.178232       0.000910
+   405    0.623812   -0.356464   -0.089116       0.000910
+   406    0.623812   -0.267348    0.000000       0.000910
+   407    0.623812   -0.178232    0.089116       0.000910
+   408    0.623812   -0.089116    0.178232       0.000910
+   409    0.623812    0.000000    0.267348       0.000910
+   410    0.623812    0.089116    0.356464       0.000910
+   411    0.712928   -1.069392   -0.712928       0.000910
+   412    0.712928   -0.980276   -0.623812       0.000910
+   413    0.712928   -0.891160   -0.534696       0.000910
+   414    0.712928   -0.802044   -0.445580       0.000910
+   415    0.712928   -0.712928   -0.356464       0.000910
+   416    0.712928   -0.623812   -0.267348       0.000910
+   417    0.712928   -0.534696   -0.178232       0.000910
+   418    0.712928   -0.445580   -0.089116       0.000910
+   419    0.712928   -0.356464    0.000000       0.000910
+   420    0.712928   -0.267348    0.089116       0.000910
+   421    0.712928   -0.178232    0.178232       0.000910
+   422    0.712928   -0.089116    0.267348       0.000910
+   423    0.712928    0.000000    0.356464       0.000910
+   424   -0.267348    0.000000   -0.802044       0.000910
+   425   -0.267348    0.089116   -0.712928       0.000910
+   426   -0.267348    0.178232   -0.623812       0.000910
+   427   -0.267348    0.267348   -0.534696       0.000910
+   428   -0.267348    0.356464   -0.445580       0.000910
+   429   -0.267348    0.445580   -0.356464       0.000910
+   430   -0.267348    0.534696   -0.267348       0.000910
+   431   -0.267348    0.623812   -0.178232       0.000910
+   432   -0.267348    0.712928   -0.089116       0.000910
+   433   -0.267348    0.802044    0.000000       0.000910
+   434   -0.267348    0.891160    0.089116       0.000910
+   435   -0.267348    0.980276    0.178232       0.000910
+   436   -0.267348    1.069392    0.267348       0.000910
+   437   -0.178232   -0.089116   -0.802044       0.000910
+   438   -0.178232    0.000000   -0.712928       0.000910
+   439   -0.178232    0.089116   -0.623812       0.000910
+   440   -0.178232    0.178232   -0.534696       0.000910
+   441   -0.178232    0.267348   -0.445580       0.000910
+   442   -0.178232    0.356464   -0.356464       0.000910
+   443   -0.178232    0.445580   -0.267348       0.000910
+   444   -0.178232    0.534696   -0.178232       0.000910
+   445   -0.178232    0.623812   -0.089116       0.000910
+   446   -0.178232    0.712928    0.000000       0.000910
+   447   -0.178232    0.802044    0.089116       0.000910
+   448   -0.178232    0.891160    0.178232       0.000910
+   449   -0.178232    0.980276    0.267348       0.000910
+   450   -0.089116   -0.178232   -0.802044       0.000910
+   451   -0.089116   -0.089116   -0.712928       0.000910
+   452   -0.089116    0.000000   -0.623812       0.000910
+   453   -0.089116    0.089116   -0.534696       0.000910
+   454   -0.089116    0.178232   -0.445580       0.000910
+   455   -0.089116    0.267348   -0.356464       0.000910
+   456   -0.089116    0.356464   -0.267348       0.000910
+   457   -0.089116    0.445580   -0.178232       0.000910
+   458   -0.089116    0.534696   -0.089116       0.000910
+   459   -0.089116    0.623812    0.000000       0.000910
+   460   -0.089116    0.712928    0.089116       0.000910
+   461   -0.089116    0.802044    0.178232       0.000910
+   462   -0.089116    0.891160    0.267348       0.000910
+   463    0.000000   -0.267348   -0.802044       0.000910
+   464    0.000000   -0.178232   -0.712928       0.000910
+   465    0.000000   -0.089116   -0.623812       0.000910
+   466    0.000000    0.000000   -0.534696       0.000910
+   467    0.000000    0.089116   -0.445580       0.000910
+   468    0.000000    0.178232   -0.356464       0.000910
+   469    0.000000    0.267348   -0.267348       0.000910
+   470    0.000000    0.356464   -0.178232       0.000910
+   471    0.000000    0.445580   -0.089116       0.000910
+   472    0.000000    0.534696    0.000000       0.000910
+   473    0.000000    0.623812    0.089116       0.000910
+   474    0.000000    0.712928    0.178232       0.000910
+   475    0.000000    0.802044    0.267348       0.000910
+   476    0.089116   -0.356464   -0.802044       0.000910
+   477    0.089116   -0.267348   -0.712928       0.000910
+   478    0.089116   -0.178232   -0.623812       0.000910
+   479    0.089116   -0.089116   -0.534696       0.000910
+   480    0.089116    0.000000   -0.445580       0.000910
+   481    0.089116    0.089116   -0.356464       0.000910
+   482    0.089116    0.178232   -0.267348       0.000910
+   483    0.089116    0.267348   -0.178232       0.000910
+   484    0.089116    0.356464   -0.089116       0.000910
+   485    0.089116    0.445580    0.000000       0.000910
+   486    0.089116    0.534696    0.089116       0.000910
+   487    0.089116    0.623812    0.178232       0.000910
+   488    0.089116    0.712928    0.267348       0.000910
+   489    0.178232   -0.445580   -0.802044       0.000910
+   490    0.178232   -0.356464   -0.712928       0.000910
+   491    0.178232   -0.267348   -0.623812       0.000910
+   492    0.178232   -0.178232   -0.534696       0.000910
+   493    0.178232   -0.089116   -0.445580       0.000910
+   494    0.178232    0.000000   -0.356464       0.000910
+   495    0.178232    0.089116   -0.267348       0.000910
+   496    0.178232    0.178232   -0.178232       0.000910
+   497    0.178232    0.267348   -0.089116       0.000910
+   498    0.178232    0.356464    0.000000       0.000910
+   499    0.178232    0.445580    0.089116       0.000910
+   500    0.178232    0.534696    0.178232       0.000910
+   501    0.178232    0.623812    0.267348       0.000910
+   502    0.267348   -0.534696   -0.802044       0.000910
+   503    0.267348   -0.445580   -0.712928       0.000910
+   504    0.267348   -0.356464   -0.623812       0.000910
+   505    0.267348   -0.267348   -0.534696       0.000910
+   506    0.267348   -0.178232   -0.445580       0.000910
+   507    0.267348   -0.089116   -0.356464       0.000910
+   508    0.267348    0.000000   -0.267348       0.000910
+   509    0.267348    0.089116   -0.178232       0.000910
+   510    0.267348    0.178232   -0.089116       0.000910
+   511    0.267348    0.267348    0.000000       0.000910
+   512    0.267348    0.356464    0.089116       0.000910
+   513    0.267348    0.445580    0.178232       0.000910
+   514    0.267348    0.534696    0.267348       0.000910
+   515    0.356464   -0.623812   -0.802044       0.000910
+   516    0.356464   -0.534696   -0.712928       0.000910
+   517    0.356464   -0.445580   -0.623812       0.000910
+   518    0.356464   -0.356464   -0.534696       0.000910
+   519    0.356464   -0.267348   -0.445580       0.000910
+   520    0.356464   -0.178232   -0.356464       0.000910
+   521    0.356464   -0.089116   -0.267348       0.000910
+   522    0.356464    0.000000   -0.178232       0.000910
+   523    0.356464    0.089116   -0.089116       0.000910
+   524    0.356464    0.178232    0.000000       0.000910
+   525    0.356464    0.267348    0.089116       0.000910
+   526    0.356464    0.356464    0.178232       0.000910
+   527    0.356464    0.445580    0.267348       0.000910
+   528    0.445580   -0.712928   -0.802044       0.000910
+   529    0.445580   -0.623812   -0.712928       0.000910
+   530    0.445580   -0.534696   -0.623812       0.000910
+   531    0.445580   -0.445580   -0.534696       0.000910
+   532    0.445580   -0.356464   -0.445580       0.000910
+   533    0.445580   -0.267348   -0.356464       0.000910
+   534    0.445580   -0.178232   -0.267348       0.000910
+   535    0.445580   -0.089116   -0.178232       0.000910
+   536    0.445580    0.000000   -0.089116       0.000910
+   537    0.445580    0.089116    0.000000       0.000910
+   538    0.445580    0.178232    0.089116       0.000910
+   539    0.445580    0.267348    0.178232       0.000910
+   540    0.445580    0.356464    0.267348       0.000910
+   541    0.534696   -0.802044   -0.802044       0.000910
+   542    0.534696   -0.712928   -0.712928       0.000910
+   543    0.534696   -0.623812   -0.623812       0.000910
+   544    0.534696   -0.534696   -0.534696       0.000910
+   545    0.534696   -0.445580   -0.445580       0.000910
+   546    0.534696   -0.356464   -0.356464       0.000910
+   547    0.534696   -0.267348   -0.267348       0.000910
+   548    0.534696   -0.178232   -0.178232       0.000910
+   549    0.534696   -0.089116   -0.089116       0.000910
+   550    0.534696    0.000000    0.000000       0.000910
+   551    0.534696    0.089116    0.089116       0.000910
+   552    0.534696    0.178232    0.178232       0.000910
+   553    0.534696    0.267348    0.267348       0.000910
+   554    0.623812   -0.891160   -0.802044       0.000910
+   555    0.623812   -0.802044   -0.712928       0.000910
+   556    0.623812   -0.712928   -0.623812       0.000910
+   557    0.623812   -0.623812   -0.534696       0.000910
+   558    0.623812   -0.534696   -0.445580       0.000910
+   559    0.623812   -0.445580   -0.356464       0.000910
+   560    0.623812   -0.356464   -0.267348       0.000910
+   561    0.623812   -0.267348   -0.178232       0.000910
+   562    0.623812   -0.178232   -0.089116       0.000910
+   563    0.623812   -0.089116    0.000000       0.000910
+   564    0.623812    0.000000    0.089116       0.000910
+   565    0.623812    0.089116    0.178232       0.000910
+   566    0.623812    0.178232    0.267348       0.000910
+   567    0.712928   -0.980276   -0.802044       0.000910
+   568    0.712928   -0.891160   -0.712928       0.000910
+   569    0.712928   -0.802044   -0.623812       0.000910
+   570    0.712928   -0.712928   -0.534696       0.000910
+   571    0.712928   -0.623812   -0.445580       0.000910
+   572    0.712928   -0.534696   -0.356464       0.000910
+   573    0.712928   -0.445580   -0.267348       0.000910
+   574    0.712928   -0.356464   -0.178232       0.000910
+   575    0.712928   -0.267348   -0.089116       0.000910
+   576    0.712928   -0.178232    0.000000       0.000910
+   577    0.712928   -0.089116    0.089116       0.000910
+   578    0.712928    0.000000    0.178232       0.000910
+   579    0.712928    0.089116    0.267348       0.000910
+   580    0.802044   -1.069392   -0.802044       0.000910
+   581    0.802044   -0.980276   -0.712928       0.000910
+   582    0.802044   -0.891160   -0.623812       0.000910
+   583    0.802044   -0.802044   -0.534696       0.000910
+   584    0.802044   -0.712928   -0.445580       0.000910
+   585    0.802044   -0.623812   -0.356464       0.000910
+   586    0.802044   -0.534696   -0.267348       0.000910
+   587    0.802044   -0.445580   -0.178232       0.000910
+   588    0.802044   -0.356464   -0.089116       0.000910
+   589    0.802044   -0.267348    0.000000       0.000910
+   590    0.802044   -0.178232    0.089116       0.000910
+   591    0.802044   -0.089116    0.178232       0.000910
+   592    0.802044    0.000000    0.267348       0.000910
+   593   -0.178232    0.000000   -0.891160       0.000910
+   594   -0.178232    0.089116   -0.802044       0.000910
+   595   -0.178232    0.178232   -0.712928       0.000910
+   596   -0.178232    0.267348   -0.623812       0.000910
+   597   -0.178232    0.356464   -0.534696       0.000910
+   598   -0.178232    0.445580   -0.445580       0.000910
+   599   -0.178232    0.534696   -0.356464       0.000910
+   600   -0.178232    0.623812   -0.267348       0.000910
+   601   -0.178232    0.712928   -0.178232       0.000910
+   602   -0.178232    0.802044   -0.089116       0.000910
+   603   -0.178232    0.891160    0.000000       0.000910
+   604   -0.178232    0.980276    0.089116       0.000910
+   605   -0.178232    1.069392    0.178232       0.000910
+   606   -0.089116   -0.089116   -0.891160       0.000910
+   607   -0.089116    0.000000   -0.802044       0.000910
+   608   -0.089116    0.089116   -0.712928       0.000910
+   609   -0.089116    0.178232   -0.623812       0.000910
+   610   -0.089116    0.267348   -0.534696       0.000910
+   611   -0.089116    0.356464   -0.445580       0.000910
+   612   -0.089116    0.445580   -0.356464       0.000910
+   613   -0.089116    0.534696   -0.267348       0.000910
+   614   -0.089116    0.623812   -0.178232       0.000910
+   615   -0.089116    0.712928   -0.089116       0.000910
+   616   -0.089116    0.802044    0.000000       0.000910
+   617   -0.089116    0.891160    0.089116       0.000910
+   618   -0.089116    0.980276    0.178232       0.000910
+   619    0.000000   -0.178232   -0.891160       0.000910
+   620    0.000000   -0.089116   -0.802044       0.000910
+   621    0.000000    0.000000   -0.712928       0.000910
+   622    0.000000    0.089116   -0.623812       0.000910
+   623    0.000000    0.178232   -0.534696       0.000910
+   624    0.000000    0.267348   -0.445580       0.000910
+   625    0.000000    0.356464   -0.356464       0.000910
+   626    0.000000    0.445580   -0.267348       0.000910
+   627    0.000000    0.534696   -0.178232       0.000910
+   628    0.000000    0.623812   -0.089116       0.000910
+   629    0.000000    0.712928    0.000000       0.000910
+   630    0.000000    0.802044    0.089116       0.000910
+   631    0.000000    0.891160    0.178232       0.000910
+   632    0.089116   -0.267348   -0.891160       0.000910
+   633    0.089116   -0.178232   -0.802044       0.000910
+   634    0.089116   -0.089116   -0.712928       0.000910
+   635    0.089116    0.000000   -0.623812       0.000910
+   636    0.089116    0.089116   -0.534696       0.000910
+   637    0.089116    0.178232   -0.445580       0.000910
+   638    0.089116    0.267348   -0.356464       0.000910
+   639    0.089116    0.356464   -0.267348       0.000910
+   640    0.089116    0.445580   -0.178232       0.000910
+   641    0.089116    0.534696   -0.089116       0.000910
+   642    0.089116    0.623812    0.000000       0.000910
+   643    0.089116    0.712928    0.089116       0.000910
+   644    0.089116    0.802044    0.178232       0.000910
+   645    0.178232   -0.356464   -0.891160       0.000910
+   646    0.178232   -0.267348   -0.802044       0.000910
+   647    0.178232   -0.178232   -0.712928       0.000910
+   648    0.178232   -0.089116   -0.623812       0.000910
+   649    0.178232    0.000000   -0.534696       0.000910
+   650    0.178232    0.089116   -0.445580       0.000910
+   651    0.178232    0.178232   -0.356464       0.000910
+   652    0.178232    0.267348   -0.267348       0.000910
+   653    0.178232    0.356464   -0.178232       0.000910
+   654    0.178232    0.445580   -0.089116       0.000910
+   655    0.178232    0.534696    0.000000       0.000910
+   656    0.178232    0.623812    0.089116       0.000910
+   657    0.178232    0.712928    0.178232       0.000910
+   658    0.267348   -0.445580   -0.891160       0.000910
+   659    0.267348   -0.356464   -0.802044       0.000910
+   660    0.267348   -0.267348   -0.712928       0.000910
+   661    0.267348   -0.178232   -0.623812       0.000910
+   662    0.267348   -0.089116   -0.534696       0.000910
+   663    0.267348    0.000000   -0.445580       0.000910
+   664    0.267348    0.089116   -0.356464       0.000910
+   665    0.267348    0.178232   -0.267348       0.000910
+   666    0.267348    0.267348   -0.178232       0.000910
+   667    0.267348    0.356464   -0.089116       0.000910
+   668    0.267348    0.445580    0.000000       0.000910
+   669    0.267348    0.534696    0.089116       0.000910
+   670    0.267348    0.623812    0.178232       0.000910
+   671    0.356464   -0.534696   -0.891160       0.000910
+   672    0.356464   -0.445580   -0.802044       0.000910
+   673    0.356464   -0.356464   -0.712928       0.000910
+   674    0.356464   -0.267348   -0.623812       0.000910
+   675    0.356464   -0.178232   -0.534696       0.000910
+   676    0.356464   -0.089116   -0.445580       0.000910
+   677    0.356464    0.000000   -0.356464       0.000910
+   678    0.356464    0.089116   -0.267348       0.000910
+   679    0.356464    0.178232   -0.178232       0.000910
+   680    0.356464    0.267348   -0.089116       0.000910
+   681    0.356464    0.356464    0.000000       0.000910
+   682    0.356464    0.445580    0.089116       0.000910
+   683    0.356464    0.534696    0.178232       0.000910
+   684    0.445580   -0.623812   -0.891160       0.000910
+   685    0.445580   -0.534696   -0.802044       0.000910
+   686    0.445580   -0.445580   -0.712928       0.000910
+   687    0.445580   -0.356464   -0.623812       0.000910
+   688    0.445580   -0.267348   -0.534696       0.000910
+   689    0.445580   -0.178232   -0.445580       0.000910
+   690    0.445580   -0.089116   -0.356464       0.000910
+   691    0.445580    0.000000   -0.267348       0.000910
+   692    0.445580    0.089116   -0.178232       0.000910
+   693    0.445580    0.178232   -0.089116       0.000910
+   694    0.445580    0.267348    0.000000       0.000910
+   695    0.445580    0.356464    0.089116       0.000910
+   696    0.445580    0.445580    0.178232       0.000910
+   697    0.534696   -0.712928   -0.891160       0.000910
+   698    0.534696   -0.623812   -0.802044       0.000910
+   699    0.534696   -0.534696   -0.712928       0.000910
+   700    0.534696   -0.445580   -0.623812       0.000910
+   701    0.534696   -0.356464   -0.534696       0.000910
+   702    0.534696   -0.267348   -0.445580       0.000910
+   703    0.534696   -0.178232   -0.356464       0.000910
+   704    0.534696   -0.089116   -0.267348       0.000910
+   705    0.534696    0.000000   -0.178232       0.000910
+   706    0.534696    0.089116   -0.089116       0.000910
+   707    0.534696    0.178232    0.000000       0.000910
+   708    0.534696    0.267348    0.089116       0.000910
+   709    0.534696    0.356464    0.178232       0.000910
+   710    0.623812   -0.802044   -0.891160       0.000910
+   711    0.623812   -0.712928   -0.802044       0.000910
+   712    0.623812   -0.623812   -0.712928       0.000910
+   713    0.623812   -0.534696   -0.623812       0.000910
+   714    0.623812   -0.445580   -0.534696       0.000910
+   715    0.623812   -0.356464   -0.445580       0.000910
+   716    0.623812   -0.267348   -0.356464       0.000910
+   717    0.623812   -0.178232   -0.267348       0.000910
+   718    0.623812   -0.089116   -0.178232       0.000910
+   719    0.623812    0.000000   -0.089116       0.000910
+   720    0.623812    0.089116    0.000000       0.000910
+   721    0.623812    0.178232    0.089116       0.000910
+   722    0.623812    0.267348    0.178232       0.000910
+   723    0.712928   -0.891160   -0.891160       0.000910
+   724    0.712928   -0.802044   -0.802044       0.000910
+   725    0.712928   -0.712928   -0.712928       0.000910
+   726    0.712928   -0.623812   -0.623812       0.000910
+   727    0.712928   -0.534696   -0.534696       0.000910
+   728    0.712928   -0.445580   -0.445580       0.000910
+   729    0.712928   -0.356464   -0.356464       0.000910
+   730    0.712928   -0.267348   -0.267348       0.000910
+   731    0.712928   -0.178232   -0.178232       0.000910
+   732    0.712928   -0.089116   -0.089116       0.000910
+   733    0.712928    0.000000    0.000000       0.000910
+   734    0.712928    0.089116    0.089116       0.000910
+   735    0.712928    0.178232    0.178232       0.000910
+   736    0.802044   -0.980276   -0.891160       0.000910
+   737    0.802044   -0.891160   -0.802044       0.000910
+   738    0.802044   -0.802044   -0.712928       0.000910
+   739    0.802044   -0.712928   -0.623812       0.000910
+   740    0.802044   -0.623812   -0.534696       0.000910
+   741    0.802044   -0.534696   -0.445580       0.000910
+   742    0.802044   -0.445580   -0.356464       0.000910
+   743    0.802044   -0.356464   -0.267348       0.000910
+   744    0.802044   -0.267348   -0.178232       0.000910
+   745    0.802044   -0.178232   -0.089116       0.000910
+   746    0.802044   -0.089116    0.000000       0.000910
+   747    0.802044    0.000000    0.089116       0.000910
+   748    0.802044    0.089116    0.178232       0.000910
+   749    0.891160   -1.069392   -0.891160       0.000910
+   750    0.891160   -0.980276   -0.802044       0.000910
+   751    0.891160   -0.891160   -0.712928       0.000910
+   752    0.891160   -0.802044   -0.623812       0.000910
+   753    0.891160   -0.712928   -0.534696       0.000910
+   754    0.891160   -0.623812   -0.445580       0.000910
+   755    0.891160   -0.534696   -0.356464       0.000910
+   756    0.891160   -0.445580   -0.267348       0.000910
+   757    0.891160   -0.356464   -0.178232       0.000910
+   758    0.891160   -0.267348   -0.089116       0.000910
+   759    0.891160   -0.178232    0.000000       0.000910
+   760    0.891160   -0.089116    0.089116       0.000910
+   761    0.891160    0.000000    0.178232       0.000910
+   762   -0.089116    0.000000   -0.980276       0.000910
+   763   -0.089116    0.089116   -0.891160       0.000910
+   764   -0.089116    0.178232   -0.802044       0.000910
+   765   -0.089116    0.267348   -0.712928       0.000910
+   766   -0.089116    0.356464   -0.623812       0.000910
+   767   -0.089116    0.445580   -0.534696       0.000910
+   768   -0.089116    0.534696   -0.445580       0.000910
+   769   -0.089116    0.623812   -0.356464       0.000910
+   770   -0.089116    0.712928   -0.267348       0.000910
+   771   -0.089116    0.802044   -0.178232       0.000910
+   772   -0.089116    0.891160   -0.089116       0.000910
+   773   -0.089116    0.980276    0.000000       0.000910
+   774   -0.089116    1.069392    0.089116       0.000910
+   775    0.000000   -0.089116   -0.980276       0.000910
+   776    0.000000    0.000000   -0.891160       0.000910
+   777    0.000000    0.089116   -0.802044       0.000910
+   778    0.000000    0.178232   -0.712928       0.000910
+   779    0.000000    0.267348   -0.623812       0.000910
+   780    0.000000    0.356464   -0.534696       0.000910
+   781    0.000000    0.445580   -0.445580       0.000910
+   782    0.000000    0.534696   -0.356464       0.000910
+   783    0.000000    0.623812   -0.267348       0.000910
+   784    0.000000    0.712928   -0.178232       0.000910
+   785    0.000000    0.802044   -0.089116       0.000910
+   786    0.000000    0.891160    0.000000       0.000910
+   787    0.000000    0.980276    0.089116       0.000910
+   788    0.089116   -0.178232   -0.980276       0.000910
+   789    0.089116   -0.089116   -0.891160       0.000910
+   790    0.089116    0.000000   -0.802044       0.000910
+   791    0.089116    0.089116   -0.712928       0.000910
+   792    0.089116    0.178232   -0.623812       0.000910
+   793    0.089116    0.267348   -0.534696       0.000910
+   794    0.089116    0.356464   -0.445580       0.000910
+   795    0.089116    0.445580   -0.356464       0.000910
+   796    0.089116    0.534696   -0.267348       0.000910
+   797    0.089116    0.623812   -0.178232       0.000910
+   798    0.089116    0.712928   -0.089116       0.000910
+   799    0.089116    0.802044    0.000000       0.000910
+   800    0.089116    0.891160    0.089116       0.000910
+   801    0.178232   -0.267348   -0.980276       0.000910
+   802    0.178232   -0.178232   -0.891160       0.000910
+   803    0.178232   -0.089116   -0.802044       0.000910
+   804    0.178232    0.000000   -0.712928       0.000910
+   805    0.178232    0.089116   -0.623812       0.000910
+   806    0.178232    0.178232   -0.534696       0.000910
+   807    0.178232    0.267348   -0.445580       0.000910
+   808    0.178232    0.356464   -0.356464       0.000910
+   809    0.178232    0.445580   -0.267348       0.000910
+   810    0.178232    0.534696   -0.178232       0.000910
+   811    0.178232    0.623812   -0.089116       0.000910
+   812    0.178232    0.712928    0.000000       0.000910
+   813    0.178232    0.802044    0.089116       0.000910
+   814    0.267348   -0.356464   -0.980276       0.000910
+   815    0.267348   -0.267348   -0.891160       0.000910
+   816    0.267348   -0.178232   -0.802044       0.000910
+   817    0.267348   -0.089116   -0.712928       0.000910
+   818    0.267348    0.000000   -0.623812       0.000910
+   819    0.267348    0.089116   -0.534696       0.000910
+   820    0.267348    0.178232   -0.445580       0.000910
+   821    0.267348    0.267348   -0.356464       0.000910
+   822    0.267348    0.356464   -0.267348       0.000910
+   823    0.267348    0.445580   -0.178232       0.000910
+   824    0.267348    0.534696   -0.089116       0.000910
+   825    0.267348    0.623812    0.000000       0.000910
+   826    0.267348    0.712928    0.089116       0.000910
+   827    0.356464   -0.445580   -0.980276       0.000910
+   828    0.356464   -0.356464   -0.891160       0.000910
+   829    0.356464   -0.267348   -0.802044       0.000910
+   830    0.356464   -0.178232   -0.712928       0.000910
+   831    0.356464   -0.089116   -0.623812       0.000910
+   832    0.356464    0.000000   -0.534696       0.000910
+   833    0.356464    0.089116   -0.445580       0.000910
+   834    0.356464    0.178232   -0.356464       0.000910
+   835    0.356464    0.267348   -0.267348       0.000910
+   836    0.356464    0.356464   -0.178232       0.000910
+   837    0.356464    0.445580   -0.089116       0.000910
+   838    0.356464    0.534696    0.000000       0.000910
+   839    0.356464    0.623812    0.089116       0.000910
+   840    0.445580   -0.534696   -0.980276       0.000910
+   841    0.445580   -0.445580   -0.891160       0.000910
+   842    0.445580   -0.356464   -0.802044       0.000910
+   843    0.445580   -0.267348   -0.712928       0.000910
+   844    0.445580   -0.178232   -0.623812       0.000910
+   845    0.445580   -0.089116   -0.534696       0.000910
+   846    0.445580    0.000000   -0.445580       0.000910
+   847    0.445580    0.089116   -0.356464       0.000910
+   848    0.445580    0.178232   -0.267348       0.000910
+   849    0.445580    0.267348   -0.178232       0.000910
+   850    0.445580    0.356464   -0.089116       0.000910
+   851    0.445580    0.445580    0.000000       0.000910
+   852    0.445580    0.534696    0.089116       0.000910
+   853    0.534696   -0.623812   -0.980276       0.000910
+   854    0.534696   -0.534696   -0.891160       0.000910
+   855    0.534696   -0.445580   -0.802044       0.000910
+   856    0.534696   -0.356464   -0.712928       0.000910
+   857    0.534696   -0.267348   -0.623812       0.000910
+   858    0.534696   -0.178232   -0.534696       0.000910
+   859    0.534696   -0.089116   -0.445580       0.000910
+   860    0.534696    0.000000   -0.356464       0.000910
+   861    0.534696    0.089116   -0.267348       0.000910
+   862    0.534696    0.178232   -0.178232       0.000910
+   863    0.534696    0.267348   -0.089116       0.000910
+   864    0.534696    0.356464    0.000000       0.000910
+   865    0.534696    0.445580    0.089116       0.000910
+   866    0.623812   -0.712928   -0.980276       0.000910
+   867    0.623812   -0.623812   -0.891160       0.000910
+   868    0.623812   -0.534696   -0.802044       0.000910
+   869    0.623812   -0.445580   -0.712928       0.000910
+   870    0.623812   -0.356464   -0.623812       0.000910
+   871    0.623812   -0.267348   -0.534696       0.000910
+   872    0.623812   -0.178232   -0.445580       0.000910
+   873    0.623812   -0.089116   -0.356464       0.000910
+   874    0.623812    0.000000   -0.267348       0.000910
+   875    0.623812    0.089116   -0.178232       0.000910
+   876    0.623812    0.178232   -0.089116       0.000910
+   877    0.623812    0.267348    0.000000       0.000910
+   878    0.623812    0.356464    0.089116       0.000910
+   879    0.712928   -0.802044   -0.980276       0.000910
+   880    0.712928   -0.712928   -0.891160       0.000910
+   881    0.712928   -0.623812   -0.802044       0.000910
+   882    0.712928   -0.534696   -0.712928       0.000910
+   883    0.712928   -0.445580   -0.623812       0.000910
+   884    0.712928   -0.356464   -0.534696       0.000910
+   885    0.712928   -0.267348   -0.445580       0.000910
+   886    0.712928   -0.178232   -0.356464       0.000910
+   887    0.712928   -0.089116   -0.267348       0.000910
+   888    0.712928    0.000000   -0.178232       0.000910
+   889    0.712928    0.089116   -0.089116       0.000910
+   890    0.712928    0.178232    0.000000       0.000910
+   891    0.712928    0.267348    0.089116       0.000910
+   892    0.802044   -0.891160   -0.980276       0.000910
+   893    0.802044   -0.802044   -0.891160       0.000910
+   894    0.802044   -0.712928   -0.802044       0.000910
+   895    0.802044   -0.623812   -0.712928       0.000910
+   896    0.802044   -0.534696   -0.623812       0.000910
+   897    0.802044   -0.445580   -0.534696       0.000910
+   898    0.802044   -0.356464   -0.445580       0.000910
+   899    0.802044   -0.267348   -0.356464       0.000910
+   900    0.802044   -0.178232   -0.267348       0.000910
+   901    0.802044   -0.089116   -0.178232       0.000910
+   902    0.802044    0.000000   -0.089116       0.000910
+   903    0.802044    0.089116    0.000000       0.000910
+   904    0.802044    0.178232    0.089116       0.000910
+   905    0.891160   -0.980276   -0.980276       0.000910
+   906    0.891160   -0.891160   -0.891160       0.000910
+   907    0.891160   -0.802044   -0.802044       0.000910
+   908    0.891160   -0.712928   -0.712928       0.000910
+   909    0.891160   -0.623812   -0.623812       0.000910
+   910    0.891160   -0.534696   -0.534696       0.000910
+   911    0.891160   -0.445580   -0.445580       0.000910
+   912    0.891160   -0.356464   -0.356464       0.000910
+   913    0.891160   -0.267348   -0.267348       0.000910
+   914    0.891160   -0.178232   -0.178232       0.000910
+   915    0.891160   -0.089116   -0.089116       0.000910
+   916    0.891160    0.000000    0.000000       0.000910
+   917    0.891160    0.089116    0.089116       0.000910
+   918    0.980276   -1.069392   -0.980276       0.000910
+   919    0.980276   -0.980276   -0.891160       0.000910
+   920    0.980276   -0.891160   -0.802044       0.000910
+   921    0.980276   -0.802044   -0.712928       0.000910
+   922    0.980276   -0.712928   -0.623812       0.000910
+   923    0.980276   -0.623812   -0.534696       0.000910
+   924    0.980276   -0.534696   -0.445580       0.000910
+   925    0.980276   -0.445580   -0.356464       0.000910
+   926    0.980276   -0.356464   -0.267348       0.000910
+   927    0.980276   -0.267348   -0.178232       0.000910
+   928    0.980276   -0.178232   -0.089116       0.000910
+   929    0.980276   -0.089116    0.000000       0.000910
+   930    0.980276    0.000000    0.089116       0.000910
+   931    0.000000    0.000000   -1.069392       0.000910
+   932    0.000000    0.089116   -0.980276       0.000910
+   933    0.000000    0.178232   -0.891160       0.000910
+   934    0.000000    0.267348   -0.802044       0.000910
+   935    0.000000    0.356464   -0.712928       0.000910
+   936    0.000000    0.445580   -0.623812       0.000910
+   937    0.000000    0.534696   -0.534696       0.000910
+   938    0.000000    0.623812   -0.445580       0.000910
+   939    0.000000    0.712928   -0.356464       0.000910
+   940    0.000000    0.802044   -0.267348       0.000910
+   941    0.000000    0.891160   -0.178232       0.000910
+   942    0.000000    0.980276   -0.089116       0.000910
+   943    0.000000    1.069392    0.000000       0.000910
+   944    0.089116   -0.089116   -1.069392       0.000910
+   945    0.089116    0.000000   -0.980276       0.000910
+   946    0.089116    0.089116   -0.891160       0.000910
+   947    0.089116    0.178232   -0.802044       0.000910
+   948    0.089116    0.267348   -0.712928       0.000910
+   949    0.089116    0.356464   -0.623812       0.000910
+   950    0.089116    0.445580   -0.534696       0.000910
+   951    0.089116    0.534696   -0.445580       0.000910
+   952    0.089116    0.623812   -0.356464       0.000910
+   953    0.089116    0.712928   -0.267348       0.000910
+   954    0.089116    0.802044   -0.178232       0.000910
+   955    0.089116    0.891160   -0.089116       0.000910
+   956    0.089116    0.980276    0.000000       0.000910
+   957    0.178232   -0.178232   -1.069392       0.000910
+   958    0.178232   -0.089116   -0.980276       0.000910
+   959    0.178232    0.000000   -0.891160       0.000910
+   960    0.178232    0.089116   -0.802044       0.000910
+   961    0.178232    0.178232   -0.712928       0.000910
+   962    0.178232    0.267348   -0.623812       0.000910
+   963    0.178232    0.356464   -0.534696       0.000910
+   964    0.178232    0.445580   -0.445580       0.000910
+   965    0.178232    0.534696   -0.356464       0.000910
+   966    0.178232    0.623812   -0.267348       0.000910
+   967    0.178232    0.712928   -0.178232       0.000910
+   968    0.178232    0.802044   -0.089116       0.000910
+   969    0.178232    0.891160    0.000000       0.000910
+   970    0.267348   -0.267348   -1.069392       0.000910
+   971    0.267348   -0.178232   -0.980276       0.000910
+   972    0.267348   -0.089116   -0.891160       0.000910
+   973    0.267348    0.000000   -0.802044       0.000910
+   974    0.267348    0.089116   -0.712928       0.000910
+   975    0.267348    0.178232   -0.623812       0.000910
+   976    0.267348    0.267348   -0.534696       0.000910
+   977    0.267348    0.356464   -0.445580       0.000910
+   978    0.267348    0.445580   -0.356464       0.000910
+   979    0.267348    0.534696   -0.267348       0.000910
+   980    0.267348    0.623812   -0.178232       0.000910
+   981    0.267348    0.712928   -0.089116       0.000910
+   982    0.267348    0.802044    0.000000       0.000910
+   983    0.356464   -0.356464   -1.069392       0.000910
+   984    0.356464   -0.267348   -0.980276       0.000910
+   985    0.356464   -0.178232   -0.891160       0.000910
+   986    0.356464   -0.089116   -0.802044       0.000910
+   987    0.356464    0.000000   -0.712928       0.000910
+   988    0.356464    0.089116   -0.623812       0.000910
+   989    0.356464    0.178232   -0.534696       0.000910
+   990    0.356464    0.267348   -0.445580       0.000910
+   991    0.356464    0.356464   -0.356464       0.000910
+   992    0.356464    0.445580   -0.267348       0.000910
+   993    0.356464    0.534696   -0.178232       0.000910
+   994    0.356464    0.623812   -0.089116       0.000910
+   995    0.356464    0.712928    0.000000       0.000910
+   996    0.445580   -0.445580   -1.069392       0.000910
+   997    0.445580   -0.356464   -0.980276       0.000910
+   998    0.445580   -0.267348   -0.891160       0.000910
+   999    0.445580   -0.178232   -0.802044       0.000910
+  1000    0.445580   -0.089116   -0.712928       0.000910
+  1001    0.445580    0.000000   -0.623812       0.000910
+  1002    0.445580    0.089116   -0.534696       0.000910
+  1003    0.445580    0.178232   -0.445580       0.000910
+  1004    0.445580    0.267348   -0.356464       0.000910
+  1005    0.445580    0.356464   -0.267348       0.000910
+  1006    0.445580    0.445580   -0.178232       0.000910
+  1007    0.445580    0.534696   -0.089116       0.000910
+  1008    0.445580    0.623812    0.000000       0.000910
+  1009    0.534696   -0.534696   -1.069392       0.000910
+  1010    0.534696   -0.445580   -0.980276       0.000910
+  1011    0.534696   -0.356464   -0.891160       0.000910
+  1012    0.534696   -0.267348   -0.802044       0.000910
+  1013    0.534696   -0.178232   -0.712928       0.000910
+  1014    0.534696   -0.089116   -0.623812       0.000910
+  1015    0.534696    0.000000   -0.534696       0.000910
+  1016    0.534696    0.089116   -0.445580       0.000910
+  1017    0.534696    0.178232   -0.356464       0.000910
+  1018    0.534696    0.267348   -0.267348       0.000910
+  1019    0.534696    0.356464   -0.178232       0.000910
+  1020    0.534696    0.445580   -0.089116       0.000910
+  1021    0.534696    0.534696    0.000000       0.000910
+  1022    0.623812   -0.623812   -1.069392       0.000910
+  1023    0.623812   -0.534696   -0.980276       0.000910
+  1024    0.623812   -0.445580   -0.891160       0.000910
+  1025    0.623812   -0.356464   -0.802044       0.000910
+  1026    0.623812   -0.267348   -0.712928       0.000910
+  1027    0.623812   -0.178232   -0.623812       0.000910
+  1028    0.623812   -0.089116   -0.534696       0.000910
+  1029    0.623812    0.000000   -0.445580       0.000910
+  1030    0.623812    0.089116   -0.356464       0.000910
+  1031    0.623812    0.178232   -0.267348       0.000910
+  1032    0.623812    0.267348   -0.178232       0.000910
+  1033    0.623812    0.356464   -0.089116       0.000910
+  1034    0.623812    0.445580    0.000000       0.000910
+  1035    0.712928   -0.712928   -1.069392       0.000910
+  1036    0.712928   -0.623812   -0.980276       0.000910
+  1037    0.712928   -0.534696   -0.891160       0.000910
+  1038    0.712928   -0.445580   -0.802044       0.000910
+  1039    0.712928   -0.356464   -0.712928       0.000910
+  1040    0.712928   -0.267348   -0.623812       0.000910
+  1041    0.712928   -0.178232   -0.534696       0.000910
+  1042    0.712928   -0.089116   -0.445580       0.000910
+  1043    0.712928    0.000000   -0.356464       0.000910
+  1044    0.712928    0.089116   -0.267348       0.000910
+  1045    0.712928    0.178232   -0.178232       0.000910
+  1046    0.712928    0.267348   -0.089116       0.000910
+  1047    0.712928    0.356464    0.000000       0.000910
+  1048    0.802044   -0.802044   -1.069392       0.000910
+  1049    0.802044   -0.712928   -0.980276       0.000910
+  1050    0.802044   -0.623812   -0.891160       0.000910
+  1051    0.802044   -0.534696   -0.802044       0.000910
+  1052    0.802044   -0.445580   -0.712928       0.000910
+  1053    0.802044   -0.356464   -0.623812       0.000910
+  1054    0.802044   -0.267348   -0.534696       0.000910
+  1055    0.802044   -0.178232   -0.445580       0.000910
+  1056    0.802044   -0.089116   -0.356464       0.000910
+  1057    0.802044    0.000000   -0.267348       0.000910
+  1058    0.802044    0.089116   -0.178232       0.000910
+  1059    0.802044    0.178232   -0.089116       0.000910
+  1060    0.802044    0.267348    0.000000       0.000910
+  1061    0.891160   -0.891160   -1.069392       0.000910
+  1062    0.891160   -0.802044   -0.980276       0.000910
+  1063    0.891160   -0.712928   -0.891160       0.000910
+  1064    0.891160   -0.623812   -0.802044       0.000910
+  1065    0.891160   -0.534696   -0.712928       0.000910
+  1066    0.891160   -0.445580   -0.623812       0.000910
+  1067    0.891160   -0.356464   -0.534696       0.000910
+  1068    0.891160   -0.267348   -0.445580       0.000910
+  1069    0.891160   -0.178232   -0.356464       0.000910
+  1070    0.891160   -0.089116   -0.267348       0.000910
+  1071    0.891160    0.000000   -0.178232       0.000910
+  1072    0.891160    0.089116   -0.089116       0.000910
+  1073    0.891160    0.178232    0.000000       0.000910
+  1074    0.980276   -0.980276   -1.069392       0.000910
+  1075    0.980276   -0.891160   -0.980276       0.000910
+  1076    0.980276   -0.802044   -0.891160       0.000910
+  1077    0.980276   -0.712928   -0.802044       0.000910
+  1078    0.980276   -0.623812   -0.712928       0.000910
+  1079    0.980276   -0.534696   -0.623812       0.000910
+  1080    0.980276   -0.445580   -0.534696       0.000910
+  1081    0.980276   -0.356464   -0.445580       0.000910
+  1082    0.980276   -0.267348   -0.356464       0.000910
+  1083    0.980276   -0.178232   -0.267348       0.000910
+  1084    0.980276   -0.089116   -0.178232       0.000910
+  1085    0.980276    0.000000   -0.089116       0.000910
+  1086    0.980276    0.089116    0.000000       0.000910
+  1087    1.069392   -1.069392   -1.069392       0.000910
+  1088    1.069392   -0.980276   -0.980276       0.000910
+  1089    1.069392   -0.891160   -0.891160       0.000910
+  1090    1.069392   -0.802044   -0.802044       0.000910
+  1091    1.069392   -0.712928   -0.712928       0.000910
+  1092    1.069392   -0.623812   -0.623812       0.000910
+  1093    1.069392   -0.534696   -0.534696       0.000910
+  1094    1.069392   -0.445580   -0.445580       0.000910
+  1095    1.069392   -0.356464   -0.356464       0.000910
+  1096    1.069392   -0.267348   -0.267348       0.000910
+  1097    1.069392   -0.178232   -0.178232       0.000910
+  1098    1.069392   -0.089116   -0.089116       0.000910
+  1099    1.069392    0.000000    0.000000       0.000910
diff --git a/tests/data/parsers/siesta/Fe/Fe.ORB_INDX b/tests/data/parsers/siesta/Fe/Fe.ORB_INDX
new file mode 100644
index 0000000000000000000000000000000000000000..77c6e02608ec5b820dfb6ba1ca346ae6d9ff9e48
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.ORB_INDX
@@ -0,0 +1,5167 @@
+     15    5145 = orbitals in unit cell and supercell. See end of file.
+
+    io    ia is   spec iao  n  l  m  z  p          sym      rc    isc     iuo
+     1     1  1     Fe   1  4  0  0  1  F            s   6.001  0  0  0     1
+     2     1  1     Fe   2  4  0  0  2  F            s   5.853  0  0  0     2
+     3     1  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  0  0     3
+     4     1  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  0  0     4
+     5     1  1     Fe   5  3  2  0  1  F          dz2   4.792  0  0  0     5
+     6     1  1     Fe   6  3  2  1  1  F          dxz   4.792  0  0  0     6
+     7     1  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  0  0     7
+     8     1  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  0  0     8
+     9     1  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  0  0     9
+    10     1  1     Fe  10  3  2  0  2  F          dz2   2.235  0  0  0    10
+    11     1  1     Fe  11  3  2  1  2  F          dxz   2.235  0  0  0    11
+    12     1  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  0  0    12
+    13     1  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  0  0    13
+    14     1  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  0  0    14
+    15     1  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  0  0    15
+    16     2  1     Fe   1  4  0  0  1  F            s   6.001  1  0  0     1
+    17     2  1     Fe   2  4  0  0  2  F            s   5.853  1  0  0     2
+    18     2  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  0  0     3
+    19     2  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  0  0     4
+    20     2  1     Fe   5  3  2  0  1  F          dz2   4.792  1  0  0     5
+    21     2  1     Fe   6  3  2  1  1  F          dxz   4.792  1  0  0     6
+    22     2  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  0  0     7
+    23     2  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  0  0     8
+    24     2  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  0  0     9
+    25     2  1     Fe  10  3  2  0  2  F          dz2   2.235  1  0  0    10
+    26     2  1     Fe  11  3  2  1  2  F          dxz   2.235  1  0  0    11
+    27     2  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  0  0    12
+    28     2  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  0  0    13
+    29     2  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  0  0    14
+    30     2  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  0  0    15
+    31     3  1     Fe   1  4  0  0  1  F            s   6.001  2  0  0     1
+    32     3  1     Fe   2  4  0  0  2  F            s   5.853  2  0  0     2
+    33     3  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  0  0     3
+    34     3  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  0  0     4
+    35     3  1     Fe   5  3  2  0  1  F          dz2   4.792  2  0  0     5
+    36     3  1     Fe   6  3  2  1  1  F          dxz   4.792  2  0  0     6
+    37     3  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  0  0     7
+    38     3  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  0  0     8
+    39     3  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  0  0     9
+    40     3  1     Fe  10  3  2  0  2  F          dz2   2.235  2  0  0    10
+    41     3  1     Fe  11  3  2  1  2  F          dxz   2.235  2  0  0    11
+    42     3  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  0  0    12
+    43     3  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  0  0    13
+    44     3  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  0  0    14
+    45     3  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  0  0    15
+    46     4  1     Fe   1  4  0  0  1  F            s   6.001  3  0  0     1
+    47     4  1     Fe   2  4  0  0  2  F            s   5.853  3  0  0     2
+    48     4  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  0  0     3
+    49     4  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  0  0     4
+    50     4  1     Fe   5  3  2  0  1  F          dz2   4.792  3  0  0     5
+    51     4  1     Fe   6  3  2  1  1  F          dxz   4.792  3  0  0     6
+    52     4  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  0  0     7
+    53     4  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  0  0     8
+    54     4  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  0  0     9
+    55     4  1     Fe  10  3  2  0  2  F          dz2   2.235  3  0  0    10
+    56     4  1     Fe  11  3  2  1  2  F          dxz   2.235  3  0  0    11
+    57     4  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  0  0    12
+    58     4  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  0  0    13
+    59     4  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  0  0    14
+    60     4  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  0  0    15
+    61     5  1     Fe   1  4  0  0  1  F            s   6.001 -3  0  0     1
+    62     5  1     Fe   2  4  0  0  2  F            s   5.853 -3  0  0     2
+    63     5  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  0  0     3
+    64     5  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  0  0     4
+    65     5  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  0  0     5
+    66     5  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  0  0     6
+    67     5  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  0  0     7
+    68     5  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  0  0     8
+    69     5  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  0  0     9
+    70     5  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  0  0    10
+    71     5  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  0  0    11
+    72     5  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  0  0    12
+    73     5  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  0  0    13
+    74     5  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  0  0    14
+    75     5  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  0  0    15
+    76     6  1     Fe   1  4  0  0  1  F            s   6.001 -2  0  0     1
+    77     6  1     Fe   2  4  0  0  2  F            s   5.853 -2  0  0     2
+    78     6  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  0  0     3
+    79     6  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  0  0     4
+    80     6  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  0  0     5
+    81     6  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  0  0     6
+    82     6  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  0  0     7
+    83     6  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  0  0     8
+    84     6  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  0  0     9
+    85     6  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  0  0    10
+    86     6  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  0  0    11
+    87     6  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  0  0    12
+    88     6  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  0  0    13
+    89     6  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  0  0    14
+    90     6  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  0  0    15
+    91     7  1     Fe   1  4  0  0  1  F            s   6.001 -1  0  0     1
+    92     7  1     Fe   2  4  0  0  2  F            s   5.853 -1  0  0     2
+    93     7  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  0  0     3
+    94     7  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  0  0     4
+    95     7  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  0  0     5
+    96     7  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  0  0     6
+    97     7  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  0  0     7
+    98     7  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  0  0     8
+    99     7  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  0  0     9
+   100     7  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  0  0    10
+   101     7  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  0  0    11
+   102     7  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  0  0    12
+   103     7  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  0  0    13
+   104     7  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  0  0    14
+   105     7  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  0  0    15
+   106     8  1     Fe   1  4  0  0  1  F            s   6.001  0  1  0     1
+   107     8  1     Fe   2  4  0  0  2  F            s   5.853  0  1  0     2
+   108     8  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  1  0     3
+   109     8  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  1  0     4
+   110     8  1     Fe   5  3  2  0  1  F          dz2   4.792  0  1  0     5
+   111     8  1     Fe   6  3  2  1  1  F          dxz   4.792  0  1  0     6
+   112     8  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  1  0     7
+   113     8  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  1  0     8
+   114     8  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  1  0     9
+   115     8  1     Fe  10  3  2  0  2  F          dz2   2.235  0  1  0    10
+   116     8  1     Fe  11  3  2  1  2  F          dxz   2.235  0  1  0    11
+   117     8  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  1  0    12
+   118     8  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  1  0    13
+   119     8  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  1  0    14
+   120     8  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  1  0    15
+   121     9  1     Fe   1  4  0  0  1  F            s   6.001  1  1  0     1
+   122     9  1     Fe   2  4  0  0  2  F            s   5.853  1  1  0     2
+   123     9  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  1  0     3
+   124     9  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  1  0     4
+   125     9  1     Fe   5  3  2  0  1  F          dz2   4.792  1  1  0     5
+   126     9  1     Fe   6  3  2  1  1  F          dxz   4.792  1  1  0     6
+   127     9  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  1  0     7
+   128     9  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  1  0     8
+   129     9  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  1  0     9
+   130     9  1     Fe  10  3  2  0  2  F          dz2   2.235  1  1  0    10
+   131     9  1     Fe  11  3  2  1  2  F          dxz   2.235  1  1  0    11
+   132     9  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  1  0    12
+   133     9  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  1  0    13
+   134     9  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  1  0    14
+   135     9  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  1  0    15
+   136    10  1     Fe   1  4  0  0  1  F            s   6.001  2  1  0     1
+   137    10  1     Fe   2  4  0  0  2  F            s   5.853  2  1  0     2
+   138    10  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  1  0     3
+   139    10  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  1  0     4
+   140    10  1     Fe   5  3  2  0  1  F          dz2   4.792  2  1  0     5
+   141    10  1     Fe   6  3  2  1  1  F          dxz   4.792  2  1  0     6
+   142    10  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  1  0     7
+   143    10  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  1  0     8
+   144    10  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  1  0     9
+   145    10  1     Fe  10  3  2  0  2  F          dz2   2.235  2  1  0    10
+   146    10  1     Fe  11  3  2  1  2  F          dxz   2.235  2  1  0    11
+   147    10  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  1  0    12
+   148    10  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  1  0    13
+   149    10  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  1  0    14
+   150    10  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  1  0    15
+   151    11  1     Fe   1  4  0  0  1  F            s   6.001  3  1  0     1
+   152    11  1     Fe   2  4  0  0  2  F            s   5.853  3  1  0     2
+   153    11  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  1  0     3
+   154    11  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  1  0     4
+   155    11  1     Fe   5  3  2  0  1  F          dz2   4.792  3  1  0     5
+   156    11  1     Fe   6  3  2  1  1  F          dxz   4.792  3  1  0     6
+   157    11  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  1  0     7
+   158    11  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  1  0     8
+   159    11  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  1  0     9
+   160    11  1     Fe  10  3  2  0  2  F          dz2   2.235  3  1  0    10
+   161    11  1     Fe  11  3  2  1  2  F          dxz   2.235  3  1  0    11
+   162    11  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  1  0    12
+   163    11  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  1  0    13
+   164    11  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  1  0    14
+   165    11  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  1  0    15
+   166    12  1     Fe   1  4  0  0  1  F            s   6.001 -3  1  0     1
+   167    12  1     Fe   2  4  0  0  2  F            s   5.853 -3  1  0     2
+   168    12  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  1  0     3
+   169    12  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  1  0     4
+   170    12  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  1  0     5
+   171    12  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  1  0     6
+   172    12  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  1  0     7
+   173    12  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  1  0     8
+   174    12  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  1  0     9
+   175    12  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  1  0    10
+   176    12  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  1  0    11
+   177    12  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  1  0    12
+   178    12  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  1  0    13
+   179    12  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  1  0    14
+   180    12  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  1  0    15
+   181    13  1     Fe   1  4  0  0  1  F            s   6.001 -2  1  0     1
+   182    13  1     Fe   2  4  0  0  2  F            s   5.853 -2  1  0     2
+   183    13  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  1  0     3
+   184    13  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  1  0     4
+   185    13  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  1  0     5
+   186    13  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  1  0     6
+   187    13  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  1  0     7
+   188    13  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  1  0     8
+   189    13  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  1  0     9
+   190    13  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  1  0    10
+   191    13  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  1  0    11
+   192    13  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  1  0    12
+   193    13  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  1  0    13
+   194    13  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  1  0    14
+   195    13  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  1  0    15
+   196    14  1     Fe   1  4  0  0  1  F            s   6.001 -1  1  0     1
+   197    14  1     Fe   2  4  0  0  2  F            s   5.853 -1  1  0     2
+   198    14  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  1  0     3
+   199    14  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  1  0     4
+   200    14  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  1  0     5
+   201    14  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  1  0     6
+   202    14  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  1  0     7
+   203    14  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  1  0     8
+   204    14  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  1  0     9
+   205    14  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  1  0    10
+   206    14  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  1  0    11
+   207    14  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  1  0    12
+   208    14  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  1  0    13
+   209    14  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  1  0    14
+   210    14  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  1  0    15
+   211    15  1     Fe   1  4  0  0  1  F            s   6.001  0  2  0     1
+   212    15  1     Fe   2  4  0  0  2  F            s   5.853  0  2  0     2
+   213    15  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  2  0     3
+   214    15  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  2  0     4
+   215    15  1     Fe   5  3  2  0  1  F          dz2   4.792  0  2  0     5
+   216    15  1     Fe   6  3  2  1  1  F          dxz   4.792  0  2  0     6
+   217    15  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  2  0     7
+   218    15  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  2  0     8
+   219    15  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  2  0     9
+   220    15  1     Fe  10  3  2  0  2  F          dz2   2.235  0  2  0    10
+   221    15  1     Fe  11  3  2  1  2  F          dxz   2.235  0  2  0    11
+   222    15  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  2  0    12
+   223    15  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  2  0    13
+   224    15  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  2  0    14
+   225    15  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  2  0    15
+   226    16  1     Fe   1  4  0  0  1  F            s   6.001  1  2  0     1
+   227    16  1     Fe   2  4  0  0  2  F            s   5.853  1  2  0     2
+   228    16  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  2  0     3
+   229    16  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  2  0     4
+   230    16  1     Fe   5  3  2  0  1  F          dz2   4.792  1  2  0     5
+   231    16  1     Fe   6  3  2  1  1  F          dxz   4.792  1  2  0     6
+   232    16  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  2  0     7
+   233    16  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  2  0     8
+   234    16  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  2  0     9
+   235    16  1     Fe  10  3  2  0  2  F          dz2   2.235  1  2  0    10
+   236    16  1     Fe  11  3  2  1  2  F          dxz   2.235  1  2  0    11
+   237    16  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  2  0    12
+   238    16  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  2  0    13
+   239    16  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  2  0    14
+   240    16  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  2  0    15
+   241    17  1     Fe   1  4  0  0  1  F            s   6.001  2  2  0     1
+   242    17  1     Fe   2  4  0  0  2  F            s   5.853  2  2  0     2
+   243    17  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  2  0     3
+   244    17  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  2  0     4
+   245    17  1     Fe   5  3  2  0  1  F          dz2   4.792  2  2  0     5
+   246    17  1     Fe   6  3  2  1  1  F          dxz   4.792  2  2  0     6
+   247    17  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  2  0     7
+   248    17  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  2  0     8
+   249    17  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  2  0     9
+   250    17  1     Fe  10  3  2  0  2  F          dz2   2.235  2  2  0    10
+   251    17  1     Fe  11  3  2  1  2  F          dxz   2.235  2  2  0    11
+   252    17  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  2  0    12
+   253    17  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  2  0    13
+   254    17  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  2  0    14
+   255    17  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  2  0    15
+   256    18  1     Fe   1  4  0  0  1  F            s   6.001  3  2  0     1
+   257    18  1     Fe   2  4  0  0  2  F            s   5.853  3  2  0     2
+   258    18  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  2  0     3
+   259    18  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  2  0     4
+   260    18  1     Fe   5  3  2  0  1  F          dz2   4.792  3  2  0     5
+   261    18  1     Fe   6  3  2  1  1  F          dxz   4.792  3  2  0     6
+   262    18  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  2  0     7
+   263    18  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  2  0     8
+   264    18  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  2  0     9
+   265    18  1     Fe  10  3  2  0  2  F          dz2   2.235  3  2  0    10
+   266    18  1     Fe  11  3  2  1  2  F          dxz   2.235  3  2  0    11
+   267    18  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  2  0    12
+   268    18  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  2  0    13
+   269    18  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  2  0    14
+   270    18  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  2  0    15
+   271    19  1     Fe   1  4  0  0  1  F            s   6.001 -3  2  0     1
+   272    19  1     Fe   2  4  0  0  2  F            s   5.853 -3  2  0     2
+   273    19  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  2  0     3
+   274    19  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  2  0     4
+   275    19  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  2  0     5
+   276    19  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  2  0     6
+   277    19  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  2  0     7
+   278    19  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  2  0     8
+   279    19  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  2  0     9
+   280    19  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  2  0    10
+   281    19  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  2  0    11
+   282    19  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  2  0    12
+   283    19  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  2  0    13
+   284    19  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  2  0    14
+   285    19  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  2  0    15
+   286    20  1     Fe   1  4  0  0  1  F            s   6.001 -2  2  0     1
+   287    20  1     Fe   2  4  0  0  2  F            s   5.853 -2  2  0     2
+   288    20  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  2  0     3
+   289    20  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  2  0     4
+   290    20  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  2  0     5
+   291    20  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  2  0     6
+   292    20  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  2  0     7
+   293    20  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  2  0     8
+   294    20  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  2  0     9
+   295    20  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  2  0    10
+   296    20  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  2  0    11
+   297    20  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  2  0    12
+   298    20  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  2  0    13
+   299    20  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  2  0    14
+   300    20  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  2  0    15
+   301    21  1     Fe   1  4  0  0  1  F            s   6.001 -1  2  0     1
+   302    21  1     Fe   2  4  0  0  2  F            s   5.853 -1  2  0     2
+   303    21  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  2  0     3
+   304    21  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  2  0     4
+   305    21  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  2  0     5
+   306    21  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  2  0     6
+   307    21  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  2  0     7
+   308    21  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  2  0     8
+   309    21  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  2  0     9
+   310    21  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  2  0    10
+   311    21  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  2  0    11
+   312    21  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  2  0    12
+   313    21  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  2  0    13
+   314    21  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  2  0    14
+   315    21  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  2  0    15
+   316    22  1     Fe   1  4  0  0  1  F            s   6.001  0  3  0     1
+   317    22  1     Fe   2  4  0  0  2  F            s   5.853  0  3  0     2
+   318    22  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  3  0     3
+   319    22  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  3  0     4
+   320    22  1     Fe   5  3  2  0  1  F          dz2   4.792  0  3  0     5
+   321    22  1     Fe   6  3  2  1  1  F          dxz   4.792  0  3  0     6
+   322    22  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  3  0     7
+   323    22  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  3  0     8
+   324    22  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  3  0     9
+   325    22  1     Fe  10  3  2  0  2  F          dz2   2.235  0  3  0    10
+   326    22  1     Fe  11  3  2  1  2  F          dxz   2.235  0  3  0    11
+   327    22  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  3  0    12
+   328    22  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  3  0    13
+   329    22  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  3  0    14
+   330    22  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  3  0    15
+   331    23  1     Fe   1  4  0  0  1  F            s   6.001  1  3  0     1
+   332    23  1     Fe   2  4  0  0  2  F            s   5.853  1  3  0     2
+   333    23  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  3  0     3
+   334    23  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  3  0     4
+   335    23  1     Fe   5  3  2  0  1  F          dz2   4.792  1  3  0     5
+   336    23  1     Fe   6  3  2  1  1  F          dxz   4.792  1  3  0     6
+   337    23  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  3  0     7
+   338    23  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  3  0     8
+   339    23  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  3  0     9
+   340    23  1     Fe  10  3  2  0  2  F          dz2   2.235  1  3  0    10
+   341    23  1     Fe  11  3  2  1  2  F          dxz   2.235  1  3  0    11
+   342    23  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  3  0    12
+   343    23  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  3  0    13
+   344    23  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  3  0    14
+   345    23  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  3  0    15
+   346    24  1     Fe   1  4  0  0  1  F            s   6.001  2  3  0     1
+   347    24  1     Fe   2  4  0  0  2  F            s   5.853  2  3  0     2
+   348    24  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  3  0     3
+   349    24  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  3  0     4
+   350    24  1     Fe   5  3  2  0  1  F          dz2   4.792  2  3  0     5
+   351    24  1     Fe   6  3  2  1  1  F          dxz   4.792  2  3  0     6
+   352    24  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  3  0     7
+   353    24  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  3  0     8
+   354    24  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  3  0     9
+   355    24  1     Fe  10  3  2  0  2  F          dz2   2.235  2  3  0    10
+   356    24  1     Fe  11  3  2  1  2  F          dxz   2.235  2  3  0    11
+   357    24  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  3  0    12
+   358    24  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  3  0    13
+   359    24  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  3  0    14
+   360    24  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  3  0    15
+   361    25  1     Fe   1  4  0  0  1  F            s   6.001  3  3  0     1
+   362    25  1     Fe   2  4  0  0  2  F            s   5.853  3  3  0     2
+   363    25  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  3  0     3
+   364    25  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  3  0     4
+   365    25  1     Fe   5  3  2  0  1  F          dz2   4.792  3  3  0     5
+   366    25  1     Fe   6  3  2  1  1  F          dxz   4.792  3  3  0     6
+   367    25  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  3  0     7
+   368    25  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  3  0     8
+   369    25  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  3  0     9
+   370    25  1     Fe  10  3  2  0  2  F          dz2   2.235  3  3  0    10
+   371    25  1     Fe  11  3  2  1  2  F          dxz   2.235  3  3  0    11
+   372    25  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  3  0    12
+   373    25  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  3  0    13
+   374    25  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  3  0    14
+   375    25  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  3  0    15
+   376    26  1     Fe   1  4  0  0  1  F            s   6.001 -3  3  0     1
+   377    26  1     Fe   2  4  0  0  2  F            s   5.853 -3  3  0     2
+   378    26  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  3  0     3
+   379    26  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  3  0     4
+   380    26  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  3  0     5
+   381    26  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  3  0     6
+   382    26  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  3  0     7
+   383    26  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  3  0     8
+   384    26  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  3  0     9
+   385    26  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  3  0    10
+   386    26  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  3  0    11
+   387    26  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  3  0    12
+   388    26  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  3  0    13
+   389    26  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  3  0    14
+   390    26  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  3  0    15
+   391    27  1     Fe   1  4  0  0  1  F            s   6.001 -2  3  0     1
+   392    27  1     Fe   2  4  0  0  2  F            s   5.853 -2  3  0     2
+   393    27  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  3  0     3
+   394    27  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  3  0     4
+   395    27  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  3  0     5
+   396    27  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  3  0     6
+   397    27  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  3  0     7
+   398    27  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  3  0     8
+   399    27  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  3  0     9
+   400    27  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  3  0    10
+   401    27  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  3  0    11
+   402    27  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  3  0    12
+   403    27  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  3  0    13
+   404    27  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  3  0    14
+   405    27  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  3  0    15
+   406    28  1     Fe   1  4  0  0  1  F            s   6.001 -1  3  0     1
+   407    28  1     Fe   2  4  0  0  2  F            s   5.853 -1  3  0     2
+   408    28  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  3  0     3
+   409    28  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  3  0     4
+   410    28  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  3  0     5
+   411    28  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  3  0     6
+   412    28  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  3  0     7
+   413    28  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  3  0     8
+   414    28  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  3  0     9
+   415    28  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  3  0    10
+   416    28  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  3  0    11
+   417    28  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  3  0    12
+   418    28  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  3  0    13
+   419    28  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  3  0    14
+   420    28  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  3  0    15
+   421    29  1     Fe   1  4  0  0  1  F            s   6.001  0 -3  0     1
+   422    29  1     Fe   2  4  0  0  2  F            s   5.853  0 -3  0     2
+   423    29  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -3  0     3
+   424    29  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -3  0     4
+   425    29  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -3  0     5
+   426    29  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -3  0     6
+   427    29  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -3  0     7
+   428    29  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -3  0     8
+   429    29  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -3  0     9
+   430    29  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -3  0    10
+   431    29  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -3  0    11
+   432    29  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -3  0    12
+   433    29  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -3  0    13
+   434    29  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -3  0    14
+   435    29  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -3  0    15
+   436    30  1     Fe   1  4  0  0  1  F            s   6.001  1 -3  0     1
+   437    30  1     Fe   2  4  0  0  2  F            s   5.853  1 -3  0     2
+   438    30  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -3  0     3
+   439    30  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -3  0     4
+   440    30  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -3  0     5
+   441    30  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -3  0     6
+   442    30  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -3  0     7
+   443    30  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -3  0     8
+   444    30  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -3  0     9
+   445    30  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -3  0    10
+   446    30  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -3  0    11
+   447    30  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -3  0    12
+   448    30  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -3  0    13
+   449    30  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -3  0    14
+   450    30  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -3  0    15
+   451    31  1     Fe   1  4  0  0  1  F            s   6.001  2 -3  0     1
+   452    31  1     Fe   2  4  0  0  2  F            s   5.853  2 -3  0     2
+   453    31  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -3  0     3
+   454    31  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -3  0     4
+   455    31  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -3  0     5
+   456    31  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -3  0     6
+   457    31  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -3  0     7
+   458    31  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -3  0     8
+   459    31  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -3  0     9
+   460    31  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -3  0    10
+   461    31  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -3  0    11
+   462    31  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -3  0    12
+   463    31  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -3  0    13
+   464    31  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -3  0    14
+   465    31  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -3  0    15
+   466    32  1     Fe   1  4  0  0  1  F            s   6.001  3 -3  0     1
+   467    32  1     Fe   2  4  0  0  2  F            s   5.853  3 -3  0     2
+   468    32  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -3  0     3
+   469    32  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -3  0     4
+   470    32  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -3  0     5
+   471    32  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -3  0     6
+   472    32  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -3  0     7
+   473    32  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -3  0     8
+   474    32  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -3  0     9
+   475    32  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -3  0    10
+   476    32  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -3  0    11
+   477    32  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -3  0    12
+   478    32  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -3  0    13
+   479    32  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -3  0    14
+   480    32  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -3  0    15
+   481    33  1     Fe   1  4  0  0  1  F            s   6.001 -3 -3  0     1
+   482    33  1     Fe   2  4  0  0  2  F            s   5.853 -3 -3  0     2
+   483    33  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -3  0     3
+   484    33  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -3  0     4
+   485    33  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -3  0     5
+   486    33  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -3  0     6
+   487    33  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -3  0     7
+   488    33  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -3  0     8
+   489    33  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -3  0     9
+   490    33  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -3  0    10
+   491    33  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -3  0    11
+   492    33  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -3  0    12
+   493    33  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -3  0    13
+   494    33  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -3  0    14
+   495    33  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -3  0    15
+   496    34  1     Fe   1  4  0  0  1  F            s   6.001 -2 -3  0     1
+   497    34  1     Fe   2  4  0  0  2  F            s   5.853 -2 -3  0     2
+   498    34  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -3  0     3
+   499    34  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -3  0     4
+   500    34  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -3  0     5
+   501    34  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -3  0     6
+   502    34  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -3  0     7
+   503    34  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -3  0     8
+   504    34  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -3  0     9
+   505    34  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -3  0    10
+   506    34  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -3  0    11
+   507    34  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -3  0    12
+   508    34  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -3  0    13
+   509    34  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -3  0    14
+   510    34  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -3  0    15
+   511    35  1     Fe   1  4  0  0  1  F            s   6.001 -1 -3  0     1
+   512    35  1     Fe   2  4  0  0  2  F            s   5.853 -1 -3  0     2
+   513    35  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -3  0     3
+   514    35  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -3  0     4
+   515    35  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -3  0     5
+   516    35  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -3  0     6
+   517    35  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -3  0     7
+   518    35  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -3  0     8
+   519    35  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -3  0     9
+   520    35  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -3  0    10
+   521    35  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -3  0    11
+   522    35  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -3  0    12
+   523    35  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -3  0    13
+   524    35  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -3  0    14
+   525    35  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -3  0    15
+   526    36  1     Fe   1  4  0  0  1  F            s   6.001  0 -2  0     1
+   527    36  1     Fe   2  4  0  0  2  F            s   5.853  0 -2  0     2
+   528    36  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -2  0     3
+   529    36  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -2  0     4
+   530    36  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -2  0     5
+   531    36  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -2  0     6
+   532    36  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -2  0     7
+   533    36  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -2  0     8
+   534    36  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -2  0     9
+   535    36  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -2  0    10
+   536    36  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -2  0    11
+   537    36  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -2  0    12
+   538    36  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -2  0    13
+   539    36  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -2  0    14
+   540    36  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -2  0    15
+   541    37  1     Fe   1  4  0  0  1  F            s   6.001  1 -2  0     1
+   542    37  1     Fe   2  4  0  0  2  F            s   5.853  1 -2  0     2
+   543    37  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -2  0     3
+   544    37  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -2  0     4
+   545    37  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -2  0     5
+   546    37  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -2  0     6
+   547    37  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -2  0     7
+   548    37  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -2  0     8
+   549    37  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -2  0     9
+   550    37  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -2  0    10
+   551    37  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -2  0    11
+   552    37  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -2  0    12
+   553    37  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -2  0    13
+   554    37  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -2  0    14
+   555    37  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -2  0    15
+   556    38  1     Fe   1  4  0  0  1  F            s   6.001  2 -2  0     1
+   557    38  1     Fe   2  4  0  0  2  F            s   5.853  2 -2  0     2
+   558    38  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -2  0     3
+   559    38  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -2  0     4
+   560    38  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -2  0     5
+   561    38  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -2  0     6
+   562    38  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -2  0     7
+   563    38  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -2  0     8
+   564    38  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -2  0     9
+   565    38  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -2  0    10
+   566    38  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -2  0    11
+   567    38  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -2  0    12
+   568    38  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -2  0    13
+   569    38  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -2  0    14
+   570    38  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -2  0    15
+   571    39  1     Fe   1  4  0  0  1  F            s   6.001  3 -2  0     1
+   572    39  1     Fe   2  4  0  0  2  F            s   5.853  3 -2  0     2
+   573    39  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -2  0     3
+   574    39  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -2  0     4
+   575    39  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -2  0     5
+   576    39  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -2  0     6
+   577    39  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -2  0     7
+   578    39  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -2  0     8
+   579    39  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -2  0     9
+   580    39  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -2  0    10
+   581    39  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -2  0    11
+   582    39  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -2  0    12
+   583    39  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -2  0    13
+   584    39  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -2  0    14
+   585    39  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -2  0    15
+   586    40  1     Fe   1  4  0  0  1  F            s   6.001 -3 -2  0     1
+   587    40  1     Fe   2  4  0  0  2  F            s   5.853 -3 -2  0     2
+   588    40  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -2  0     3
+   589    40  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -2  0     4
+   590    40  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -2  0     5
+   591    40  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -2  0     6
+   592    40  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -2  0     7
+   593    40  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -2  0     8
+   594    40  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -2  0     9
+   595    40  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -2  0    10
+   596    40  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -2  0    11
+   597    40  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -2  0    12
+   598    40  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -2  0    13
+   599    40  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -2  0    14
+   600    40  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -2  0    15
+   601    41  1     Fe   1  4  0  0  1  F            s   6.001 -2 -2  0     1
+   602    41  1     Fe   2  4  0  0  2  F            s   5.853 -2 -2  0     2
+   603    41  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -2  0     3
+   604    41  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -2  0     4
+   605    41  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -2  0     5
+   606    41  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -2  0     6
+   607    41  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -2  0     7
+   608    41  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -2  0     8
+   609    41  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -2  0     9
+   610    41  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -2  0    10
+   611    41  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -2  0    11
+   612    41  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -2  0    12
+   613    41  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -2  0    13
+   614    41  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -2  0    14
+   615    41  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -2  0    15
+   616    42  1     Fe   1  4  0  0  1  F            s   6.001 -1 -2  0     1
+   617    42  1     Fe   2  4  0  0  2  F            s   5.853 -1 -2  0     2
+   618    42  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -2  0     3
+   619    42  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -2  0     4
+   620    42  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -2  0     5
+   621    42  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -2  0     6
+   622    42  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -2  0     7
+   623    42  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -2  0     8
+   624    42  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -2  0     9
+   625    42  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -2  0    10
+   626    42  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -2  0    11
+   627    42  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -2  0    12
+   628    42  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -2  0    13
+   629    42  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -2  0    14
+   630    42  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -2  0    15
+   631    43  1     Fe   1  4  0  0  1  F            s   6.001  0 -1  0     1
+   632    43  1     Fe   2  4  0  0  2  F            s   5.853  0 -1  0     2
+   633    43  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -1  0     3
+   634    43  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -1  0     4
+   635    43  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -1  0     5
+   636    43  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -1  0     6
+   637    43  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -1  0     7
+   638    43  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -1  0     8
+   639    43  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -1  0     9
+   640    43  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -1  0    10
+   641    43  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -1  0    11
+   642    43  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -1  0    12
+   643    43  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -1  0    13
+   644    43  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -1  0    14
+   645    43  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -1  0    15
+   646    44  1     Fe   1  4  0  0  1  F            s   6.001  1 -1  0     1
+   647    44  1     Fe   2  4  0  0  2  F            s   5.853  1 -1  0     2
+   648    44  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -1  0     3
+   649    44  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -1  0     4
+   650    44  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -1  0     5
+   651    44  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -1  0     6
+   652    44  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -1  0     7
+   653    44  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -1  0     8
+   654    44  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -1  0     9
+   655    44  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -1  0    10
+   656    44  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -1  0    11
+   657    44  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -1  0    12
+   658    44  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -1  0    13
+   659    44  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -1  0    14
+   660    44  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -1  0    15
+   661    45  1     Fe   1  4  0  0  1  F            s   6.001  2 -1  0     1
+   662    45  1     Fe   2  4  0  0  2  F            s   5.853  2 -1  0     2
+   663    45  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -1  0     3
+   664    45  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -1  0     4
+   665    45  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -1  0     5
+   666    45  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -1  0     6
+   667    45  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -1  0     7
+   668    45  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -1  0     8
+   669    45  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -1  0     9
+   670    45  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -1  0    10
+   671    45  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -1  0    11
+   672    45  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -1  0    12
+   673    45  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -1  0    13
+   674    45  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -1  0    14
+   675    45  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -1  0    15
+   676    46  1     Fe   1  4  0  0  1  F            s   6.001  3 -1  0     1
+   677    46  1     Fe   2  4  0  0  2  F            s   5.853  3 -1  0     2
+   678    46  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -1  0     3
+   679    46  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -1  0     4
+   680    46  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -1  0     5
+   681    46  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -1  0     6
+   682    46  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -1  0     7
+   683    46  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -1  0     8
+   684    46  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -1  0     9
+   685    46  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -1  0    10
+   686    46  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -1  0    11
+   687    46  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -1  0    12
+   688    46  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -1  0    13
+   689    46  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -1  0    14
+   690    46  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -1  0    15
+   691    47  1     Fe   1  4  0  0  1  F            s   6.001 -3 -1  0     1
+   692    47  1     Fe   2  4  0  0  2  F            s   5.853 -3 -1  0     2
+   693    47  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -1  0     3
+   694    47  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -1  0     4
+   695    47  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -1  0     5
+   696    47  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -1  0     6
+   697    47  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -1  0     7
+   698    47  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -1  0     8
+   699    47  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -1  0     9
+   700    47  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -1  0    10
+   701    47  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -1  0    11
+   702    47  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -1  0    12
+   703    47  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -1  0    13
+   704    47  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -1  0    14
+   705    47  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -1  0    15
+   706    48  1     Fe   1  4  0  0  1  F            s   6.001 -2 -1  0     1
+   707    48  1     Fe   2  4  0  0  2  F            s   5.853 -2 -1  0     2
+   708    48  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -1  0     3
+   709    48  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -1  0     4
+   710    48  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -1  0     5
+   711    48  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -1  0     6
+   712    48  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -1  0     7
+   713    48  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -1  0     8
+   714    48  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -1  0     9
+   715    48  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -1  0    10
+   716    48  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -1  0    11
+   717    48  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -1  0    12
+   718    48  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -1  0    13
+   719    48  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -1  0    14
+   720    48  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -1  0    15
+   721    49  1     Fe   1  4  0  0  1  F            s   6.001 -1 -1  0     1
+   722    49  1     Fe   2  4  0  0  2  F            s   5.853 -1 -1  0     2
+   723    49  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -1  0     3
+   724    49  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -1  0     4
+   725    49  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -1  0     5
+   726    49  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -1  0     6
+   727    49  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -1  0     7
+   728    49  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -1  0     8
+   729    49  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -1  0     9
+   730    49  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -1  0    10
+   731    49  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -1  0    11
+   732    49  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -1  0    12
+   733    49  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -1  0    13
+   734    49  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -1  0    14
+   735    49  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -1  0    15
+   736    50  1     Fe   1  4  0  0  1  F            s   6.001  0  0  1     1
+   737    50  1     Fe   2  4  0  0  2  F            s   5.853  0  0  1     2
+   738    50  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  0  1     3
+   739    50  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  0  1     4
+   740    50  1     Fe   5  3  2  0  1  F          dz2   4.792  0  0  1     5
+   741    50  1     Fe   6  3  2  1  1  F          dxz   4.792  0  0  1     6
+   742    50  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  0  1     7
+   743    50  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  0  1     8
+   744    50  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  0  1     9
+   745    50  1     Fe  10  3  2  0  2  F          dz2   2.235  0  0  1    10
+   746    50  1     Fe  11  3  2  1  2  F          dxz   2.235  0  0  1    11
+   747    50  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  0  1    12
+   748    50  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  0  1    13
+   749    50  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  0  1    14
+   750    50  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  0  1    15
+   751    51  1     Fe   1  4  0  0  1  F            s   6.001  1  0  1     1
+   752    51  1     Fe   2  4  0  0  2  F            s   5.853  1  0  1     2
+   753    51  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  0  1     3
+   754    51  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  0  1     4
+   755    51  1     Fe   5  3  2  0  1  F          dz2   4.792  1  0  1     5
+   756    51  1     Fe   6  3  2  1  1  F          dxz   4.792  1  0  1     6
+   757    51  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  0  1     7
+   758    51  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  0  1     8
+   759    51  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  0  1     9
+   760    51  1     Fe  10  3  2  0  2  F          dz2   2.235  1  0  1    10
+   761    51  1     Fe  11  3  2  1  2  F          dxz   2.235  1  0  1    11
+   762    51  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  0  1    12
+   763    51  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  0  1    13
+   764    51  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  0  1    14
+   765    51  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  0  1    15
+   766    52  1     Fe   1  4  0  0  1  F            s   6.001  2  0  1     1
+   767    52  1     Fe   2  4  0  0  2  F            s   5.853  2  0  1     2
+   768    52  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  0  1     3
+   769    52  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  0  1     4
+   770    52  1     Fe   5  3  2  0  1  F          dz2   4.792  2  0  1     5
+   771    52  1     Fe   6  3  2  1  1  F          dxz   4.792  2  0  1     6
+   772    52  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  0  1     7
+   773    52  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  0  1     8
+   774    52  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  0  1     9
+   775    52  1     Fe  10  3  2  0  2  F          dz2   2.235  2  0  1    10
+   776    52  1     Fe  11  3  2  1  2  F          dxz   2.235  2  0  1    11
+   777    52  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  0  1    12
+   778    52  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  0  1    13
+   779    52  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  0  1    14
+   780    52  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  0  1    15
+   781    53  1     Fe   1  4  0  0  1  F            s   6.001  3  0  1     1
+   782    53  1     Fe   2  4  0  0  2  F            s   5.853  3  0  1     2
+   783    53  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  0  1     3
+   784    53  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  0  1     4
+   785    53  1     Fe   5  3  2  0  1  F          dz2   4.792  3  0  1     5
+   786    53  1     Fe   6  3  2  1  1  F          dxz   4.792  3  0  1     6
+   787    53  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  0  1     7
+   788    53  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  0  1     8
+   789    53  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  0  1     9
+   790    53  1     Fe  10  3  2  0  2  F          dz2   2.235  3  0  1    10
+   791    53  1     Fe  11  3  2  1  2  F          dxz   2.235  3  0  1    11
+   792    53  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  0  1    12
+   793    53  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  0  1    13
+   794    53  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  0  1    14
+   795    53  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  0  1    15
+   796    54  1     Fe   1  4  0  0  1  F            s   6.001 -3  0  1     1
+   797    54  1     Fe   2  4  0  0  2  F            s   5.853 -3  0  1     2
+   798    54  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  0  1     3
+   799    54  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  0  1     4
+   800    54  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  0  1     5
+   801    54  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  0  1     6
+   802    54  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  0  1     7
+   803    54  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  0  1     8
+   804    54  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  0  1     9
+   805    54  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  0  1    10
+   806    54  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  0  1    11
+   807    54  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  0  1    12
+   808    54  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  0  1    13
+   809    54  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  0  1    14
+   810    54  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  0  1    15
+   811    55  1     Fe   1  4  0  0  1  F            s   6.001 -2  0  1     1
+   812    55  1     Fe   2  4  0  0  2  F            s   5.853 -2  0  1     2
+   813    55  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  0  1     3
+   814    55  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  0  1     4
+   815    55  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  0  1     5
+   816    55  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  0  1     6
+   817    55  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  0  1     7
+   818    55  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  0  1     8
+   819    55  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  0  1     9
+   820    55  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  0  1    10
+   821    55  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  0  1    11
+   822    55  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  0  1    12
+   823    55  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  0  1    13
+   824    55  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  0  1    14
+   825    55  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  0  1    15
+   826    56  1     Fe   1  4  0  0  1  F            s   6.001 -1  0  1     1
+   827    56  1     Fe   2  4  0  0  2  F            s   5.853 -1  0  1     2
+   828    56  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  0  1     3
+   829    56  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  0  1     4
+   830    56  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  0  1     5
+   831    56  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  0  1     6
+   832    56  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  0  1     7
+   833    56  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  0  1     8
+   834    56  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  0  1     9
+   835    56  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  0  1    10
+   836    56  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  0  1    11
+   837    56  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  0  1    12
+   838    56  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  0  1    13
+   839    56  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  0  1    14
+   840    56  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  0  1    15
+   841    57  1     Fe   1  4  0  0  1  F            s   6.001  0  1  1     1
+   842    57  1     Fe   2  4  0  0  2  F            s   5.853  0  1  1     2
+   843    57  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  1  1     3
+   844    57  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  1  1     4
+   845    57  1     Fe   5  3  2  0  1  F          dz2   4.792  0  1  1     5
+   846    57  1     Fe   6  3  2  1  1  F          dxz   4.792  0  1  1     6
+   847    57  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  1  1     7
+   848    57  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  1  1     8
+   849    57  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  1  1     9
+   850    57  1     Fe  10  3  2  0  2  F          dz2   2.235  0  1  1    10
+   851    57  1     Fe  11  3  2  1  2  F          dxz   2.235  0  1  1    11
+   852    57  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  1  1    12
+   853    57  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  1  1    13
+   854    57  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  1  1    14
+   855    57  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  1  1    15
+   856    58  1     Fe   1  4  0  0  1  F            s   6.001  1  1  1     1
+   857    58  1     Fe   2  4  0  0  2  F            s   5.853  1  1  1     2
+   858    58  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  1  1     3
+   859    58  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  1  1     4
+   860    58  1     Fe   5  3  2  0  1  F          dz2   4.792  1  1  1     5
+   861    58  1     Fe   6  3  2  1  1  F          dxz   4.792  1  1  1     6
+   862    58  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  1  1     7
+   863    58  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  1  1     8
+   864    58  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  1  1     9
+   865    58  1     Fe  10  3  2  0  2  F          dz2   2.235  1  1  1    10
+   866    58  1     Fe  11  3  2  1  2  F          dxz   2.235  1  1  1    11
+   867    58  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  1  1    12
+   868    58  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  1  1    13
+   869    58  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  1  1    14
+   870    58  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  1  1    15
+   871    59  1     Fe   1  4  0  0  1  F            s   6.001  2  1  1     1
+   872    59  1     Fe   2  4  0  0  2  F            s   5.853  2  1  1     2
+   873    59  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  1  1     3
+   874    59  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  1  1     4
+   875    59  1     Fe   5  3  2  0  1  F          dz2   4.792  2  1  1     5
+   876    59  1     Fe   6  3  2  1  1  F          dxz   4.792  2  1  1     6
+   877    59  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  1  1     7
+   878    59  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  1  1     8
+   879    59  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  1  1     9
+   880    59  1     Fe  10  3  2  0  2  F          dz2   2.235  2  1  1    10
+   881    59  1     Fe  11  3  2  1  2  F          dxz   2.235  2  1  1    11
+   882    59  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  1  1    12
+   883    59  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  1  1    13
+   884    59  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  1  1    14
+   885    59  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  1  1    15
+   886    60  1     Fe   1  4  0  0  1  F            s   6.001  3  1  1     1
+   887    60  1     Fe   2  4  0  0  2  F            s   5.853  3  1  1     2
+   888    60  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  1  1     3
+   889    60  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  1  1     4
+   890    60  1     Fe   5  3  2  0  1  F          dz2   4.792  3  1  1     5
+   891    60  1     Fe   6  3  2  1  1  F          dxz   4.792  3  1  1     6
+   892    60  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  1  1     7
+   893    60  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  1  1     8
+   894    60  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  1  1     9
+   895    60  1     Fe  10  3  2  0  2  F          dz2   2.235  3  1  1    10
+   896    60  1     Fe  11  3  2  1  2  F          dxz   2.235  3  1  1    11
+   897    60  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  1  1    12
+   898    60  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  1  1    13
+   899    60  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  1  1    14
+   900    60  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  1  1    15
+   901    61  1     Fe   1  4  0  0  1  F            s   6.001 -3  1  1     1
+   902    61  1     Fe   2  4  0  0  2  F            s   5.853 -3  1  1     2
+   903    61  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  1  1     3
+   904    61  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  1  1     4
+   905    61  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  1  1     5
+   906    61  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  1  1     6
+   907    61  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  1  1     7
+   908    61  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  1  1     8
+   909    61  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  1  1     9
+   910    61  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  1  1    10
+   911    61  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  1  1    11
+   912    61  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  1  1    12
+   913    61  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  1  1    13
+   914    61  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  1  1    14
+   915    61  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  1  1    15
+   916    62  1     Fe   1  4  0  0  1  F            s   6.001 -2  1  1     1
+   917    62  1     Fe   2  4  0  0  2  F            s   5.853 -2  1  1     2
+   918    62  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  1  1     3
+   919    62  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  1  1     4
+   920    62  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  1  1     5
+   921    62  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  1  1     6
+   922    62  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  1  1     7
+   923    62  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  1  1     8
+   924    62  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  1  1     9
+   925    62  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  1  1    10
+   926    62  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  1  1    11
+   927    62  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  1  1    12
+   928    62  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  1  1    13
+   929    62  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  1  1    14
+   930    62  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  1  1    15
+   931    63  1     Fe   1  4  0  0  1  F            s   6.001 -1  1  1     1
+   932    63  1     Fe   2  4  0  0  2  F            s   5.853 -1  1  1     2
+   933    63  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  1  1     3
+   934    63  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  1  1     4
+   935    63  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  1  1     5
+   936    63  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  1  1     6
+   937    63  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  1  1     7
+   938    63  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  1  1     8
+   939    63  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  1  1     9
+   940    63  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  1  1    10
+   941    63  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  1  1    11
+   942    63  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  1  1    12
+   943    63  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  1  1    13
+   944    63  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  1  1    14
+   945    63  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  1  1    15
+   946    64  1     Fe   1  4  0  0  1  F            s   6.001  0  2  1     1
+   947    64  1     Fe   2  4  0  0  2  F            s   5.853  0  2  1     2
+   948    64  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  2  1     3
+   949    64  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  2  1     4
+   950    64  1     Fe   5  3  2  0  1  F          dz2   4.792  0  2  1     5
+   951    64  1     Fe   6  3  2  1  1  F          dxz   4.792  0  2  1     6
+   952    64  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  2  1     7
+   953    64  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  2  1     8
+   954    64  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  2  1     9
+   955    64  1     Fe  10  3  2  0  2  F          dz2   2.235  0  2  1    10
+   956    64  1     Fe  11  3  2  1  2  F          dxz   2.235  0  2  1    11
+   957    64  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  2  1    12
+   958    64  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  2  1    13
+   959    64  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  2  1    14
+   960    64  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  2  1    15
+   961    65  1     Fe   1  4  0  0  1  F            s   6.001  1  2  1     1
+   962    65  1     Fe   2  4  0  0  2  F            s   5.853  1  2  1     2
+   963    65  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  2  1     3
+   964    65  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  2  1     4
+   965    65  1     Fe   5  3  2  0  1  F          dz2   4.792  1  2  1     5
+   966    65  1     Fe   6  3  2  1  1  F          dxz   4.792  1  2  1     6
+   967    65  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  2  1     7
+   968    65  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  2  1     8
+   969    65  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  2  1     9
+   970    65  1     Fe  10  3  2  0  2  F          dz2   2.235  1  2  1    10
+   971    65  1     Fe  11  3  2  1  2  F          dxz   2.235  1  2  1    11
+   972    65  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  2  1    12
+   973    65  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  2  1    13
+   974    65  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  2  1    14
+   975    65  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  2  1    15
+   976    66  1     Fe   1  4  0  0  1  F            s   6.001  2  2  1     1
+   977    66  1     Fe   2  4  0  0  2  F            s   5.853  2  2  1     2
+   978    66  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  2  1     3
+   979    66  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  2  1     4
+   980    66  1     Fe   5  3  2  0  1  F          dz2   4.792  2  2  1     5
+   981    66  1     Fe   6  3  2  1  1  F          dxz   4.792  2  2  1     6
+   982    66  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  2  1     7
+   983    66  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  2  1     8
+   984    66  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  2  1     9
+   985    66  1     Fe  10  3  2  0  2  F          dz2   2.235  2  2  1    10
+   986    66  1     Fe  11  3  2  1  2  F          dxz   2.235  2  2  1    11
+   987    66  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  2  1    12
+   988    66  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  2  1    13
+   989    66  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  2  1    14
+   990    66  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  2  1    15
+   991    67  1     Fe   1  4  0  0  1  F            s   6.001  3  2  1     1
+   992    67  1     Fe   2  4  0  0  2  F            s   5.853  3  2  1     2
+   993    67  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  2  1     3
+   994    67  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  2  1     4
+   995    67  1     Fe   5  3  2  0  1  F          dz2   4.792  3  2  1     5
+   996    67  1     Fe   6  3  2  1  1  F          dxz   4.792  3  2  1     6
+   997    67  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  2  1     7
+   998    67  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  2  1     8
+   999    67  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  2  1     9
+  1000    67  1     Fe  10  3  2  0  2  F          dz2   2.235  3  2  1    10
+  1001    67  1     Fe  11  3  2  1  2  F          dxz   2.235  3  2  1    11
+  1002    67  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  2  1    12
+  1003    67  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  2  1    13
+  1004    67  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  2  1    14
+  1005    67  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  2  1    15
+  1006    68  1     Fe   1  4  0  0  1  F            s   6.001 -3  2  1     1
+  1007    68  1     Fe   2  4  0  0  2  F            s   5.853 -3  2  1     2
+  1008    68  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  2  1     3
+  1009    68  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  2  1     4
+  1010    68  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  2  1     5
+  1011    68  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  2  1     6
+  1012    68  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  2  1     7
+  1013    68  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  2  1     8
+  1014    68  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  2  1     9
+  1015    68  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  2  1    10
+  1016    68  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  2  1    11
+  1017    68  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  2  1    12
+  1018    68  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  2  1    13
+  1019    68  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  2  1    14
+  1020    68  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  2  1    15
+  1021    69  1     Fe   1  4  0  0  1  F            s   6.001 -2  2  1     1
+  1022    69  1     Fe   2  4  0  0  2  F            s   5.853 -2  2  1     2
+  1023    69  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  2  1     3
+  1024    69  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  2  1     4
+  1025    69  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  2  1     5
+  1026    69  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  2  1     6
+  1027    69  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  2  1     7
+  1028    69  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  2  1     8
+  1029    69  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  2  1     9
+  1030    69  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  2  1    10
+  1031    69  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  2  1    11
+  1032    69  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  2  1    12
+  1033    69  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  2  1    13
+  1034    69  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  2  1    14
+  1035    69  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  2  1    15
+  1036    70  1     Fe   1  4  0  0  1  F            s   6.001 -1  2  1     1
+  1037    70  1     Fe   2  4  0  0  2  F            s   5.853 -1  2  1     2
+  1038    70  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  2  1     3
+  1039    70  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  2  1     4
+  1040    70  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  2  1     5
+  1041    70  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  2  1     6
+  1042    70  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  2  1     7
+  1043    70  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  2  1     8
+  1044    70  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  2  1     9
+  1045    70  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  2  1    10
+  1046    70  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  2  1    11
+  1047    70  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  2  1    12
+  1048    70  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  2  1    13
+  1049    70  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  2  1    14
+  1050    70  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  2  1    15
+  1051    71  1     Fe   1  4  0  0  1  F            s   6.001  0  3  1     1
+  1052    71  1     Fe   2  4  0  0  2  F            s   5.853  0  3  1     2
+  1053    71  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  3  1     3
+  1054    71  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  3  1     4
+  1055    71  1     Fe   5  3  2  0  1  F          dz2   4.792  0  3  1     5
+  1056    71  1     Fe   6  3  2  1  1  F          dxz   4.792  0  3  1     6
+  1057    71  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  3  1     7
+  1058    71  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  3  1     8
+  1059    71  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  3  1     9
+  1060    71  1     Fe  10  3  2  0  2  F          dz2   2.235  0  3  1    10
+  1061    71  1     Fe  11  3  2  1  2  F          dxz   2.235  0  3  1    11
+  1062    71  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  3  1    12
+  1063    71  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  3  1    13
+  1064    71  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  3  1    14
+  1065    71  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  3  1    15
+  1066    72  1     Fe   1  4  0  0  1  F            s   6.001  1  3  1     1
+  1067    72  1     Fe   2  4  0  0  2  F            s   5.853  1  3  1     2
+  1068    72  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  3  1     3
+  1069    72  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  3  1     4
+  1070    72  1     Fe   5  3  2  0  1  F          dz2   4.792  1  3  1     5
+  1071    72  1     Fe   6  3  2  1  1  F          dxz   4.792  1  3  1     6
+  1072    72  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  3  1     7
+  1073    72  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  3  1     8
+  1074    72  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  3  1     9
+  1075    72  1     Fe  10  3  2  0  2  F          dz2   2.235  1  3  1    10
+  1076    72  1     Fe  11  3  2  1  2  F          dxz   2.235  1  3  1    11
+  1077    72  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  3  1    12
+  1078    72  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  3  1    13
+  1079    72  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  3  1    14
+  1080    72  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  3  1    15
+  1081    73  1     Fe   1  4  0  0  1  F            s   6.001  2  3  1     1
+  1082    73  1     Fe   2  4  0  0  2  F            s   5.853  2  3  1     2
+  1083    73  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  3  1     3
+  1084    73  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  3  1     4
+  1085    73  1     Fe   5  3  2  0  1  F          dz2   4.792  2  3  1     5
+  1086    73  1     Fe   6  3  2  1  1  F          dxz   4.792  2  3  1     6
+  1087    73  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  3  1     7
+  1088    73  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  3  1     8
+  1089    73  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  3  1     9
+  1090    73  1     Fe  10  3  2  0  2  F          dz2   2.235  2  3  1    10
+  1091    73  1     Fe  11  3  2  1  2  F          dxz   2.235  2  3  1    11
+  1092    73  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  3  1    12
+  1093    73  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  3  1    13
+  1094    73  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  3  1    14
+  1095    73  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  3  1    15
+  1096    74  1     Fe   1  4  0  0  1  F            s   6.001  3  3  1     1
+  1097    74  1     Fe   2  4  0  0  2  F            s   5.853  3  3  1     2
+  1098    74  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  3  1     3
+  1099    74  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  3  1     4
+  1100    74  1     Fe   5  3  2  0  1  F          dz2   4.792  3  3  1     5
+  1101    74  1     Fe   6  3  2  1  1  F          dxz   4.792  3  3  1     6
+  1102    74  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  3  1     7
+  1103    74  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  3  1     8
+  1104    74  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  3  1     9
+  1105    74  1     Fe  10  3  2  0  2  F          dz2   2.235  3  3  1    10
+  1106    74  1     Fe  11  3  2  1  2  F          dxz   2.235  3  3  1    11
+  1107    74  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  3  1    12
+  1108    74  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  3  1    13
+  1109    74  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  3  1    14
+  1110    74  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  3  1    15
+  1111    75  1     Fe   1  4  0  0  1  F            s   6.001 -3  3  1     1
+  1112    75  1     Fe   2  4  0  0  2  F            s   5.853 -3  3  1     2
+  1113    75  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  3  1     3
+  1114    75  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  3  1     4
+  1115    75  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  3  1     5
+  1116    75  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  3  1     6
+  1117    75  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  3  1     7
+  1118    75  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  3  1     8
+  1119    75  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  3  1     9
+  1120    75  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  3  1    10
+  1121    75  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  3  1    11
+  1122    75  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  3  1    12
+  1123    75  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  3  1    13
+  1124    75  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  3  1    14
+  1125    75  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  3  1    15
+  1126    76  1     Fe   1  4  0  0  1  F            s   6.001 -2  3  1     1
+  1127    76  1     Fe   2  4  0  0  2  F            s   5.853 -2  3  1     2
+  1128    76  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  3  1     3
+  1129    76  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  3  1     4
+  1130    76  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  3  1     5
+  1131    76  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  3  1     6
+  1132    76  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  3  1     7
+  1133    76  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  3  1     8
+  1134    76  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  3  1     9
+  1135    76  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  3  1    10
+  1136    76  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  3  1    11
+  1137    76  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  3  1    12
+  1138    76  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  3  1    13
+  1139    76  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  3  1    14
+  1140    76  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  3  1    15
+  1141    77  1     Fe   1  4  0  0  1  F            s   6.001 -1  3  1     1
+  1142    77  1     Fe   2  4  0  0  2  F            s   5.853 -1  3  1     2
+  1143    77  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  3  1     3
+  1144    77  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  3  1     4
+  1145    77  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  3  1     5
+  1146    77  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  3  1     6
+  1147    77  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  3  1     7
+  1148    77  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  3  1     8
+  1149    77  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  3  1     9
+  1150    77  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  3  1    10
+  1151    77  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  3  1    11
+  1152    77  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  3  1    12
+  1153    77  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  3  1    13
+  1154    77  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  3  1    14
+  1155    77  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  3  1    15
+  1156    78  1     Fe   1  4  0  0  1  F            s   6.001  0 -3  1     1
+  1157    78  1     Fe   2  4  0  0  2  F            s   5.853  0 -3  1     2
+  1158    78  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -3  1     3
+  1159    78  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -3  1     4
+  1160    78  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -3  1     5
+  1161    78  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -3  1     6
+  1162    78  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -3  1     7
+  1163    78  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -3  1     8
+  1164    78  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -3  1     9
+  1165    78  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -3  1    10
+  1166    78  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -3  1    11
+  1167    78  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -3  1    12
+  1168    78  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -3  1    13
+  1169    78  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -3  1    14
+  1170    78  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -3  1    15
+  1171    79  1     Fe   1  4  0  0  1  F            s   6.001  1 -3  1     1
+  1172    79  1     Fe   2  4  0  0  2  F            s   5.853  1 -3  1     2
+  1173    79  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -3  1     3
+  1174    79  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -3  1     4
+  1175    79  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -3  1     5
+  1176    79  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -3  1     6
+  1177    79  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -3  1     7
+  1178    79  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -3  1     8
+  1179    79  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -3  1     9
+  1180    79  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -3  1    10
+  1181    79  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -3  1    11
+  1182    79  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -3  1    12
+  1183    79  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -3  1    13
+  1184    79  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -3  1    14
+  1185    79  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -3  1    15
+  1186    80  1     Fe   1  4  0  0  1  F            s   6.001  2 -3  1     1
+  1187    80  1     Fe   2  4  0  0  2  F            s   5.853  2 -3  1     2
+  1188    80  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -3  1     3
+  1189    80  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -3  1     4
+  1190    80  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -3  1     5
+  1191    80  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -3  1     6
+  1192    80  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -3  1     7
+  1193    80  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -3  1     8
+  1194    80  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -3  1     9
+  1195    80  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -3  1    10
+  1196    80  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -3  1    11
+  1197    80  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -3  1    12
+  1198    80  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -3  1    13
+  1199    80  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -3  1    14
+  1200    80  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -3  1    15
+  1201    81  1     Fe   1  4  0  0  1  F            s   6.001  3 -3  1     1
+  1202    81  1     Fe   2  4  0  0  2  F            s   5.853  3 -3  1     2
+  1203    81  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -3  1     3
+  1204    81  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -3  1     4
+  1205    81  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -3  1     5
+  1206    81  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -3  1     6
+  1207    81  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -3  1     7
+  1208    81  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -3  1     8
+  1209    81  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -3  1     9
+  1210    81  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -3  1    10
+  1211    81  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -3  1    11
+  1212    81  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -3  1    12
+  1213    81  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -3  1    13
+  1214    81  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -3  1    14
+  1215    81  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -3  1    15
+  1216    82  1     Fe   1  4  0  0  1  F            s   6.001 -3 -3  1     1
+  1217    82  1     Fe   2  4  0  0  2  F            s   5.853 -3 -3  1     2
+  1218    82  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -3  1     3
+  1219    82  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -3  1     4
+  1220    82  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -3  1     5
+  1221    82  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -3  1     6
+  1222    82  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -3  1     7
+  1223    82  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -3  1     8
+  1224    82  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -3  1     9
+  1225    82  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -3  1    10
+  1226    82  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -3  1    11
+  1227    82  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -3  1    12
+  1228    82  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -3  1    13
+  1229    82  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -3  1    14
+  1230    82  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -3  1    15
+  1231    83  1     Fe   1  4  0  0  1  F            s   6.001 -2 -3  1     1
+  1232    83  1     Fe   2  4  0  0  2  F            s   5.853 -2 -3  1     2
+  1233    83  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -3  1     3
+  1234    83  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -3  1     4
+  1235    83  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -3  1     5
+  1236    83  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -3  1     6
+  1237    83  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -3  1     7
+  1238    83  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -3  1     8
+  1239    83  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -3  1     9
+  1240    83  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -3  1    10
+  1241    83  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -3  1    11
+  1242    83  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -3  1    12
+  1243    83  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -3  1    13
+  1244    83  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -3  1    14
+  1245    83  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -3  1    15
+  1246    84  1     Fe   1  4  0  0  1  F            s   6.001 -1 -3  1     1
+  1247    84  1     Fe   2  4  0  0  2  F            s   5.853 -1 -3  1     2
+  1248    84  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -3  1     3
+  1249    84  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -3  1     4
+  1250    84  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -3  1     5
+  1251    84  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -3  1     6
+  1252    84  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -3  1     7
+  1253    84  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -3  1     8
+  1254    84  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -3  1     9
+  1255    84  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -3  1    10
+  1256    84  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -3  1    11
+  1257    84  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -3  1    12
+  1258    84  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -3  1    13
+  1259    84  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -3  1    14
+  1260    84  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -3  1    15
+  1261    85  1     Fe   1  4  0  0  1  F            s   6.001  0 -2  1     1
+  1262    85  1     Fe   2  4  0  0  2  F            s   5.853  0 -2  1     2
+  1263    85  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -2  1     3
+  1264    85  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -2  1     4
+  1265    85  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -2  1     5
+  1266    85  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -2  1     6
+  1267    85  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -2  1     7
+  1268    85  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -2  1     8
+  1269    85  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -2  1     9
+  1270    85  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -2  1    10
+  1271    85  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -2  1    11
+  1272    85  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -2  1    12
+  1273    85  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -2  1    13
+  1274    85  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -2  1    14
+  1275    85  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -2  1    15
+  1276    86  1     Fe   1  4  0  0  1  F            s   6.001  1 -2  1     1
+  1277    86  1     Fe   2  4  0  0  2  F            s   5.853  1 -2  1     2
+  1278    86  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -2  1     3
+  1279    86  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -2  1     4
+  1280    86  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -2  1     5
+  1281    86  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -2  1     6
+  1282    86  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -2  1     7
+  1283    86  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -2  1     8
+  1284    86  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -2  1     9
+  1285    86  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -2  1    10
+  1286    86  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -2  1    11
+  1287    86  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -2  1    12
+  1288    86  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -2  1    13
+  1289    86  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -2  1    14
+  1290    86  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -2  1    15
+  1291    87  1     Fe   1  4  0  0  1  F            s   6.001  2 -2  1     1
+  1292    87  1     Fe   2  4  0  0  2  F            s   5.853  2 -2  1     2
+  1293    87  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -2  1     3
+  1294    87  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -2  1     4
+  1295    87  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -2  1     5
+  1296    87  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -2  1     6
+  1297    87  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -2  1     7
+  1298    87  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -2  1     8
+  1299    87  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -2  1     9
+  1300    87  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -2  1    10
+  1301    87  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -2  1    11
+  1302    87  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -2  1    12
+  1303    87  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -2  1    13
+  1304    87  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -2  1    14
+  1305    87  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -2  1    15
+  1306    88  1     Fe   1  4  0  0  1  F            s   6.001  3 -2  1     1
+  1307    88  1     Fe   2  4  0  0  2  F            s   5.853  3 -2  1     2
+  1308    88  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -2  1     3
+  1309    88  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -2  1     4
+  1310    88  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -2  1     5
+  1311    88  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -2  1     6
+  1312    88  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -2  1     7
+  1313    88  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -2  1     8
+  1314    88  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -2  1     9
+  1315    88  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -2  1    10
+  1316    88  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -2  1    11
+  1317    88  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -2  1    12
+  1318    88  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -2  1    13
+  1319    88  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -2  1    14
+  1320    88  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -2  1    15
+  1321    89  1     Fe   1  4  0  0  1  F            s   6.001 -3 -2  1     1
+  1322    89  1     Fe   2  4  0  0  2  F            s   5.853 -3 -2  1     2
+  1323    89  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -2  1     3
+  1324    89  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -2  1     4
+  1325    89  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -2  1     5
+  1326    89  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -2  1     6
+  1327    89  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -2  1     7
+  1328    89  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -2  1     8
+  1329    89  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -2  1     9
+  1330    89  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -2  1    10
+  1331    89  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -2  1    11
+  1332    89  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -2  1    12
+  1333    89  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -2  1    13
+  1334    89  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -2  1    14
+  1335    89  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -2  1    15
+  1336    90  1     Fe   1  4  0  0  1  F            s   6.001 -2 -2  1     1
+  1337    90  1     Fe   2  4  0  0  2  F            s   5.853 -2 -2  1     2
+  1338    90  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -2  1     3
+  1339    90  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -2  1     4
+  1340    90  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -2  1     5
+  1341    90  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -2  1     6
+  1342    90  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -2  1     7
+  1343    90  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -2  1     8
+  1344    90  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -2  1     9
+  1345    90  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -2  1    10
+  1346    90  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -2  1    11
+  1347    90  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -2  1    12
+  1348    90  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -2  1    13
+  1349    90  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -2  1    14
+  1350    90  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -2  1    15
+  1351    91  1     Fe   1  4  0  0  1  F            s   6.001 -1 -2  1     1
+  1352    91  1     Fe   2  4  0  0  2  F            s   5.853 -1 -2  1     2
+  1353    91  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -2  1     3
+  1354    91  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -2  1     4
+  1355    91  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -2  1     5
+  1356    91  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -2  1     6
+  1357    91  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -2  1     7
+  1358    91  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -2  1     8
+  1359    91  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -2  1     9
+  1360    91  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -2  1    10
+  1361    91  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -2  1    11
+  1362    91  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -2  1    12
+  1363    91  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -2  1    13
+  1364    91  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -2  1    14
+  1365    91  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -2  1    15
+  1366    92  1     Fe   1  4  0  0  1  F            s   6.001  0 -1  1     1
+  1367    92  1     Fe   2  4  0  0  2  F            s   5.853  0 -1  1     2
+  1368    92  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -1  1     3
+  1369    92  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -1  1     4
+  1370    92  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -1  1     5
+  1371    92  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -1  1     6
+  1372    92  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -1  1     7
+  1373    92  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -1  1     8
+  1374    92  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -1  1     9
+  1375    92  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -1  1    10
+  1376    92  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -1  1    11
+  1377    92  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -1  1    12
+  1378    92  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -1  1    13
+  1379    92  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -1  1    14
+  1380    92  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -1  1    15
+  1381    93  1     Fe   1  4  0  0  1  F            s   6.001  1 -1  1     1
+  1382    93  1     Fe   2  4  0  0  2  F            s   5.853  1 -1  1     2
+  1383    93  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -1  1     3
+  1384    93  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -1  1     4
+  1385    93  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -1  1     5
+  1386    93  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -1  1     6
+  1387    93  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -1  1     7
+  1388    93  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -1  1     8
+  1389    93  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -1  1     9
+  1390    93  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -1  1    10
+  1391    93  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -1  1    11
+  1392    93  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -1  1    12
+  1393    93  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -1  1    13
+  1394    93  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -1  1    14
+  1395    93  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -1  1    15
+  1396    94  1     Fe   1  4  0  0  1  F            s   6.001  2 -1  1     1
+  1397    94  1     Fe   2  4  0  0  2  F            s   5.853  2 -1  1     2
+  1398    94  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -1  1     3
+  1399    94  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -1  1     4
+  1400    94  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -1  1     5
+  1401    94  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -1  1     6
+  1402    94  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -1  1     7
+  1403    94  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -1  1     8
+  1404    94  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -1  1     9
+  1405    94  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -1  1    10
+  1406    94  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -1  1    11
+  1407    94  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -1  1    12
+  1408    94  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -1  1    13
+  1409    94  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -1  1    14
+  1410    94  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -1  1    15
+  1411    95  1     Fe   1  4  0  0  1  F            s   6.001  3 -1  1     1
+  1412    95  1     Fe   2  4  0  0  2  F            s   5.853  3 -1  1     2
+  1413    95  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -1  1     3
+  1414    95  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -1  1     4
+  1415    95  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -1  1     5
+  1416    95  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -1  1     6
+  1417    95  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -1  1     7
+  1418    95  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -1  1     8
+  1419    95  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -1  1     9
+  1420    95  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -1  1    10
+  1421    95  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -1  1    11
+  1422    95  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -1  1    12
+  1423    95  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -1  1    13
+  1424    95  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -1  1    14
+  1425    95  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -1  1    15
+  1426    96  1     Fe   1  4  0  0  1  F            s   6.001 -3 -1  1     1
+  1427    96  1     Fe   2  4  0  0  2  F            s   5.853 -3 -1  1     2
+  1428    96  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -1  1     3
+  1429    96  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -1  1     4
+  1430    96  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -1  1     5
+  1431    96  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -1  1     6
+  1432    96  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -1  1     7
+  1433    96  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -1  1     8
+  1434    96  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -1  1     9
+  1435    96  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -1  1    10
+  1436    96  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -1  1    11
+  1437    96  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -1  1    12
+  1438    96  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -1  1    13
+  1439    96  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -1  1    14
+  1440    96  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -1  1    15
+  1441    97  1     Fe   1  4  0  0  1  F            s   6.001 -2 -1  1     1
+  1442    97  1     Fe   2  4  0  0  2  F            s   5.853 -2 -1  1     2
+  1443    97  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -1  1     3
+  1444    97  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -1  1     4
+  1445    97  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -1  1     5
+  1446    97  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -1  1     6
+  1447    97  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -1  1     7
+  1448    97  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -1  1     8
+  1449    97  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -1  1     9
+  1450    97  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -1  1    10
+  1451    97  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -1  1    11
+  1452    97  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -1  1    12
+  1453    97  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -1  1    13
+  1454    97  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -1  1    14
+  1455    97  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -1  1    15
+  1456    98  1     Fe   1  4  0  0  1  F            s   6.001 -1 -1  1     1
+  1457    98  1     Fe   2  4  0  0  2  F            s   5.853 -1 -1  1     2
+  1458    98  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -1  1     3
+  1459    98  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -1  1     4
+  1460    98  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -1  1     5
+  1461    98  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -1  1     6
+  1462    98  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -1  1     7
+  1463    98  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -1  1     8
+  1464    98  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -1  1     9
+  1465    98  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -1  1    10
+  1466    98  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -1  1    11
+  1467    98  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -1  1    12
+  1468    98  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -1  1    13
+  1469    98  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -1  1    14
+  1470    98  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -1  1    15
+  1471    99  1     Fe   1  4  0  0  1  F            s   6.001  0  0  2     1
+  1472    99  1     Fe   2  4  0  0  2  F            s   5.853  0  0  2     2
+  1473    99  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  0  2     3
+  1474    99  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  0  2     4
+  1475    99  1     Fe   5  3  2  0  1  F          dz2   4.792  0  0  2     5
+  1476    99  1     Fe   6  3  2  1  1  F          dxz   4.792  0  0  2     6
+  1477    99  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  0  2     7
+  1478    99  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  0  2     8
+  1479    99  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  0  2     9
+  1480    99  1     Fe  10  3  2  0  2  F          dz2   2.235  0  0  2    10
+  1481    99  1     Fe  11  3  2  1  2  F          dxz   2.235  0  0  2    11
+  1482    99  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  0  2    12
+  1483    99  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  0  2    13
+  1484    99  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  0  2    14
+  1485    99  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  0  2    15
+  1486   100  1     Fe   1  4  0  0  1  F            s   6.001  1  0  2     1
+  1487   100  1     Fe   2  4  0  0  2  F            s   5.853  1  0  2     2
+  1488   100  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  0  2     3
+  1489   100  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  0  2     4
+  1490   100  1     Fe   5  3  2  0  1  F          dz2   4.792  1  0  2     5
+  1491   100  1     Fe   6  3  2  1  1  F          dxz   4.792  1  0  2     6
+  1492   100  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  0  2     7
+  1493   100  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  0  2     8
+  1494   100  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  0  2     9
+  1495   100  1     Fe  10  3  2  0  2  F          dz2   2.235  1  0  2    10
+  1496   100  1     Fe  11  3  2  1  2  F          dxz   2.235  1  0  2    11
+  1497   100  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  0  2    12
+  1498   100  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  0  2    13
+  1499   100  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  0  2    14
+  1500   100  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  0  2    15
+  1501   101  1     Fe   1  4  0  0  1  F            s   6.001  2  0  2     1
+  1502   101  1     Fe   2  4  0  0  2  F            s   5.853  2  0  2     2
+  1503   101  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  0  2     3
+  1504   101  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  0  2     4
+  1505   101  1     Fe   5  3  2  0  1  F          dz2   4.792  2  0  2     5
+  1506   101  1     Fe   6  3  2  1  1  F          dxz   4.792  2  0  2     6
+  1507   101  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  0  2     7
+  1508   101  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  0  2     8
+  1509   101  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  0  2     9
+  1510   101  1     Fe  10  3  2  0  2  F          dz2   2.235  2  0  2    10
+  1511   101  1     Fe  11  3  2  1  2  F          dxz   2.235  2  0  2    11
+  1512   101  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  0  2    12
+  1513   101  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  0  2    13
+  1514   101  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  0  2    14
+  1515   101  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  0  2    15
+  1516   102  1     Fe   1  4  0  0  1  F            s   6.001  3  0  2     1
+  1517   102  1     Fe   2  4  0  0  2  F            s   5.853  3  0  2     2
+  1518   102  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  0  2     3
+  1519   102  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  0  2     4
+  1520   102  1     Fe   5  3  2  0  1  F          dz2   4.792  3  0  2     5
+  1521   102  1     Fe   6  3  2  1  1  F          dxz   4.792  3  0  2     6
+  1522   102  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  0  2     7
+  1523   102  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  0  2     8
+  1524   102  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  0  2     9
+  1525   102  1     Fe  10  3  2  0  2  F          dz2   2.235  3  0  2    10
+  1526   102  1     Fe  11  3  2  1  2  F          dxz   2.235  3  0  2    11
+  1527   102  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  0  2    12
+  1528   102  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  0  2    13
+  1529   102  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  0  2    14
+  1530   102  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  0  2    15
+  1531   103  1     Fe   1  4  0  0  1  F            s   6.001 -3  0  2     1
+  1532   103  1     Fe   2  4  0  0  2  F            s   5.853 -3  0  2     2
+  1533   103  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  0  2     3
+  1534   103  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  0  2     4
+  1535   103  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  0  2     5
+  1536   103  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  0  2     6
+  1537   103  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  0  2     7
+  1538   103  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  0  2     8
+  1539   103  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  0  2     9
+  1540   103  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  0  2    10
+  1541   103  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  0  2    11
+  1542   103  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  0  2    12
+  1543   103  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  0  2    13
+  1544   103  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  0  2    14
+  1545   103  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  0  2    15
+  1546   104  1     Fe   1  4  0  0  1  F            s   6.001 -2  0  2     1
+  1547   104  1     Fe   2  4  0  0  2  F            s   5.853 -2  0  2     2
+  1548   104  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  0  2     3
+  1549   104  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  0  2     4
+  1550   104  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  0  2     5
+  1551   104  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  0  2     6
+  1552   104  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  0  2     7
+  1553   104  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  0  2     8
+  1554   104  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  0  2     9
+  1555   104  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  0  2    10
+  1556   104  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  0  2    11
+  1557   104  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  0  2    12
+  1558   104  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  0  2    13
+  1559   104  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  0  2    14
+  1560   104  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  0  2    15
+  1561   105  1     Fe   1  4  0  0  1  F            s   6.001 -1  0  2     1
+  1562   105  1     Fe   2  4  0  0  2  F            s   5.853 -1  0  2     2
+  1563   105  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  0  2     3
+  1564   105  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  0  2     4
+  1565   105  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  0  2     5
+  1566   105  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  0  2     6
+  1567   105  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  0  2     7
+  1568   105  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  0  2     8
+  1569   105  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  0  2     9
+  1570   105  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  0  2    10
+  1571   105  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  0  2    11
+  1572   105  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  0  2    12
+  1573   105  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  0  2    13
+  1574   105  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  0  2    14
+  1575   105  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  0  2    15
+  1576   106  1     Fe   1  4  0  0  1  F            s   6.001  0  1  2     1
+  1577   106  1     Fe   2  4  0  0  2  F            s   5.853  0  1  2     2
+  1578   106  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  1  2     3
+  1579   106  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  1  2     4
+  1580   106  1     Fe   5  3  2  0  1  F          dz2   4.792  0  1  2     5
+  1581   106  1     Fe   6  3  2  1  1  F          dxz   4.792  0  1  2     6
+  1582   106  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  1  2     7
+  1583   106  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  1  2     8
+  1584   106  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  1  2     9
+  1585   106  1     Fe  10  3  2  0  2  F          dz2   2.235  0  1  2    10
+  1586   106  1     Fe  11  3  2  1  2  F          dxz   2.235  0  1  2    11
+  1587   106  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  1  2    12
+  1588   106  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  1  2    13
+  1589   106  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  1  2    14
+  1590   106  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  1  2    15
+  1591   107  1     Fe   1  4  0  0  1  F            s   6.001  1  1  2     1
+  1592   107  1     Fe   2  4  0  0  2  F            s   5.853  1  1  2     2
+  1593   107  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  1  2     3
+  1594   107  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  1  2     4
+  1595   107  1     Fe   5  3  2  0  1  F          dz2   4.792  1  1  2     5
+  1596   107  1     Fe   6  3  2  1  1  F          dxz   4.792  1  1  2     6
+  1597   107  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  1  2     7
+  1598   107  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  1  2     8
+  1599   107  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  1  2     9
+  1600   107  1     Fe  10  3  2  0  2  F          dz2   2.235  1  1  2    10
+  1601   107  1     Fe  11  3  2  1  2  F          dxz   2.235  1  1  2    11
+  1602   107  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  1  2    12
+  1603   107  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  1  2    13
+  1604   107  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  1  2    14
+  1605   107  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  1  2    15
+  1606   108  1     Fe   1  4  0  0  1  F            s   6.001  2  1  2     1
+  1607   108  1     Fe   2  4  0  0  2  F            s   5.853  2  1  2     2
+  1608   108  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  1  2     3
+  1609   108  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  1  2     4
+  1610   108  1     Fe   5  3  2  0  1  F          dz2   4.792  2  1  2     5
+  1611   108  1     Fe   6  3  2  1  1  F          dxz   4.792  2  1  2     6
+  1612   108  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  1  2     7
+  1613   108  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  1  2     8
+  1614   108  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  1  2     9
+  1615   108  1     Fe  10  3  2  0  2  F          dz2   2.235  2  1  2    10
+  1616   108  1     Fe  11  3  2  1  2  F          dxz   2.235  2  1  2    11
+  1617   108  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  1  2    12
+  1618   108  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  1  2    13
+  1619   108  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  1  2    14
+  1620   108  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  1  2    15
+  1621   109  1     Fe   1  4  0  0  1  F            s   6.001  3  1  2     1
+  1622   109  1     Fe   2  4  0  0  2  F            s   5.853  3  1  2     2
+  1623   109  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  1  2     3
+  1624   109  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  1  2     4
+  1625   109  1     Fe   5  3  2  0  1  F          dz2   4.792  3  1  2     5
+  1626   109  1     Fe   6  3  2  1  1  F          dxz   4.792  3  1  2     6
+  1627   109  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  1  2     7
+  1628   109  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  1  2     8
+  1629   109  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  1  2     9
+  1630   109  1     Fe  10  3  2  0  2  F          dz2   2.235  3  1  2    10
+  1631   109  1     Fe  11  3  2  1  2  F          dxz   2.235  3  1  2    11
+  1632   109  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  1  2    12
+  1633   109  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  1  2    13
+  1634   109  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  1  2    14
+  1635   109  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  1  2    15
+  1636   110  1     Fe   1  4  0  0  1  F            s   6.001 -3  1  2     1
+  1637   110  1     Fe   2  4  0  0  2  F            s   5.853 -3  1  2     2
+  1638   110  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  1  2     3
+  1639   110  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  1  2     4
+  1640   110  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  1  2     5
+  1641   110  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  1  2     6
+  1642   110  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  1  2     7
+  1643   110  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  1  2     8
+  1644   110  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  1  2     9
+  1645   110  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  1  2    10
+  1646   110  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  1  2    11
+  1647   110  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  1  2    12
+  1648   110  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  1  2    13
+  1649   110  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  1  2    14
+  1650   110  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  1  2    15
+  1651   111  1     Fe   1  4  0  0  1  F            s   6.001 -2  1  2     1
+  1652   111  1     Fe   2  4  0  0  2  F            s   5.853 -2  1  2     2
+  1653   111  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  1  2     3
+  1654   111  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  1  2     4
+  1655   111  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  1  2     5
+  1656   111  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  1  2     6
+  1657   111  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  1  2     7
+  1658   111  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  1  2     8
+  1659   111  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  1  2     9
+  1660   111  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  1  2    10
+  1661   111  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  1  2    11
+  1662   111  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  1  2    12
+  1663   111  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  1  2    13
+  1664   111  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  1  2    14
+  1665   111  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  1  2    15
+  1666   112  1     Fe   1  4  0  0  1  F            s   6.001 -1  1  2     1
+  1667   112  1     Fe   2  4  0  0  2  F            s   5.853 -1  1  2     2
+  1668   112  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  1  2     3
+  1669   112  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  1  2     4
+  1670   112  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  1  2     5
+  1671   112  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  1  2     6
+  1672   112  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  1  2     7
+  1673   112  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  1  2     8
+  1674   112  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  1  2     9
+  1675   112  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  1  2    10
+  1676   112  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  1  2    11
+  1677   112  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  1  2    12
+  1678   112  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  1  2    13
+  1679   112  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  1  2    14
+  1680   112  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  1  2    15
+  1681   113  1     Fe   1  4  0  0  1  F            s   6.001  0  2  2     1
+  1682   113  1     Fe   2  4  0  0  2  F            s   5.853  0  2  2     2
+  1683   113  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  2  2     3
+  1684   113  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  2  2     4
+  1685   113  1     Fe   5  3  2  0  1  F          dz2   4.792  0  2  2     5
+  1686   113  1     Fe   6  3  2  1  1  F          dxz   4.792  0  2  2     6
+  1687   113  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  2  2     7
+  1688   113  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  2  2     8
+  1689   113  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  2  2     9
+  1690   113  1     Fe  10  3  2  0  2  F          dz2   2.235  0  2  2    10
+  1691   113  1     Fe  11  3  2  1  2  F          dxz   2.235  0  2  2    11
+  1692   113  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  2  2    12
+  1693   113  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  2  2    13
+  1694   113  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  2  2    14
+  1695   113  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  2  2    15
+  1696   114  1     Fe   1  4  0  0  1  F            s   6.001  1  2  2     1
+  1697   114  1     Fe   2  4  0  0  2  F            s   5.853  1  2  2     2
+  1698   114  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  2  2     3
+  1699   114  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  2  2     4
+  1700   114  1     Fe   5  3  2  0  1  F          dz2   4.792  1  2  2     5
+  1701   114  1     Fe   6  3  2  1  1  F          dxz   4.792  1  2  2     6
+  1702   114  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  2  2     7
+  1703   114  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  2  2     8
+  1704   114  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  2  2     9
+  1705   114  1     Fe  10  3  2  0  2  F          dz2   2.235  1  2  2    10
+  1706   114  1     Fe  11  3  2  1  2  F          dxz   2.235  1  2  2    11
+  1707   114  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  2  2    12
+  1708   114  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  2  2    13
+  1709   114  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  2  2    14
+  1710   114  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  2  2    15
+  1711   115  1     Fe   1  4  0  0  1  F            s   6.001  2  2  2     1
+  1712   115  1     Fe   2  4  0  0  2  F            s   5.853  2  2  2     2
+  1713   115  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  2  2     3
+  1714   115  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  2  2     4
+  1715   115  1     Fe   5  3  2  0  1  F          dz2   4.792  2  2  2     5
+  1716   115  1     Fe   6  3  2  1  1  F          dxz   4.792  2  2  2     6
+  1717   115  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  2  2     7
+  1718   115  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  2  2     8
+  1719   115  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  2  2     9
+  1720   115  1     Fe  10  3  2  0  2  F          dz2   2.235  2  2  2    10
+  1721   115  1     Fe  11  3  2  1  2  F          dxz   2.235  2  2  2    11
+  1722   115  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  2  2    12
+  1723   115  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  2  2    13
+  1724   115  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  2  2    14
+  1725   115  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  2  2    15
+  1726   116  1     Fe   1  4  0  0  1  F            s   6.001  3  2  2     1
+  1727   116  1     Fe   2  4  0  0  2  F            s   5.853  3  2  2     2
+  1728   116  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  2  2     3
+  1729   116  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  2  2     4
+  1730   116  1     Fe   5  3  2  0  1  F          dz2   4.792  3  2  2     5
+  1731   116  1     Fe   6  3  2  1  1  F          dxz   4.792  3  2  2     6
+  1732   116  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  2  2     7
+  1733   116  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  2  2     8
+  1734   116  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  2  2     9
+  1735   116  1     Fe  10  3  2  0  2  F          dz2   2.235  3  2  2    10
+  1736   116  1     Fe  11  3  2  1  2  F          dxz   2.235  3  2  2    11
+  1737   116  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  2  2    12
+  1738   116  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  2  2    13
+  1739   116  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  2  2    14
+  1740   116  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  2  2    15
+  1741   117  1     Fe   1  4  0  0  1  F            s   6.001 -3  2  2     1
+  1742   117  1     Fe   2  4  0  0  2  F            s   5.853 -3  2  2     2
+  1743   117  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  2  2     3
+  1744   117  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  2  2     4
+  1745   117  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  2  2     5
+  1746   117  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  2  2     6
+  1747   117  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  2  2     7
+  1748   117  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  2  2     8
+  1749   117  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  2  2     9
+  1750   117  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  2  2    10
+  1751   117  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  2  2    11
+  1752   117  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  2  2    12
+  1753   117  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  2  2    13
+  1754   117  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  2  2    14
+  1755   117  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  2  2    15
+  1756   118  1     Fe   1  4  0  0  1  F            s   6.001 -2  2  2     1
+  1757   118  1     Fe   2  4  0  0  2  F            s   5.853 -2  2  2     2
+  1758   118  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  2  2     3
+  1759   118  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  2  2     4
+  1760   118  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  2  2     5
+  1761   118  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  2  2     6
+  1762   118  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  2  2     7
+  1763   118  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  2  2     8
+  1764   118  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  2  2     9
+  1765   118  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  2  2    10
+  1766   118  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  2  2    11
+  1767   118  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  2  2    12
+  1768   118  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  2  2    13
+  1769   118  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  2  2    14
+  1770   118  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  2  2    15
+  1771   119  1     Fe   1  4  0  0  1  F            s   6.001 -1  2  2     1
+  1772   119  1     Fe   2  4  0  0  2  F            s   5.853 -1  2  2     2
+  1773   119  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  2  2     3
+  1774   119  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  2  2     4
+  1775   119  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  2  2     5
+  1776   119  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  2  2     6
+  1777   119  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  2  2     7
+  1778   119  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  2  2     8
+  1779   119  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  2  2     9
+  1780   119  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  2  2    10
+  1781   119  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  2  2    11
+  1782   119  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  2  2    12
+  1783   119  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  2  2    13
+  1784   119  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  2  2    14
+  1785   119  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  2  2    15
+  1786   120  1     Fe   1  4  0  0  1  F            s   6.001  0  3  2     1
+  1787   120  1     Fe   2  4  0  0  2  F            s   5.853  0  3  2     2
+  1788   120  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  3  2     3
+  1789   120  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  3  2     4
+  1790   120  1     Fe   5  3  2  0  1  F          dz2   4.792  0  3  2     5
+  1791   120  1     Fe   6  3  2  1  1  F          dxz   4.792  0  3  2     6
+  1792   120  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  3  2     7
+  1793   120  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  3  2     8
+  1794   120  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  3  2     9
+  1795   120  1     Fe  10  3  2  0  2  F          dz2   2.235  0  3  2    10
+  1796   120  1     Fe  11  3  2  1  2  F          dxz   2.235  0  3  2    11
+  1797   120  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  3  2    12
+  1798   120  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  3  2    13
+  1799   120  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  3  2    14
+  1800   120  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  3  2    15
+  1801   121  1     Fe   1  4  0  0  1  F            s   6.001  1  3  2     1
+  1802   121  1     Fe   2  4  0  0  2  F            s   5.853  1  3  2     2
+  1803   121  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  3  2     3
+  1804   121  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  3  2     4
+  1805   121  1     Fe   5  3  2  0  1  F          dz2   4.792  1  3  2     5
+  1806   121  1     Fe   6  3  2  1  1  F          dxz   4.792  1  3  2     6
+  1807   121  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  3  2     7
+  1808   121  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  3  2     8
+  1809   121  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  3  2     9
+  1810   121  1     Fe  10  3  2  0  2  F          dz2   2.235  1  3  2    10
+  1811   121  1     Fe  11  3  2  1  2  F          dxz   2.235  1  3  2    11
+  1812   121  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  3  2    12
+  1813   121  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  3  2    13
+  1814   121  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  3  2    14
+  1815   121  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  3  2    15
+  1816   122  1     Fe   1  4  0  0  1  F            s   6.001  2  3  2     1
+  1817   122  1     Fe   2  4  0  0  2  F            s   5.853  2  3  2     2
+  1818   122  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  3  2     3
+  1819   122  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  3  2     4
+  1820   122  1     Fe   5  3  2  0  1  F          dz2   4.792  2  3  2     5
+  1821   122  1     Fe   6  3  2  1  1  F          dxz   4.792  2  3  2     6
+  1822   122  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  3  2     7
+  1823   122  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  3  2     8
+  1824   122  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  3  2     9
+  1825   122  1     Fe  10  3  2  0  2  F          dz2   2.235  2  3  2    10
+  1826   122  1     Fe  11  3  2  1  2  F          dxz   2.235  2  3  2    11
+  1827   122  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  3  2    12
+  1828   122  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  3  2    13
+  1829   122  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  3  2    14
+  1830   122  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  3  2    15
+  1831   123  1     Fe   1  4  0  0  1  F            s   6.001  3  3  2     1
+  1832   123  1     Fe   2  4  0  0  2  F            s   5.853  3  3  2     2
+  1833   123  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  3  2     3
+  1834   123  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  3  2     4
+  1835   123  1     Fe   5  3  2  0  1  F          dz2   4.792  3  3  2     5
+  1836   123  1     Fe   6  3  2  1  1  F          dxz   4.792  3  3  2     6
+  1837   123  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  3  2     7
+  1838   123  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  3  2     8
+  1839   123  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  3  2     9
+  1840   123  1     Fe  10  3  2  0  2  F          dz2   2.235  3  3  2    10
+  1841   123  1     Fe  11  3  2  1  2  F          dxz   2.235  3  3  2    11
+  1842   123  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  3  2    12
+  1843   123  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  3  2    13
+  1844   123  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  3  2    14
+  1845   123  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  3  2    15
+  1846   124  1     Fe   1  4  0  0  1  F            s   6.001 -3  3  2     1
+  1847   124  1     Fe   2  4  0  0  2  F            s   5.853 -3  3  2     2
+  1848   124  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  3  2     3
+  1849   124  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  3  2     4
+  1850   124  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  3  2     5
+  1851   124  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  3  2     6
+  1852   124  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  3  2     7
+  1853   124  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  3  2     8
+  1854   124  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  3  2     9
+  1855   124  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  3  2    10
+  1856   124  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  3  2    11
+  1857   124  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  3  2    12
+  1858   124  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  3  2    13
+  1859   124  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  3  2    14
+  1860   124  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  3  2    15
+  1861   125  1     Fe   1  4  0  0  1  F            s   6.001 -2  3  2     1
+  1862   125  1     Fe   2  4  0  0  2  F            s   5.853 -2  3  2     2
+  1863   125  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  3  2     3
+  1864   125  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  3  2     4
+  1865   125  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  3  2     5
+  1866   125  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  3  2     6
+  1867   125  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  3  2     7
+  1868   125  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  3  2     8
+  1869   125  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  3  2     9
+  1870   125  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  3  2    10
+  1871   125  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  3  2    11
+  1872   125  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  3  2    12
+  1873   125  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  3  2    13
+  1874   125  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  3  2    14
+  1875   125  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  3  2    15
+  1876   126  1     Fe   1  4  0  0  1  F            s   6.001 -1  3  2     1
+  1877   126  1     Fe   2  4  0  0  2  F            s   5.853 -1  3  2     2
+  1878   126  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  3  2     3
+  1879   126  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  3  2     4
+  1880   126  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  3  2     5
+  1881   126  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  3  2     6
+  1882   126  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  3  2     7
+  1883   126  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  3  2     8
+  1884   126  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  3  2     9
+  1885   126  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  3  2    10
+  1886   126  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  3  2    11
+  1887   126  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  3  2    12
+  1888   126  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  3  2    13
+  1889   126  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  3  2    14
+  1890   126  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  3  2    15
+  1891   127  1     Fe   1  4  0  0  1  F            s   6.001  0 -3  2     1
+  1892   127  1     Fe   2  4  0  0  2  F            s   5.853  0 -3  2     2
+  1893   127  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -3  2     3
+  1894   127  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -3  2     4
+  1895   127  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -3  2     5
+  1896   127  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -3  2     6
+  1897   127  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -3  2     7
+  1898   127  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -3  2     8
+  1899   127  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -3  2     9
+  1900   127  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -3  2    10
+  1901   127  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -3  2    11
+  1902   127  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -3  2    12
+  1903   127  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -3  2    13
+  1904   127  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -3  2    14
+  1905   127  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -3  2    15
+  1906   128  1     Fe   1  4  0  0  1  F            s   6.001  1 -3  2     1
+  1907   128  1     Fe   2  4  0  0  2  F            s   5.853  1 -3  2     2
+  1908   128  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -3  2     3
+  1909   128  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -3  2     4
+  1910   128  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -3  2     5
+  1911   128  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -3  2     6
+  1912   128  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -3  2     7
+  1913   128  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -3  2     8
+  1914   128  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -3  2     9
+  1915   128  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -3  2    10
+  1916   128  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -3  2    11
+  1917   128  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -3  2    12
+  1918   128  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -3  2    13
+  1919   128  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -3  2    14
+  1920   128  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -3  2    15
+  1921   129  1     Fe   1  4  0  0  1  F            s   6.001  2 -3  2     1
+  1922   129  1     Fe   2  4  0  0  2  F            s   5.853  2 -3  2     2
+  1923   129  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -3  2     3
+  1924   129  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -3  2     4
+  1925   129  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -3  2     5
+  1926   129  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -3  2     6
+  1927   129  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -3  2     7
+  1928   129  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -3  2     8
+  1929   129  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -3  2     9
+  1930   129  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -3  2    10
+  1931   129  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -3  2    11
+  1932   129  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -3  2    12
+  1933   129  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -3  2    13
+  1934   129  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -3  2    14
+  1935   129  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -3  2    15
+  1936   130  1     Fe   1  4  0  0  1  F            s   6.001  3 -3  2     1
+  1937   130  1     Fe   2  4  0  0  2  F            s   5.853  3 -3  2     2
+  1938   130  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -3  2     3
+  1939   130  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -3  2     4
+  1940   130  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -3  2     5
+  1941   130  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -3  2     6
+  1942   130  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -3  2     7
+  1943   130  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -3  2     8
+  1944   130  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -3  2     9
+  1945   130  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -3  2    10
+  1946   130  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -3  2    11
+  1947   130  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -3  2    12
+  1948   130  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -3  2    13
+  1949   130  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -3  2    14
+  1950   130  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -3  2    15
+  1951   131  1     Fe   1  4  0  0  1  F            s   6.001 -3 -3  2     1
+  1952   131  1     Fe   2  4  0  0  2  F            s   5.853 -3 -3  2     2
+  1953   131  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -3  2     3
+  1954   131  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -3  2     4
+  1955   131  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -3  2     5
+  1956   131  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -3  2     6
+  1957   131  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -3  2     7
+  1958   131  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -3  2     8
+  1959   131  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -3  2     9
+  1960   131  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -3  2    10
+  1961   131  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -3  2    11
+  1962   131  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -3  2    12
+  1963   131  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -3  2    13
+  1964   131  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -3  2    14
+  1965   131  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -3  2    15
+  1966   132  1     Fe   1  4  0  0  1  F            s   6.001 -2 -3  2     1
+  1967   132  1     Fe   2  4  0  0  2  F            s   5.853 -2 -3  2     2
+  1968   132  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -3  2     3
+  1969   132  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -3  2     4
+  1970   132  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -3  2     5
+  1971   132  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -3  2     6
+  1972   132  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -3  2     7
+  1973   132  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -3  2     8
+  1974   132  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -3  2     9
+  1975   132  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -3  2    10
+  1976   132  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -3  2    11
+  1977   132  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -3  2    12
+  1978   132  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -3  2    13
+  1979   132  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -3  2    14
+  1980   132  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -3  2    15
+  1981   133  1     Fe   1  4  0  0  1  F            s   6.001 -1 -3  2     1
+  1982   133  1     Fe   2  4  0  0  2  F            s   5.853 -1 -3  2     2
+  1983   133  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -3  2     3
+  1984   133  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -3  2     4
+  1985   133  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -3  2     5
+  1986   133  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -3  2     6
+  1987   133  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -3  2     7
+  1988   133  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -3  2     8
+  1989   133  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -3  2     9
+  1990   133  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -3  2    10
+  1991   133  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -3  2    11
+  1992   133  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -3  2    12
+  1993   133  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -3  2    13
+  1994   133  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -3  2    14
+  1995   133  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -3  2    15
+  1996   134  1     Fe   1  4  0  0  1  F            s   6.001  0 -2  2     1
+  1997   134  1     Fe   2  4  0  0  2  F            s   5.853  0 -2  2     2
+  1998   134  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -2  2     3
+  1999   134  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -2  2     4
+  2000   134  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -2  2     5
+  2001   134  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -2  2     6
+  2002   134  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -2  2     7
+  2003   134  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -2  2     8
+  2004   134  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -2  2     9
+  2005   134  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -2  2    10
+  2006   134  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -2  2    11
+  2007   134  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -2  2    12
+  2008   134  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -2  2    13
+  2009   134  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -2  2    14
+  2010   134  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -2  2    15
+  2011   135  1     Fe   1  4  0  0  1  F            s   6.001  1 -2  2     1
+  2012   135  1     Fe   2  4  0  0  2  F            s   5.853  1 -2  2     2
+  2013   135  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -2  2     3
+  2014   135  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -2  2     4
+  2015   135  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -2  2     5
+  2016   135  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -2  2     6
+  2017   135  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -2  2     7
+  2018   135  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -2  2     8
+  2019   135  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -2  2     9
+  2020   135  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -2  2    10
+  2021   135  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -2  2    11
+  2022   135  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -2  2    12
+  2023   135  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -2  2    13
+  2024   135  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -2  2    14
+  2025   135  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -2  2    15
+  2026   136  1     Fe   1  4  0  0  1  F            s   6.001  2 -2  2     1
+  2027   136  1     Fe   2  4  0  0  2  F            s   5.853  2 -2  2     2
+  2028   136  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -2  2     3
+  2029   136  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -2  2     4
+  2030   136  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -2  2     5
+  2031   136  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -2  2     6
+  2032   136  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -2  2     7
+  2033   136  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -2  2     8
+  2034   136  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -2  2     9
+  2035   136  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -2  2    10
+  2036   136  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -2  2    11
+  2037   136  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -2  2    12
+  2038   136  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -2  2    13
+  2039   136  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -2  2    14
+  2040   136  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -2  2    15
+  2041   137  1     Fe   1  4  0  0  1  F            s   6.001  3 -2  2     1
+  2042   137  1     Fe   2  4  0  0  2  F            s   5.853  3 -2  2     2
+  2043   137  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -2  2     3
+  2044   137  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -2  2     4
+  2045   137  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -2  2     5
+  2046   137  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -2  2     6
+  2047   137  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -2  2     7
+  2048   137  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -2  2     8
+  2049   137  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -2  2     9
+  2050   137  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -2  2    10
+  2051   137  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -2  2    11
+  2052   137  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -2  2    12
+  2053   137  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -2  2    13
+  2054   137  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -2  2    14
+  2055   137  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -2  2    15
+  2056   138  1     Fe   1  4  0  0  1  F            s   6.001 -3 -2  2     1
+  2057   138  1     Fe   2  4  0  0  2  F            s   5.853 -3 -2  2     2
+  2058   138  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -2  2     3
+  2059   138  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -2  2     4
+  2060   138  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -2  2     5
+  2061   138  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -2  2     6
+  2062   138  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -2  2     7
+  2063   138  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -2  2     8
+  2064   138  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -2  2     9
+  2065   138  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -2  2    10
+  2066   138  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -2  2    11
+  2067   138  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -2  2    12
+  2068   138  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -2  2    13
+  2069   138  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -2  2    14
+  2070   138  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -2  2    15
+  2071   139  1     Fe   1  4  0  0  1  F            s   6.001 -2 -2  2     1
+  2072   139  1     Fe   2  4  0  0  2  F            s   5.853 -2 -2  2     2
+  2073   139  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -2  2     3
+  2074   139  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -2  2     4
+  2075   139  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -2  2     5
+  2076   139  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -2  2     6
+  2077   139  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -2  2     7
+  2078   139  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -2  2     8
+  2079   139  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -2  2     9
+  2080   139  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -2  2    10
+  2081   139  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -2  2    11
+  2082   139  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -2  2    12
+  2083   139  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -2  2    13
+  2084   139  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -2  2    14
+  2085   139  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -2  2    15
+  2086   140  1     Fe   1  4  0  0  1  F            s   6.001 -1 -2  2     1
+  2087   140  1     Fe   2  4  0  0  2  F            s   5.853 -1 -2  2     2
+  2088   140  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -2  2     3
+  2089   140  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -2  2     4
+  2090   140  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -2  2     5
+  2091   140  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -2  2     6
+  2092   140  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -2  2     7
+  2093   140  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -2  2     8
+  2094   140  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -2  2     9
+  2095   140  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -2  2    10
+  2096   140  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -2  2    11
+  2097   140  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -2  2    12
+  2098   140  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -2  2    13
+  2099   140  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -2  2    14
+  2100   140  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -2  2    15
+  2101   141  1     Fe   1  4  0  0  1  F            s   6.001  0 -1  2     1
+  2102   141  1     Fe   2  4  0  0  2  F            s   5.853  0 -1  2     2
+  2103   141  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -1  2     3
+  2104   141  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -1  2     4
+  2105   141  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -1  2     5
+  2106   141  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -1  2     6
+  2107   141  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -1  2     7
+  2108   141  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -1  2     8
+  2109   141  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -1  2     9
+  2110   141  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -1  2    10
+  2111   141  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -1  2    11
+  2112   141  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -1  2    12
+  2113   141  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -1  2    13
+  2114   141  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -1  2    14
+  2115   141  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -1  2    15
+  2116   142  1     Fe   1  4  0  0  1  F            s   6.001  1 -1  2     1
+  2117   142  1     Fe   2  4  0  0  2  F            s   5.853  1 -1  2     2
+  2118   142  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -1  2     3
+  2119   142  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -1  2     4
+  2120   142  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -1  2     5
+  2121   142  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -1  2     6
+  2122   142  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -1  2     7
+  2123   142  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -1  2     8
+  2124   142  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -1  2     9
+  2125   142  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -1  2    10
+  2126   142  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -1  2    11
+  2127   142  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -1  2    12
+  2128   142  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -1  2    13
+  2129   142  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -1  2    14
+  2130   142  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -1  2    15
+  2131   143  1     Fe   1  4  0  0  1  F            s   6.001  2 -1  2     1
+  2132   143  1     Fe   2  4  0  0  2  F            s   5.853  2 -1  2     2
+  2133   143  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -1  2     3
+  2134   143  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -1  2     4
+  2135   143  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -1  2     5
+  2136   143  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -1  2     6
+  2137   143  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -1  2     7
+  2138   143  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -1  2     8
+  2139   143  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -1  2     9
+  2140   143  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -1  2    10
+  2141   143  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -1  2    11
+  2142   143  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -1  2    12
+  2143   143  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -1  2    13
+  2144   143  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -1  2    14
+  2145   143  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -1  2    15
+  2146   144  1     Fe   1  4  0  0  1  F            s   6.001  3 -1  2     1
+  2147   144  1     Fe   2  4  0  0  2  F            s   5.853  3 -1  2     2
+  2148   144  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -1  2     3
+  2149   144  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -1  2     4
+  2150   144  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -1  2     5
+  2151   144  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -1  2     6
+  2152   144  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -1  2     7
+  2153   144  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -1  2     8
+  2154   144  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -1  2     9
+  2155   144  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -1  2    10
+  2156   144  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -1  2    11
+  2157   144  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -1  2    12
+  2158   144  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -1  2    13
+  2159   144  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -1  2    14
+  2160   144  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -1  2    15
+  2161   145  1     Fe   1  4  0  0  1  F            s   6.001 -3 -1  2     1
+  2162   145  1     Fe   2  4  0  0  2  F            s   5.853 -3 -1  2     2
+  2163   145  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -1  2     3
+  2164   145  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -1  2     4
+  2165   145  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -1  2     5
+  2166   145  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -1  2     6
+  2167   145  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -1  2     7
+  2168   145  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -1  2     8
+  2169   145  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -1  2     9
+  2170   145  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -1  2    10
+  2171   145  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -1  2    11
+  2172   145  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -1  2    12
+  2173   145  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -1  2    13
+  2174   145  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -1  2    14
+  2175   145  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -1  2    15
+  2176   146  1     Fe   1  4  0  0  1  F            s   6.001 -2 -1  2     1
+  2177   146  1     Fe   2  4  0  0  2  F            s   5.853 -2 -1  2     2
+  2178   146  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -1  2     3
+  2179   146  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -1  2     4
+  2180   146  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -1  2     5
+  2181   146  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -1  2     6
+  2182   146  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -1  2     7
+  2183   146  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -1  2     8
+  2184   146  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -1  2     9
+  2185   146  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -1  2    10
+  2186   146  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -1  2    11
+  2187   146  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -1  2    12
+  2188   146  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -1  2    13
+  2189   146  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -1  2    14
+  2190   146  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -1  2    15
+  2191   147  1     Fe   1  4  0  0  1  F            s   6.001 -1 -1  2     1
+  2192   147  1     Fe   2  4  0  0  2  F            s   5.853 -1 -1  2     2
+  2193   147  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -1  2     3
+  2194   147  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -1  2     4
+  2195   147  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -1  2     5
+  2196   147  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -1  2     6
+  2197   147  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -1  2     7
+  2198   147  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -1  2     8
+  2199   147  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -1  2     9
+  2200   147  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -1  2    10
+  2201   147  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -1  2    11
+  2202   147  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -1  2    12
+  2203   147  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -1  2    13
+  2204   147  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -1  2    14
+  2205   147  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -1  2    15
+  2206   148  1     Fe   1  4  0  0  1  F            s   6.001  0  0  3     1
+  2207   148  1     Fe   2  4  0  0  2  F            s   5.853  0  0  3     2
+  2208   148  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  0  3     3
+  2209   148  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  0  3     4
+  2210   148  1     Fe   5  3  2  0  1  F          dz2   4.792  0  0  3     5
+  2211   148  1     Fe   6  3  2  1  1  F          dxz   4.792  0  0  3     6
+  2212   148  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  0  3     7
+  2213   148  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  0  3     8
+  2214   148  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  0  3     9
+  2215   148  1     Fe  10  3  2  0  2  F          dz2   2.235  0  0  3    10
+  2216   148  1     Fe  11  3  2  1  2  F          dxz   2.235  0  0  3    11
+  2217   148  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  0  3    12
+  2218   148  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  0  3    13
+  2219   148  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  0  3    14
+  2220   148  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  0  3    15
+  2221   149  1     Fe   1  4  0  0  1  F            s   6.001  1  0  3     1
+  2222   149  1     Fe   2  4  0  0  2  F            s   5.853  1  0  3     2
+  2223   149  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  0  3     3
+  2224   149  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  0  3     4
+  2225   149  1     Fe   5  3  2  0  1  F          dz2   4.792  1  0  3     5
+  2226   149  1     Fe   6  3  2  1  1  F          dxz   4.792  1  0  3     6
+  2227   149  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  0  3     7
+  2228   149  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  0  3     8
+  2229   149  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  0  3     9
+  2230   149  1     Fe  10  3  2  0  2  F          dz2   2.235  1  0  3    10
+  2231   149  1     Fe  11  3  2  1  2  F          dxz   2.235  1  0  3    11
+  2232   149  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  0  3    12
+  2233   149  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  0  3    13
+  2234   149  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  0  3    14
+  2235   149  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  0  3    15
+  2236   150  1     Fe   1  4  0  0  1  F            s   6.001  2  0  3     1
+  2237   150  1     Fe   2  4  0  0  2  F            s   5.853  2  0  3     2
+  2238   150  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  0  3     3
+  2239   150  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  0  3     4
+  2240   150  1     Fe   5  3  2  0  1  F          dz2   4.792  2  0  3     5
+  2241   150  1     Fe   6  3  2  1  1  F          dxz   4.792  2  0  3     6
+  2242   150  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  0  3     7
+  2243   150  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  0  3     8
+  2244   150  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  0  3     9
+  2245   150  1     Fe  10  3  2  0  2  F          dz2   2.235  2  0  3    10
+  2246   150  1     Fe  11  3  2  1  2  F          dxz   2.235  2  0  3    11
+  2247   150  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  0  3    12
+  2248   150  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  0  3    13
+  2249   150  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  0  3    14
+  2250   150  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  0  3    15
+  2251   151  1     Fe   1  4  0  0  1  F            s   6.001  3  0  3     1
+  2252   151  1     Fe   2  4  0  0  2  F            s   5.853  3  0  3     2
+  2253   151  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  0  3     3
+  2254   151  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  0  3     4
+  2255   151  1     Fe   5  3  2  0  1  F          dz2   4.792  3  0  3     5
+  2256   151  1     Fe   6  3  2  1  1  F          dxz   4.792  3  0  3     6
+  2257   151  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  0  3     7
+  2258   151  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  0  3     8
+  2259   151  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  0  3     9
+  2260   151  1     Fe  10  3  2  0  2  F          dz2   2.235  3  0  3    10
+  2261   151  1     Fe  11  3  2  1  2  F          dxz   2.235  3  0  3    11
+  2262   151  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  0  3    12
+  2263   151  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  0  3    13
+  2264   151  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  0  3    14
+  2265   151  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  0  3    15
+  2266   152  1     Fe   1  4  0  0  1  F            s   6.001 -3  0  3     1
+  2267   152  1     Fe   2  4  0  0  2  F            s   5.853 -3  0  3     2
+  2268   152  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  0  3     3
+  2269   152  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  0  3     4
+  2270   152  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  0  3     5
+  2271   152  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  0  3     6
+  2272   152  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  0  3     7
+  2273   152  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  0  3     8
+  2274   152  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  0  3     9
+  2275   152  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  0  3    10
+  2276   152  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  0  3    11
+  2277   152  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  0  3    12
+  2278   152  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  0  3    13
+  2279   152  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  0  3    14
+  2280   152  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  0  3    15
+  2281   153  1     Fe   1  4  0  0  1  F            s   6.001 -2  0  3     1
+  2282   153  1     Fe   2  4  0  0  2  F            s   5.853 -2  0  3     2
+  2283   153  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  0  3     3
+  2284   153  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  0  3     4
+  2285   153  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  0  3     5
+  2286   153  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  0  3     6
+  2287   153  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  0  3     7
+  2288   153  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  0  3     8
+  2289   153  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  0  3     9
+  2290   153  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  0  3    10
+  2291   153  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  0  3    11
+  2292   153  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  0  3    12
+  2293   153  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  0  3    13
+  2294   153  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  0  3    14
+  2295   153  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  0  3    15
+  2296   154  1     Fe   1  4  0  0  1  F            s   6.001 -1  0  3     1
+  2297   154  1     Fe   2  4  0  0  2  F            s   5.853 -1  0  3     2
+  2298   154  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  0  3     3
+  2299   154  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  0  3     4
+  2300   154  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  0  3     5
+  2301   154  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  0  3     6
+  2302   154  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  0  3     7
+  2303   154  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  0  3     8
+  2304   154  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  0  3     9
+  2305   154  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  0  3    10
+  2306   154  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  0  3    11
+  2307   154  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  0  3    12
+  2308   154  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  0  3    13
+  2309   154  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  0  3    14
+  2310   154  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  0  3    15
+  2311   155  1     Fe   1  4  0  0  1  F            s   6.001  0  1  3     1
+  2312   155  1     Fe   2  4  0  0  2  F            s   5.853  0  1  3     2
+  2313   155  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  1  3     3
+  2314   155  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  1  3     4
+  2315   155  1     Fe   5  3  2  0  1  F          dz2   4.792  0  1  3     5
+  2316   155  1     Fe   6  3  2  1  1  F          dxz   4.792  0  1  3     6
+  2317   155  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  1  3     7
+  2318   155  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  1  3     8
+  2319   155  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  1  3     9
+  2320   155  1     Fe  10  3  2  0  2  F          dz2   2.235  0  1  3    10
+  2321   155  1     Fe  11  3  2  1  2  F          dxz   2.235  0  1  3    11
+  2322   155  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  1  3    12
+  2323   155  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  1  3    13
+  2324   155  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  1  3    14
+  2325   155  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  1  3    15
+  2326   156  1     Fe   1  4  0  0  1  F            s   6.001  1  1  3     1
+  2327   156  1     Fe   2  4  0  0  2  F            s   5.853  1  1  3     2
+  2328   156  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  1  3     3
+  2329   156  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  1  3     4
+  2330   156  1     Fe   5  3  2  0  1  F          dz2   4.792  1  1  3     5
+  2331   156  1     Fe   6  3  2  1  1  F          dxz   4.792  1  1  3     6
+  2332   156  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  1  3     7
+  2333   156  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  1  3     8
+  2334   156  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  1  3     9
+  2335   156  1     Fe  10  3  2  0  2  F          dz2   2.235  1  1  3    10
+  2336   156  1     Fe  11  3  2  1  2  F          dxz   2.235  1  1  3    11
+  2337   156  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  1  3    12
+  2338   156  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  1  3    13
+  2339   156  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  1  3    14
+  2340   156  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  1  3    15
+  2341   157  1     Fe   1  4  0  0  1  F            s   6.001  2  1  3     1
+  2342   157  1     Fe   2  4  0  0  2  F            s   5.853  2  1  3     2
+  2343   157  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  1  3     3
+  2344   157  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  1  3     4
+  2345   157  1     Fe   5  3  2  0  1  F          dz2   4.792  2  1  3     5
+  2346   157  1     Fe   6  3  2  1  1  F          dxz   4.792  2  1  3     6
+  2347   157  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  1  3     7
+  2348   157  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  1  3     8
+  2349   157  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  1  3     9
+  2350   157  1     Fe  10  3  2  0  2  F          dz2   2.235  2  1  3    10
+  2351   157  1     Fe  11  3  2  1  2  F          dxz   2.235  2  1  3    11
+  2352   157  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  1  3    12
+  2353   157  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  1  3    13
+  2354   157  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  1  3    14
+  2355   157  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  1  3    15
+  2356   158  1     Fe   1  4  0  0  1  F            s   6.001  3  1  3     1
+  2357   158  1     Fe   2  4  0  0  2  F            s   5.853  3  1  3     2
+  2358   158  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  1  3     3
+  2359   158  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  1  3     4
+  2360   158  1     Fe   5  3  2  0  1  F          dz2   4.792  3  1  3     5
+  2361   158  1     Fe   6  3  2  1  1  F          dxz   4.792  3  1  3     6
+  2362   158  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  1  3     7
+  2363   158  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  1  3     8
+  2364   158  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  1  3     9
+  2365   158  1     Fe  10  3  2  0  2  F          dz2   2.235  3  1  3    10
+  2366   158  1     Fe  11  3  2  1  2  F          dxz   2.235  3  1  3    11
+  2367   158  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  1  3    12
+  2368   158  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  1  3    13
+  2369   158  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  1  3    14
+  2370   158  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  1  3    15
+  2371   159  1     Fe   1  4  0  0  1  F            s   6.001 -3  1  3     1
+  2372   159  1     Fe   2  4  0  0  2  F            s   5.853 -3  1  3     2
+  2373   159  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  1  3     3
+  2374   159  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  1  3     4
+  2375   159  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  1  3     5
+  2376   159  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  1  3     6
+  2377   159  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  1  3     7
+  2378   159  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  1  3     8
+  2379   159  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  1  3     9
+  2380   159  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  1  3    10
+  2381   159  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  1  3    11
+  2382   159  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  1  3    12
+  2383   159  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  1  3    13
+  2384   159  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  1  3    14
+  2385   159  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  1  3    15
+  2386   160  1     Fe   1  4  0  0  1  F            s   6.001 -2  1  3     1
+  2387   160  1     Fe   2  4  0  0  2  F            s   5.853 -2  1  3     2
+  2388   160  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  1  3     3
+  2389   160  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  1  3     4
+  2390   160  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  1  3     5
+  2391   160  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  1  3     6
+  2392   160  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  1  3     7
+  2393   160  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  1  3     8
+  2394   160  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  1  3     9
+  2395   160  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  1  3    10
+  2396   160  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  1  3    11
+  2397   160  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  1  3    12
+  2398   160  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  1  3    13
+  2399   160  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  1  3    14
+  2400   160  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  1  3    15
+  2401   161  1     Fe   1  4  0  0  1  F            s   6.001 -1  1  3     1
+  2402   161  1     Fe   2  4  0  0  2  F            s   5.853 -1  1  3     2
+  2403   161  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  1  3     3
+  2404   161  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  1  3     4
+  2405   161  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  1  3     5
+  2406   161  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  1  3     6
+  2407   161  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  1  3     7
+  2408   161  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  1  3     8
+  2409   161  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  1  3     9
+  2410   161  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  1  3    10
+  2411   161  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  1  3    11
+  2412   161  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  1  3    12
+  2413   161  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  1  3    13
+  2414   161  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  1  3    14
+  2415   161  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  1  3    15
+  2416   162  1     Fe   1  4  0  0  1  F            s   6.001  0  2  3     1
+  2417   162  1     Fe   2  4  0  0  2  F            s   5.853  0  2  3     2
+  2418   162  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  2  3     3
+  2419   162  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  2  3     4
+  2420   162  1     Fe   5  3  2  0  1  F          dz2   4.792  0  2  3     5
+  2421   162  1     Fe   6  3  2  1  1  F          dxz   4.792  0  2  3     6
+  2422   162  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  2  3     7
+  2423   162  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  2  3     8
+  2424   162  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  2  3     9
+  2425   162  1     Fe  10  3  2  0  2  F          dz2   2.235  0  2  3    10
+  2426   162  1     Fe  11  3  2  1  2  F          dxz   2.235  0  2  3    11
+  2427   162  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  2  3    12
+  2428   162  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  2  3    13
+  2429   162  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  2  3    14
+  2430   162  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  2  3    15
+  2431   163  1     Fe   1  4  0  0  1  F            s   6.001  1  2  3     1
+  2432   163  1     Fe   2  4  0  0  2  F            s   5.853  1  2  3     2
+  2433   163  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  2  3     3
+  2434   163  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  2  3     4
+  2435   163  1     Fe   5  3  2  0  1  F          dz2   4.792  1  2  3     5
+  2436   163  1     Fe   6  3  2  1  1  F          dxz   4.792  1  2  3     6
+  2437   163  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  2  3     7
+  2438   163  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  2  3     8
+  2439   163  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  2  3     9
+  2440   163  1     Fe  10  3  2  0  2  F          dz2   2.235  1  2  3    10
+  2441   163  1     Fe  11  3  2  1  2  F          dxz   2.235  1  2  3    11
+  2442   163  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  2  3    12
+  2443   163  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  2  3    13
+  2444   163  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  2  3    14
+  2445   163  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  2  3    15
+  2446   164  1     Fe   1  4  0  0  1  F            s   6.001  2  2  3     1
+  2447   164  1     Fe   2  4  0  0  2  F            s   5.853  2  2  3     2
+  2448   164  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  2  3     3
+  2449   164  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  2  3     4
+  2450   164  1     Fe   5  3  2  0  1  F          dz2   4.792  2  2  3     5
+  2451   164  1     Fe   6  3  2  1  1  F          dxz   4.792  2  2  3     6
+  2452   164  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  2  3     7
+  2453   164  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  2  3     8
+  2454   164  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  2  3     9
+  2455   164  1     Fe  10  3  2  0  2  F          dz2   2.235  2  2  3    10
+  2456   164  1     Fe  11  3  2  1  2  F          dxz   2.235  2  2  3    11
+  2457   164  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  2  3    12
+  2458   164  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  2  3    13
+  2459   164  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  2  3    14
+  2460   164  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  2  3    15
+  2461   165  1     Fe   1  4  0  0  1  F            s   6.001  3  2  3     1
+  2462   165  1     Fe   2  4  0  0  2  F            s   5.853  3  2  3     2
+  2463   165  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  2  3     3
+  2464   165  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  2  3     4
+  2465   165  1     Fe   5  3  2  0  1  F          dz2   4.792  3  2  3     5
+  2466   165  1     Fe   6  3  2  1  1  F          dxz   4.792  3  2  3     6
+  2467   165  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  2  3     7
+  2468   165  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  2  3     8
+  2469   165  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  2  3     9
+  2470   165  1     Fe  10  3  2  0  2  F          dz2   2.235  3  2  3    10
+  2471   165  1     Fe  11  3  2  1  2  F          dxz   2.235  3  2  3    11
+  2472   165  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  2  3    12
+  2473   165  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  2  3    13
+  2474   165  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  2  3    14
+  2475   165  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  2  3    15
+  2476   166  1     Fe   1  4  0  0  1  F            s   6.001 -3  2  3     1
+  2477   166  1     Fe   2  4  0  0  2  F            s   5.853 -3  2  3     2
+  2478   166  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  2  3     3
+  2479   166  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  2  3     4
+  2480   166  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  2  3     5
+  2481   166  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  2  3     6
+  2482   166  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  2  3     7
+  2483   166  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  2  3     8
+  2484   166  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  2  3     9
+  2485   166  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  2  3    10
+  2486   166  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  2  3    11
+  2487   166  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  2  3    12
+  2488   166  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  2  3    13
+  2489   166  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  2  3    14
+  2490   166  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  2  3    15
+  2491   167  1     Fe   1  4  0  0  1  F            s   6.001 -2  2  3     1
+  2492   167  1     Fe   2  4  0  0  2  F            s   5.853 -2  2  3     2
+  2493   167  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  2  3     3
+  2494   167  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  2  3     4
+  2495   167  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  2  3     5
+  2496   167  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  2  3     6
+  2497   167  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  2  3     7
+  2498   167  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  2  3     8
+  2499   167  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  2  3     9
+  2500   167  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  2  3    10
+  2501   167  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  2  3    11
+  2502   167  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  2  3    12
+  2503   167  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  2  3    13
+  2504   167  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  2  3    14
+  2505   167  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  2  3    15
+  2506   168  1     Fe   1  4  0  0  1  F            s   6.001 -1  2  3     1
+  2507   168  1     Fe   2  4  0  0  2  F            s   5.853 -1  2  3     2
+  2508   168  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  2  3     3
+  2509   168  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  2  3     4
+  2510   168  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  2  3     5
+  2511   168  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  2  3     6
+  2512   168  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  2  3     7
+  2513   168  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  2  3     8
+  2514   168  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  2  3     9
+  2515   168  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  2  3    10
+  2516   168  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  2  3    11
+  2517   168  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  2  3    12
+  2518   168  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  2  3    13
+  2519   168  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  2  3    14
+  2520   168  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  2  3    15
+  2521   169  1     Fe   1  4  0  0  1  F            s   6.001  0  3  3     1
+  2522   169  1     Fe   2  4  0  0  2  F            s   5.853  0  3  3     2
+  2523   169  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  3  3     3
+  2524   169  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  3  3     4
+  2525   169  1     Fe   5  3  2  0  1  F          dz2   4.792  0  3  3     5
+  2526   169  1     Fe   6  3  2  1  1  F          dxz   4.792  0  3  3     6
+  2527   169  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  3  3     7
+  2528   169  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  3  3     8
+  2529   169  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  3  3     9
+  2530   169  1     Fe  10  3  2  0  2  F          dz2   2.235  0  3  3    10
+  2531   169  1     Fe  11  3  2  1  2  F          dxz   2.235  0  3  3    11
+  2532   169  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  3  3    12
+  2533   169  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  3  3    13
+  2534   169  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  3  3    14
+  2535   169  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  3  3    15
+  2536   170  1     Fe   1  4  0  0  1  F            s   6.001  1  3  3     1
+  2537   170  1     Fe   2  4  0  0  2  F            s   5.853  1  3  3     2
+  2538   170  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  3  3     3
+  2539   170  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  3  3     4
+  2540   170  1     Fe   5  3  2  0  1  F          dz2   4.792  1  3  3     5
+  2541   170  1     Fe   6  3  2  1  1  F          dxz   4.792  1  3  3     6
+  2542   170  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  3  3     7
+  2543   170  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  3  3     8
+  2544   170  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  3  3     9
+  2545   170  1     Fe  10  3  2  0  2  F          dz2   2.235  1  3  3    10
+  2546   170  1     Fe  11  3  2  1  2  F          dxz   2.235  1  3  3    11
+  2547   170  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  3  3    12
+  2548   170  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  3  3    13
+  2549   170  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  3  3    14
+  2550   170  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  3  3    15
+  2551   171  1     Fe   1  4  0  0  1  F            s   6.001  2  3  3     1
+  2552   171  1     Fe   2  4  0  0  2  F            s   5.853  2  3  3     2
+  2553   171  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  3  3     3
+  2554   171  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  3  3     4
+  2555   171  1     Fe   5  3  2  0  1  F          dz2   4.792  2  3  3     5
+  2556   171  1     Fe   6  3  2  1  1  F          dxz   4.792  2  3  3     6
+  2557   171  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  3  3     7
+  2558   171  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  3  3     8
+  2559   171  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  3  3     9
+  2560   171  1     Fe  10  3  2  0  2  F          dz2   2.235  2  3  3    10
+  2561   171  1     Fe  11  3  2  1  2  F          dxz   2.235  2  3  3    11
+  2562   171  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  3  3    12
+  2563   171  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  3  3    13
+  2564   171  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  3  3    14
+  2565   171  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  3  3    15
+  2566   172  1     Fe   1  4  0  0  1  F            s   6.001  3  3  3     1
+  2567   172  1     Fe   2  4  0  0  2  F            s   5.853  3  3  3     2
+  2568   172  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  3  3     3
+  2569   172  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  3  3     4
+  2570   172  1     Fe   5  3  2  0  1  F          dz2   4.792  3  3  3     5
+  2571   172  1     Fe   6  3  2  1  1  F          dxz   4.792  3  3  3     6
+  2572   172  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  3  3     7
+  2573   172  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  3  3     8
+  2574   172  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  3  3     9
+  2575   172  1     Fe  10  3  2  0  2  F          dz2   2.235  3  3  3    10
+  2576   172  1     Fe  11  3  2  1  2  F          dxz   2.235  3  3  3    11
+  2577   172  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  3  3    12
+  2578   172  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  3  3    13
+  2579   172  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  3  3    14
+  2580   172  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  3  3    15
+  2581   173  1     Fe   1  4  0  0  1  F            s   6.001 -3  3  3     1
+  2582   173  1     Fe   2  4  0  0  2  F            s   5.853 -3  3  3     2
+  2583   173  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  3  3     3
+  2584   173  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  3  3     4
+  2585   173  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  3  3     5
+  2586   173  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  3  3     6
+  2587   173  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  3  3     7
+  2588   173  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  3  3     8
+  2589   173  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  3  3     9
+  2590   173  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  3  3    10
+  2591   173  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  3  3    11
+  2592   173  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  3  3    12
+  2593   173  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  3  3    13
+  2594   173  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  3  3    14
+  2595   173  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  3  3    15
+  2596   174  1     Fe   1  4  0  0  1  F            s   6.001 -2  3  3     1
+  2597   174  1     Fe   2  4  0  0  2  F            s   5.853 -2  3  3     2
+  2598   174  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  3  3     3
+  2599   174  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  3  3     4
+  2600   174  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  3  3     5
+  2601   174  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  3  3     6
+  2602   174  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  3  3     7
+  2603   174  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  3  3     8
+  2604   174  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  3  3     9
+  2605   174  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  3  3    10
+  2606   174  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  3  3    11
+  2607   174  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  3  3    12
+  2608   174  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  3  3    13
+  2609   174  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  3  3    14
+  2610   174  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  3  3    15
+  2611   175  1     Fe   1  4  0  0  1  F            s   6.001 -1  3  3     1
+  2612   175  1     Fe   2  4  0  0  2  F            s   5.853 -1  3  3     2
+  2613   175  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  3  3     3
+  2614   175  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  3  3     4
+  2615   175  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  3  3     5
+  2616   175  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  3  3     6
+  2617   175  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  3  3     7
+  2618   175  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  3  3     8
+  2619   175  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  3  3     9
+  2620   175  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  3  3    10
+  2621   175  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  3  3    11
+  2622   175  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  3  3    12
+  2623   175  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  3  3    13
+  2624   175  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  3  3    14
+  2625   175  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  3  3    15
+  2626   176  1     Fe   1  4  0  0  1  F            s   6.001  0 -3  3     1
+  2627   176  1     Fe   2  4  0  0  2  F            s   5.853  0 -3  3     2
+  2628   176  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -3  3     3
+  2629   176  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -3  3     4
+  2630   176  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -3  3     5
+  2631   176  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -3  3     6
+  2632   176  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -3  3     7
+  2633   176  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -3  3     8
+  2634   176  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -3  3     9
+  2635   176  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -3  3    10
+  2636   176  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -3  3    11
+  2637   176  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -3  3    12
+  2638   176  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -3  3    13
+  2639   176  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -3  3    14
+  2640   176  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -3  3    15
+  2641   177  1     Fe   1  4  0  0  1  F            s   6.001  1 -3  3     1
+  2642   177  1     Fe   2  4  0  0  2  F            s   5.853  1 -3  3     2
+  2643   177  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -3  3     3
+  2644   177  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -3  3     4
+  2645   177  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -3  3     5
+  2646   177  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -3  3     6
+  2647   177  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -3  3     7
+  2648   177  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -3  3     8
+  2649   177  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -3  3     9
+  2650   177  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -3  3    10
+  2651   177  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -3  3    11
+  2652   177  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -3  3    12
+  2653   177  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -3  3    13
+  2654   177  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -3  3    14
+  2655   177  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -3  3    15
+  2656   178  1     Fe   1  4  0  0  1  F            s   6.001  2 -3  3     1
+  2657   178  1     Fe   2  4  0  0  2  F            s   5.853  2 -3  3     2
+  2658   178  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -3  3     3
+  2659   178  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -3  3     4
+  2660   178  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -3  3     5
+  2661   178  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -3  3     6
+  2662   178  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -3  3     7
+  2663   178  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -3  3     8
+  2664   178  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -3  3     9
+  2665   178  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -3  3    10
+  2666   178  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -3  3    11
+  2667   178  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -3  3    12
+  2668   178  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -3  3    13
+  2669   178  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -3  3    14
+  2670   178  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -3  3    15
+  2671   179  1     Fe   1  4  0  0  1  F            s   6.001  3 -3  3     1
+  2672   179  1     Fe   2  4  0  0  2  F            s   5.853  3 -3  3     2
+  2673   179  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -3  3     3
+  2674   179  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -3  3     4
+  2675   179  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -3  3     5
+  2676   179  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -3  3     6
+  2677   179  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -3  3     7
+  2678   179  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -3  3     8
+  2679   179  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -3  3     9
+  2680   179  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -3  3    10
+  2681   179  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -3  3    11
+  2682   179  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -3  3    12
+  2683   179  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -3  3    13
+  2684   179  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -3  3    14
+  2685   179  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -3  3    15
+  2686   180  1     Fe   1  4  0  0  1  F            s   6.001 -3 -3  3     1
+  2687   180  1     Fe   2  4  0  0  2  F            s   5.853 -3 -3  3     2
+  2688   180  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -3  3     3
+  2689   180  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -3  3     4
+  2690   180  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -3  3     5
+  2691   180  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -3  3     6
+  2692   180  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -3  3     7
+  2693   180  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -3  3     8
+  2694   180  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -3  3     9
+  2695   180  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -3  3    10
+  2696   180  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -3  3    11
+  2697   180  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -3  3    12
+  2698   180  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -3  3    13
+  2699   180  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -3  3    14
+  2700   180  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -3  3    15
+  2701   181  1     Fe   1  4  0  0  1  F            s   6.001 -2 -3  3     1
+  2702   181  1     Fe   2  4  0  0  2  F            s   5.853 -2 -3  3     2
+  2703   181  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -3  3     3
+  2704   181  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -3  3     4
+  2705   181  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -3  3     5
+  2706   181  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -3  3     6
+  2707   181  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -3  3     7
+  2708   181  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -3  3     8
+  2709   181  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -3  3     9
+  2710   181  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -3  3    10
+  2711   181  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -3  3    11
+  2712   181  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -3  3    12
+  2713   181  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -3  3    13
+  2714   181  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -3  3    14
+  2715   181  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -3  3    15
+  2716   182  1     Fe   1  4  0  0  1  F            s   6.001 -1 -3  3     1
+  2717   182  1     Fe   2  4  0  0  2  F            s   5.853 -1 -3  3     2
+  2718   182  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -3  3     3
+  2719   182  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -3  3     4
+  2720   182  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -3  3     5
+  2721   182  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -3  3     6
+  2722   182  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -3  3     7
+  2723   182  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -3  3     8
+  2724   182  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -3  3     9
+  2725   182  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -3  3    10
+  2726   182  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -3  3    11
+  2727   182  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -3  3    12
+  2728   182  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -3  3    13
+  2729   182  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -3  3    14
+  2730   182  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -3  3    15
+  2731   183  1     Fe   1  4  0  0  1  F            s   6.001  0 -2  3     1
+  2732   183  1     Fe   2  4  0  0  2  F            s   5.853  0 -2  3     2
+  2733   183  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -2  3     3
+  2734   183  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -2  3     4
+  2735   183  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -2  3     5
+  2736   183  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -2  3     6
+  2737   183  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -2  3     7
+  2738   183  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -2  3     8
+  2739   183  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -2  3     9
+  2740   183  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -2  3    10
+  2741   183  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -2  3    11
+  2742   183  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -2  3    12
+  2743   183  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -2  3    13
+  2744   183  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -2  3    14
+  2745   183  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -2  3    15
+  2746   184  1     Fe   1  4  0  0  1  F            s   6.001  1 -2  3     1
+  2747   184  1     Fe   2  4  0  0  2  F            s   5.853  1 -2  3     2
+  2748   184  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -2  3     3
+  2749   184  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -2  3     4
+  2750   184  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -2  3     5
+  2751   184  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -2  3     6
+  2752   184  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -2  3     7
+  2753   184  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -2  3     8
+  2754   184  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -2  3     9
+  2755   184  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -2  3    10
+  2756   184  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -2  3    11
+  2757   184  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -2  3    12
+  2758   184  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -2  3    13
+  2759   184  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -2  3    14
+  2760   184  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -2  3    15
+  2761   185  1     Fe   1  4  0  0  1  F            s   6.001  2 -2  3     1
+  2762   185  1     Fe   2  4  0  0  2  F            s   5.853  2 -2  3     2
+  2763   185  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -2  3     3
+  2764   185  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -2  3     4
+  2765   185  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -2  3     5
+  2766   185  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -2  3     6
+  2767   185  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -2  3     7
+  2768   185  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -2  3     8
+  2769   185  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -2  3     9
+  2770   185  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -2  3    10
+  2771   185  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -2  3    11
+  2772   185  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -2  3    12
+  2773   185  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -2  3    13
+  2774   185  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -2  3    14
+  2775   185  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -2  3    15
+  2776   186  1     Fe   1  4  0  0  1  F            s   6.001  3 -2  3     1
+  2777   186  1     Fe   2  4  0  0  2  F            s   5.853  3 -2  3     2
+  2778   186  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -2  3     3
+  2779   186  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -2  3     4
+  2780   186  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -2  3     5
+  2781   186  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -2  3     6
+  2782   186  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -2  3     7
+  2783   186  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -2  3     8
+  2784   186  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -2  3     9
+  2785   186  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -2  3    10
+  2786   186  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -2  3    11
+  2787   186  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -2  3    12
+  2788   186  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -2  3    13
+  2789   186  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -2  3    14
+  2790   186  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -2  3    15
+  2791   187  1     Fe   1  4  0  0  1  F            s   6.001 -3 -2  3     1
+  2792   187  1     Fe   2  4  0  0  2  F            s   5.853 -3 -2  3     2
+  2793   187  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -2  3     3
+  2794   187  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -2  3     4
+  2795   187  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -2  3     5
+  2796   187  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -2  3     6
+  2797   187  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -2  3     7
+  2798   187  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -2  3     8
+  2799   187  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -2  3     9
+  2800   187  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -2  3    10
+  2801   187  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -2  3    11
+  2802   187  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -2  3    12
+  2803   187  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -2  3    13
+  2804   187  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -2  3    14
+  2805   187  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -2  3    15
+  2806   188  1     Fe   1  4  0  0  1  F            s   6.001 -2 -2  3     1
+  2807   188  1     Fe   2  4  0  0  2  F            s   5.853 -2 -2  3     2
+  2808   188  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -2  3     3
+  2809   188  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -2  3     4
+  2810   188  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -2  3     5
+  2811   188  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -2  3     6
+  2812   188  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -2  3     7
+  2813   188  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -2  3     8
+  2814   188  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -2  3     9
+  2815   188  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -2  3    10
+  2816   188  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -2  3    11
+  2817   188  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -2  3    12
+  2818   188  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -2  3    13
+  2819   188  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -2  3    14
+  2820   188  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -2  3    15
+  2821   189  1     Fe   1  4  0  0  1  F            s   6.001 -1 -2  3     1
+  2822   189  1     Fe   2  4  0  0  2  F            s   5.853 -1 -2  3     2
+  2823   189  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -2  3     3
+  2824   189  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -2  3     4
+  2825   189  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -2  3     5
+  2826   189  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -2  3     6
+  2827   189  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -2  3     7
+  2828   189  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -2  3     8
+  2829   189  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -2  3     9
+  2830   189  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -2  3    10
+  2831   189  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -2  3    11
+  2832   189  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -2  3    12
+  2833   189  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -2  3    13
+  2834   189  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -2  3    14
+  2835   189  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -2  3    15
+  2836   190  1     Fe   1  4  0  0  1  F            s   6.001  0 -1  3     1
+  2837   190  1     Fe   2  4  0  0  2  F            s   5.853  0 -1  3     2
+  2838   190  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -1  3     3
+  2839   190  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -1  3     4
+  2840   190  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -1  3     5
+  2841   190  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -1  3     6
+  2842   190  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -1  3     7
+  2843   190  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -1  3     8
+  2844   190  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -1  3     9
+  2845   190  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -1  3    10
+  2846   190  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -1  3    11
+  2847   190  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -1  3    12
+  2848   190  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -1  3    13
+  2849   190  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -1  3    14
+  2850   190  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -1  3    15
+  2851   191  1     Fe   1  4  0  0  1  F            s   6.001  1 -1  3     1
+  2852   191  1     Fe   2  4  0  0  2  F            s   5.853  1 -1  3     2
+  2853   191  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -1  3     3
+  2854   191  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -1  3     4
+  2855   191  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -1  3     5
+  2856   191  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -1  3     6
+  2857   191  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -1  3     7
+  2858   191  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -1  3     8
+  2859   191  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -1  3     9
+  2860   191  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -1  3    10
+  2861   191  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -1  3    11
+  2862   191  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -1  3    12
+  2863   191  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -1  3    13
+  2864   191  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -1  3    14
+  2865   191  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -1  3    15
+  2866   192  1     Fe   1  4  0  0  1  F            s   6.001  2 -1  3     1
+  2867   192  1     Fe   2  4  0  0  2  F            s   5.853  2 -1  3     2
+  2868   192  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -1  3     3
+  2869   192  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -1  3     4
+  2870   192  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -1  3     5
+  2871   192  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -1  3     6
+  2872   192  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -1  3     7
+  2873   192  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -1  3     8
+  2874   192  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -1  3     9
+  2875   192  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -1  3    10
+  2876   192  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -1  3    11
+  2877   192  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -1  3    12
+  2878   192  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -1  3    13
+  2879   192  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -1  3    14
+  2880   192  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -1  3    15
+  2881   193  1     Fe   1  4  0  0  1  F            s   6.001  3 -1  3     1
+  2882   193  1     Fe   2  4  0  0  2  F            s   5.853  3 -1  3     2
+  2883   193  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -1  3     3
+  2884   193  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -1  3     4
+  2885   193  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -1  3     5
+  2886   193  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -1  3     6
+  2887   193  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -1  3     7
+  2888   193  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -1  3     8
+  2889   193  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -1  3     9
+  2890   193  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -1  3    10
+  2891   193  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -1  3    11
+  2892   193  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -1  3    12
+  2893   193  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -1  3    13
+  2894   193  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -1  3    14
+  2895   193  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -1  3    15
+  2896   194  1     Fe   1  4  0  0  1  F            s   6.001 -3 -1  3     1
+  2897   194  1     Fe   2  4  0  0  2  F            s   5.853 -3 -1  3     2
+  2898   194  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -1  3     3
+  2899   194  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -1  3     4
+  2900   194  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -1  3     5
+  2901   194  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -1  3     6
+  2902   194  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -1  3     7
+  2903   194  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -1  3     8
+  2904   194  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -1  3     9
+  2905   194  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -1  3    10
+  2906   194  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -1  3    11
+  2907   194  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -1  3    12
+  2908   194  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -1  3    13
+  2909   194  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -1  3    14
+  2910   194  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -1  3    15
+  2911   195  1     Fe   1  4  0  0  1  F            s   6.001 -2 -1  3     1
+  2912   195  1     Fe   2  4  0  0  2  F            s   5.853 -2 -1  3     2
+  2913   195  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -1  3     3
+  2914   195  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -1  3     4
+  2915   195  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -1  3     5
+  2916   195  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -1  3     6
+  2917   195  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -1  3     7
+  2918   195  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -1  3     8
+  2919   195  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -1  3     9
+  2920   195  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -1  3    10
+  2921   195  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -1  3    11
+  2922   195  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -1  3    12
+  2923   195  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -1  3    13
+  2924   195  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -1  3    14
+  2925   195  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -1  3    15
+  2926   196  1     Fe   1  4  0  0  1  F            s   6.001 -1 -1  3     1
+  2927   196  1     Fe   2  4  0  0  2  F            s   5.853 -1 -1  3     2
+  2928   196  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -1  3     3
+  2929   196  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -1  3     4
+  2930   196  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -1  3     5
+  2931   196  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -1  3     6
+  2932   196  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -1  3     7
+  2933   196  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -1  3     8
+  2934   196  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -1  3     9
+  2935   196  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -1  3    10
+  2936   196  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -1  3    11
+  2937   196  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -1  3    12
+  2938   196  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -1  3    13
+  2939   196  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -1  3    14
+  2940   196  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -1  3    15
+  2941   197  1     Fe   1  4  0  0  1  F            s   6.001  0  0 -3     1
+  2942   197  1     Fe   2  4  0  0  2  F            s   5.853  0  0 -3     2
+  2943   197  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  0 -3     3
+  2944   197  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  0 -3     4
+  2945   197  1     Fe   5  3  2  0  1  F          dz2   4.792  0  0 -3     5
+  2946   197  1     Fe   6  3  2  1  1  F          dxz   4.792  0  0 -3     6
+  2947   197  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  0 -3     7
+  2948   197  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  0 -3     8
+  2949   197  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  0 -3     9
+  2950   197  1     Fe  10  3  2  0  2  F          dz2   2.235  0  0 -3    10
+  2951   197  1     Fe  11  3  2  1  2  F          dxz   2.235  0  0 -3    11
+  2952   197  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  0 -3    12
+  2953   197  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  0 -3    13
+  2954   197  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  0 -3    14
+  2955   197  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  0 -3    15
+  2956   198  1     Fe   1  4  0  0  1  F            s   6.001  1  0 -3     1
+  2957   198  1     Fe   2  4  0  0  2  F            s   5.853  1  0 -3     2
+  2958   198  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  0 -3     3
+  2959   198  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  0 -3     4
+  2960   198  1     Fe   5  3  2  0  1  F          dz2   4.792  1  0 -3     5
+  2961   198  1     Fe   6  3  2  1  1  F          dxz   4.792  1  0 -3     6
+  2962   198  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  0 -3     7
+  2963   198  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  0 -3     8
+  2964   198  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  0 -3     9
+  2965   198  1     Fe  10  3  2  0  2  F          dz2   2.235  1  0 -3    10
+  2966   198  1     Fe  11  3  2  1  2  F          dxz   2.235  1  0 -3    11
+  2967   198  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  0 -3    12
+  2968   198  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  0 -3    13
+  2969   198  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  0 -3    14
+  2970   198  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  0 -3    15
+  2971   199  1     Fe   1  4  0  0  1  F            s   6.001  2  0 -3     1
+  2972   199  1     Fe   2  4  0  0  2  F            s   5.853  2  0 -3     2
+  2973   199  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  0 -3     3
+  2974   199  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  0 -3     4
+  2975   199  1     Fe   5  3  2  0  1  F          dz2   4.792  2  0 -3     5
+  2976   199  1     Fe   6  3  2  1  1  F          dxz   4.792  2  0 -3     6
+  2977   199  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  0 -3     7
+  2978   199  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  0 -3     8
+  2979   199  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  0 -3     9
+  2980   199  1     Fe  10  3  2  0  2  F          dz2   2.235  2  0 -3    10
+  2981   199  1     Fe  11  3  2  1  2  F          dxz   2.235  2  0 -3    11
+  2982   199  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  0 -3    12
+  2983   199  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  0 -3    13
+  2984   199  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  0 -3    14
+  2985   199  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  0 -3    15
+  2986   200  1     Fe   1  4  0  0  1  F            s   6.001  3  0 -3     1
+  2987   200  1     Fe   2  4  0  0  2  F            s   5.853  3  0 -3     2
+  2988   200  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  0 -3     3
+  2989   200  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  0 -3     4
+  2990   200  1     Fe   5  3  2  0  1  F          dz2   4.792  3  0 -3     5
+  2991   200  1     Fe   6  3  2  1  1  F          dxz   4.792  3  0 -3     6
+  2992   200  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  0 -3     7
+  2993   200  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  0 -3     8
+  2994   200  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  0 -3     9
+  2995   200  1     Fe  10  3  2  0  2  F          dz2   2.235  3  0 -3    10
+  2996   200  1     Fe  11  3  2  1  2  F          dxz   2.235  3  0 -3    11
+  2997   200  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  0 -3    12
+  2998   200  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  0 -3    13
+  2999   200  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  0 -3    14
+  3000   200  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  0 -3    15
+  3001   201  1     Fe   1  4  0  0  1  F            s   6.001 -3  0 -3     1
+  3002   201  1     Fe   2  4  0  0  2  F            s   5.853 -3  0 -3     2
+  3003   201  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  0 -3     3
+  3004   201  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  0 -3     4
+  3005   201  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  0 -3     5
+  3006   201  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  0 -3     6
+  3007   201  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  0 -3     7
+  3008   201  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  0 -3     8
+  3009   201  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  0 -3     9
+  3010   201  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  0 -3    10
+  3011   201  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  0 -3    11
+  3012   201  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  0 -3    12
+  3013   201  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  0 -3    13
+  3014   201  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  0 -3    14
+  3015   201  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  0 -3    15
+  3016   202  1     Fe   1  4  0  0  1  F            s   6.001 -2  0 -3     1
+  3017   202  1     Fe   2  4  0  0  2  F            s   5.853 -2  0 -3     2
+  3018   202  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  0 -3     3
+  3019   202  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  0 -3     4
+  3020   202  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  0 -3     5
+  3021   202  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  0 -3     6
+  3022   202  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  0 -3     7
+  3023   202  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  0 -3     8
+  3024   202  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  0 -3     9
+  3025   202  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  0 -3    10
+  3026   202  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  0 -3    11
+  3027   202  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  0 -3    12
+  3028   202  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  0 -3    13
+  3029   202  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  0 -3    14
+  3030   202  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  0 -3    15
+  3031   203  1     Fe   1  4  0  0  1  F            s   6.001 -1  0 -3     1
+  3032   203  1     Fe   2  4  0  0  2  F            s   5.853 -1  0 -3     2
+  3033   203  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  0 -3     3
+  3034   203  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  0 -3     4
+  3035   203  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  0 -3     5
+  3036   203  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  0 -3     6
+  3037   203  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  0 -3     7
+  3038   203  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  0 -3     8
+  3039   203  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  0 -3     9
+  3040   203  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  0 -3    10
+  3041   203  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  0 -3    11
+  3042   203  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  0 -3    12
+  3043   203  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  0 -3    13
+  3044   203  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  0 -3    14
+  3045   203  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  0 -3    15
+  3046   204  1     Fe   1  4  0  0  1  F            s   6.001  0  1 -3     1
+  3047   204  1     Fe   2  4  0  0  2  F            s   5.853  0  1 -3     2
+  3048   204  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  1 -3     3
+  3049   204  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  1 -3     4
+  3050   204  1     Fe   5  3  2  0  1  F          dz2   4.792  0  1 -3     5
+  3051   204  1     Fe   6  3  2  1  1  F          dxz   4.792  0  1 -3     6
+  3052   204  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  1 -3     7
+  3053   204  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  1 -3     8
+  3054   204  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  1 -3     9
+  3055   204  1     Fe  10  3  2  0  2  F          dz2   2.235  0  1 -3    10
+  3056   204  1     Fe  11  3  2  1  2  F          dxz   2.235  0  1 -3    11
+  3057   204  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  1 -3    12
+  3058   204  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  1 -3    13
+  3059   204  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  1 -3    14
+  3060   204  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  1 -3    15
+  3061   205  1     Fe   1  4  0  0  1  F            s   6.001  1  1 -3     1
+  3062   205  1     Fe   2  4  0  0  2  F            s   5.853  1  1 -3     2
+  3063   205  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  1 -3     3
+  3064   205  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  1 -3     4
+  3065   205  1     Fe   5  3  2  0  1  F          dz2   4.792  1  1 -3     5
+  3066   205  1     Fe   6  3  2  1  1  F          dxz   4.792  1  1 -3     6
+  3067   205  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  1 -3     7
+  3068   205  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  1 -3     8
+  3069   205  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  1 -3     9
+  3070   205  1     Fe  10  3  2  0  2  F          dz2   2.235  1  1 -3    10
+  3071   205  1     Fe  11  3  2  1  2  F          dxz   2.235  1  1 -3    11
+  3072   205  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  1 -3    12
+  3073   205  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  1 -3    13
+  3074   205  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  1 -3    14
+  3075   205  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  1 -3    15
+  3076   206  1     Fe   1  4  0  0  1  F            s   6.001  2  1 -3     1
+  3077   206  1     Fe   2  4  0  0  2  F            s   5.853  2  1 -3     2
+  3078   206  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  1 -3     3
+  3079   206  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  1 -3     4
+  3080   206  1     Fe   5  3  2  0  1  F          dz2   4.792  2  1 -3     5
+  3081   206  1     Fe   6  3  2  1  1  F          dxz   4.792  2  1 -3     6
+  3082   206  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  1 -3     7
+  3083   206  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  1 -3     8
+  3084   206  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  1 -3     9
+  3085   206  1     Fe  10  3  2  0  2  F          dz2   2.235  2  1 -3    10
+  3086   206  1     Fe  11  3  2  1  2  F          dxz   2.235  2  1 -3    11
+  3087   206  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  1 -3    12
+  3088   206  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  1 -3    13
+  3089   206  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  1 -3    14
+  3090   206  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  1 -3    15
+  3091   207  1     Fe   1  4  0  0  1  F            s   6.001  3  1 -3     1
+  3092   207  1     Fe   2  4  0  0  2  F            s   5.853  3  1 -3     2
+  3093   207  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  1 -3     3
+  3094   207  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  1 -3     4
+  3095   207  1     Fe   5  3  2  0  1  F          dz2   4.792  3  1 -3     5
+  3096   207  1     Fe   6  3  2  1  1  F          dxz   4.792  3  1 -3     6
+  3097   207  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  1 -3     7
+  3098   207  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  1 -3     8
+  3099   207  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  1 -3     9
+  3100   207  1     Fe  10  3  2  0  2  F          dz2   2.235  3  1 -3    10
+  3101   207  1     Fe  11  3  2  1  2  F          dxz   2.235  3  1 -3    11
+  3102   207  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  1 -3    12
+  3103   207  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  1 -3    13
+  3104   207  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  1 -3    14
+  3105   207  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  1 -3    15
+  3106   208  1     Fe   1  4  0  0  1  F            s   6.001 -3  1 -3     1
+  3107   208  1     Fe   2  4  0  0  2  F            s   5.853 -3  1 -3     2
+  3108   208  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  1 -3     3
+  3109   208  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  1 -3     4
+  3110   208  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  1 -3     5
+  3111   208  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  1 -3     6
+  3112   208  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  1 -3     7
+  3113   208  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  1 -3     8
+  3114   208  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  1 -3     9
+  3115   208  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  1 -3    10
+  3116   208  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  1 -3    11
+  3117   208  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  1 -3    12
+  3118   208  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  1 -3    13
+  3119   208  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  1 -3    14
+  3120   208  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  1 -3    15
+  3121   209  1     Fe   1  4  0  0  1  F            s   6.001 -2  1 -3     1
+  3122   209  1     Fe   2  4  0  0  2  F            s   5.853 -2  1 -3     2
+  3123   209  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  1 -3     3
+  3124   209  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  1 -3     4
+  3125   209  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  1 -3     5
+  3126   209  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  1 -3     6
+  3127   209  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  1 -3     7
+  3128   209  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  1 -3     8
+  3129   209  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  1 -3     9
+  3130   209  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  1 -3    10
+  3131   209  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  1 -3    11
+  3132   209  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  1 -3    12
+  3133   209  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  1 -3    13
+  3134   209  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  1 -3    14
+  3135   209  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  1 -3    15
+  3136   210  1     Fe   1  4  0  0  1  F            s   6.001 -1  1 -3     1
+  3137   210  1     Fe   2  4  0  0  2  F            s   5.853 -1  1 -3     2
+  3138   210  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  1 -3     3
+  3139   210  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  1 -3     4
+  3140   210  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  1 -3     5
+  3141   210  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  1 -3     6
+  3142   210  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  1 -3     7
+  3143   210  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  1 -3     8
+  3144   210  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  1 -3     9
+  3145   210  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  1 -3    10
+  3146   210  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  1 -3    11
+  3147   210  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  1 -3    12
+  3148   210  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  1 -3    13
+  3149   210  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  1 -3    14
+  3150   210  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  1 -3    15
+  3151   211  1     Fe   1  4  0  0  1  F            s   6.001  0  2 -3     1
+  3152   211  1     Fe   2  4  0  0  2  F            s   5.853  0  2 -3     2
+  3153   211  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  2 -3     3
+  3154   211  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  2 -3     4
+  3155   211  1     Fe   5  3  2  0  1  F          dz2   4.792  0  2 -3     5
+  3156   211  1     Fe   6  3  2  1  1  F          dxz   4.792  0  2 -3     6
+  3157   211  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  2 -3     7
+  3158   211  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  2 -3     8
+  3159   211  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  2 -3     9
+  3160   211  1     Fe  10  3  2  0  2  F          dz2   2.235  0  2 -3    10
+  3161   211  1     Fe  11  3  2  1  2  F          dxz   2.235  0  2 -3    11
+  3162   211  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  2 -3    12
+  3163   211  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  2 -3    13
+  3164   211  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  2 -3    14
+  3165   211  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  2 -3    15
+  3166   212  1     Fe   1  4  0  0  1  F            s   6.001  1  2 -3     1
+  3167   212  1     Fe   2  4  0  0  2  F            s   5.853  1  2 -3     2
+  3168   212  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  2 -3     3
+  3169   212  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  2 -3     4
+  3170   212  1     Fe   5  3  2  0  1  F          dz2   4.792  1  2 -3     5
+  3171   212  1     Fe   6  3  2  1  1  F          dxz   4.792  1  2 -3     6
+  3172   212  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  2 -3     7
+  3173   212  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  2 -3     8
+  3174   212  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  2 -3     9
+  3175   212  1     Fe  10  3  2  0  2  F          dz2   2.235  1  2 -3    10
+  3176   212  1     Fe  11  3  2  1  2  F          dxz   2.235  1  2 -3    11
+  3177   212  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  2 -3    12
+  3178   212  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  2 -3    13
+  3179   212  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  2 -3    14
+  3180   212  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  2 -3    15
+  3181   213  1     Fe   1  4  0  0  1  F            s   6.001  2  2 -3     1
+  3182   213  1     Fe   2  4  0  0  2  F            s   5.853  2  2 -3     2
+  3183   213  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  2 -3     3
+  3184   213  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  2 -3     4
+  3185   213  1     Fe   5  3  2  0  1  F          dz2   4.792  2  2 -3     5
+  3186   213  1     Fe   6  3  2  1  1  F          dxz   4.792  2  2 -3     6
+  3187   213  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  2 -3     7
+  3188   213  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  2 -3     8
+  3189   213  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  2 -3     9
+  3190   213  1     Fe  10  3  2  0  2  F          dz2   2.235  2  2 -3    10
+  3191   213  1     Fe  11  3  2  1  2  F          dxz   2.235  2  2 -3    11
+  3192   213  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  2 -3    12
+  3193   213  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  2 -3    13
+  3194   213  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  2 -3    14
+  3195   213  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  2 -3    15
+  3196   214  1     Fe   1  4  0  0  1  F            s   6.001  3  2 -3     1
+  3197   214  1     Fe   2  4  0  0  2  F            s   5.853  3  2 -3     2
+  3198   214  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  2 -3     3
+  3199   214  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  2 -3     4
+  3200   214  1     Fe   5  3  2  0  1  F          dz2   4.792  3  2 -3     5
+  3201   214  1     Fe   6  3  2  1  1  F          dxz   4.792  3  2 -3     6
+  3202   214  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  2 -3     7
+  3203   214  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  2 -3     8
+  3204   214  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  2 -3     9
+  3205   214  1     Fe  10  3  2  0  2  F          dz2   2.235  3  2 -3    10
+  3206   214  1     Fe  11  3  2  1  2  F          dxz   2.235  3  2 -3    11
+  3207   214  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  2 -3    12
+  3208   214  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  2 -3    13
+  3209   214  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  2 -3    14
+  3210   214  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  2 -3    15
+  3211   215  1     Fe   1  4  0  0  1  F            s   6.001 -3  2 -3     1
+  3212   215  1     Fe   2  4  0  0  2  F            s   5.853 -3  2 -3     2
+  3213   215  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  2 -3     3
+  3214   215  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  2 -3     4
+  3215   215  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  2 -3     5
+  3216   215  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  2 -3     6
+  3217   215  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  2 -3     7
+  3218   215  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  2 -3     8
+  3219   215  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  2 -3     9
+  3220   215  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  2 -3    10
+  3221   215  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  2 -3    11
+  3222   215  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  2 -3    12
+  3223   215  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  2 -3    13
+  3224   215  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  2 -3    14
+  3225   215  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  2 -3    15
+  3226   216  1     Fe   1  4  0  0  1  F            s   6.001 -2  2 -3     1
+  3227   216  1     Fe   2  4  0  0  2  F            s   5.853 -2  2 -3     2
+  3228   216  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  2 -3     3
+  3229   216  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  2 -3     4
+  3230   216  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  2 -3     5
+  3231   216  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  2 -3     6
+  3232   216  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  2 -3     7
+  3233   216  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  2 -3     8
+  3234   216  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  2 -3     9
+  3235   216  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  2 -3    10
+  3236   216  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  2 -3    11
+  3237   216  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  2 -3    12
+  3238   216  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  2 -3    13
+  3239   216  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  2 -3    14
+  3240   216  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  2 -3    15
+  3241   217  1     Fe   1  4  0  0  1  F            s   6.001 -1  2 -3     1
+  3242   217  1     Fe   2  4  0  0  2  F            s   5.853 -1  2 -3     2
+  3243   217  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  2 -3     3
+  3244   217  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  2 -3     4
+  3245   217  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  2 -3     5
+  3246   217  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  2 -3     6
+  3247   217  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  2 -3     7
+  3248   217  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  2 -3     8
+  3249   217  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  2 -3     9
+  3250   217  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  2 -3    10
+  3251   217  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  2 -3    11
+  3252   217  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  2 -3    12
+  3253   217  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  2 -3    13
+  3254   217  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  2 -3    14
+  3255   217  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  2 -3    15
+  3256   218  1     Fe   1  4  0  0  1  F            s   6.001  0  3 -3     1
+  3257   218  1     Fe   2  4  0  0  2  F            s   5.853  0  3 -3     2
+  3258   218  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  3 -3     3
+  3259   218  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  3 -3     4
+  3260   218  1     Fe   5  3  2  0  1  F          dz2   4.792  0  3 -3     5
+  3261   218  1     Fe   6  3  2  1  1  F          dxz   4.792  0  3 -3     6
+  3262   218  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  3 -3     7
+  3263   218  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  3 -3     8
+  3264   218  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  3 -3     9
+  3265   218  1     Fe  10  3  2  0  2  F          dz2   2.235  0  3 -3    10
+  3266   218  1     Fe  11  3  2  1  2  F          dxz   2.235  0  3 -3    11
+  3267   218  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  3 -3    12
+  3268   218  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  3 -3    13
+  3269   218  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  3 -3    14
+  3270   218  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  3 -3    15
+  3271   219  1     Fe   1  4  0  0  1  F            s   6.001  1  3 -3     1
+  3272   219  1     Fe   2  4  0  0  2  F            s   5.853  1  3 -3     2
+  3273   219  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  3 -3     3
+  3274   219  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  3 -3     4
+  3275   219  1     Fe   5  3  2  0  1  F          dz2   4.792  1  3 -3     5
+  3276   219  1     Fe   6  3  2  1  1  F          dxz   4.792  1  3 -3     6
+  3277   219  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  3 -3     7
+  3278   219  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  3 -3     8
+  3279   219  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  3 -3     9
+  3280   219  1     Fe  10  3  2  0  2  F          dz2   2.235  1  3 -3    10
+  3281   219  1     Fe  11  3  2  1  2  F          dxz   2.235  1  3 -3    11
+  3282   219  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  3 -3    12
+  3283   219  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  3 -3    13
+  3284   219  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  3 -3    14
+  3285   219  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  3 -3    15
+  3286   220  1     Fe   1  4  0  0  1  F            s   6.001  2  3 -3     1
+  3287   220  1     Fe   2  4  0  0  2  F            s   5.853  2  3 -3     2
+  3288   220  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  3 -3     3
+  3289   220  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  3 -3     4
+  3290   220  1     Fe   5  3  2  0  1  F          dz2   4.792  2  3 -3     5
+  3291   220  1     Fe   6  3  2  1  1  F          dxz   4.792  2  3 -3     6
+  3292   220  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  3 -3     7
+  3293   220  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  3 -3     8
+  3294   220  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  3 -3     9
+  3295   220  1     Fe  10  3  2  0  2  F          dz2   2.235  2  3 -3    10
+  3296   220  1     Fe  11  3  2  1  2  F          dxz   2.235  2  3 -3    11
+  3297   220  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  3 -3    12
+  3298   220  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  3 -3    13
+  3299   220  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  3 -3    14
+  3300   220  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  3 -3    15
+  3301   221  1     Fe   1  4  0  0  1  F            s   6.001  3  3 -3     1
+  3302   221  1     Fe   2  4  0  0  2  F            s   5.853  3  3 -3     2
+  3303   221  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  3 -3     3
+  3304   221  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  3 -3     4
+  3305   221  1     Fe   5  3  2  0  1  F          dz2   4.792  3  3 -3     5
+  3306   221  1     Fe   6  3  2  1  1  F          dxz   4.792  3  3 -3     6
+  3307   221  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  3 -3     7
+  3308   221  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  3 -3     8
+  3309   221  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  3 -3     9
+  3310   221  1     Fe  10  3  2  0  2  F          dz2   2.235  3  3 -3    10
+  3311   221  1     Fe  11  3  2  1  2  F          dxz   2.235  3  3 -3    11
+  3312   221  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  3 -3    12
+  3313   221  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  3 -3    13
+  3314   221  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  3 -3    14
+  3315   221  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  3 -3    15
+  3316   222  1     Fe   1  4  0  0  1  F            s   6.001 -3  3 -3     1
+  3317   222  1     Fe   2  4  0  0  2  F            s   5.853 -3  3 -3     2
+  3318   222  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  3 -3     3
+  3319   222  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  3 -3     4
+  3320   222  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  3 -3     5
+  3321   222  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  3 -3     6
+  3322   222  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  3 -3     7
+  3323   222  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  3 -3     8
+  3324   222  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  3 -3     9
+  3325   222  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  3 -3    10
+  3326   222  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  3 -3    11
+  3327   222  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  3 -3    12
+  3328   222  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  3 -3    13
+  3329   222  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  3 -3    14
+  3330   222  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  3 -3    15
+  3331   223  1     Fe   1  4  0  0  1  F            s   6.001 -2  3 -3     1
+  3332   223  1     Fe   2  4  0  0  2  F            s   5.853 -2  3 -3     2
+  3333   223  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  3 -3     3
+  3334   223  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  3 -3     4
+  3335   223  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  3 -3     5
+  3336   223  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  3 -3     6
+  3337   223  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  3 -3     7
+  3338   223  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  3 -3     8
+  3339   223  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  3 -3     9
+  3340   223  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  3 -3    10
+  3341   223  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  3 -3    11
+  3342   223  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  3 -3    12
+  3343   223  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  3 -3    13
+  3344   223  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  3 -3    14
+  3345   223  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  3 -3    15
+  3346   224  1     Fe   1  4  0  0  1  F            s   6.001 -1  3 -3     1
+  3347   224  1     Fe   2  4  0  0  2  F            s   5.853 -1  3 -3     2
+  3348   224  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  3 -3     3
+  3349   224  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  3 -3     4
+  3350   224  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  3 -3     5
+  3351   224  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  3 -3     6
+  3352   224  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  3 -3     7
+  3353   224  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  3 -3     8
+  3354   224  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  3 -3     9
+  3355   224  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  3 -3    10
+  3356   224  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  3 -3    11
+  3357   224  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  3 -3    12
+  3358   224  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  3 -3    13
+  3359   224  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  3 -3    14
+  3360   224  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  3 -3    15
+  3361   225  1     Fe   1  4  0  0  1  F            s   6.001  0 -3 -3     1
+  3362   225  1     Fe   2  4  0  0  2  F            s   5.853  0 -3 -3     2
+  3363   225  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -3 -3     3
+  3364   225  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -3 -3     4
+  3365   225  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -3 -3     5
+  3366   225  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -3 -3     6
+  3367   225  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -3 -3     7
+  3368   225  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -3 -3     8
+  3369   225  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -3 -3     9
+  3370   225  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -3 -3    10
+  3371   225  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -3 -3    11
+  3372   225  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -3 -3    12
+  3373   225  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -3 -3    13
+  3374   225  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -3 -3    14
+  3375   225  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -3 -3    15
+  3376   226  1     Fe   1  4  0  0  1  F            s   6.001  1 -3 -3     1
+  3377   226  1     Fe   2  4  0  0  2  F            s   5.853  1 -3 -3     2
+  3378   226  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -3 -3     3
+  3379   226  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -3 -3     4
+  3380   226  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -3 -3     5
+  3381   226  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -3 -3     6
+  3382   226  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -3 -3     7
+  3383   226  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -3 -3     8
+  3384   226  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -3 -3     9
+  3385   226  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -3 -3    10
+  3386   226  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -3 -3    11
+  3387   226  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -3 -3    12
+  3388   226  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -3 -3    13
+  3389   226  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -3 -3    14
+  3390   226  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -3 -3    15
+  3391   227  1     Fe   1  4  0  0  1  F            s   6.001  2 -3 -3     1
+  3392   227  1     Fe   2  4  0  0  2  F            s   5.853  2 -3 -3     2
+  3393   227  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -3 -3     3
+  3394   227  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -3 -3     4
+  3395   227  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -3 -3     5
+  3396   227  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -3 -3     6
+  3397   227  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -3 -3     7
+  3398   227  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -3 -3     8
+  3399   227  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -3 -3     9
+  3400   227  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -3 -3    10
+  3401   227  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -3 -3    11
+  3402   227  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -3 -3    12
+  3403   227  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -3 -3    13
+  3404   227  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -3 -3    14
+  3405   227  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -3 -3    15
+  3406   228  1     Fe   1  4  0  0  1  F            s   6.001  3 -3 -3     1
+  3407   228  1     Fe   2  4  0  0  2  F            s   5.853  3 -3 -3     2
+  3408   228  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -3 -3     3
+  3409   228  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -3 -3     4
+  3410   228  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -3 -3     5
+  3411   228  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -3 -3     6
+  3412   228  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -3 -3     7
+  3413   228  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -3 -3     8
+  3414   228  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -3 -3     9
+  3415   228  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -3 -3    10
+  3416   228  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -3 -3    11
+  3417   228  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -3 -3    12
+  3418   228  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -3 -3    13
+  3419   228  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -3 -3    14
+  3420   228  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -3 -3    15
+  3421   229  1     Fe   1  4  0  0  1  F            s   6.001 -3 -3 -3     1
+  3422   229  1     Fe   2  4  0  0  2  F            s   5.853 -3 -3 -3     2
+  3423   229  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -3 -3     3
+  3424   229  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -3 -3     4
+  3425   229  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -3 -3     5
+  3426   229  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -3 -3     6
+  3427   229  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -3 -3     7
+  3428   229  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -3 -3     8
+  3429   229  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -3 -3     9
+  3430   229  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -3 -3    10
+  3431   229  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -3 -3    11
+  3432   229  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -3 -3    12
+  3433   229  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -3 -3    13
+  3434   229  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -3 -3    14
+  3435   229  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -3 -3    15
+  3436   230  1     Fe   1  4  0  0  1  F            s   6.001 -2 -3 -3     1
+  3437   230  1     Fe   2  4  0  0  2  F            s   5.853 -2 -3 -3     2
+  3438   230  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -3 -3     3
+  3439   230  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -3 -3     4
+  3440   230  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -3 -3     5
+  3441   230  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -3 -3     6
+  3442   230  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -3 -3     7
+  3443   230  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -3 -3     8
+  3444   230  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -3 -3     9
+  3445   230  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -3 -3    10
+  3446   230  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -3 -3    11
+  3447   230  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -3 -3    12
+  3448   230  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -3 -3    13
+  3449   230  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -3 -3    14
+  3450   230  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -3 -3    15
+  3451   231  1     Fe   1  4  0  0  1  F            s   6.001 -1 -3 -3     1
+  3452   231  1     Fe   2  4  0  0  2  F            s   5.853 -1 -3 -3     2
+  3453   231  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -3 -3     3
+  3454   231  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -3 -3     4
+  3455   231  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -3 -3     5
+  3456   231  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -3 -3     6
+  3457   231  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -3 -3     7
+  3458   231  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -3 -3     8
+  3459   231  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -3 -3     9
+  3460   231  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -3 -3    10
+  3461   231  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -3 -3    11
+  3462   231  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -3 -3    12
+  3463   231  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -3 -3    13
+  3464   231  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -3 -3    14
+  3465   231  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -3 -3    15
+  3466   232  1     Fe   1  4  0  0  1  F            s   6.001  0 -2 -3     1
+  3467   232  1     Fe   2  4  0  0  2  F            s   5.853  0 -2 -3     2
+  3468   232  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -2 -3     3
+  3469   232  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -2 -3     4
+  3470   232  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -2 -3     5
+  3471   232  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -2 -3     6
+  3472   232  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -2 -3     7
+  3473   232  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -2 -3     8
+  3474   232  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -2 -3     9
+  3475   232  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -2 -3    10
+  3476   232  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -2 -3    11
+  3477   232  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -2 -3    12
+  3478   232  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -2 -3    13
+  3479   232  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -2 -3    14
+  3480   232  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -2 -3    15
+  3481   233  1     Fe   1  4  0  0  1  F            s   6.001  1 -2 -3     1
+  3482   233  1     Fe   2  4  0  0  2  F            s   5.853  1 -2 -3     2
+  3483   233  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -2 -3     3
+  3484   233  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -2 -3     4
+  3485   233  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -2 -3     5
+  3486   233  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -2 -3     6
+  3487   233  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -2 -3     7
+  3488   233  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -2 -3     8
+  3489   233  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -2 -3     9
+  3490   233  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -2 -3    10
+  3491   233  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -2 -3    11
+  3492   233  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -2 -3    12
+  3493   233  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -2 -3    13
+  3494   233  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -2 -3    14
+  3495   233  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -2 -3    15
+  3496   234  1     Fe   1  4  0  0  1  F            s   6.001  2 -2 -3     1
+  3497   234  1     Fe   2  4  0  0  2  F            s   5.853  2 -2 -3     2
+  3498   234  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -2 -3     3
+  3499   234  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -2 -3     4
+  3500   234  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -2 -3     5
+  3501   234  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -2 -3     6
+  3502   234  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -2 -3     7
+  3503   234  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -2 -3     8
+  3504   234  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -2 -3     9
+  3505   234  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -2 -3    10
+  3506   234  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -2 -3    11
+  3507   234  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -2 -3    12
+  3508   234  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -2 -3    13
+  3509   234  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -2 -3    14
+  3510   234  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -2 -3    15
+  3511   235  1     Fe   1  4  0  0  1  F            s   6.001  3 -2 -3     1
+  3512   235  1     Fe   2  4  0  0  2  F            s   5.853  3 -2 -3     2
+  3513   235  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -2 -3     3
+  3514   235  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -2 -3     4
+  3515   235  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -2 -3     5
+  3516   235  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -2 -3     6
+  3517   235  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -2 -3     7
+  3518   235  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -2 -3     8
+  3519   235  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -2 -3     9
+  3520   235  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -2 -3    10
+  3521   235  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -2 -3    11
+  3522   235  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -2 -3    12
+  3523   235  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -2 -3    13
+  3524   235  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -2 -3    14
+  3525   235  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -2 -3    15
+  3526   236  1     Fe   1  4  0  0  1  F            s   6.001 -3 -2 -3     1
+  3527   236  1     Fe   2  4  0  0  2  F            s   5.853 -3 -2 -3     2
+  3528   236  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -2 -3     3
+  3529   236  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -2 -3     4
+  3530   236  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -2 -3     5
+  3531   236  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -2 -3     6
+  3532   236  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -2 -3     7
+  3533   236  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -2 -3     8
+  3534   236  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -2 -3     9
+  3535   236  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -2 -3    10
+  3536   236  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -2 -3    11
+  3537   236  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -2 -3    12
+  3538   236  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -2 -3    13
+  3539   236  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -2 -3    14
+  3540   236  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -2 -3    15
+  3541   237  1     Fe   1  4  0  0  1  F            s   6.001 -2 -2 -3     1
+  3542   237  1     Fe   2  4  0  0  2  F            s   5.853 -2 -2 -3     2
+  3543   237  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -2 -3     3
+  3544   237  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -2 -3     4
+  3545   237  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -2 -3     5
+  3546   237  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -2 -3     6
+  3547   237  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -2 -3     7
+  3548   237  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -2 -3     8
+  3549   237  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -2 -3     9
+  3550   237  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -2 -3    10
+  3551   237  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -2 -3    11
+  3552   237  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -2 -3    12
+  3553   237  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -2 -3    13
+  3554   237  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -2 -3    14
+  3555   237  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -2 -3    15
+  3556   238  1     Fe   1  4  0  0  1  F            s   6.001 -1 -2 -3     1
+  3557   238  1     Fe   2  4  0  0  2  F            s   5.853 -1 -2 -3     2
+  3558   238  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -2 -3     3
+  3559   238  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -2 -3     4
+  3560   238  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -2 -3     5
+  3561   238  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -2 -3     6
+  3562   238  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -2 -3     7
+  3563   238  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -2 -3     8
+  3564   238  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -2 -3     9
+  3565   238  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -2 -3    10
+  3566   238  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -2 -3    11
+  3567   238  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -2 -3    12
+  3568   238  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -2 -3    13
+  3569   238  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -2 -3    14
+  3570   238  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -2 -3    15
+  3571   239  1     Fe   1  4  0  0  1  F            s   6.001  0 -1 -3     1
+  3572   239  1     Fe   2  4  0  0  2  F            s   5.853  0 -1 -3     2
+  3573   239  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -1 -3     3
+  3574   239  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -1 -3     4
+  3575   239  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -1 -3     5
+  3576   239  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -1 -3     6
+  3577   239  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -1 -3     7
+  3578   239  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -1 -3     8
+  3579   239  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -1 -3     9
+  3580   239  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -1 -3    10
+  3581   239  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -1 -3    11
+  3582   239  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -1 -3    12
+  3583   239  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -1 -3    13
+  3584   239  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -1 -3    14
+  3585   239  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -1 -3    15
+  3586   240  1     Fe   1  4  0  0  1  F            s   6.001  1 -1 -3     1
+  3587   240  1     Fe   2  4  0  0  2  F            s   5.853  1 -1 -3     2
+  3588   240  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -1 -3     3
+  3589   240  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -1 -3     4
+  3590   240  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -1 -3     5
+  3591   240  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -1 -3     6
+  3592   240  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -1 -3     7
+  3593   240  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -1 -3     8
+  3594   240  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -1 -3     9
+  3595   240  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -1 -3    10
+  3596   240  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -1 -3    11
+  3597   240  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -1 -3    12
+  3598   240  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -1 -3    13
+  3599   240  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -1 -3    14
+  3600   240  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -1 -3    15
+  3601   241  1     Fe   1  4  0  0  1  F            s   6.001  2 -1 -3     1
+  3602   241  1     Fe   2  4  0  0  2  F            s   5.853  2 -1 -3     2
+  3603   241  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -1 -3     3
+  3604   241  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -1 -3     4
+  3605   241  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -1 -3     5
+  3606   241  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -1 -3     6
+  3607   241  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -1 -3     7
+  3608   241  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -1 -3     8
+  3609   241  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -1 -3     9
+  3610   241  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -1 -3    10
+  3611   241  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -1 -3    11
+  3612   241  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -1 -3    12
+  3613   241  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -1 -3    13
+  3614   241  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -1 -3    14
+  3615   241  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -1 -3    15
+  3616   242  1     Fe   1  4  0  0  1  F            s   6.001  3 -1 -3     1
+  3617   242  1     Fe   2  4  0  0  2  F            s   5.853  3 -1 -3     2
+  3618   242  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -1 -3     3
+  3619   242  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -1 -3     4
+  3620   242  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -1 -3     5
+  3621   242  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -1 -3     6
+  3622   242  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -1 -3     7
+  3623   242  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -1 -3     8
+  3624   242  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -1 -3     9
+  3625   242  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -1 -3    10
+  3626   242  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -1 -3    11
+  3627   242  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -1 -3    12
+  3628   242  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -1 -3    13
+  3629   242  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -1 -3    14
+  3630   242  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -1 -3    15
+  3631   243  1     Fe   1  4  0  0  1  F            s   6.001 -3 -1 -3     1
+  3632   243  1     Fe   2  4  0  0  2  F            s   5.853 -3 -1 -3     2
+  3633   243  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -1 -3     3
+  3634   243  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -1 -3     4
+  3635   243  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -1 -3     5
+  3636   243  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -1 -3     6
+  3637   243  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -1 -3     7
+  3638   243  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -1 -3     8
+  3639   243  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -1 -3     9
+  3640   243  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -1 -3    10
+  3641   243  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -1 -3    11
+  3642   243  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -1 -3    12
+  3643   243  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -1 -3    13
+  3644   243  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -1 -3    14
+  3645   243  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -1 -3    15
+  3646   244  1     Fe   1  4  0  0  1  F            s   6.001 -2 -1 -3     1
+  3647   244  1     Fe   2  4  0  0  2  F            s   5.853 -2 -1 -3     2
+  3648   244  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -1 -3     3
+  3649   244  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -1 -3     4
+  3650   244  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -1 -3     5
+  3651   244  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -1 -3     6
+  3652   244  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -1 -3     7
+  3653   244  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -1 -3     8
+  3654   244  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -1 -3     9
+  3655   244  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -1 -3    10
+  3656   244  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -1 -3    11
+  3657   244  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -1 -3    12
+  3658   244  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -1 -3    13
+  3659   244  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -1 -3    14
+  3660   244  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -1 -3    15
+  3661   245  1     Fe   1  4  0  0  1  F            s   6.001 -1 -1 -3     1
+  3662   245  1     Fe   2  4  0  0  2  F            s   5.853 -1 -1 -3     2
+  3663   245  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -1 -3     3
+  3664   245  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -1 -3     4
+  3665   245  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -1 -3     5
+  3666   245  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -1 -3     6
+  3667   245  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -1 -3     7
+  3668   245  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -1 -3     8
+  3669   245  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -1 -3     9
+  3670   245  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -1 -3    10
+  3671   245  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -1 -3    11
+  3672   245  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -1 -3    12
+  3673   245  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -1 -3    13
+  3674   245  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -1 -3    14
+  3675   245  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -1 -3    15
+  3676   246  1     Fe   1  4  0  0  1  F            s   6.001  0  0 -2     1
+  3677   246  1     Fe   2  4  0  0  2  F            s   5.853  0  0 -2     2
+  3678   246  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  0 -2     3
+  3679   246  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  0 -2     4
+  3680   246  1     Fe   5  3  2  0  1  F          dz2   4.792  0  0 -2     5
+  3681   246  1     Fe   6  3  2  1  1  F          dxz   4.792  0  0 -2     6
+  3682   246  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  0 -2     7
+  3683   246  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  0 -2     8
+  3684   246  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  0 -2     9
+  3685   246  1     Fe  10  3  2  0  2  F          dz2   2.235  0  0 -2    10
+  3686   246  1     Fe  11  3  2  1  2  F          dxz   2.235  0  0 -2    11
+  3687   246  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  0 -2    12
+  3688   246  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  0 -2    13
+  3689   246  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  0 -2    14
+  3690   246  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  0 -2    15
+  3691   247  1     Fe   1  4  0  0  1  F            s   6.001  1  0 -2     1
+  3692   247  1     Fe   2  4  0  0  2  F            s   5.853  1  0 -2     2
+  3693   247  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  0 -2     3
+  3694   247  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  0 -2     4
+  3695   247  1     Fe   5  3  2  0  1  F          dz2   4.792  1  0 -2     5
+  3696   247  1     Fe   6  3  2  1  1  F          dxz   4.792  1  0 -2     6
+  3697   247  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  0 -2     7
+  3698   247  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  0 -2     8
+  3699   247  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  0 -2     9
+  3700   247  1     Fe  10  3  2  0  2  F          dz2   2.235  1  0 -2    10
+  3701   247  1     Fe  11  3  2  1  2  F          dxz   2.235  1  0 -2    11
+  3702   247  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  0 -2    12
+  3703   247  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  0 -2    13
+  3704   247  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  0 -2    14
+  3705   247  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  0 -2    15
+  3706   248  1     Fe   1  4  0  0  1  F            s   6.001  2  0 -2     1
+  3707   248  1     Fe   2  4  0  0  2  F            s   5.853  2  0 -2     2
+  3708   248  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  0 -2     3
+  3709   248  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  0 -2     4
+  3710   248  1     Fe   5  3  2  0  1  F          dz2   4.792  2  0 -2     5
+  3711   248  1     Fe   6  3  2  1  1  F          dxz   4.792  2  0 -2     6
+  3712   248  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  0 -2     7
+  3713   248  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  0 -2     8
+  3714   248  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  0 -2     9
+  3715   248  1     Fe  10  3  2  0  2  F          dz2   2.235  2  0 -2    10
+  3716   248  1     Fe  11  3  2  1  2  F          dxz   2.235  2  0 -2    11
+  3717   248  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  0 -2    12
+  3718   248  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  0 -2    13
+  3719   248  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  0 -2    14
+  3720   248  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  0 -2    15
+  3721   249  1     Fe   1  4  0  0  1  F            s   6.001  3  0 -2     1
+  3722   249  1     Fe   2  4  0  0  2  F            s   5.853  3  0 -2     2
+  3723   249  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  0 -2     3
+  3724   249  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  0 -2     4
+  3725   249  1     Fe   5  3  2  0  1  F          dz2   4.792  3  0 -2     5
+  3726   249  1     Fe   6  3  2  1  1  F          dxz   4.792  3  0 -2     6
+  3727   249  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  0 -2     7
+  3728   249  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  0 -2     8
+  3729   249  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  0 -2     9
+  3730   249  1     Fe  10  3  2  0  2  F          dz2   2.235  3  0 -2    10
+  3731   249  1     Fe  11  3  2  1  2  F          dxz   2.235  3  0 -2    11
+  3732   249  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  0 -2    12
+  3733   249  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  0 -2    13
+  3734   249  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  0 -2    14
+  3735   249  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  0 -2    15
+  3736   250  1     Fe   1  4  0  0  1  F            s   6.001 -3  0 -2     1
+  3737   250  1     Fe   2  4  0  0  2  F            s   5.853 -3  0 -2     2
+  3738   250  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  0 -2     3
+  3739   250  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  0 -2     4
+  3740   250  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  0 -2     5
+  3741   250  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  0 -2     6
+  3742   250  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  0 -2     7
+  3743   250  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  0 -2     8
+  3744   250  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  0 -2     9
+  3745   250  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  0 -2    10
+  3746   250  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  0 -2    11
+  3747   250  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  0 -2    12
+  3748   250  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  0 -2    13
+  3749   250  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  0 -2    14
+  3750   250  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  0 -2    15
+  3751   251  1     Fe   1  4  0  0  1  F            s   6.001 -2  0 -2     1
+  3752   251  1     Fe   2  4  0  0  2  F            s   5.853 -2  0 -2     2
+  3753   251  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  0 -2     3
+  3754   251  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  0 -2     4
+  3755   251  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  0 -2     5
+  3756   251  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  0 -2     6
+  3757   251  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  0 -2     7
+  3758   251  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  0 -2     8
+  3759   251  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  0 -2     9
+  3760   251  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  0 -2    10
+  3761   251  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  0 -2    11
+  3762   251  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  0 -2    12
+  3763   251  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  0 -2    13
+  3764   251  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  0 -2    14
+  3765   251  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  0 -2    15
+  3766   252  1     Fe   1  4  0  0  1  F            s   6.001 -1  0 -2     1
+  3767   252  1     Fe   2  4  0  0  2  F            s   5.853 -1  0 -2     2
+  3768   252  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  0 -2     3
+  3769   252  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  0 -2     4
+  3770   252  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  0 -2     5
+  3771   252  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  0 -2     6
+  3772   252  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  0 -2     7
+  3773   252  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  0 -2     8
+  3774   252  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  0 -2     9
+  3775   252  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  0 -2    10
+  3776   252  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  0 -2    11
+  3777   252  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  0 -2    12
+  3778   252  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  0 -2    13
+  3779   252  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  0 -2    14
+  3780   252  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  0 -2    15
+  3781   253  1     Fe   1  4  0  0  1  F            s   6.001  0  1 -2     1
+  3782   253  1     Fe   2  4  0  0  2  F            s   5.853  0  1 -2     2
+  3783   253  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  1 -2     3
+  3784   253  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  1 -2     4
+  3785   253  1     Fe   5  3  2  0  1  F          dz2   4.792  0  1 -2     5
+  3786   253  1     Fe   6  3  2  1  1  F          dxz   4.792  0  1 -2     6
+  3787   253  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  1 -2     7
+  3788   253  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  1 -2     8
+  3789   253  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  1 -2     9
+  3790   253  1     Fe  10  3  2  0  2  F          dz2   2.235  0  1 -2    10
+  3791   253  1     Fe  11  3  2  1  2  F          dxz   2.235  0  1 -2    11
+  3792   253  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  1 -2    12
+  3793   253  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  1 -2    13
+  3794   253  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  1 -2    14
+  3795   253  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  1 -2    15
+  3796   254  1     Fe   1  4  0  0  1  F            s   6.001  1  1 -2     1
+  3797   254  1     Fe   2  4  0  0  2  F            s   5.853  1  1 -2     2
+  3798   254  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  1 -2     3
+  3799   254  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  1 -2     4
+  3800   254  1     Fe   5  3  2  0  1  F          dz2   4.792  1  1 -2     5
+  3801   254  1     Fe   6  3  2  1  1  F          dxz   4.792  1  1 -2     6
+  3802   254  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  1 -2     7
+  3803   254  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  1 -2     8
+  3804   254  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  1 -2     9
+  3805   254  1     Fe  10  3  2  0  2  F          dz2   2.235  1  1 -2    10
+  3806   254  1     Fe  11  3  2  1  2  F          dxz   2.235  1  1 -2    11
+  3807   254  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  1 -2    12
+  3808   254  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  1 -2    13
+  3809   254  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  1 -2    14
+  3810   254  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  1 -2    15
+  3811   255  1     Fe   1  4  0  0  1  F            s   6.001  2  1 -2     1
+  3812   255  1     Fe   2  4  0  0  2  F            s   5.853  2  1 -2     2
+  3813   255  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  1 -2     3
+  3814   255  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  1 -2     4
+  3815   255  1     Fe   5  3  2  0  1  F          dz2   4.792  2  1 -2     5
+  3816   255  1     Fe   6  3  2  1  1  F          dxz   4.792  2  1 -2     6
+  3817   255  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  1 -2     7
+  3818   255  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  1 -2     8
+  3819   255  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  1 -2     9
+  3820   255  1     Fe  10  3  2  0  2  F          dz2   2.235  2  1 -2    10
+  3821   255  1     Fe  11  3  2  1  2  F          dxz   2.235  2  1 -2    11
+  3822   255  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  1 -2    12
+  3823   255  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  1 -2    13
+  3824   255  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  1 -2    14
+  3825   255  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  1 -2    15
+  3826   256  1     Fe   1  4  0  0  1  F            s   6.001  3  1 -2     1
+  3827   256  1     Fe   2  4  0  0  2  F            s   5.853  3  1 -2     2
+  3828   256  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  1 -2     3
+  3829   256  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  1 -2     4
+  3830   256  1     Fe   5  3  2  0  1  F          dz2   4.792  3  1 -2     5
+  3831   256  1     Fe   6  3  2  1  1  F          dxz   4.792  3  1 -2     6
+  3832   256  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  1 -2     7
+  3833   256  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  1 -2     8
+  3834   256  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  1 -2     9
+  3835   256  1     Fe  10  3  2  0  2  F          dz2   2.235  3  1 -2    10
+  3836   256  1     Fe  11  3  2  1  2  F          dxz   2.235  3  1 -2    11
+  3837   256  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  1 -2    12
+  3838   256  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  1 -2    13
+  3839   256  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  1 -2    14
+  3840   256  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  1 -2    15
+  3841   257  1     Fe   1  4  0  0  1  F            s   6.001 -3  1 -2     1
+  3842   257  1     Fe   2  4  0  0  2  F            s   5.853 -3  1 -2     2
+  3843   257  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  1 -2     3
+  3844   257  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  1 -2     4
+  3845   257  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  1 -2     5
+  3846   257  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  1 -2     6
+  3847   257  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  1 -2     7
+  3848   257  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  1 -2     8
+  3849   257  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  1 -2     9
+  3850   257  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  1 -2    10
+  3851   257  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  1 -2    11
+  3852   257  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  1 -2    12
+  3853   257  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  1 -2    13
+  3854   257  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  1 -2    14
+  3855   257  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  1 -2    15
+  3856   258  1     Fe   1  4  0  0  1  F            s   6.001 -2  1 -2     1
+  3857   258  1     Fe   2  4  0  0  2  F            s   5.853 -2  1 -2     2
+  3858   258  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  1 -2     3
+  3859   258  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  1 -2     4
+  3860   258  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  1 -2     5
+  3861   258  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  1 -2     6
+  3862   258  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  1 -2     7
+  3863   258  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  1 -2     8
+  3864   258  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  1 -2     9
+  3865   258  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  1 -2    10
+  3866   258  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  1 -2    11
+  3867   258  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  1 -2    12
+  3868   258  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  1 -2    13
+  3869   258  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  1 -2    14
+  3870   258  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  1 -2    15
+  3871   259  1     Fe   1  4  0  0  1  F            s   6.001 -1  1 -2     1
+  3872   259  1     Fe   2  4  0  0  2  F            s   5.853 -1  1 -2     2
+  3873   259  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  1 -2     3
+  3874   259  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  1 -2     4
+  3875   259  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  1 -2     5
+  3876   259  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  1 -2     6
+  3877   259  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  1 -2     7
+  3878   259  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  1 -2     8
+  3879   259  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  1 -2     9
+  3880   259  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  1 -2    10
+  3881   259  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  1 -2    11
+  3882   259  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  1 -2    12
+  3883   259  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  1 -2    13
+  3884   259  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  1 -2    14
+  3885   259  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  1 -2    15
+  3886   260  1     Fe   1  4  0  0  1  F            s   6.001  0  2 -2     1
+  3887   260  1     Fe   2  4  0  0  2  F            s   5.853  0  2 -2     2
+  3888   260  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  2 -2     3
+  3889   260  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  2 -2     4
+  3890   260  1     Fe   5  3  2  0  1  F          dz2   4.792  0  2 -2     5
+  3891   260  1     Fe   6  3  2  1  1  F          dxz   4.792  0  2 -2     6
+  3892   260  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  2 -2     7
+  3893   260  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  2 -2     8
+  3894   260  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  2 -2     9
+  3895   260  1     Fe  10  3  2  0  2  F          dz2   2.235  0  2 -2    10
+  3896   260  1     Fe  11  3  2  1  2  F          dxz   2.235  0  2 -2    11
+  3897   260  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  2 -2    12
+  3898   260  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  2 -2    13
+  3899   260  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  2 -2    14
+  3900   260  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  2 -2    15
+  3901   261  1     Fe   1  4  0  0  1  F            s   6.001  1  2 -2     1
+  3902   261  1     Fe   2  4  0  0  2  F            s   5.853  1  2 -2     2
+  3903   261  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  2 -2     3
+  3904   261  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  2 -2     4
+  3905   261  1     Fe   5  3  2  0  1  F          dz2   4.792  1  2 -2     5
+  3906   261  1     Fe   6  3  2  1  1  F          dxz   4.792  1  2 -2     6
+  3907   261  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  2 -2     7
+  3908   261  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  2 -2     8
+  3909   261  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  2 -2     9
+  3910   261  1     Fe  10  3  2  0  2  F          dz2   2.235  1  2 -2    10
+  3911   261  1     Fe  11  3  2  1  2  F          dxz   2.235  1  2 -2    11
+  3912   261  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  2 -2    12
+  3913   261  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  2 -2    13
+  3914   261  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  2 -2    14
+  3915   261  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  2 -2    15
+  3916   262  1     Fe   1  4  0  0  1  F            s   6.001  2  2 -2     1
+  3917   262  1     Fe   2  4  0  0  2  F            s   5.853  2  2 -2     2
+  3918   262  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  2 -2     3
+  3919   262  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  2 -2     4
+  3920   262  1     Fe   5  3  2  0  1  F          dz2   4.792  2  2 -2     5
+  3921   262  1     Fe   6  3  2  1  1  F          dxz   4.792  2  2 -2     6
+  3922   262  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  2 -2     7
+  3923   262  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  2 -2     8
+  3924   262  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  2 -2     9
+  3925   262  1     Fe  10  3  2  0  2  F          dz2   2.235  2  2 -2    10
+  3926   262  1     Fe  11  3  2  1  2  F          dxz   2.235  2  2 -2    11
+  3927   262  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  2 -2    12
+  3928   262  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  2 -2    13
+  3929   262  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  2 -2    14
+  3930   262  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  2 -2    15
+  3931   263  1     Fe   1  4  0  0  1  F            s   6.001  3  2 -2     1
+  3932   263  1     Fe   2  4  0  0  2  F            s   5.853  3  2 -2     2
+  3933   263  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  2 -2     3
+  3934   263  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  2 -2     4
+  3935   263  1     Fe   5  3  2  0  1  F          dz2   4.792  3  2 -2     5
+  3936   263  1     Fe   6  3  2  1  1  F          dxz   4.792  3  2 -2     6
+  3937   263  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  2 -2     7
+  3938   263  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  2 -2     8
+  3939   263  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  2 -2     9
+  3940   263  1     Fe  10  3  2  0  2  F          dz2   2.235  3  2 -2    10
+  3941   263  1     Fe  11  3  2  1  2  F          dxz   2.235  3  2 -2    11
+  3942   263  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  2 -2    12
+  3943   263  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  2 -2    13
+  3944   263  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  2 -2    14
+  3945   263  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  2 -2    15
+  3946   264  1     Fe   1  4  0  0  1  F            s   6.001 -3  2 -2     1
+  3947   264  1     Fe   2  4  0  0  2  F            s   5.853 -3  2 -2     2
+  3948   264  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  2 -2     3
+  3949   264  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  2 -2     4
+  3950   264  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  2 -2     5
+  3951   264  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  2 -2     6
+  3952   264  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  2 -2     7
+  3953   264  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  2 -2     8
+  3954   264  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  2 -2     9
+  3955   264  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  2 -2    10
+  3956   264  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  2 -2    11
+  3957   264  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  2 -2    12
+  3958   264  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  2 -2    13
+  3959   264  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  2 -2    14
+  3960   264  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  2 -2    15
+  3961   265  1     Fe   1  4  0  0  1  F            s   6.001 -2  2 -2     1
+  3962   265  1     Fe   2  4  0  0  2  F            s   5.853 -2  2 -2     2
+  3963   265  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  2 -2     3
+  3964   265  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  2 -2     4
+  3965   265  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  2 -2     5
+  3966   265  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  2 -2     6
+  3967   265  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  2 -2     7
+  3968   265  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  2 -2     8
+  3969   265  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  2 -2     9
+  3970   265  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  2 -2    10
+  3971   265  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  2 -2    11
+  3972   265  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  2 -2    12
+  3973   265  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  2 -2    13
+  3974   265  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  2 -2    14
+  3975   265  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  2 -2    15
+  3976   266  1     Fe   1  4  0  0  1  F            s   6.001 -1  2 -2     1
+  3977   266  1     Fe   2  4  0  0  2  F            s   5.853 -1  2 -2     2
+  3978   266  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  2 -2     3
+  3979   266  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  2 -2     4
+  3980   266  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  2 -2     5
+  3981   266  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  2 -2     6
+  3982   266  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  2 -2     7
+  3983   266  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  2 -2     8
+  3984   266  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  2 -2     9
+  3985   266  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  2 -2    10
+  3986   266  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  2 -2    11
+  3987   266  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  2 -2    12
+  3988   266  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  2 -2    13
+  3989   266  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  2 -2    14
+  3990   266  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  2 -2    15
+  3991   267  1     Fe   1  4  0  0  1  F            s   6.001  0  3 -2     1
+  3992   267  1     Fe   2  4  0  0  2  F            s   5.853  0  3 -2     2
+  3993   267  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  3 -2     3
+  3994   267  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  3 -2     4
+  3995   267  1     Fe   5  3  2  0  1  F          dz2   4.792  0  3 -2     5
+  3996   267  1     Fe   6  3  2  1  1  F          dxz   4.792  0  3 -2     6
+  3997   267  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  3 -2     7
+  3998   267  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  3 -2     8
+  3999   267  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  3 -2     9
+  4000   267  1     Fe  10  3  2  0  2  F          dz2   2.235  0  3 -2    10
+  4001   267  1     Fe  11  3  2  1  2  F          dxz   2.235  0  3 -2    11
+  4002   267  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  3 -2    12
+  4003   267  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  3 -2    13
+  4004   267  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  3 -2    14
+  4005   267  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  3 -2    15
+  4006   268  1     Fe   1  4  0  0  1  F            s   6.001  1  3 -2     1
+  4007   268  1     Fe   2  4  0  0  2  F            s   5.853  1  3 -2     2
+  4008   268  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  3 -2     3
+  4009   268  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  3 -2     4
+  4010   268  1     Fe   5  3  2  0  1  F          dz2   4.792  1  3 -2     5
+  4011   268  1     Fe   6  3  2  1  1  F          dxz   4.792  1  3 -2     6
+  4012   268  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  3 -2     7
+  4013   268  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  3 -2     8
+  4014   268  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  3 -2     9
+  4015   268  1     Fe  10  3  2  0  2  F          dz2   2.235  1  3 -2    10
+  4016   268  1     Fe  11  3  2  1  2  F          dxz   2.235  1  3 -2    11
+  4017   268  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  3 -2    12
+  4018   268  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  3 -2    13
+  4019   268  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  3 -2    14
+  4020   268  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  3 -2    15
+  4021   269  1     Fe   1  4  0  0  1  F            s   6.001  2  3 -2     1
+  4022   269  1     Fe   2  4  0  0  2  F            s   5.853  2  3 -2     2
+  4023   269  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  3 -2     3
+  4024   269  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  3 -2     4
+  4025   269  1     Fe   5  3  2  0  1  F          dz2   4.792  2  3 -2     5
+  4026   269  1     Fe   6  3  2  1  1  F          dxz   4.792  2  3 -2     6
+  4027   269  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  3 -2     7
+  4028   269  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  3 -2     8
+  4029   269  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  3 -2     9
+  4030   269  1     Fe  10  3  2  0  2  F          dz2   2.235  2  3 -2    10
+  4031   269  1     Fe  11  3  2  1  2  F          dxz   2.235  2  3 -2    11
+  4032   269  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  3 -2    12
+  4033   269  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  3 -2    13
+  4034   269  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  3 -2    14
+  4035   269  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  3 -2    15
+  4036   270  1     Fe   1  4  0  0  1  F            s   6.001  3  3 -2     1
+  4037   270  1     Fe   2  4  0  0  2  F            s   5.853  3  3 -2     2
+  4038   270  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  3 -2     3
+  4039   270  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  3 -2     4
+  4040   270  1     Fe   5  3  2  0  1  F          dz2   4.792  3  3 -2     5
+  4041   270  1     Fe   6  3  2  1  1  F          dxz   4.792  3  3 -2     6
+  4042   270  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  3 -2     7
+  4043   270  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  3 -2     8
+  4044   270  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  3 -2     9
+  4045   270  1     Fe  10  3  2  0  2  F          dz2   2.235  3  3 -2    10
+  4046   270  1     Fe  11  3  2  1  2  F          dxz   2.235  3  3 -2    11
+  4047   270  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  3 -2    12
+  4048   270  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  3 -2    13
+  4049   270  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  3 -2    14
+  4050   270  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  3 -2    15
+  4051   271  1     Fe   1  4  0  0  1  F            s   6.001 -3  3 -2     1
+  4052   271  1     Fe   2  4  0  0  2  F            s   5.853 -3  3 -2     2
+  4053   271  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  3 -2     3
+  4054   271  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  3 -2     4
+  4055   271  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  3 -2     5
+  4056   271  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  3 -2     6
+  4057   271  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  3 -2     7
+  4058   271  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  3 -2     8
+  4059   271  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  3 -2     9
+  4060   271  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  3 -2    10
+  4061   271  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  3 -2    11
+  4062   271  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  3 -2    12
+  4063   271  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  3 -2    13
+  4064   271  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  3 -2    14
+  4065   271  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  3 -2    15
+  4066   272  1     Fe   1  4  0  0  1  F            s   6.001 -2  3 -2     1
+  4067   272  1     Fe   2  4  0  0  2  F            s   5.853 -2  3 -2     2
+  4068   272  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  3 -2     3
+  4069   272  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  3 -2     4
+  4070   272  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  3 -2     5
+  4071   272  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  3 -2     6
+  4072   272  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  3 -2     7
+  4073   272  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  3 -2     8
+  4074   272  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  3 -2     9
+  4075   272  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  3 -2    10
+  4076   272  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  3 -2    11
+  4077   272  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  3 -2    12
+  4078   272  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  3 -2    13
+  4079   272  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  3 -2    14
+  4080   272  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  3 -2    15
+  4081   273  1     Fe   1  4  0  0  1  F            s   6.001 -1  3 -2     1
+  4082   273  1     Fe   2  4  0  0  2  F            s   5.853 -1  3 -2     2
+  4083   273  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  3 -2     3
+  4084   273  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  3 -2     4
+  4085   273  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  3 -2     5
+  4086   273  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  3 -2     6
+  4087   273  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  3 -2     7
+  4088   273  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  3 -2     8
+  4089   273  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  3 -2     9
+  4090   273  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  3 -2    10
+  4091   273  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  3 -2    11
+  4092   273  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  3 -2    12
+  4093   273  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  3 -2    13
+  4094   273  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  3 -2    14
+  4095   273  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  3 -2    15
+  4096   274  1     Fe   1  4  0  0  1  F            s   6.001  0 -3 -2     1
+  4097   274  1     Fe   2  4  0  0  2  F            s   5.853  0 -3 -2     2
+  4098   274  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -3 -2     3
+  4099   274  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -3 -2     4
+  4100   274  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -3 -2     5
+  4101   274  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -3 -2     6
+  4102   274  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -3 -2     7
+  4103   274  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -3 -2     8
+  4104   274  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -3 -2     9
+  4105   274  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -3 -2    10
+  4106   274  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -3 -2    11
+  4107   274  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -3 -2    12
+  4108   274  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -3 -2    13
+  4109   274  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -3 -2    14
+  4110   274  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -3 -2    15
+  4111   275  1     Fe   1  4  0  0  1  F            s   6.001  1 -3 -2     1
+  4112   275  1     Fe   2  4  0  0  2  F            s   5.853  1 -3 -2     2
+  4113   275  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -3 -2     3
+  4114   275  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -3 -2     4
+  4115   275  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -3 -2     5
+  4116   275  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -3 -2     6
+  4117   275  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -3 -2     7
+  4118   275  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -3 -2     8
+  4119   275  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -3 -2     9
+  4120   275  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -3 -2    10
+  4121   275  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -3 -2    11
+  4122   275  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -3 -2    12
+  4123   275  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -3 -2    13
+  4124   275  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -3 -2    14
+  4125   275  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -3 -2    15
+  4126   276  1     Fe   1  4  0  0  1  F            s   6.001  2 -3 -2     1
+  4127   276  1     Fe   2  4  0  0  2  F            s   5.853  2 -3 -2     2
+  4128   276  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -3 -2     3
+  4129   276  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -3 -2     4
+  4130   276  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -3 -2     5
+  4131   276  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -3 -2     6
+  4132   276  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -3 -2     7
+  4133   276  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -3 -2     8
+  4134   276  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -3 -2     9
+  4135   276  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -3 -2    10
+  4136   276  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -3 -2    11
+  4137   276  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -3 -2    12
+  4138   276  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -3 -2    13
+  4139   276  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -3 -2    14
+  4140   276  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -3 -2    15
+  4141   277  1     Fe   1  4  0  0  1  F            s   6.001  3 -3 -2     1
+  4142   277  1     Fe   2  4  0  0  2  F            s   5.853  3 -3 -2     2
+  4143   277  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -3 -2     3
+  4144   277  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -3 -2     4
+  4145   277  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -3 -2     5
+  4146   277  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -3 -2     6
+  4147   277  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -3 -2     7
+  4148   277  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -3 -2     8
+  4149   277  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -3 -2     9
+  4150   277  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -3 -2    10
+  4151   277  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -3 -2    11
+  4152   277  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -3 -2    12
+  4153   277  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -3 -2    13
+  4154   277  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -3 -2    14
+  4155   277  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -3 -2    15
+  4156   278  1     Fe   1  4  0  0  1  F            s   6.001 -3 -3 -2     1
+  4157   278  1     Fe   2  4  0  0  2  F            s   5.853 -3 -3 -2     2
+  4158   278  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -3 -2     3
+  4159   278  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -3 -2     4
+  4160   278  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -3 -2     5
+  4161   278  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -3 -2     6
+  4162   278  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -3 -2     7
+  4163   278  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -3 -2     8
+  4164   278  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -3 -2     9
+  4165   278  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -3 -2    10
+  4166   278  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -3 -2    11
+  4167   278  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -3 -2    12
+  4168   278  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -3 -2    13
+  4169   278  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -3 -2    14
+  4170   278  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -3 -2    15
+  4171   279  1     Fe   1  4  0  0  1  F            s   6.001 -2 -3 -2     1
+  4172   279  1     Fe   2  4  0  0  2  F            s   5.853 -2 -3 -2     2
+  4173   279  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -3 -2     3
+  4174   279  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -3 -2     4
+  4175   279  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -3 -2     5
+  4176   279  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -3 -2     6
+  4177   279  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -3 -2     7
+  4178   279  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -3 -2     8
+  4179   279  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -3 -2     9
+  4180   279  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -3 -2    10
+  4181   279  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -3 -2    11
+  4182   279  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -3 -2    12
+  4183   279  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -3 -2    13
+  4184   279  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -3 -2    14
+  4185   279  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -3 -2    15
+  4186   280  1     Fe   1  4  0  0  1  F            s   6.001 -1 -3 -2     1
+  4187   280  1     Fe   2  4  0  0  2  F            s   5.853 -1 -3 -2     2
+  4188   280  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -3 -2     3
+  4189   280  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -3 -2     4
+  4190   280  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -3 -2     5
+  4191   280  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -3 -2     6
+  4192   280  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -3 -2     7
+  4193   280  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -3 -2     8
+  4194   280  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -3 -2     9
+  4195   280  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -3 -2    10
+  4196   280  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -3 -2    11
+  4197   280  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -3 -2    12
+  4198   280  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -3 -2    13
+  4199   280  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -3 -2    14
+  4200   280  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -3 -2    15
+  4201   281  1     Fe   1  4  0  0  1  F            s   6.001  0 -2 -2     1
+  4202   281  1     Fe   2  4  0  0  2  F            s   5.853  0 -2 -2     2
+  4203   281  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -2 -2     3
+  4204   281  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -2 -2     4
+  4205   281  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -2 -2     5
+  4206   281  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -2 -2     6
+  4207   281  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -2 -2     7
+  4208   281  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -2 -2     8
+  4209   281  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -2 -2     9
+  4210   281  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -2 -2    10
+  4211   281  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -2 -2    11
+  4212   281  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -2 -2    12
+  4213   281  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -2 -2    13
+  4214   281  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -2 -2    14
+  4215   281  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -2 -2    15
+  4216   282  1     Fe   1  4  0  0  1  F            s   6.001  1 -2 -2     1
+  4217   282  1     Fe   2  4  0  0  2  F            s   5.853  1 -2 -2     2
+  4218   282  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -2 -2     3
+  4219   282  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -2 -2     4
+  4220   282  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -2 -2     5
+  4221   282  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -2 -2     6
+  4222   282  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -2 -2     7
+  4223   282  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -2 -2     8
+  4224   282  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -2 -2     9
+  4225   282  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -2 -2    10
+  4226   282  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -2 -2    11
+  4227   282  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -2 -2    12
+  4228   282  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -2 -2    13
+  4229   282  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -2 -2    14
+  4230   282  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -2 -2    15
+  4231   283  1     Fe   1  4  0  0  1  F            s   6.001  2 -2 -2     1
+  4232   283  1     Fe   2  4  0  0  2  F            s   5.853  2 -2 -2     2
+  4233   283  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -2 -2     3
+  4234   283  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -2 -2     4
+  4235   283  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -2 -2     5
+  4236   283  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -2 -2     6
+  4237   283  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -2 -2     7
+  4238   283  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -2 -2     8
+  4239   283  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -2 -2     9
+  4240   283  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -2 -2    10
+  4241   283  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -2 -2    11
+  4242   283  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -2 -2    12
+  4243   283  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -2 -2    13
+  4244   283  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -2 -2    14
+  4245   283  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -2 -2    15
+  4246   284  1     Fe   1  4  0  0  1  F            s   6.001  3 -2 -2     1
+  4247   284  1     Fe   2  4  0  0  2  F            s   5.853  3 -2 -2     2
+  4248   284  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -2 -2     3
+  4249   284  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -2 -2     4
+  4250   284  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -2 -2     5
+  4251   284  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -2 -2     6
+  4252   284  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -2 -2     7
+  4253   284  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -2 -2     8
+  4254   284  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -2 -2     9
+  4255   284  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -2 -2    10
+  4256   284  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -2 -2    11
+  4257   284  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -2 -2    12
+  4258   284  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -2 -2    13
+  4259   284  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -2 -2    14
+  4260   284  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -2 -2    15
+  4261   285  1     Fe   1  4  0  0  1  F            s   6.001 -3 -2 -2     1
+  4262   285  1     Fe   2  4  0  0  2  F            s   5.853 -3 -2 -2     2
+  4263   285  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -2 -2     3
+  4264   285  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -2 -2     4
+  4265   285  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -2 -2     5
+  4266   285  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -2 -2     6
+  4267   285  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -2 -2     7
+  4268   285  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -2 -2     8
+  4269   285  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -2 -2     9
+  4270   285  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -2 -2    10
+  4271   285  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -2 -2    11
+  4272   285  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -2 -2    12
+  4273   285  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -2 -2    13
+  4274   285  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -2 -2    14
+  4275   285  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -2 -2    15
+  4276   286  1     Fe   1  4  0  0  1  F            s   6.001 -2 -2 -2     1
+  4277   286  1     Fe   2  4  0  0  2  F            s   5.853 -2 -2 -2     2
+  4278   286  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -2 -2     3
+  4279   286  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -2 -2     4
+  4280   286  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -2 -2     5
+  4281   286  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -2 -2     6
+  4282   286  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -2 -2     7
+  4283   286  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -2 -2     8
+  4284   286  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -2 -2     9
+  4285   286  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -2 -2    10
+  4286   286  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -2 -2    11
+  4287   286  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -2 -2    12
+  4288   286  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -2 -2    13
+  4289   286  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -2 -2    14
+  4290   286  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -2 -2    15
+  4291   287  1     Fe   1  4  0  0  1  F            s   6.001 -1 -2 -2     1
+  4292   287  1     Fe   2  4  0  0  2  F            s   5.853 -1 -2 -2     2
+  4293   287  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -2 -2     3
+  4294   287  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -2 -2     4
+  4295   287  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -2 -2     5
+  4296   287  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -2 -2     6
+  4297   287  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -2 -2     7
+  4298   287  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -2 -2     8
+  4299   287  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -2 -2     9
+  4300   287  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -2 -2    10
+  4301   287  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -2 -2    11
+  4302   287  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -2 -2    12
+  4303   287  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -2 -2    13
+  4304   287  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -2 -2    14
+  4305   287  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -2 -2    15
+  4306   288  1     Fe   1  4  0  0  1  F            s   6.001  0 -1 -2     1
+  4307   288  1     Fe   2  4  0  0  2  F            s   5.853  0 -1 -2     2
+  4308   288  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -1 -2     3
+  4309   288  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -1 -2     4
+  4310   288  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -1 -2     5
+  4311   288  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -1 -2     6
+  4312   288  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -1 -2     7
+  4313   288  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -1 -2     8
+  4314   288  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -1 -2     9
+  4315   288  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -1 -2    10
+  4316   288  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -1 -2    11
+  4317   288  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -1 -2    12
+  4318   288  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -1 -2    13
+  4319   288  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -1 -2    14
+  4320   288  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -1 -2    15
+  4321   289  1     Fe   1  4  0  0  1  F            s   6.001  1 -1 -2     1
+  4322   289  1     Fe   2  4  0  0  2  F            s   5.853  1 -1 -2     2
+  4323   289  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -1 -2     3
+  4324   289  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -1 -2     4
+  4325   289  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -1 -2     5
+  4326   289  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -1 -2     6
+  4327   289  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -1 -2     7
+  4328   289  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -1 -2     8
+  4329   289  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -1 -2     9
+  4330   289  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -1 -2    10
+  4331   289  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -1 -2    11
+  4332   289  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -1 -2    12
+  4333   289  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -1 -2    13
+  4334   289  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -1 -2    14
+  4335   289  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -1 -2    15
+  4336   290  1     Fe   1  4  0  0  1  F            s   6.001  2 -1 -2     1
+  4337   290  1     Fe   2  4  0  0  2  F            s   5.853  2 -1 -2     2
+  4338   290  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -1 -2     3
+  4339   290  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -1 -2     4
+  4340   290  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -1 -2     5
+  4341   290  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -1 -2     6
+  4342   290  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -1 -2     7
+  4343   290  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -1 -2     8
+  4344   290  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -1 -2     9
+  4345   290  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -1 -2    10
+  4346   290  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -1 -2    11
+  4347   290  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -1 -2    12
+  4348   290  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -1 -2    13
+  4349   290  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -1 -2    14
+  4350   290  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -1 -2    15
+  4351   291  1     Fe   1  4  0  0  1  F            s   6.001  3 -1 -2     1
+  4352   291  1     Fe   2  4  0  0  2  F            s   5.853  3 -1 -2     2
+  4353   291  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -1 -2     3
+  4354   291  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -1 -2     4
+  4355   291  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -1 -2     5
+  4356   291  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -1 -2     6
+  4357   291  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -1 -2     7
+  4358   291  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -1 -2     8
+  4359   291  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -1 -2     9
+  4360   291  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -1 -2    10
+  4361   291  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -1 -2    11
+  4362   291  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -1 -2    12
+  4363   291  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -1 -2    13
+  4364   291  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -1 -2    14
+  4365   291  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -1 -2    15
+  4366   292  1     Fe   1  4  0  0  1  F            s   6.001 -3 -1 -2     1
+  4367   292  1     Fe   2  4  0  0  2  F            s   5.853 -3 -1 -2     2
+  4368   292  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -1 -2     3
+  4369   292  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -1 -2     4
+  4370   292  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -1 -2     5
+  4371   292  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -1 -2     6
+  4372   292  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -1 -2     7
+  4373   292  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -1 -2     8
+  4374   292  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -1 -2     9
+  4375   292  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -1 -2    10
+  4376   292  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -1 -2    11
+  4377   292  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -1 -2    12
+  4378   292  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -1 -2    13
+  4379   292  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -1 -2    14
+  4380   292  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -1 -2    15
+  4381   293  1     Fe   1  4  0  0  1  F            s   6.001 -2 -1 -2     1
+  4382   293  1     Fe   2  4  0  0  2  F            s   5.853 -2 -1 -2     2
+  4383   293  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -1 -2     3
+  4384   293  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -1 -2     4
+  4385   293  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -1 -2     5
+  4386   293  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -1 -2     6
+  4387   293  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -1 -2     7
+  4388   293  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -1 -2     8
+  4389   293  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -1 -2     9
+  4390   293  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -1 -2    10
+  4391   293  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -1 -2    11
+  4392   293  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -1 -2    12
+  4393   293  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -1 -2    13
+  4394   293  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -1 -2    14
+  4395   293  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -1 -2    15
+  4396   294  1     Fe   1  4  0  0  1  F            s   6.001 -1 -1 -2     1
+  4397   294  1     Fe   2  4  0  0  2  F            s   5.853 -1 -1 -2     2
+  4398   294  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -1 -2     3
+  4399   294  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -1 -2     4
+  4400   294  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -1 -2     5
+  4401   294  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -1 -2     6
+  4402   294  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -1 -2     7
+  4403   294  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -1 -2     8
+  4404   294  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -1 -2     9
+  4405   294  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -1 -2    10
+  4406   294  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -1 -2    11
+  4407   294  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -1 -2    12
+  4408   294  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -1 -2    13
+  4409   294  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -1 -2    14
+  4410   294  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -1 -2    15
+  4411   295  1     Fe   1  4  0  0  1  F            s   6.001  0  0 -1     1
+  4412   295  1     Fe   2  4  0  0  2  F            s   5.853  0  0 -1     2
+  4413   295  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  0 -1     3
+  4414   295  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  0 -1     4
+  4415   295  1     Fe   5  3  2  0  1  F          dz2   4.792  0  0 -1     5
+  4416   295  1     Fe   6  3  2  1  1  F          dxz   4.792  0  0 -1     6
+  4417   295  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  0 -1     7
+  4418   295  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  0 -1     8
+  4419   295  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  0 -1     9
+  4420   295  1     Fe  10  3  2  0  2  F          dz2   2.235  0  0 -1    10
+  4421   295  1     Fe  11  3  2  1  2  F          dxz   2.235  0  0 -1    11
+  4422   295  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  0 -1    12
+  4423   295  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  0 -1    13
+  4424   295  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  0 -1    14
+  4425   295  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  0 -1    15
+  4426   296  1     Fe   1  4  0  0  1  F            s   6.001  1  0 -1     1
+  4427   296  1     Fe   2  4  0  0  2  F            s   5.853  1  0 -1     2
+  4428   296  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  0 -1     3
+  4429   296  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  0 -1     4
+  4430   296  1     Fe   5  3  2  0  1  F          dz2   4.792  1  0 -1     5
+  4431   296  1     Fe   6  3  2  1  1  F          dxz   4.792  1  0 -1     6
+  4432   296  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  0 -1     7
+  4433   296  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  0 -1     8
+  4434   296  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  0 -1     9
+  4435   296  1     Fe  10  3  2  0  2  F          dz2   2.235  1  0 -1    10
+  4436   296  1     Fe  11  3  2  1  2  F          dxz   2.235  1  0 -1    11
+  4437   296  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  0 -1    12
+  4438   296  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  0 -1    13
+  4439   296  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  0 -1    14
+  4440   296  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  0 -1    15
+  4441   297  1     Fe   1  4  0  0  1  F            s   6.001  2  0 -1     1
+  4442   297  1     Fe   2  4  0  0  2  F            s   5.853  2  0 -1     2
+  4443   297  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  0 -1     3
+  4444   297  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  0 -1     4
+  4445   297  1     Fe   5  3  2  0  1  F          dz2   4.792  2  0 -1     5
+  4446   297  1     Fe   6  3  2  1  1  F          dxz   4.792  2  0 -1     6
+  4447   297  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  0 -1     7
+  4448   297  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  0 -1     8
+  4449   297  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  0 -1     9
+  4450   297  1     Fe  10  3  2  0  2  F          dz2   2.235  2  0 -1    10
+  4451   297  1     Fe  11  3  2  1  2  F          dxz   2.235  2  0 -1    11
+  4452   297  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  0 -1    12
+  4453   297  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  0 -1    13
+  4454   297  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  0 -1    14
+  4455   297  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  0 -1    15
+  4456   298  1     Fe   1  4  0  0  1  F            s   6.001  3  0 -1     1
+  4457   298  1     Fe   2  4  0  0  2  F            s   5.853  3  0 -1     2
+  4458   298  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  0 -1     3
+  4459   298  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  0 -1     4
+  4460   298  1     Fe   5  3  2  0  1  F          dz2   4.792  3  0 -1     5
+  4461   298  1     Fe   6  3  2  1  1  F          dxz   4.792  3  0 -1     6
+  4462   298  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  0 -1     7
+  4463   298  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  0 -1     8
+  4464   298  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  0 -1     9
+  4465   298  1     Fe  10  3  2  0  2  F          dz2   2.235  3  0 -1    10
+  4466   298  1     Fe  11  3  2  1  2  F          dxz   2.235  3  0 -1    11
+  4467   298  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  0 -1    12
+  4468   298  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  0 -1    13
+  4469   298  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  0 -1    14
+  4470   298  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  0 -1    15
+  4471   299  1     Fe   1  4  0  0  1  F            s   6.001 -3  0 -1     1
+  4472   299  1     Fe   2  4  0  0  2  F            s   5.853 -3  0 -1     2
+  4473   299  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  0 -1     3
+  4474   299  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  0 -1     4
+  4475   299  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  0 -1     5
+  4476   299  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  0 -1     6
+  4477   299  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  0 -1     7
+  4478   299  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  0 -1     8
+  4479   299  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  0 -1     9
+  4480   299  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  0 -1    10
+  4481   299  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  0 -1    11
+  4482   299  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  0 -1    12
+  4483   299  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  0 -1    13
+  4484   299  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  0 -1    14
+  4485   299  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  0 -1    15
+  4486   300  1     Fe   1  4  0  0  1  F            s   6.001 -2  0 -1     1
+  4487   300  1     Fe   2  4  0  0  2  F            s   5.853 -2  0 -1     2
+  4488   300  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  0 -1     3
+  4489   300  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  0 -1     4
+  4490   300  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  0 -1     5
+  4491   300  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  0 -1     6
+  4492   300  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  0 -1     7
+  4493   300  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  0 -1     8
+  4494   300  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  0 -1     9
+  4495   300  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  0 -1    10
+  4496   300  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  0 -1    11
+  4497   300  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  0 -1    12
+  4498   300  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  0 -1    13
+  4499   300  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  0 -1    14
+  4500   300  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  0 -1    15
+  4501   301  1     Fe   1  4  0  0  1  F            s   6.001 -1  0 -1     1
+  4502   301  1     Fe   2  4  0  0  2  F            s   5.853 -1  0 -1     2
+  4503   301  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  0 -1     3
+  4504   301  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  0 -1     4
+  4505   301  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  0 -1     5
+  4506   301  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  0 -1     6
+  4507   301  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  0 -1     7
+  4508   301  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  0 -1     8
+  4509   301  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  0 -1     9
+  4510   301  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  0 -1    10
+  4511   301  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  0 -1    11
+  4512   301  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  0 -1    12
+  4513   301  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  0 -1    13
+  4514   301  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  0 -1    14
+  4515   301  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  0 -1    15
+  4516   302  1     Fe   1  4  0  0  1  F            s   6.001  0  1 -1     1
+  4517   302  1     Fe   2  4  0  0  2  F            s   5.853  0  1 -1     2
+  4518   302  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  1 -1     3
+  4519   302  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  1 -1     4
+  4520   302  1     Fe   5  3  2  0  1  F          dz2   4.792  0  1 -1     5
+  4521   302  1     Fe   6  3  2  1  1  F          dxz   4.792  0  1 -1     6
+  4522   302  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  1 -1     7
+  4523   302  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  1 -1     8
+  4524   302  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  1 -1     9
+  4525   302  1     Fe  10  3  2  0  2  F          dz2   2.235  0  1 -1    10
+  4526   302  1     Fe  11  3  2  1  2  F          dxz   2.235  0  1 -1    11
+  4527   302  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  1 -1    12
+  4528   302  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  1 -1    13
+  4529   302  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  1 -1    14
+  4530   302  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  1 -1    15
+  4531   303  1     Fe   1  4  0  0  1  F            s   6.001  1  1 -1     1
+  4532   303  1     Fe   2  4  0  0  2  F            s   5.853  1  1 -1     2
+  4533   303  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  1 -1     3
+  4534   303  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  1 -1     4
+  4535   303  1     Fe   5  3  2  0  1  F          dz2   4.792  1  1 -1     5
+  4536   303  1     Fe   6  3  2  1  1  F          dxz   4.792  1  1 -1     6
+  4537   303  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  1 -1     7
+  4538   303  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  1 -1     8
+  4539   303  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  1 -1     9
+  4540   303  1     Fe  10  3  2  0  2  F          dz2   2.235  1  1 -1    10
+  4541   303  1     Fe  11  3  2  1  2  F          dxz   2.235  1  1 -1    11
+  4542   303  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  1 -1    12
+  4543   303  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  1 -1    13
+  4544   303  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  1 -1    14
+  4545   303  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  1 -1    15
+  4546   304  1     Fe   1  4  0  0  1  F            s   6.001  2  1 -1     1
+  4547   304  1     Fe   2  4  0  0  2  F            s   5.853  2  1 -1     2
+  4548   304  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  1 -1     3
+  4549   304  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  1 -1     4
+  4550   304  1     Fe   5  3  2  0  1  F          dz2   4.792  2  1 -1     5
+  4551   304  1     Fe   6  3  2  1  1  F          dxz   4.792  2  1 -1     6
+  4552   304  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  1 -1     7
+  4553   304  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  1 -1     8
+  4554   304  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  1 -1     9
+  4555   304  1     Fe  10  3  2  0  2  F          dz2   2.235  2  1 -1    10
+  4556   304  1     Fe  11  3  2  1  2  F          dxz   2.235  2  1 -1    11
+  4557   304  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  1 -1    12
+  4558   304  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  1 -1    13
+  4559   304  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  1 -1    14
+  4560   304  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  1 -1    15
+  4561   305  1     Fe   1  4  0  0  1  F            s   6.001  3  1 -1     1
+  4562   305  1     Fe   2  4  0  0  2  F            s   5.853  3  1 -1     2
+  4563   305  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  1 -1     3
+  4564   305  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  1 -1     4
+  4565   305  1     Fe   5  3  2  0  1  F          dz2   4.792  3  1 -1     5
+  4566   305  1     Fe   6  3  2  1  1  F          dxz   4.792  3  1 -1     6
+  4567   305  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  1 -1     7
+  4568   305  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  1 -1     8
+  4569   305  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  1 -1     9
+  4570   305  1     Fe  10  3  2  0  2  F          dz2   2.235  3  1 -1    10
+  4571   305  1     Fe  11  3  2  1  2  F          dxz   2.235  3  1 -1    11
+  4572   305  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  1 -1    12
+  4573   305  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  1 -1    13
+  4574   305  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  1 -1    14
+  4575   305  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  1 -1    15
+  4576   306  1     Fe   1  4  0  0  1  F            s   6.001 -3  1 -1     1
+  4577   306  1     Fe   2  4  0  0  2  F            s   5.853 -3  1 -1     2
+  4578   306  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  1 -1     3
+  4579   306  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  1 -1     4
+  4580   306  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  1 -1     5
+  4581   306  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  1 -1     6
+  4582   306  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  1 -1     7
+  4583   306  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  1 -1     8
+  4584   306  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  1 -1     9
+  4585   306  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  1 -1    10
+  4586   306  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  1 -1    11
+  4587   306  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  1 -1    12
+  4588   306  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  1 -1    13
+  4589   306  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  1 -1    14
+  4590   306  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  1 -1    15
+  4591   307  1     Fe   1  4  0  0  1  F            s   6.001 -2  1 -1     1
+  4592   307  1     Fe   2  4  0  0  2  F            s   5.853 -2  1 -1     2
+  4593   307  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  1 -1     3
+  4594   307  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  1 -1     4
+  4595   307  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  1 -1     5
+  4596   307  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  1 -1     6
+  4597   307  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  1 -1     7
+  4598   307  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  1 -1     8
+  4599   307  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  1 -1     9
+  4600   307  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  1 -1    10
+  4601   307  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  1 -1    11
+  4602   307  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  1 -1    12
+  4603   307  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  1 -1    13
+  4604   307  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  1 -1    14
+  4605   307  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  1 -1    15
+  4606   308  1     Fe   1  4  0  0  1  F            s   6.001 -1  1 -1     1
+  4607   308  1     Fe   2  4  0  0  2  F            s   5.853 -1  1 -1     2
+  4608   308  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  1 -1     3
+  4609   308  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  1 -1     4
+  4610   308  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  1 -1     5
+  4611   308  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  1 -1     6
+  4612   308  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  1 -1     7
+  4613   308  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  1 -1     8
+  4614   308  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  1 -1     9
+  4615   308  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  1 -1    10
+  4616   308  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  1 -1    11
+  4617   308  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  1 -1    12
+  4618   308  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  1 -1    13
+  4619   308  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  1 -1    14
+  4620   308  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  1 -1    15
+  4621   309  1     Fe   1  4  0  0  1  F            s   6.001  0  2 -1     1
+  4622   309  1     Fe   2  4  0  0  2  F            s   5.853  0  2 -1     2
+  4623   309  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  2 -1     3
+  4624   309  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  2 -1     4
+  4625   309  1     Fe   5  3  2  0  1  F          dz2   4.792  0  2 -1     5
+  4626   309  1     Fe   6  3  2  1  1  F          dxz   4.792  0  2 -1     6
+  4627   309  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  2 -1     7
+  4628   309  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  2 -1     8
+  4629   309  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  2 -1     9
+  4630   309  1     Fe  10  3  2  0  2  F          dz2   2.235  0  2 -1    10
+  4631   309  1     Fe  11  3  2  1  2  F          dxz   2.235  0  2 -1    11
+  4632   309  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  2 -1    12
+  4633   309  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  2 -1    13
+  4634   309  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  2 -1    14
+  4635   309  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  2 -1    15
+  4636   310  1     Fe   1  4  0  0  1  F            s   6.001  1  2 -1     1
+  4637   310  1     Fe   2  4  0  0  2  F            s   5.853  1  2 -1     2
+  4638   310  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  2 -1     3
+  4639   310  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  2 -1     4
+  4640   310  1     Fe   5  3  2  0  1  F          dz2   4.792  1  2 -1     5
+  4641   310  1     Fe   6  3  2  1  1  F          dxz   4.792  1  2 -1     6
+  4642   310  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  2 -1     7
+  4643   310  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  2 -1     8
+  4644   310  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  2 -1     9
+  4645   310  1     Fe  10  3  2  0  2  F          dz2   2.235  1  2 -1    10
+  4646   310  1     Fe  11  3  2  1  2  F          dxz   2.235  1  2 -1    11
+  4647   310  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  2 -1    12
+  4648   310  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  2 -1    13
+  4649   310  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  2 -1    14
+  4650   310  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  2 -1    15
+  4651   311  1     Fe   1  4  0  0  1  F            s   6.001  2  2 -1     1
+  4652   311  1     Fe   2  4  0  0  2  F            s   5.853  2  2 -1     2
+  4653   311  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  2 -1     3
+  4654   311  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  2 -1     4
+  4655   311  1     Fe   5  3  2  0  1  F          dz2   4.792  2  2 -1     5
+  4656   311  1     Fe   6  3  2  1  1  F          dxz   4.792  2  2 -1     6
+  4657   311  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  2 -1     7
+  4658   311  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  2 -1     8
+  4659   311  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  2 -1     9
+  4660   311  1     Fe  10  3  2  0  2  F          dz2   2.235  2  2 -1    10
+  4661   311  1     Fe  11  3  2  1  2  F          dxz   2.235  2  2 -1    11
+  4662   311  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  2 -1    12
+  4663   311  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  2 -1    13
+  4664   311  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  2 -1    14
+  4665   311  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  2 -1    15
+  4666   312  1     Fe   1  4  0  0  1  F            s   6.001  3  2 -1     1
+  4667   312  1     Fe   2  4  0  0  2  F            s   5.853  3  2 -1     2
+  4668   312  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  2 -1     3
+  4669   312  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  2 -1     4
+  4670   312  1     Fe   5  3  2  0  1  F          dz2   4.792  3  2 -1     5
+  4671   312  1     Fe   6  3  2  1  1  F          dxz   4.792  3  2 -1     6
+  4672   312  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  2 -1     7
+  4673   312  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  2 -1     8
+  4674   312  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  2 -1     9
+  4675   312  1     Fe  10  3  2  0  2  F          dz2   2.235  3  2 -1    10
+  4676   312  1     Fe  11  3  2  1  2  F          dxz   2.235  3  2 -1    11
+  4677   312  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  2 -1    12
+  4678   312  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  2 -1    13
+  4679   312  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  2 -1    14
+  4680   312  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  2 -1    15
+  4681   313  1     Fe   1  4  0  0  1  F            s   6.001 -3  2 -1     1
+  4682   313  1     Fe   2  4  0  0  2  F            s   5.853 -3  2 -1     2
+  4683   313  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  2 -1     3
+  4684   313  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  2 -1     4
+  4685   313  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  2 -1     5
+  4686   313  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  2 -1     6
+  4687   313  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  2 -1     7
+  4688   313  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  2 -1     8
+  4689   313  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  2 -1     9
+  4690   313  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  2 -1    10
+  4691   313  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  2 -1    11
+  4692   313  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  2 -1    12
+  4693   313  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  2 -1    13
+  4694   313  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  2 -1    14
+  4695   313  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  2 -1    15
+  4696   314  1     Fe   1  4  0  0  1  F            s   6.001 -2  2 -1     1
+  4697   314  1     Fe   2  4  0  0  2  F            s   5.853 -2  2 -1     2
+  4698   314  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  2 -1     3
+  4699   314  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  2 -1     4
+  4700   314  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  2 -1     5
+  4701   314  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  2 -1     6
+  4702   314  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  2 -1     7
+  4703   314  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  2 -1     8
+  4704   314  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  2 -1     9
+  4705   314  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  2 -1    10
+  4706   314  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  2 -1    11
+  4707   314  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  2 -1    12
+  4708   314  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  2 -1    13
+  4709   314  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  2 -1    14
+  4710   314  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  2 -1    15
+  4711   315  1     Fe   1  4  0  0  1  F            s   6.001 -1  2 -1     1
+  4712   315  1     Fe   2  4  0  0  2  F            s   5.853 -1  2 -1     2
+  4713   315  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  2 -1     3
+  4714   315  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  2 -1     4
+  4715   315  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  2 -1     5
+  4716   315  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  2 -1     6
+  4717   315  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  2 -1     7
+  4718   315  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  2 -1     8
+  4719   315  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  2 -1     9
+  4720   315  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  2 -1    10
+  4721   315  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  2 -1    11
+  4722   315  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  2 -1    12
+  4723   315  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  2 -1    13
+  4724   315  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  2 -1    14
+  4725   315  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  2 -1    15
+  4726   316  1     Fe   1  4  0  0  1  F            s   6.001  0  3 -1     1
+  4727   316  1     Fe   2  4  0  0  2  F            s   5.853  0  3 -1     2
+  4728   316  1     Fe   3  3  2 -2  1  F          dxy   4.792  0  3 -1     3
+  4729   316  1     Fe   4  3  2 -1  1  F          dyz   4.792  0  3 -1     4
+  4730   316  1     Fe   5  3  2  0  1  F          dz2   4.792  0  3 -1     5
+  4731   316  1     Fe   6  3  2  1  1  F          dxz   4.792  0  3 -1     6
+  4732   316  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0  3 -1     7
+  4733   316  1     Fe   8  3  2 -2  2  F          dxy   2.235  0  3 -1     8
+  4734   316  1     Fe   9  3  2 -1  2  F          dyz   2.235  0  3 -1     9
+  4735   316  1     Fe  10  3  2  0  2  F          dz2   2.235  0  3 -1    10
+  4736   316  1     Fe  11  3  2  1  2  F          dxz   2.235  0  3 -1    11
+  4737   316  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0  3 -1    12
+  4738   316  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0  3 -1    13
+  4739   316  1     Fe  14  4  1  0  1  T          Ppz   6.001  0  3 -1    14
+  4740   316  1     Fe  15  4  1  1  1  T          Ppx   6.001  0  3 -1    15
+  4741   317  1     Fe   1  4  0  0  1  F            s   6.001  1  3 -1     1
+  4742   317  1     Fe   2  4  0  0  2  F            s   5.853  1  3 -1     2
+  4743   317  1     Fe   3  3  2 -2  1  F          dxy   4.792  1  3 -1     3
+  4744   317  1     Fe   4  3  2 -1  1  F          dyz   4.792  1  3 -1     4
+  4745   317  1     Fe   5  3  2  0  1  F          dz2   4.792  1  3 -1     5
+  4746   317  1     Fe   6  3  2  1  1  F          dxz   4.792  1  3 -1     6
+  4747   317  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1  3 -1     7
+  4748   317  1     Fe   8  3  2 -2  2  F          dxy   2.235  1  3 -1     8
+  4749   317  1     Fe   9  3  2 -1  2  F          dyz   2.235  1  3 -1     9
+  4750   317  1     Fe  10  3  2  0  2  F          dz2   2.235  1  3 -1    10
+  4751   317  1     Fe  11  3  2  1  2  F          dxz   2.235  1  3 -1    11
+  4752   317  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1  3 -1    12
+  4753   317  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1  3 -1    13
+  4754   317  1     Fe  14  4  1  0  1  T          Ppz   6.001  1  3 -1    14
+  4755   317  1     Fe  15  4  1  1  1  T          Ppx   6.001  1  3 -1    15
+  4756   318  1     Fe   1  4  0  0  1  F            s   6.001  2  3 -1     1
+  4757   318  1     Fe   2  4  0  0  2  F            s   5.853  2  3 -1     2
+  4758   318  1     Fe   3  3  2 -2  1  F          dxy   4.792  2  3 -1     3
+  4759   318  1     Fe   4  3  2 -1  1  F          dyz   4.792  2  3 -1     4
+  4760   318  1     Fe   5  3  2  0  1  F          dz2   4.792  2  3 -1     5
+  4761   318  1     Fe   6  3  2  1  1  F          dxz   4.792  2  3 -1     6
+  4762   318  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2  3 -1     7
+  4763   318  1     Fe   8  3  2 -2  2  F          dxy   2.235  2  3 -1     8
+  4764   318  1     Fe   9  3  2 -1  2  F          dyz   2.235  2  3 -1     9
+  4765   318  1     Fe  10  3  2  0  2  F          dz2   2.235  2  3 -1    10
+  4766   318  1     Fe  11  3  2  1  2  F          dxz   2.235  2  3 -1    11
+  4767   318  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2  3 -1    12
+  4768   318  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2  3 -1    13
+  4769   318  1     Fe  14  4  1  0  1  T          Ppz   6.001  2  3 -1    14
+  4770   318  1     Fe  15  4  1  1  1  T          Ppx   6.001  2  3 -1    15
+  4771   319  1     Fe   1  4  0  0  1  F            s   6.001  3  3 -1     1
+  4772   319  1     Fe   2  4  0  0  2  F            s   5.853  3  3 -1     2
+  4773   319  1     Fe   3  3  2 -2  1  F          dxy   4.792  3  3 -1     3
+  4774   319  1     Fe   4  3  2 -1  1  F          dyz   4.792  3  3 -1     4
+  4775   319  1     Fe   5  3  2  0  1  F          dz2   4.792  3  3 -1     5
+  4776   319  1     Fe   6  3  2  1  1  F          dxz   4.792  3  3 -1     6
+  4777   319  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3  3 -1     7
+  4778   319  1     Fe   8  3  2 -2  2  F          dxy   2.235  3  3 -1     8
+  4779   319  1     Fe   9  3  2 -1  2  F          dyz   2.235  3  3 -1     9
+  4780   319  1     Fe  10  3  2  0  2  F          dz2   2.235  3  3 -1    10
+  4781   319  1     Fe  11  3  2  1  2  F          dxz   2.235  3  3 -1    11
+  4782   319  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3  3 -1    12
+  4783   319  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3  3 -1    13
+  4784   319  1     Fe  14  4  1  0  1  T          Ppz   6.001  3  3 -1    14
+  4785   319  1     Fe  15  4  1  1  1  T          Ppx   6.001  3  3 -1    15
+  4786   320  1     Fe   1  4  0  0  1  F            s   6.001 -3  3 -1     1
+  4787   320  1     Fe   2  4  0  0  2  F            s   5.853 -3  3 -1     2
+  4788   320  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3  3 -1     3
+  4789   320  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3  3 -1     4
+  4790   320  1     Fe   5  3  2  0  1  F          dz2   4.792 -3  3 -1     5
+  4791   320  1     Fe   6  3  2  1  1  F          dxz   4.792 -3  3 -1     6
+  4792   320  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3  3 -1     7
+  4793   320  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3  3 -1     8
+  4794   320  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3  3 -1     9
+  4795   320  1     Fe  10  3  2  0  2  F          dz2   2.235 -3  3 -1    10
+  4796   320  1     Fe  11  3  2  1  2  F          dxz   2.235 -3  3 -1    11
+  4797   320  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3  3 -1    12
+  4798   320  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3  3 -1    13
+  4799   320  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3  3 -1    14
+  4800   320  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3  3 -1    15
+  4801   321  1     Fe   1  4  0  0  1  F            s   6.001 -2  3 -1     1
+  4802   321  1     Fe   2  4  0  0  2  F            s   5.853 -2  3 -1     2
+  4803   321  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2  3 -1     3
+  4804   321  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2  3 -1     4
+  4805   321  1     Fe   5  3  2  0  1  F          dz2   4.792 -2  3 -1     5
+  4806   321  1     Fe   6  3  2  1  1  F          dxz   4.792 -2  3 -1     6
+  4807   321  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2  3 -1     7
+  4808   321  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2  3 -1     8
+  4809   321  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2  3 -1     9
+  4810   321  1     Fe  10  3  2  0  2  F          dz2   2.235 -2  3 -1    10
+  4811   321  1     Fe  11  3  2  1  2  F          dxz   2.235 -2  3 -1    11
+  4812   321  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2  3 -1    12
+  4813   321  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2  3 -1    13
+  4814   321  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2  3 -1    14
+  4815   321  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2  3 -1    15
+  4816   322  1     Fe   1  4  0  0  1  F            s   6.001 -1  3 -1     1
+  4817   322  1     Fe   2  4  0  0  2  F            s   5.853 -1  3 -1     2
+  4818   322  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1  3 -1     3
+  4819   322  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1  3 -1     4
+  4820   322  1     Fe   5  3  2  0  1  F          dz2   4.792 -1  3 -1     5
+  4821   322  1     Fe   6  3  2  1  1  F          dxz   4.792 -1  3 -1     6
+  4822   322  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1  3 -1     7
+  4823   322  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1  3 -1     8
+  4824   322  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1  3 -1     9
+  4825   322  1     Fe  10  3  2  0  2  F          dz2   2.235 -1  3 -1    10
+  4826   322  1     Fe  11  3  2  1  2  F          dxz   2.235 -1  3 -1    11
+  4827   322  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1  3 -1    12
+  4828   322  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1  3 -1    13
+  4829   322  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1  3 -1    14
+  4830   322  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1  3 -1    15
+  4831   323  1     Fe   1  4  0  0  1  F            s   6.001  0 -3 -1     1
+  4832   323  1     Fe   2  4  0  0  2  F            s   5.853  0 -3 -1     2
+  4833   323  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -3 -1     3
+  4834   323  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -3 -1     4
+  4835   323  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -3 -1     5
+  4836   323  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -3 -1     6
+  4837   323  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -3 -1     7
+  4838   323  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -3 -1     8
+  4839   323  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -3 -1     9
+  4840   323  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -3 -1    10
+  4841   323  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -3 -1    11
+  4842   323  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -3 -1    12
+  4843   323  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -3 -1    13
+  4844   323  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -3 -1    14
+  4845   323  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -3 -1    15
+  4846   324  1     Fe   1  4  0  0  1  F            s   6.001  1 -3 -1     1
+  4847   324  1     Fe   2  4  0  0  2  F            s   5.853  1 -3 -1     2
+  4848   324  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -3 -1     3
+  4849   324  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -3 -1     4
+  4850   324  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -3 -1     5
+  4851   324  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -3 -1     6
+  4852   324  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -3 -1     7
+  4853   324  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -3 -1     8
+  4854   324  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -3 -1     9
+  4855   324  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -3 -1    10
+  4856   324  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -3 -1    11
+  4857   324  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -3 -1    12
+  4858   324  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -3 -1    13
+  4859   324  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -3 -1    14
+  4860   324  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -3 -1    15
+  4861   325  1     Fe   1  4  0  0  1  F            s   6.001  2 -3 -1     1
+  4862   325  1     Fe   2  4  0  0  2  F            s   5.853  2 -3 -1     2
+  4863   325  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -3 -1     3
+  4864   325  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -3 -1     4
+  4865   325  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -3 -1     5
+  4866   325  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -3 -1     6
+  4867   325  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -3 -1     7
+  4868   325  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -3 -1     8
+  4869   325  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -3 -1     9
+  4870   325  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -3 -1    10
+  4871   325  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -3 -1    11
+  4872   325  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -3 -1    12
+  4873   325  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -3 -1    13
+  4874   325  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -3 -1    14
+  4875   325  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -3 -1    15
+  4876   326  1     Fe   1  4  0  0  1  F            s   6.001  3 -3 -1     1
+  4877   326  1     Fe   2  4  0  0  2  F            s   5.853  3 -3 -1     2
+  4878   326  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -3 -1     3
+  4879   326  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -3 -1     4
+  4880   326  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -3 -1     5
+  4881   326  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -3 -1     6
+  4882   326  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -3 -1     7
+  4883   326  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -3 -1     8
+  4884   326  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -3 -1     9
+  4885   326  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -3 -1    10
+  4886   326  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -3 -1    11
+  4887   326  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -3 -1    12
+  4888   326  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -3 -1    13
+  4889   326  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -3 -1    14
+  4890   326  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -3 -1    15
+  4891   327  1     Fe   1  4  0  0  1  F            s   6.001 -3 -3 -1     1
+  4892   327  1     Fe   2  4  0  0  2  F            s   5.853 -3 -3 -1     2
+  4893   327  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -3 -1     3
+  4894   327  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -3 -1     4
+  4895   327  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -3 -1     5
+  4896   327  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -3 -1     6
+  4897   327  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -3 -1     7
+  4898   327  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -3 -1     8
+  4899   327  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -3 -1     9
+  4900   327  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -3 -1    10
+  4901   327  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -3 -1    11
+  4902   327  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -3 -1    12
+  4903   327  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -3 -1    13
+  4904   327  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -3 -1    14
+  4905   327  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -3 -1    15
+  4906   328  1     Fe   1  4  0  0  1  F            s   6.001 -2 -3 -1     1
+  4907   328  1     Fe   2  4  0  0  2  F            s   5.853 -2 -3 -1     2
+  4908   328  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -3 -1     3
+  4909   328  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -3 -1     4
+  4910   328  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -3 -1     5
+  4911   328  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -3 -1     6
+  4912   328  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -3 -1     7
+  4913   328  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -3 -1     8
+  4914   328  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -3 -1     9
+  4915   328  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -3 -1    10
+  4916   328  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -3 -1    11
+  4917   328  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -3 -1    12
+  4918   328  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -3 -1    13
+  4919   328  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -3 -1    14
+  4920   328  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -3 -1    15
+  4921   329  1     Fe   1  4  0  0  1  F            s   6.001 -1 -3 -1     1
+  4922   329  1     Fe   2  4  0  0  2  F            s   5.853 -1 -3 -1     2
+  4923   329  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -3 -1     3
+  4924   329  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -3 -1     4
+  4925   329  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -3 -1     5
+  4926   329  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -3 -1     6
+  4927   329  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -3 -1     7
+  4928   329  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -3 -1     8
+  4929   329  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -3 -1     9
+  4930   329  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -3 -1    10
+  4931   329  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -3 -1    11
+  4932   329  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -3 -1    12
+  4933   329  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -3 -1    13
+  4934   329  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -3 -1    14
+  4935   329  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -3 -1    15
+  4936   330  1     Fe   1  4  0  0  1  F            s   6.001  0 -2 -1     1
+  4937   330  1     Fe   2  4  0  0  2  F            s   5.853  0 -2 -1     2
+  4938   330  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -2 -1     3
+  4939   330  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -2 -1     4
+  4940   330  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -2 -1     5
+  4941   330  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -2 -1     6
+  4942   330  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -2 -1     7
+  4943   330  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -2 -1     8
+  4944   330  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -2 -1     9
+  4945   330  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -2 -1    10
+  4946   330  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -2 -1    11
+  4947   330  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -2 -1    12
+  4948   330  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -2 -1    13
+  4949   330  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -2 -1    14
+  4950   330  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -2 -1    15
+  4951   331  1     Fe   1  4  0  0  1  F            s   6.001  1 -2 -1     1
+  4952   331  1     Fe   2  4  0  0  2  F            s   5.853  1 -2 -1     2
+  4953   331  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -2 -1     3
+  4954   331  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -2 -1     4
+  4955   331  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -2 -1     5
+  4956   331  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -2 -1     6
+  4957   331  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -2 -1     7
+  4958   331  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -2 -1     8
+  4959   331  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -2 -1     9
+  4960   331  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -2 -1    10
+  4961   331  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -2 -1    11
+  4962   331  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -2 -1    12
+  4963   331  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -2 -1    13
+  4964   331  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -2 -1    14
+  4965   331  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -2 -1    15
+  4966   332  1     Fe   1  4  0  0  1  F            s   6.001  2 -2 -1     1
+  4967   332  1     Fe   2  4  0  0  2  F            s   5.853  2 -2 -1     2
+  4968   332  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -2 -1     3
+  4969   332  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -2 -1     4
+  4970   332  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -2 -1     5
+  4971   332  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -2 -1     6
+  4972   332  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -2 -1     7
+  4973   332  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -2 -1     8
+  4974   332  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -2 -1     9
+  4975   332  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -2 -1    10
+  4976   332  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -2 -1    11
+  4977   332  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -2 -1    12
+  4978   332  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -2 -1    13
+  4979   332  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -2 -1    14
+  4980   332  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -2 -1    15
+  4981   333  1     Fe   1  4  0  0  1  F            s   6.001  3 -2 -1     1
+  4982   333  1     Fe   2  4  0  0  2  F            s   5.853  3 -2 -1     2
+  4983   333  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -2 -1     3
+  4984   333  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -2 -1     4
+  4985   333  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -2 -1     5
+  4986   333  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -2 -1     6
+  4987   333  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -2 -1     7
+  4988   333  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -2 -1     8
+  4989   333  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -2 -1     9
+  4990   333  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -2 -1    10
+  4991   333  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -2 -1    11
+  4992   333  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -2 -1    12
+  4993   333  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -2 -1    13
+  4994   333  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -2 -1    14
+  4995   333  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -2 -1    15
+  4996   334  1     Fe   1  4  0  0  1  F            s   6.001 -3 -2 -1     1
+  4997   334  1     Fe   2  4  0  0  2  F            s   5.853 -3 -2 -1     2
+  4998   334  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -2 -1     3
+  4999   334  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -2 -1     4
+  5000   334  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -2 -1     5
+  5001   334  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -2 -1     6
+  5002   334  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -2 -1     7
+  5003   334  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -2 -1     8
+  5004   334  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -2 -1     9
+  5005   334  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -2 -1    10
+  5006   334  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -2 -1    11
+  5007   334  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -2 -1    12
+  5008   334  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -2 -1    13
+  5009   334  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -2 -1    14
+  5010   334  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -2 -1    15
+  5011   335  1     Fe   1  4  0  0  1  F            s   6.001 -2 -2 -1     1
+  5012   335  1     Fe   2  4  0  0  2  F            s   5.853 -2 -2 -1     2
+  5013   335  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -2 -1     3
+  5014   335  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -2 -1     4
+  5015   335  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -2 -1     5
+  5016   335  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -2 -1     6
+  5017   335  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -2 -1     7
+  5018   335  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -2 -1     8
+  5019   335  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -2 -1     9
+  5020   335  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -2 -1    10
+  5021   335  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -2 -1    11
+  5022   335  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -2 -1    12
+  5023   335  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -2 -1    13
+  5024   335  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -2 -1    14
+  5025   335  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -2 -1    15
+  5026   336  1     Fe   1  4  0  0  1  F            s   6.001 -1 -2 -1     1
+  5027   336  1     Fe   2  4  0  0  2  F            s   5.853 -1 -2 -1     2
+  5028   336  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -2 -1     3
+  5029   336  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -2 -1     4
+  5030   336  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -2 -1     5
+  5031   336  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -2 -1     6
+  5032   336  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -2 -1     7
+  5033   336  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -2 -1     8
+  5034   336  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -2 -1     9
+  5035   336  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -2 -1    10
+  5036   336  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -2 -1    11
+  5037   336  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -2 -1    12
+  5038   336  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -2 -1    13
+  5039   336  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -2 -1    14
+  5040   336  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -2 -1    15
+  5041   337  1     Fe   1  4  0  0  1  F            s   6.001  0 -1 -1     1
+  5042   337  1     Fe   2  4  0  0  2  F            s   5.853  0 -1 -1     2
+  5043   337  1     Fe   3  3  2 -2  1  F          dxy   4.792  0 -1 -1     3
+  5044   337  1     Fe   4  3  2 -1  1  F          dyz   4.792  0 -1 -1     4
+  5045   337  1     Fe   5  3  2  0  1  F          dz2   4.792  0 -1 -1     5
+  5046   337  1     Fe   6  3  2  1  1  F          dxz   4.792  0 -1 -1     6
+  5047   337  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  0 -1 -1     7
+  5048   337  1     Fe   8  3  2 -2  2  F          dxy   2.235  0 -1 -1     8
+  5049   337  1     Fe   9  3  2 -1  2  F          dyz   2.235  0 -1 -1     9
+  5050   337  1     Fe  10  3  2  0  2  F          dz2   2.235  0 -1 -1    10
+  5051   337  1     Fe  11  3  2  1  2  F          dxz   2.235  0 -1 -1    11
+  5052   337  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  0 -1 -1    12
+  5053   337  1     Fe  13  4  1 -1  1  T          Ppy   6.001  0 -1 -1    13
+  5054   337  1     Fe  14  4  1  0  1  T          Ppz   6.001  0 -1 -1    14
+  5055   337  1     Fe  15  4  1  1  1  T          Ppx   6.001  0 -1 -1    15
+  5056   338  1     Fe   1  4  0  0  1  F            s   6.001  1 -1 -1     1
+  5057   338  1     Fe   2  4  0  0  2  F            s   5.853  1 -1 -1     2
+  5058   338  1     Fe   3  3  2 -2  1  F          dxy   4.792  1 -1 -1     3
+  5059   338  1     Fe   4  3  2 -1  1  F          dyz   4.792  1 -1 -1     4
+  5060   338  1     Fe   5  3  2  0  1  F          dz2   4.792  1 -1 -1     5
+  5061   338  1     Fe   6  3  2  1  1  F          dxz   4.792  1 -1 -1     6
+  5062   338  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  1 -1 -1     7
+  5063   338  1     Fe   8  3  2 -2  2  F          dxy   2.235  1 -1 -1     8
+  5064   338  1     Fe   9  3  2 -1  2  F          dyz   2.235  1 -1 -1     9
+  5065   338  1     Fe  10  3  2  0  2  F          dz2   2.235  1 -1 -1    10
+  5066   338  1     Fe  11  3  2  1  2  F          dxz   2.235  1 -1 -1    11
+  5067   338  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  1 -1 -1    12
+  5068   338  1     Fe  13  4  1 -1  1  T          Ppy   6.001  1 -1 -1    13
+  5069   338  1     Fe  14  4  1  0  1  T          Ppz   6.001  1 -1 -1    14
+  5070   338  1     Fe  15  4  1  1  1  T          Ppx   6.001  1 -1 -1    15
+  5071   339  1     Fe   1  4  0  0  1  F            s   6.001  2 -1 -1     1
+  5072   339  1     Fe   2  4  0  0  2  F            s   5.853  2 -1 -1     2
+  5073   339  1     Fe   3  3  2 -2  1  F          dxy   4.792  2 -1 -1     3
+  5074   339  1     Fe   4  3  2 -1  1  F          dyz   4.792  2 -1 -1     4
+  5075   339  1     Fe   5  3  2  0  1  F          dz2   4.792  2 -1 -1     5
+  5076   339  1     Fe   6  3  2  1  1  F          dxz   4.792  2 -1 -1     6
+  5077   339  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  2 -1 -1     7
+  5078   339  1     Fe   8  3  2 -2  2  F          dxy   2.235  2 -1 -1     8
+  5079   339  1     Fe   9  3  2 -1  2  F          dyz   2.235  2 -1 -1     9
+  5080   339  1     Fe  10  3  2  0  2  F          dz2   2.235  2 -1 -1    10
+  5081   339  1     Fe  11  3  2  1  2  F          dxz   2.235  2 -1 -1    11
+  5082   339  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  2 -1 -1    12
+  5083   339  1     Fe  13  4  1 -1  1  T          Ppy   6.001  2 -1 -1    13
+  5084   339  1     Fe  14  4  1  0  1  T          Ppz   6.001  2 -1 -1    14
+  5085   339  1     Fe  15  4  1  1  1  T          Ppx   6.001  2 -1 -1    15
+  5086   340  1     Fe   1  4  0  0  1  F            s   6.001  3 -1 -1     1
+  5087   340  1     Fe   2  4  0  0  2  F            s   5.853  3 -1 -1     2
+  5088   340  1     Fe   3  3  2 -2  1  F          dxy   4.792  3 -1 -1     3
+  5089   340  1     Fe   4  3  2 -1  1  F          dyz   4.792  3 -1 -1     4
+  5090   340  1     Fe   5  3  2  0  1  F          dz2   4.792  3 -1 -1     5
+  5091   340  1     Fe   6  3  2  1  1  F          dxz   4.792  3 -1 -1     6
+  5092   340  1     Fe   7  3  2  2  1  F       dx2-y2   4.792  3 -1 -1     7
+  5093   340  1     Fe   8  3  2 -2  2  F          dxy   2.235  3 -1 -1     8
+  5094   340  1     Fe   9  3  2 -1  2  F          dyz   2.235  3 -1 -1     9
+  5095   340  1     Fe  10  3  2  0  2  F          dz2   2.235  3 -1 -1    10
+  5096   340  1     Fe  11  3  2  1  2  F          dxz   2.235  3 -1 -1    11
+  5097   340  1     Fe  12  3  2  2  2  F       dx2-y2   2.235  3 -1 -1    12
+  5098   340  1     Fe  13  4  1 -1  1  T          Ppy   6.001  3 -1 -1    13
+  5099   340  1     Fe  14  4  1  0  1  T          Ppz   6.001  3 -1 -1    14
+  5100   340  1     Fe  15  4  1  1  1  T          Ppx   6.001  3 -1 -1    15
+  5101   341  1     Fe   1  4  0  0  1  F            s   6.001 -3 -1 -1     1
+  5102   341  1     Fe   2  4  0  0  2  F            s   5.853 -3 -1 -1     2
+  5103   341  1     Fe   3  3  2 -2  1  F          dxy   4.792 -3 -1 -1     3
+  5104   341  1     Fe   4  3  2 -1  1  F          dyz   4.792 -3 -1 -1     4
+  5105   341  1     Fe   5  3  2  0  1  F          dz2   4.792 -3 -1 -1     5
+  5106   341  1     Fe   6  3  2  1  1  F          dxz   4.792 -3 -1 -1     6
+  5107   341  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -3 -1 -1     7
+  5108   341  1     Fe   8  3  2 -2  2  F          dxy   2.235 -3 -1 -1     8
+  5109   341  1     Fe   9  3  2 -1  2  F          dyz   2.235 -3 -1 -1     9
+  5110   341  1     Fe  10  3  2  0  2  F          dz2   2.235 -3 -1 -1    10
+  5111   341  1     Fe  11  3  2  1  2  F          dxz   2.235 -3 -1 -1    11
+  5112   341  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -3 -1 -1    12
+  5113   341  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -3 -1 -1    13
+  5114   341  1     Fe  14  4  1  0  1  T          Ppz   6.001 -3 -1 -1    14
+  5115   341  1     Fe  15  4  1  1  1  T          Ppx   6.001 -3 -1 -1    15
+  5116   342  1     Fe   1  4  0  0  1  F            s   6.001 -2 -1 -1     1
+  5117   342  1     Fe   2  4  0  0  2  F            s   5.853 -2 -1 -1     2
+  5118   342  1     Fe   3  3  2 -2  1  F          dxy   4.792 -2 -1 -1     3
+  5119   342  1     Fe   4  3  2 -1  1  F          dyz   4.792 -2 -1 -1     4
+  5120   342  1     Fe   5  3  2  0  1  F          dz2   4.792 -2 -1 -1     5
+  5121   342  1     Fe   6  3  2  1  1  F          dxz   4.792 -2 -1 -1     6
+  5122   342  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -2 -1 -1     7
+  5123   342  1     Fe   8  3  2 -2  2  F          dxy   2.235 -2 -1 -1     8
+  5124   342  1     Fe   9  3  2 -1  2  F          dyz   2.235 -2 -1 -1     9
+  5125   342  1     Fe  10  3  2  0  2  F          dz2   2.235 -2 -1 -1    10
+  5126   342  1     Fe  11  3  2  1  2  F          dxz   2.235 -2 -1 -1    11
+  5127   342  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -2 -1 -1    12
+  5128   342  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -2 -1 -1    13
+  5129   342  1     Fe  14  4  1  0  1  T          Ppz   6.001 -2 -1 -1    14
+  5130   342  1     Fe  15  4  1  1  1  T          Ppx   6.001 -2 -1 -1    15
+  5131   343  1     Fe   1  4  0  0  1  F            s   6.001 -1 -1 -1     1
+  5132   343  1     Fe   2  4  0  0  2  F            s   5.853 -1 -1 -1     2
+  5133   343  1     Fe   3  3  2 -2  1  F          dxy   4.792 -1 -1 -1     3
+  5134   343  1     Fe   4  3  2 -1  1  F          dyz   4.792 -1 -1 -1     4
+  5135   343  1     Fe   5  3  2  0  1  F          dz2   4.792 -1 -1 -1     5
+  5136   343  1     Fe   6  3  2  1  1  F          dxz   4.792 -1 -1 -1     6
+  5137   343  1     Fe   7  3  2  2  1  F       dx2-y2   4.792 -1 -1 -1     7
+  5138   343  1     Fe   8  3  2 -2  2  F          dxy   2.235 -1 -1 -1     8
+  5139   343  1     Fe   9  3  2 -1  2  F          dyz   2.235 -1 -1 -1     9
+  5140   343  1     Fe  10  3  2  0  2  F          dz2   2.235 -1 -1 -1    10
+  5141   343  1     Fe  11  3  2  1  2  F          dxz   2.235 -1 -1 -1    11
+  5142   343  1     Fe  12  3  2  2  2  F       dx2-y2   2.235 -1 -1 -1    12
+  5143   343  1     Fe  13  4  1 -1  1  T          Ppy   6.001 -1 -1 -1    13
+  5144   343  1     Fe  14  4  1  0  1  T          Ppz   6.001 -1 -1 -1    14
+  5145   343  1     Fe  15  4  1  1  1  T          Ppx   6.001 -1 -1 -1    15
+
+Column codes:
+  io = Orbital index in supercell
+  ia = Atom to which orbital belongs
+  is = Atomic species index
+spec = Atomic species label
+ iao = Orbital index within atom
+   n = Principal quantum number
+   l = Angular mumentum quantum number
+   m = Magnetic quantum number of (real) orbital:
+       m<0 => sin(m*phi), m>=0 => cos(m*phi)
+   z = Zeta index of orbital
+   p = Is this a polarization orbital? (False|True)
+ sym = Symmetry name of real orbital
+  rc = Cutoff radius of orbital (Bohr)
+ isc = Unit cell indexes to which orbital belongs:
+       center(io) = center(iuo) + sum_(i=1:3) cell_vec(i) * isc(i)
+ iuo = Equivalent orbital in first unit cell
+ 
diff --git a/tests/data/parsers/siesta/Fe/Fe.STRUCT_OUT b/tests/data/parsers/siesta/Fe/Fe.STRUCT_OUT
new file mode 100644
index 0000000000000000000000000000000000000000..9dd99a6d6230cd6924ed9a346d2d235e0a00dafd
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.STRUCT_OUT
@@ -0,0 +1,5 @@
+          1.435000000       1.435000000       1.435000000
+          1.435000000      -1.435000000       1.435000000
+          1.435000000       1.435000000      -1.435000000
+           1
+  1    26       0.000000000       0.000000000       0.000000000
diff --git a/tests/data/parsers/siesta/Fe/Fe.XV b/tests/data/parsers/siesta/Fe/Fe.XV
new file mode 100644
index 0000000000000000000000000000000000000000..99fb21bf937589dffaa97ed0962d6051ac23de36
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.XV
@@ -0,0 +1,5 @@
+          2.711758070       2.711758070       2.711758070          0.000000000       0.000000000       0.000000000
+          2.711758070      -2.711758070       2.711758070          0.000000000       0.000000000       0.000000000
+          2.711758070       2.711758070      -2.711758070          0.000000000       0.000000000       0.000000000
+           1
+  1    26       0.000000000       0.000000000       0.000000000          0.000000000       0.000000000       0.000000000
diff --git a/tests/data/parsers/siesta/Fe/Fe.alloc b/tests/data/parsers/siesta/Fe/Fe.alloc
new file mode 100644
index 0000000000000000000000000000000000000000..9e6460c945353dbceb45ead0898b4ba44eaa1665
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.alloc
@@ -0,0 +1,29 @@
+  
+
+Allocation summary at 2016/07/07 09:12:30.315 +02:00
+
+Present memory all nodes :           0.000000 MB
+Added peak mem all nodes :           0.000000 MB
+Min peak memory in a node:           0.000000 MB
+Max peak memory in a node:           0.000000 MB
+
+Maximum peak of memory occurred in node:     0
+
+Present memory allocation:           0.000000 MB
+Maximum memory allocation:           0.000000 MB
+Occurred after allocating: 
+In routine:                
+
+Allocation summary at 2016/07/07 09:12:30.316 +02:00
+
+Present memory all nodes :           0.000000 MB
+Added peak mem all nodes :           0.000000 MB
+Min peak memory in a node:           0.000000 MB
+Max peak memory in a node:           0.000000 MB
+
+Maximum peak of memory occurred in node:     1
+
+Present memory allocation:           0.000000 MB
+Maximum memory allocation:           0.000000 MB
+Occurred after allocating: 
+In routine:                
diff --git a/tests/data/parsers/siesta/Fe/Fe.bands b/tests/data/parsers/siesta/Fe/Fe.bands
new file mode 100644
index 0000000000000000000000000000000000000000..aa65d32439530303d8c8c99c35ad7b82e89c8e63
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.bands
@@ -0,0 +1,403 @@
+  -5.89300246620492     
+  0.000000000000000E+000   3.80018206581390     
+  -14.5636169769593        160.775728292615     
+          15           2         131
+  0.000000    -14.5636     -8.2196     -8.2173     -8.2173     -7.0468     -7.0468     31.0569     31.0569     31.0746     31.0876
+               37.6604     37.6604     50.3861     50.3861     50.3898    -14.3942     -6.0405     -6.0295     -6.0295     -4.0724
+               -4.0724     31.8847     31.8847     31.8957     33.4288     38.7135     38.7136     51.0320     51.0320     51.0397
+  0.028963    -14.5509     -8.2192     -8.2175     -8.2144     -7.0524     -7.0446     30.9449     30.9562     31.0779     31.0988
+               37.5494     37.6924     50.2839     50.3808     50.3833    -14.3813     -6.0400     -6.0301     -6.0269     -4.0793
+               -4.0695     31.7695     31.7766     31.9028     33.4400     38.6018     38.7445     50.9322     51.0303     51.0356
+  0.057925    -14.5128     -8.2193     -8.2178     -8.2044     -7.0691     -7.0379     30.6118     30.6233     31.1209     31.1337
+               37.2214     37.7884     49.9829     50.3675     50.3701    -14.3429     -6.0403     -6.0318     -6.0167     -4.1002
+               -4.0609     31.4270     31.4341     31.9456     33.4741     38.2714     38.8371     50.6351     51.0275     51.0328
+  0.086888    -14.4493     -8.2196     -8.2181     -8.1874     -7.0967     -7.0269     30.0666     30.0778     31.1928     31.1948
+               36.6904     37.9476     49.5107     50.3530     50.3559    -14.2789     -6.0423     -6.0344     -5.9983     -4.1349
+               -4.0469     30.8673     30.8743     32.0173     33.5321     37.7368     38.9906     50.1707     51.0297     51.0350
+  0.115851    -14.3608     -8.2198     -8.2182     -8.1638     -7.1353     -7.0117     29.3262     29.3368     31.2826     31.2964
+               35.9782     38.1692     48.9081     50.3472     50.3505    -14.1895     -6.0452     -6.0376     -5.9721     -4.1833
+               -4.0276     30.1086     30.1153     32.1184     33.6163     37.0202     39.2037     49.5812     51.0452     51.0506
+  0.144813    -14.2474     -8.2194     -8.2179     -8.1335     -7.1845     -6.9923     28.4157     28.4258     31.4049     31.4294
+               35.1125     38.4526     48.2249     50.3602     50.3639    -14.0748     -6.0486     -6.0411     -5.9384     -4.2451
+               -4.0034     29.1779     29.1843     32.2495     33.7296     36.1498     39.4748     48.9192     51.0826     51.0881
+  0.173776    -14.1096     -8.2181     -8.2166     -8.0969     -7.2441     -6.9690     27.3686     27.3779     31.5657     31.5935
+               34.1239     38.7984     47.5160     50.4002     50.4044    -13.9350     -6.0517     -6.0443     -5.8974     -4.3199
+               -3.9747     28.1104     28.1165     32.4115     33.8754     35.1567     39.8031     48.2423     51.1486     51.1542
+  0.202739    -13.9479     -8.2155     -8.2140     -8.0541     -7.3138     -6.9420     26.2234     26.2321     31.7693     31.7899
+               33.0442     39.2120     46.8367     50.4719     50.4766    -13.7704     -6.0542     -6.0468     -5.8495     -4.4074
+               -3.9422     26.9462     26.9518     32.6053     34.0549     34.0732     40.1923     47.6095     51.2462     51.2520
+  0.231702    -13.7629     -8.2109     -8.2094     -8.0053     -7.3930     -6.9112     25.0201     25.0281     31.9039     32.0148
+               32.0198     39.7095     46.2389     50.5756     50.5808    -13.5814     -6.0552     -6.0479     -5.7948     -4.5071
+               -3.9064     25.7262     25.7315     32.8322     32.9303     34.2626     40.6565     47.0770     51.3750     51.3809
+  0.260664    -13.5556     -8.2039     -8.2024     -7.9507     -7.4815     -6.8767     23.7958     23.8031     30.7307     32.2840
+               32.2905     40.3264     45.7697     50.7075     50.7132    -13.3684     -6.0540     -6.0468     -5.7337     -4.6184
+               -3.8678     24.4883     24.4931     31.7564     33.0936     34.4798     41.2299     46.6963     51.5305     51.5366
+  0.289627    -13.3273     -8.1938     -8.1923     -7.8907     -7.5786     -6.8381     22.5813     22.5880     29.5490     32.5644
+               32.5850     41.1227     45.4759     50.8609     50.8670    -13.1320     -6.0499     -6.0427     -5.6665     -4.7406
+               -3.8270     23.2633     23.2678     30.5761     33.3911     34.6683     41.9695     46.5190     51.7056     51.7119
+  0.318590    -13.0794     -8.1800     -8.1785     -7.8256     -7.6838     -6.7951     21.3996     21.4057     28.3791     32.7845
+               32.9239     42.1451     45.4470     51.0272     51.0337    -12.8731     -6.0420     -6.0349     -5.5935     -4.8729
+               -3.7845     22.0744     22.0784     29.4097     33.7265     34.7731     42.9136     46.6386     51.8915     51.8979
+  0.347552    -12.8142     -8.1618     -8.1603     -7.7964     -7.7558     -6.7466     20.2660     20.2716     27.2370     32.8883
+               33.3029     43.2056     46.0277     51.1969     51.2039    -12.5928     -6.0296     -6.0225     -5.5151     -5.0146
+               -3.7406     20.9363     20.9401     28.2737     34.1018     34.7398     43.9137     47.3421     52.0789     52.0854
+  0.376515    -12.5345     -8.1386     -8.1371     -7.9156     -7.6815     -6.6913     19.1888     19.1939     26.1350     32.8253
+               33.7241     43.7445     47.9283     51.3616     51.3689    -12.2927     -6.0117     -6.0047     -5.4318     -5.1647
+               -3.6954     19.8571     19.8605     27.1802     34.5189     34.5331     44.5550     49.1670     52.2590     52.2658
+  0.405478    -12.2441     -8.1098     -8.1084     -8.0408     -7.6033     -6.6270     18.1709     18.1756     25.0820     32.5679
+               34.1898     43.8058     51.2203     51.5142     51.5219    -11.9750     -5.9876     -5.9806     -5.3440     -5.3222
+               -3.6485     18.8390     18.8421     26.1381     34.1347     34.9814     44.7541     52.2869     52.4251     52.4319
+  0.434440    -11.9477     -8.1710     -8.0749     -8.0734     -7.5216     -6.5507     17.2114     17.2158     24.0839     32.1008
+               34.7025     43.6295     51.6504     51.6585     55.7034    -11.6427     -5.9566     -5.9496     -5.4860     -5.2521
+               -3.5993     17.8807     17.8835     25.1532     33.5309     35.4905     44.6726     52.5725     52.5796     56.5659
+  0.463403    -11.6516     -8.3055     -8.0332     -8.0317     -7.4369     -6.4583     16.3072     16.3113     23.1442     31.4058
+               35.2648     43.2782     51.7690     51.7774     61.1962    -11.3002     -5.9178     -5.9108     -5.6549     -5.1568
+               -3.5462     16.9785     16.9811     24.2287     32.6953     36.0494     44.3857     52.7002     52.7074     61.8143
+  0.492366    -11.3629     -8.4434     -7.9844     -7.9829     -7.3495     -6.3447     15.4540     15.4578     22.2646     30.4556
+               35.8793     42.7783     51.8720     51.8808     67.2668    -10.9525     -5.8707     -5.8641     -5.8275     -5.0585
+               -3.4872     16.1275     16.1300     23.3662     31.5920     36.6608     43.9338     52.8103     52.8177     67.6156
+  0.521328    -11.0897     -8.5837     -7.9281     -7.9265     -7.2601     -6.2037     14.6468     14.6504     21.4453     29.2253
+               36.5489     42.1739     51.9649     51.9739     73.1019    -10.6058     -6.0039     -5.8148     -5.8077     -4.9579
+               -3.4190     15.3225     15.3248     22.5655     30.1930     37.3277     43.3698     52.9080     52.9156     73.2069
+  0.550291    -10.8399     -8.7255     -7.8640     -7.8624     -7.1692     -6.0286     13.8812     13.8847     20.6853     27.7192
+               37.2762     41.5289     52.0554     52.0648     77.6611    -10.2669     -6.1813     -5.7496     -5.7425     -4.8554
+               -3.3375     14.5586     14.5607     21.8253     28.5113     38.0527     42.7616     53.0014     53.0091     77.6194
+  0.579254    -10.6208     -8.8680     -7.7920     -7.7904     -7.0774     -5.8127     13.1531     13.1564     19.9829     25.9966
+               38.0638     40.9063     52.1531     52.1628     80.1294     -9.9422     -6.3591     -5.6748     -5.6676     -4.7519
+               -3.2372     13.8311     13.8332     21.1437     26.6265     38.8385     42.1714     53.1001     53.1079     80.0924
+  0.608217    -10.4379     -9.0100     -7.7120     -7.7104     -6.9851     -5.5500     12.4591     12.4622     19.3359     24.1718
+               38.9139     40.3452     52.2684     52.2784     80.3120     -9.6381     -6.5362     -5.5902     -5.5830     -4.6478
+               -3.1118     13.1365     13.1385     20.5181     24.6764     39.6875     41.6344     53.2146     53.2226     80.4331
+  0.637179    -10.2940     -9.1509     -7.6241     -7.6225     -6.8930     -5.2369     11.7964     11.7994     18.7417     22.3801
+               39.8282     39.8524     52.4111     52.4214     78.5933     -9.3603     -6.7113     -5.4957     -5.4885     -4.5439
+               -2.9542     12.4716     12.4736     19.9457     22.8106     40.6015     41.1541     53.3550     53.3632     78.9798
+  0.666142    -10.1894     -9.2895     -7.5286     -7.5269     -6.8016     -4.8719     11.1631     11.1661     18.1976     20.7336
+               39.4080     40.8080     52.5900     52.6006     75.5857     -9.1138     -6.8833     -5.3915     -5.3843     -4.4407
+               -2.7572     11.8343     11.8363     19.4235     21.1427     40.7084     41.5818     53.5302     53.5386     76.2852
+  0.695105    -10.1219     -9.4251     -7.4258     -7.4240     -6.7115     -4.4559     10.5578     10.5608     17.7008     19.2984
+               38.9732     41.8532     52.8114     52.8222     71.8430     -8.9029     -7.0512     -5.2779     -5.2706     -4.3390
+               -2.5143     11.2229     11.2249     18.9483     19.7301     40.2580     42.6285     53.7470     53.7556     72.8566
+  0.724067    -10.0875     -9.5569     -7.3163     -7.3145     -6.6234     -3.9916      9.9798      9.9827     17.2486     18.0964
+               38.4948     42.9627     53.0793     53.0904     67.7727     -8.7301     -7.2140     -5.1553     -5.1478     -4.2394
+               -2.2206     10.6365     10.6386     18.5174     18.5822     39.7490     43.7404     54.0096     54.0183     69.0762
+  0.753030    -10.0811     -9.6840     -7.2008     -7.1989     -6.5377     -3.4826      9.4287      9.4317     16.8382     17.1196
+               37.9037     44.1336     53.3948     53.4062     63.6661     -8.5958     -7.3705     -5.0243     -5.0167     -4.1426
+               -1.8733     10.0747     10.0768     17.6794     18.1276     39.1126     44.9148     54.3193     54.3282     65.2260
+  0.781993    -10.0975     -9.8057     -7.0802     -7.0782     -6.4551     -2.9328      8.9047      8.9077     16.3450     16.4671
+               37.1121     45.3607     53.7560     53.7678     59.7529     -8.4983     -7.5201     -4.8859     -4.8782     -4.0492
+               -1.4720      9.5374      9.5397     16.9894     17.7763     38.2639     46.1464     54.6745     54.6836     61.5333
+  0.810955    -10.1315     -9.9212     -6.9557     -6.9537     -6.3761     -2.3458      8.4083      8.4113     15.7445     16.1329
+               36.0167     46.6363     54.1584     54.1704     56.2336     -8.4339     -7.6618     -4.7412     -4.7334     -3.9598
+               -1.0187      9.0252      9.0276     16.4774     17.4610     37.1078     47.4275     55.0708     55.0801     58.1953
+  0.839918    -10.1782    -10.0299     -6.8287     -6.8266     -6.3012     -1.7250      7.9404      7.9434     15.2902     15.8334
+               34.5237     47.9493     53.2747     54.5948     54.6070     -8.3974     -7.7948     -4.5917     -4.5837     -3.8751
+               -0.5165      8.5390      8.5415     16.1110     17.1792     35.5654     48.7470     55.3701     55.5011     55.5108
+  0.868881    -10.2333    -10.1313     -6.7008     -6.6986     -6.2310     -1.0734      7.5022      7.5053     14.9567     15.5666
+               32.6013     49.2852     50.9643     55.0557     55.0682     -8.3833     -7.9185     -4.4393     -4.4310     -3.7956
+                0.0302      8.0801      8.0827     15.8619     16.9289     33.6194     50.0903     53.1393     55.9563     55.9659
+  0.897843    -10.2931    -10.2246     -6.5739     -6.5716     -6.1658     -0.3937      7.0954      7.0985     14.7214     15.3305
+               30.3221     49.2745     50.6254     55.5300     55.5427     -8.3859     -8.0323     -4.2859     -4.2775     -3.7220
+                0.6164      7.6504      7.6532     15.7056     16.7081     31.3448     51.4382     51.4798     56.4252     56.4350
+  0.926806    -10.3540    -10.3095     -6.4501     -6.4478     -6.1063      0.3113      6.7217      6.7249     14.5646     15.1237
+               27.8381     48.0873     51.9470     56.0051     56.0181     -8.4000     -8.1355     -4.1343     -4.1256     -3.6545
+                1.2369      7.2521      7.2551     15.6212     16.5150     28.8835     50.2897     52.7687     56.8954     56.9054
+  0.955769    -10.4135    -10.3854     -6.3319     -6.3295     -6.0527      1.0382      6.3833      6.3866     14.4689     14.9445
+               25.3135     47.2636     53.2235     56.4678     56.4809     -8.4210     -8.2278     -3.9874     -3.9785     -3.5939
+                1.8854      6.8879      6.8912     15.5904     16.3481     26.3890     49.4483     54.0539     57.3535     57.3637
+  0.984732    -10.4690    -10.4520     -6.2218     -6.2193     -6.0055      1.7820      6.0827      6.0860     14.4189     14.7917
+               22.8804     46.6895     54.4248     56.9042     56.9175     -8.4451     -8.3085     -3.8486     -3.8394     -3.5404
+                2.5544      6.5612      6.5647     15.5972     16.2061     23.9881     48.8524     55.2638     57.7860     57.7963
+  1.013694    -10.5187    -10.5090     -6.1225     -6.1198     -5.9649      2.5341      5.8223      5.8258     14.4008     14.6643
+               20.6310     46.2858     55.5185     57.3009     57.3144     -8.4695     -8.3775     -3.7217     -3.7122     -3.4945
+                3.2325      6.2754      6.2791     15.6277     16.0878     21.7737     48.4282     56.3657     58.1794     58.1898
+  1.042657    -10.5612    -10.5559     -6.0365     -6.0338     -5.9314      3.2789      5.6048      5.6083     14.4029     14.5613
+               18.6306     46.0018     56.4715     57.6452     57.6589     -8.4919     -8.4343     -3.6105     -3.6007     -3.4564
+                3.9019      6.0343      6.0382     15.6697     15.9923     19.8137     48.1270     57.3261     58.5210     58.5315
+  1.071620    -10.5953    -10.5927     -5.9666     -5.9638     -5.9050      3.9868      5.4326      5.4361     14.4148     14.4819
+               16.9349     45.8054     57.2522     57.9259     57.9397     -8.5106     -8.4788     -3.5190     -3.5088     -3.4264
+                4.5319      5.8417      5.8458     15.7130     15.9188     18.1661     47.9173     58.1130     58.7995     58.8102
+  1.100582    -10.6201    -10.6191     -5.9149     -5.9120     -5.8859      4.6043      5.3078      5.3114     14.4256     14.4280
+               15.6098     45.6767     57.8322     58.1336     58.1476     -8.5247     -8.5107     -3.4510     -3.4401     -3.4044
+                5.0726      5.7012      5.7054     15.7494     15.8667     16.8946     47.7793     58.6978     59.0057     59.0165
+  1.129545    -10.6353    -10.6350     -5.8834     -5.8802     -5.8742      5.0451      5.2322      5.2358     14.3920     14.4308
+               14.7513     45.6038     58.1891     58.2611     58.2760     -8.5334     -8.5299     -3.4103     -3.3977     -3.3898
+                5.4509      5.6156      5.6199     15.7705     15.8357     16.0799     47.7008     59.0578     59.1323     59.1437
+  1.158508    -10.6403    -10.6403     -5.8736     -5.8694     -5.8694      5.2069      5.2069      5.2123     14.3809     14.3809
+               14.5000     45.5801     58.3041     58.3041     58.3248     -8.5363     -8.5363     -3.3982     -3.3833     -3.3833
+                5.5868      5.5868      5.5933     15.7488     15.8253     15.8253     47.6754     59.1750     59.1750     59.1911
+  1.187764    -10.6351    -10.6350     -5.8885     -5.8812     -5.8686      5.1318      5.1419      5.2346     14.4053     14.5117
+               14.6662     45.6042     58.1272     58.2677     58.3273     -8.5324     -8.5307     -3.4167     -3.3994     -3.3824
+                5.5271      5.5373      5.6184     15.7998     15.9436     15.9503     47.7013     58.9944     59.1371     59.1983
+  1.217021    -10.6193    -10.6191     -5.9345     -5.9144     -5.8662      4.9184      4.9509      5.3116     14.4267     14.8911
+               15.2042     45.6775     57.5682     58.1359     58.3967     -8.5207     -8.5139     -3.4739     -3.4449     -3.3796
+                5.3556      5.3864      5.7055     15.8125     16.2896     16.4569     47.7802     58.4326     59.0064     59.2684
+  1.246278    -10.5929    -10.5929     -6.0099     -5.9685     -5.8621      4.5957      4.6719      5.4386     14.4524     15.4868
+               16.0775     45.8037     56.6697     57.9196     58.5122     -8.5008     -8.4866     -3.5684     -3.5177     -3.3751
+                5.0919      5.1640      5.8482     15.8250     16.8401     17.2862     47.9158     57.5300     58.7916     59.3848
+  1.275535    -10.5572    -10.5558     -6.1120     -6.0429     -5.8566      4.1968      4.3431      5.6138     14.4880     16.2605
+               17.2509     45.9896     55.4780     57.6229     58.6733     -8.4724     -8.4496     -3.6958     -3.6166     -3.3688
+                4.7599      4.9000      6.0433     15.8426     17.5655     18.4102     48.1147     56.3331     58.4972     59.5473
+  1.304791    -10.5128    -10.5077     -6.2377     -6.1362     -5.8495      3.7500      3.9955      5.8346     14.5357     17.1774
+               18.7010     46.2467     54.0487     57.2535     58.8794     -8.4350     -8.4043     -3.8510     -3.7396     -3.3609
+                4.3817      4.6206      6.2868     15.8675     18.4368     19.8089     48.3879     54.8979     58.1313     59.7551
+  1.334048    -10.4610    -10.4486     -6.3832     -6.2464     -5.8410      3.2764      3.6509      6.0987     14.5981     18.2099
+               20.4117     46.5930     52.4409     56.8251     59.1295     -8.3882     -8.3523     -4.0287     -3.8831     -3.3515
+                3.9749      4.3453      6.5748     15.9020     19.4293     21.4670     48.7519     53.2840     57.7086     60.0074
+  1.363305    -10.4033    -10.3782     -6.5448     -6.3709     -5.8313      2.7899      3.3230      6.4032     14.6788     19.3373
+               22.3672     47.0567     50.7117     56.3604     59.4227     -8.3314     -8.2962     -4.2239     -4.0427     -3.3405
+                3.5519      4.0865      6.9033     15.9497     20.5230     23.3683     49.2307     51.5487     57.2547     60.3030
+  1.392562    -10.3418    -10.2964     -6.7189     -6.5064     -5.8204      2.2993      3.0198      6.7458     14.7828     20.5444
+               24.5399     47.6790     48.9124     55.9002     59.7573     -8.2643     -8.2390     -4.4316     -4.2125     -3.3283
+                3.1214      3.8517      7.2690     16.0156     21.7026     25.4851     49.7432     49.8549     56.8185     60.6405
+  1.421818    -10.2790    -10.2032     -6.9019     -6.6485     -5.8084      1.8102      2.7455      7.1243     14.9167     21.8205
+               26.8722     47.0858     48.5097     55.5273     60.1316     -8.1865     -8.1846     -4.6474     -4.3854     -3.3149
+                2.6889      3.6443      7.6688     16.1065     22.9567     27.7635     47.9121     50.6423     56.5059     61.0180
+  1.451075    -10.2179    -10.0983     -7.0905     -6.7925     -5.7955      1.3260      2.5018      7.5369     15.0891     23.1577
+               29.2542     45.2663     49.5557     55.4417     60.5431     -8.1378     -8.0977     -4.8674     -4.5531     -3.3004
+                2.2580      3.4655      8.1006     16.2313     24.2768     30.1039     46.0883     51.5210     56.5826     61.4331
+  1.480332    -10.1623     -9.9819     -7.2816     -6.9326     -5.7819      0.8487      2.2885      7.9819     15.3109     24.5504
+               31.5100     43.4791     50.5899     56.1713     60.9891     -8.1040     -7.9977     -5.0883     -4.7069     -3.2852
+                1.8310      3.3144      8.5626     16.4017     25.6567     32.3483     44.2976     52.1734     57.6430     61.8829
+  1.509589    -10.1162     -9.8538     -7.4726     -7.0627     -5.7677      0.3794      2.1046      8.4583     15.5951     25.9942
+               33.4273     41.7416     51.1274     58.5715     61.4659     -8.0891     -7.8863     -5.3070     -4.8374     -3.2693
+                1.4094      3.1895      9.0535     16.6317     27.0911     34.3010     42.5575     52.3332     60.3014     62.3640
+  1.538845    -10.0840     -9.7141     -7.6611     -7.1767     -5.7531     -0.0811      1.9484      8.9653     15.9564     27.4850
+               34.8470     40.0648     51.1725     61.9696     62.9956     -8.0984     -7.7634     -5.5212     -4.9367     -3.2529
+                0.9940      3.0884      9.5727     16.9374     28.5756     35.7982     40.8790     52.1930     62.8721     64.7208
+  1.568102    -10.0695     -9.5629     -7.8451     -7.2687     -5.7383     -0.5325      1.8175      9.5023     16.4100     29.0186
+               35.7342     38.4545     51.0363     62.4951     69.4040     -8.1351     -7.6291     -5.7288     -4.9991     -3.2363
+                0.5857      3.0086     10.1197     17.3362     30.1055     36.7791     39.2676     51.9787     63.4023     70.9654
+  1.597359    -10.0758     -9.4002     -8.0227     -7.3348     -5.7235     -0.9744      1.7096     10.0692     16.9693     30.5894
+               36.1557     36.9123     50.8826     63.0370     77.8089     -8.1996     -7.4834     -5.9278     -5.0226     -3.2197
+                0.1846      2.9476     10.6944     17.8440     31.6749     37.2841     37.7250     51.7912     63.9490     79.1305
+  1.626615    -10.1036     -9.2263     -8.1924     -7.3730     -5.7088     -1.4067      1.6219     10.6657     17.6417     32.1901
+               35.4370     36.2123     50.7672     63.5887     88.1867     -8.2892     -7.3262     -6.1168     -5.0091     -3.2032
+               -0.2088      2.9024     11.2970     18.4707     33.2760     36.2498     37.4022     51.6619     64.5058     89.2282
+  1.655872    -10.1516     -9.0413     -8.3527     -7.3841     -5.6945     -1.8290      1.5517     11.2921     18.4228     33.8104
+               34.0255     35.9974     50.6991     64.1432    100.1724     -8.3982     -7.1578     -6.2945     -4.9641     -3.1871
+               -0.5942      2.8703     11.9278     19.2145     34.8387     34.8983     37.2256     51.5896     65.0653    100.9182
+  1.685129    -10.2162     -8.8455     -8.5025     -7.3716     -5.6807     -2.2410      1.4960     11.9483     19.2900     32.6732
+               35.4365     35.5849     50.6676     64.6926    112.5420     -8.5201     -6.9785     -6.4598     -4.8947     -3.1716
+               -0.9714      2.8483     12.5870     20.0534     33.4871     36.5280     36.8316     51.5584     65.6197    113.0186
+  1.714386    -10.2925     -8.6408     -8.6396     -7.3402     -5.6676     -2.6424      1.4516     12.6342     20.1966     31.3754
+               35.0315     37.0507     50.6560     65.2284    122.7983     -8.6479     -6.7885     -6.6118     -4.8088     -3.1569
+               -1.3400      2.8335     13.2747     20.9391     32.1901     36.2802     38.1468     51.5499     66.1604    123.1029
+  1.743642    -10.3753     -8.7667     -8.4240     -7.2956     -5.6554     -3.0325      1.4158     13.3494     21.0719     30.1271
+               34.3837     38.6301     50.6495     65.7416    127.8468     -8.7755     -6.7497     -6.5883     -4.7137     -3.1431
+               -1.6996      2.8232     13.9905     21.7963     30.9430     35.6212     39.7317     51.5501     66.6784    128.1499
+  1.772899    -10.4593     -8.8794     -8.2000     -7.2433     -5.6442     -3.4103      1.3859     14.0925     21.8290     28.9244
+               33.6895     40.1472     50.6401     66.2232    126.2075     -8.8978     -6.8727     -6.3789     -4.6159     -3.1306
+               -2.0494      2.8152     14.7332     22.5318     29.7419     34.9065     41.2549     51.5534     67.1644    126.6952
+  1.802156    -10.5403     -8.9784     -7.9692     -7.1881     -5.6342     -3.7743      1.3602     14.8611     22.3834     27.7654
+               33.0072     41.5701     50.6284     66.6638    119.4884     -9.0106     -6.9804     -6.1614     -4.5206     -3.1193
+               -2.3884      2.8081     15.5001     23.0555     28.5851     34.1999     42.6841     51.5628     67.6091    120.2786
+  1.831413    -10.6145     -9.0629     -7.7341     -7.1344     -5.6255     -4.1218      1.3377     15.6501     22.6807     26.6512
+               32.4034     42.8633     50.6217     67.0545    110.9210     -9.1107     -7.0723     -5.9377     -4.4324     -3.1095
+               -2.7145      2.8013     16.2857     23.3116     27.4744     33.5745     43.9835     51.5860     68.0036    112.0324
+  1.860669    -10.6788     -9.1327     -7.4994     -7.0856     -5.6182     -4.4485      1.3183     16.4496     22.7262     25.5887
+               31.9316     43.9896     50.6276     67.3871    103.0345     -9.1956     -7.1480     -5.7114     -4.3550     -3.1015
+               -3.0242      2.7946     17.0789     23.3101     26.4180     33.0875     45.1154     51.6281     68.3393    104.4177
+  1.889926    -10.7310     -9.1874     -7.2733     -7.0446     -5.6124     -4.7461      1.3022     17.2390     22.5933     24.5961
+               31.6073     44.9123     50.6481     67.6542     96.9366     -9.2634     -7.2071     -5.4890     -4.2913     -3.3120
+               -3.0947      2.7886     17.8576     23.1328     25.4359     32.7542     46.0430     51.6857     68.6089     98.5184
+  1.919183    -10.7695     -9.2266     -7.0711     -7.0137     -5.6082     -4.9992      1.2901     17.9740     22.3934     23.7166
+               31.4100     45.5984     50.6767     67.8496     92.7980     -9.3127     -7.2495     -5.2839     -4.2440     -3.5634
+               -3.0900      2.7838     18.5750     22.8984     24.5736     32.5522     46.7328     51.7460     68.8062     94.5084
+  1.948440    -10.7930     -9.2502     -6.9945     -6.9213     -5.6057     -5.1795      1.2826     18.5538     22.2295     23.0502
+               31.3077     46.0215     50.7013     67.9688     90.4434     -9.3427     -7.2750     -5.1248     -4.2148     -3.7503
+               -3.0872      2.7807     19.1311     22.7131     23.9309     32.4476     47.1583     51.7917     68.9264     92.2242
+  1.977696    -10.8009     -9.2581     -6.9880     -6.8639     -5.6048     -5.2472      1.2801     18.7906     22.1676     22.7846
+               31.2763     46.1646     50.7110     68.0088     89.6830     -9.3527     -7.2835     -5.0609     -4.2049     -3.8233
+               -3.0862      2.7796     19.3538     22.6440     23.6793     32.4156     47.3021     51.8088     68.9669     91.4861
+  2.006953    -10.8019     -9.2550     -6.9913     -6.8648     -5.6149     -5.3115      1.3800     18.8102     22.2139     22.8015
+               31.3082     46.1737     50.6558     67.8590     88.5299     -9.3626     -7.2799     -5.1017     -4.2043     -3.8246
+               -3.0979      2.8597     19.3737     22.6910     23.6958     32.4474     47.3115     51.7541     68.8167     90.3343
+  2.036210    -10.8053     -9.2459     -7.0017     -6.8674     -5.6447     -5.4924      1.6686     18.8696     22.3531     22.8521
+               31.4033     46.2002     50.4923     67.4194     85.3017     -9.3932     -7.2690     -5.2158     -4.2039     -3.8282
+               -3.1324      3.0949     19.4337     22.8322     23.7455     32.5423     47.3386     51.5922     68.3760     87.1103
+  2.065467    -10.8126     -9.2307     -7.0201     -6.8717     -5.7595     -5.6938      2.1189     18.9699     22.5851     22.9365
+               31.5601     46.2419     50.2258     66.7177     80.5850     -9.4472     -7.2509     -5.3830     -4.2068     -3.8341
+               -3.1892      3.4716     19.5351     23.0676     23.8284     32.6989     47.3811     51.3287     67.6724     82.4008
+  2.094723    -10.8263     -9.2098     -7.0494     -6.8776     -6.0761     -5.7610      2.7008     19.1129     22.9103     23.0547
+               31.7758     46.2949     49.8649     65.7952     75.0847     -9.5287     -7.2259     -5.5790     -4.2146     -3.8421
+               -3.2669      3.9725     19.6797     23.3974     23.9447     32.9142     47.4349     50.9731     66.7476     76.9098
+  2.123980    -10.8503     -9.1832     -7.0978     -6.8849     -6.4036     -5.8451      3.3893     19.3010     23.2069     23.3287
+               32.0460     46.3544     49.4201     64.7019     69.4158     -9.6424     -7.1942     -5.7802     -4.2272     -3.8520
+               -3.3639      4.5811     19.8698     23.8217     24.0944     33.1837     47.4949     50.5377     65.6515     71.2504
+  2.153237    -10.8897     -9.1512     -7.1896     -6.8935     -6.6929     -5.9442      4.1665     19.5366     23.3932     23.8401
+               32.3638     46.4148     48.9008     63.4897     64.0113     -9.7926     -7.1560     -5.9672     -4.2440     -3.8636
+               -3.4781      5.2837     20.1077     24.2776     24.3404     33.5007     47.5550     50.0361     64.4364     65.8508
+  2.182493    -10.9508     -9.1143     -7.3653     -6.9030     -6.8831     -6.0566      5.0210     19.8222     23.6133     24.4439
+               32.7193     46.4702     48.3076     59.1323     62.2088     -9.9813     -7.1118     -6.1262     -4.2640     -3.8766
+               -3.6071      6.0704     20.3959     24.4943     24.9530     33.8553     47.6089     49.4785     60.9613     63.1523
+  2.211750    -11.0405     -9.0727     -7.6022     -6.9804     -6.9134     -6.1801      5.9457     20.1598     23.8673     25.1387
+               33.0986     46.5149     47.6096     54.9376     60.9035    -10.2074     -7.0621     -6.2493     -4.2861     -3.8907
+               -3.7486      6.9343     20.7364     24.7444     25.6581     34.2336     47.6504     48.8595     56.7137     61.8436
+  2.241007    -11.1649     -9.0270     -7.8341     -7.0383     -6.9243     -6.3126      6.9370     20.5511     24.1546     25.9218
+               33.4828     46.5444     46.6790     51.6001     59.6107    -10.4665     -7.0074     -6.3347     -4.3090     -3.9083
+               -3.8972      7.8716     21.1309     25.0277     26.4532     34.6171     47.6744     48.1174     53.2133     60.5472
+  2.270264    -11.3274     -8.9776     -8.0278     -7.0818     -6.9355     -6.4520      7.9938     20.9968     24.4746     26.7887
+               33.8480     45.2384     46.5556     49.3984     58.3600    -10.7518     -6.9483     -6.3849     -4.3315     -4.0592
+               -3.9201      8.8805     21.5801     25.3433     27.3341     34.9830     47.0328     47.6774     50.6781     59.2924
+  2.299520    -11.5268     -8.9251     -8.1733     -7.1185     -6.9468     -6.5960      9.1172     21.4969     24.8262     27.7326
+               34.1654     43.3222     46.5481     48.2783     57.1736    -11.0550     -6.8854     -6.4047     -4.3524     -4.2226
+               -3.9354      9.9618     22.0841     25.6905     28.2945     35.3052     45.3892     47.6581     49.3009     58.1012
+  2.328777    -11.7575     -8.8701     -8.2717     -7.1507     -6.9580     -6.7426     10.3099     22.0500     25.2079     28.7432
+               34.4027     41.4006     46.5245     47.7418     56.0677    -11.3681     -6.8195     -6.4004     -4.3885     -4.3702
+               -3.9505     11.1177     22.6418     26.0676     29.3245     35.5575     43.5494     47.6186     48.6838     56.9897
+  2.358034    -12.0108     -8.8133     -8.3296     -7.1785     -6.9689     -6.8897     11.5765     22.6536     25.6173     29.8061
+               34.5259     39.7349     46.4914     47.4975     55.0536    -11.6839     -6.7514     -6.3780     -4.5545     -4.3837
+               -3.9652     12.3527     23.2506     26.4725     30.4106     35.7181     41.8787     47.5649     48.4184     55.9686
+  2.387291    -12.2771     -8.7553     -8.3557     -7.2016     -7.0355     -6.9793     12.9228     23.3036     26.0517     30.9018
+               34.4995     38.4042     46.4601     47.4383     54.1384    -11.9961     -6.6819     -6.3434     -4.7184     -4.3916
+               -3.9792     13.6726     23.9069     26.9025     31.5339     35.7730     40.4792     47.5075     48.3522     55.0449
+  2.416547    -12.5474     -8.6970     -8.3589     -7.2192     -7.1783     -6.9891     14.3552     23.9941     26.5072     32.0046
+               34.2946     37.4317     46.4466     47.5100     53.3267    -12.2996     -6.6118     -6.3016     -4.8785     -4.3928
+               -3.9925     15.0838     24.6050     27.3538     32.6697     35.7186     39.3610     47.4617     48.4192     54.2227
+  2.445804    -12.8145     -8.6389     -8.3472     -7.3164     -7.2304     -6.9982     15.8791     24.7172     26.9791     33.0825
+               33.9225     36.7946     46.4716     47.6724     52.6204    -12.5903     -6.5421     -6.2570     -5.0329     -4.3864
+               -4.0048     16.5921     25.3375     27.8217     33.7868     35.5614     38.5097     47.4477     48.5746     53.5037
+  2.475061    -13.0724     -8.5819     -8.3272     -7.4483     -7.2344     -7.0066     17.4963     25.4631     27.4617     33.4580
+               34.0982     36.4092     46.5589     47.8912     52.0197    -12.8649     -6.4736     -6.2132     -5.1800     -4.3722
+               -4.0162     18.1997     26.0951     28.3007     34.8481     35.3216     37.8988     47.4896     48.7826     52.8877
+  2.504318    -13.3167     -8.5267     -8.3041     -7.5729     -7.2309     -7.0141     19.2012     26.2198     27.9482     32.9886
+               35.0128     36.1830     46.7320     48.1402     51.5230    -13.1210     -6.4073     -6.1728     -5.3186     -4.3504
+               -4.0265     19.9012     26.8659     28.7839     35.0332     35.8136     37.4904     47.6122     49.0162     52.3728
+  2.533574    -13.5440     -8.4741     -8.2816     -7.6889     -7.2198     -7.0208     20.9761     26.9733     28.4307     32.5652
+               35.7921     36.0619     47.0074     48.4026     51.1265    -13.3567     -6.3441     -6.1375     -5.4472     -4.3218
+               -4.0356     21.6789     27.6364     29.2637     34.7338     36.6464     37.2448     47.8349     49.2583     51.9554
+  2.562831    -13.7517     -8.4248     -8.2619     -7.7953     -7.2020     -7.0266     22.7851     27.7081     28.9007     32.2050
+               36.0270     36.4150     47.3872     48.6704     50.8246    -13.5703     -6.2848     -6.1081     -5.5650     -4.2878
+               -4.0437     23.4969     28.3910     29.7312     34.4512     37.1331     37.3210     48.1645     49.5014     51.6299
+  2.592088    -13.9381     -8.3795     -8.2464     -7.8912     -7.1791     -7.0316     24.5712     28.4076     29.3484     31.9083
+               36.0770     36.8798     47.8538     48.9423     50.6090    -13.7608     -6.2303     -6.0848     -5.6709     -4.2504
+               -4.0507     25.2978     29.1126     30.1769     34.1994     37.1403     37.8309     48.5881     49.7449     51.3886
+  2.621345    -14.1018     -8.3388     -8.2350     -7.9758     -7.1530     -7.0359     26.2576     29.0547     29.7641     31.6689
+               36.2154     37.2027     48.3726     49.2189     50.4688    -13.9272     -6.1814     -6.0670     -5.7642     -4.2119
+               -4.0567     27.0033     29.7836     30.5909     33.9831     37.2593     38.1896     49.0737     49.9906     51.2216
+  2.650601    -14.2416     -8.3033     -8.2273     -8.0485     -7.1261     -7.0393     27.7581     29.6332     30.1376     31.4792
+               36.4417     37.4115     48.8993     49.4978     50.3906    -14.0690     -6.1387     -6.0541     -5.8442     -4.1745
+               -4.0616     28.5257     30.3865     30.9631     33.8031     37.4806     38.4245     49.5774     50.2378     51.1165
+  2.679858    -14.3569     -8.2735     -8.2226     -8.1087     -7.1005     -7.0421     28.9985     30.1282     30.4590     31.3322
+               36.7401     37.5369     49.3902     49.7693     50.3587    -14.1856     -6.1030     -6.0449     -5.9104     -4.1406
+               -4.0655     29.7880     30.9049     31.2836     33.6594     37.7813     38.5676     50.0538     50.4790     51.0594
+  2.709115    -14.4471     -8.2499     -8.2200     -8.1560     -7.0783     -7.0442     29.9383     30.5268     30.7196     31.2226
+               37.0707     37.6063     49.8080     50.0153     50.3567    -14.2767     -6.0749     -6.0387     -5.9623     -4.1120
+               -4.0685     30.7465     31.3242     31.5435     33.5518     38.1165     38.6482     50.4633     50.6987     51.0355
+  2.738372    -14.5117     -8.2328     -8.2187     -8.1900     -7.0612     -7.0457     30.5782     30.8188     30.9117     31.1467
+               37.3732     37.6411     50.1247     50.2132     50.3688    -14.3419     -6.0549     -6.0344     -5.9996     -4.0904
+               -4.0707     31.3984     31.6326     31.7352     33.4798     38.4230     38.6897     50.7757     50.8762     51.0306
+  2.767628    -14.5506     -8.2226     -8.2180     -8.2105     -7.0505     -7.0465     30.9437     30.9970     31.0299     31.1020
+               37.5846     37.6563     50.3217     50.3417     50.3820    -14.3811     -6.0437     -6.0311     -6.0220     -4.0769
+               -4.0719     31.7689     31.8212     31.8528     33.4407     38.6370     38.7084     50.9707     50.9918     51.0331
+  2.796885    -14.5636     -8.2196     -8.2173     -8.2173     -7.0468     -7.0468     31.0569     31.0569     31.0746     31.0876
+               37.6604     37.6604     50.3861     50.3861     50.3898    -14.3942     -6.0405     -6.0295     -6.0295     -4.0724
+               -4.0724     31.8847     31.8847     31.8957     33.4288     38.7135     38.7136     51.0320     51.0320     51.0397
+  2.826394    -14.5504     -8.2218     -8.2198     -8.2094     -7.0485     -7.0485     30.9676     30.9904     31.0069     31.1038
+               37.6199     37.6199     50.3390     50.3421     50.3622    -14.3809     -6.0429     -6.0326     -6.0213     -4.0745
+               -4.0745     31.7942     31.8171     31.8273     33.4410     38.6720     38.6721     50.9864     50.9930     51.0142
+  2.855902    -14.5108     -8.2291     -8.2271     -8.1852     -7.0535     -7.0535     30.6973     30.7823     30.7982     31.1562
+               37.5066     37.5068     50.2000     50.2033     50.2945    -14.3410     -6.0517     -6.0419     -5.9951     -4.0807
+               -4.0806     31.5204     31.6056     31.6156     33.4827     38.5556     38.5558     50.8525     50.8594     50.9621
+  2.885411    -14.4451     -8.2415     -8.2396     -8.1447     -7.0613     -7.0612     30.2579     30.4087     30.4240     31.2466
+               37.3443     37.3448     49.9776     49.9810     50.1988    -14.2747     -6.0672     -6.0576     -5.9511     -4.0904
+               -4.0902     31.0691     31.2264     31.2363     33.5636     38.3876     38.3879     50.6393     50.6462     50.8906
+  2.914920    -14.3534     -8.2594     -8.2576     -8.0882     -7.0709     -7.0708     29.6660     29.8371     29.8516     31.3792
+               37.1688     37.1699     49.6872     49.6907     50.0972    -14.1821     -6.0893     -6.0800     -5.8896     -4.1029
+               -4.1025     30.4561     30.6470     30.6568     33.6916     38.2038     38.2042     50.3629     50.3699     50.8189
+  2.944429    -14.2362     -8.2833     -8.2815     -8.0157     -7.0816     -7.0814     28.9424     29.0401     29.0535     31.5605
+               37.0192     37.0212     49.3504     49.3541     50.0143    -14.0636     -6.1185     -6.1094     -5.8108     -4.1171
+               -4.1164     29.7051     29.8397     29.8492     33.8735     38.0436     38.0439     50.0455     50.0525     50.7686
+  2.973937    -14.0940     -8.3134     -8.3116     -7.9275     -7.0921     -7.0918     28.0109     28.0226     28.1110     31.8001
+               36.9272     36.9301     48.9914     48.9952     49.9742    -13.9195     -6.1551     -6.1462     -5.7150     -4.1319
+               -4.1309     28.7976     28.8065     28.8432     34.1174     37.9396     37.9397     49.7111     49.7181     50.7611
+  3.003446    -13.9274     -8.3500     -8.3483     -7.8235     -7.1013     -7.1009     26.7721     26.7827     27.1944     32.1109
+               36.9094     36.9134     48.6316     48.6356     49.9980    -13.7502     -6.1992     -6.1907     -5.6026     -4.1459
+               -4.1446     27.5438     27.5521     27.8968     34.4352     37.9097     37.9099     49.3804     49.3874     50.8153
+  3.032955    -13.7373     -8.3931     -8.3916     -7.7040     -7.1083     -7.1078     25.3719     25.3812     26.2162     32.5110
+               36.9692     36.9743     48.2856     48.2897     50.1032    -13.5564     -6.2510     -6.2429     -5.4739     -4.1582
+               -4.1565     26.1276     26.1352     26.8912     34.8435     37.9579     37.9586     49.0667     49.0737     50.9476
+  3.062464    -13.5247     -8.4426     -8.4411     -7.5690     -7.1123     -7.1118     23.8712     23.8794     25.1964     33.0244
+               37.1020     37.1079     47.9596     47.9637     50.3040    -13.3387     -6.3102     -6.3025     -5.3294     -4.1675
+               -4.1654     24.6116     24.6186     25.8476     35.3651     38.0803     38.0814     48.7748     48.7817     51.1714
+  3.091972    -13.2908     -8.4977     -8.4963     -7.4185     -7.1130     -7.1123     22.3309     22.3381     24.1517     33.6839
+               37.3002     37.3069     47.6532     47.6573     50.6124    -13.0978     -6.3765     -6.3692     -5.1694     -4.1733
+               -4.1708     23.0583     23.0646     24.7834     36.0314     38.2693     38.2709     48.5028     48.5096     51.4990
+  3.121481    -13.0370     -8.5577     -8.5564     -7.2526     -7.1100     -7.1092     20.8024     20.8088     23.0948     34.5324
+               37.5567     37.5642     47.3625     47.3666     51.0405    -12.8348     -6.4491     -6.4422     -4.9944     -4.1749
+               -4.1720     21.5202     21.5258     23.7113     36.8837     38.5179     38.5198     48.2459     48.2526     51.9432
+  3.150990    -12.7652     -8.6214     -8.6202     -7.1034     -7.1025     -7.0709     19.3238     19.3294     22.0344     35.6261
+               37.8657     37.8738     47.0837     47.0877     51.6030    -12.5508     -6.5270     -6.5204     -4.8049     -4.1721
+               -4.1688     20.0360     20.0410     22.6396     37.9761     38.8200     38.8224     47.9990     48.0056     52.5199
+  3.180499    -12.4776     -8.6876     -8.6865     -7.0935     -7.0926     -6.8731     17.9196     17.9246     20.9750     37.0354
+               38.2230     38.2317     46.8149     46.8188     52.3222    -12.2472     -6.6089     -6.6027     -4.6013     -4.1649
+               -4.1613     18.6303     18.6348     21.5727     39.1714     39.1741     39.3758     47.7598     47.7662     53.2537
+  3.210007    -12.1769     -8.7551     -8.7541     -7.0807     -7.0798     -6.6588     16.6030     16.6075     19.9176     38.6256
+               38.6347     38.8416     46.5576     46.5614     53.2373    -11.9257     -6.6936     -6.6877     -4.3841     -4.1535
+               -4.1497     17.3161     17.3201     20.5112     39.5690     39.5721     41.1587     47.5292     47.5354     54.1882
+  3.239516    -11.8662     -8.8224     -8.8215     -7.0655     -7.0645     -6.4270     15.3787     15.3827     18.8610     39.0713
+               39.0809     41.1211     46.3169     46.3205     54.4265    -11.5887     -6.7795     -6.7740     -4.1540     -4.1378
+               -4.1344     16.0978     16.1013     19.4532     40.0109     40.0143     43.3900     47.3121     47.3181     55.4112
+  3.269025    -11.5494     -8.8884     -8.8875     -7.0484     -7.0473     -6.1767     14.2455     14.2492     17.8027     39.5588
+               39.5687     43.8942     46.1007     46.1042     56.0601    -11.2389     -6.8654     -6.8601     -4.1201     -4.1157
+               -3.9097     14.9737     14.9768     18.3954     40.4956     40.4993     46.0653     47.1162     47.1220     57.1158
+  3.298534    -11.2311     -8.9518     -8.9509     -7.0299     -7.0288     -5.9066     13.1990     13.2023     16.7406     40.0866
+               40.0967     45.9187     45.9221     47.0043     58.5134    -10.8798     -6.9498     -6.9447     -4.0989     -4.0944
+               -3.6533     13.9388     13.9414     17.3349     41.0219     41.0259     46.9510     46.9567     48.9865     59.7163
+  3.328042    -10.9163     -9.0115     -9.0107     -7.0105     -7.0094     -5.6153     12.2326     12.2356     15.6750     40.6531
+               40.6635     45.7808     45.7842     50.0047     62.4519    -10.5157     -7.0314     -7.0265     -4.0756     -4.0710
+               -3.3841     12.9860     12.9883     16.2712     41.5886     41.5928     46.8266     46.8322     51.7061     63.8752
+  3.357551    -10.6106     -9.0667     -9.0659     -6.9907     -6.9896     -5.3009     11.3391     11.3419     14.6095     41.2563
+               41.2669     45.6968     45.7002     52.4549     68.4703    -10.1512     -7.1093     -7.1045     -4.0507     -4.0460
+               -3.1021     12.1078     12.1097     15.2072     42.1938     42.1982     46.7526     46.7582     53.8983     70.0678
+  3.387060    -10.3192     -9.1164     -9.1157     -6.9710     -6.9698     -4.9616     10.5113     10.5138     13.5525     41.8928
+               41.9035     45.6752     45.6787     54.3534     76.5514     -9.7918     -7.1822     -7.1776     -4.0247     -4.0201
+               -2.8064     11.2966     11.2980     14.1507     42.8349     42.8395     46.7373     46.7429     55.6337     78.2003
+  3.416568    -10.0475     -9.1601     -9.1594     -6.9517     -6.9505     -4.5952      9.7423      9.7446     12.5161     42.5573
+               42.5679     45.7237     45.7274     55.8964     86.1788     -9.4427     -7.2495     -7.2450     -3.9983     -3.9937
+               -2.4958     10.5450     10.5461     13.1139     43.5076     43.5122     46.7878     46.7935     57.0835     87.7784
+  3.446077     -9.7998     -9.1971     -9.1964     -6.9331     -6.9320     -4.1993      9.0258      9.0279     11.5147     43.2411
+               43.2513     45.8502     45.8545     57.2100     96.5396     -9.1091     -7.3105     -7.3059     -3.9718     -3.9673
+               -2.1680      9.8466      9.8473     12.1115     44.2047     44.2091     46.9105     46.9166     58.3417     98.0234
+  3.475586     -9.5800     -9.2271     -9.2264     -6.9157     -6.9146     -3.7716      8.3563      8.3582     10.5631     43.9287
+               43.9382     46.0658     46.0710     58.3356    106.6541     -8.7959     -7.3645     -7.3600     -3.9457     -3.9414
+               -1.8200      9.1956      9.1959     11.1589     44.9136     44.9176     47.1141     47.1207     59.4317    107.9825
+  3.505095     -9.3906     -9.2497     -9.2490     -6.8996     -6.8986     -3.3099      7.7288      7.7305      9.6740     44.5949
+               44.6028     46.3881     46.3949     59.2645    115.6588     -8.5078     -7.4112     -7.4067     -3.9205     -3.9163
+               -1.4479      8.5868      8.5869     10.2698     45.6123     45.6155     47.4131     47.4207     60.3359    116.8150
+  3.534603     -9.2649     -9.2642     -9.2334     -6.8850     -6.8840     -2.8124      7.1392      7.1407      8.8568     45.2048
+               45.2106     46.8406     46.8498     59.9608    123.1212     -8.2489     -7.4503     -7.4458     -3.8964     -3.8924
+               -1.0476      8.0158      8.0162      9.4540     46.2656     46.2676     47.8315     47.8405     61.0138    124.1082
+  3.564112     -9.2726     -9.2718     -9.1093     -6.8720     -6.8711     -2.2779      6.5841      6.5855      8.1168     45.7341
+               45.7377     47.4338     47.4453     60.3788    129.1401     -8.0231     -7.4818     -7.4773     -3.8738     -3.8701
+               -0.6146      7.4792      7.4801      8.7174     46.8372     46.8380     48.3917     48.4021     61.4171    129.9746
+  3.593621     -9.2730     -9.2722     -9.0179     -6.8608     -6.8600     -1.7056      6.0607      6.0619      7.4557     46.1890
+               46.1911     48.1440     48.1572     60.4793    134.1753     -7.8330     -7.5057     -7.5010     -3.8529     -3.8495
+               -0.1452      6.9742      6.9755      8.0620     47.3206     47.3208     49.0827     49.0939     61.5045    134.8802
+  3.623130     -9.2663     -9.2655     -8.9581     -6.8514     -6.8507     -1.0955      5.5667      5.5678      6.8723     46.5910
+               46.5922     48.9297     48.9439     60.2437    138.7652     -7.6806     -7.5220     -7.5173     -3.8340     -3.8310
+                0.3641      6.4985      6.5002      7.4867     47.7380     47.7380     49.8622     49.8739     61.2566    139.3644
+  3.652638     -9.2529     -9.2521     -8.9280     -6.8438     -6.8432     -0.4484      5.1005      5.1013      6.3639     46.9527
+               46.9535     49.7555     49.7704     59.6829    143.3016     -7.5663     -7.5311     -7.5263     -3.8173     -3.8147
+                0.9154      6.0502      6.0523      6.9884     48.1077     48.1078     50.6889     50.7009     60.6838    143.8163
+  3.682147     -9.2335     -9.2327     -8.9249     -6.8379     -6.8374      0.2341      4.6605      4.6613      5.9270     47.2746
+               47.2751     50.5962     50.6115     58.8358    147.9140     -7.5336     -7.5285     -7.4886     -3.8030     -3.8009
+                1.5097      5.6281      5.6306      6.5632     48.4341     48.4342     51.5334     51.5456     59.8251    148.3623
+  3.711656     -9.2087     -9.2078     -8.9454     -6.8336     -6.8332      0.9490      4.2461      4.2467      5.5591     47.5487
+               47.5491     51.4325     51.4482     57.7597    152.4413     -7.5295     -7.5243     -7.4455     -3.7915     -3.7899
+                2.1458      5.2311      5.2341      6.2073     48.7112     48.7112     52.3746     52.3869     58.7382    152.8383
+  3.741165     -9.1793     -9.1784     -8.9858     -6.8308     -6.8305      1.6897      3.8566      3.8570      5.2608     47.7631
+               47.7633     52.2485     52.2645     56.5179    156.4579     -7.5196     -7.5142     -7.4330     -3.7828     -3.7817
+                2.8194      4.8588      4.8623      5.9196     48.9274     48.9275     53.1954     53.2079     57.4868    156.8175
+  3.770673     -9.1464     -9.1454     -9.0421     -6.8293     -6.8291      2.4400      3.4917      3.4920      5.0425     47.9031
+               47.9032     53.0302     53.0465     55.1701    159.3496     -7.5047     -7.4991     -7.4463     -3.7774     -3.7768
+                3.5170      4.5108      4.5148      5.7071     49.0686     49.0687     53.9813     53.9940     56.1308    159.6859
+  3.800182     -9.1111     -9.1100     -9.1100     -6.8288     -6.8288      3.1514      3.1514      3.1515      4.9469     47.9533
+               47.9534     53.7652     53.7652     53.7838    160.4475     -7.4860     -7.4796     -7.4796     -3.7754     -3.7754
+                4.1866      4.1916      4.1916      5.6110     49.1192     49.1192     54.7197     54.7197     54.7343    160.7757
+           5
+    0.000000   'Gamma'   
+    1.158508   'H'       
+    1.977696   'N'       
+    2.796885   'Gamma'   
+    3.800182   'P'       
diff --git a/tests/data/parsers/siesta/Fe/Fe.fdf b/tests/data/parsers/siesta/Fe/Fe.fdf
new file mode 100644
index 0000000000000000000000000000000000000000..abe9b8947e7edf7d11c0b5e305bed8c118aaa2a7
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.fdf
@@ -0,0 +1,89 @@
+# $Id: Fe.fdf,v 1.1 1999/04/20 12:52:43 emilio Exp $
+# -----------------------------------------------------------------------------
+# FDF for bcc iron      
+#
+# GGA, Ferromagnetic. 
+# Scalar-relativistic pseudopotential with non-linear partial-core correction
+#
+# E. Artacho, April 1999
+# -----------------------------------------------------------------------------
+
+SystemName       bcc Fe ferro GGA   # Descriptive name of the system
+SystemLabel            Fe           # Short name for naming files
+
+# Output options
+
+WriteCoorStep
+WriteMullikenPop       1    
+
+# Species and atoms
+
+NumberOfSpecies        1       
+NumberOfAtoms          1      
+%block ChemicalSpeciesLabel
+  1  26  Fe
+%endblock ChemicalSpeciesLabel
+
+# Basis
+
+PAO.EnergyShift       50 meV
+PAO.BasisSize         DZP
+%block PAO.Basis
+  Fe  2
+  0  2  P
+  6. 0.
+  2  2
+  0. 0.
+%endblock PAO.Basis
+
+LatticeConstant       2.87 Ang  
+
+%block LatticeVectors          
+ 0.50000   0.500000  0.500000
+ 0.50000  -0.500000  0.500000 
+ 0.50000   0.500000 -0.500000
+%endblock LatticeVectors
+
+KgridCutoff          15. Ang
+
+%block BandLines
+  1  0.00000   0.000000  0.000000  \Gamma
+ 40  2.00000   0.000000  0.000000  H
+ 28  1.00000   1.000000  0.000000  N
+ 28  0.00000   0.000000  0.000000  \Gamma
+ 34  1.00000   1.000000  1.000000  P
+%endblock BandLines
+
+xc.functional         GGA           # Exchange-correlation functional
+xc.authors            PBE           # Exchange-correlation version
+
+SpinPolarized         true          # Logical parameters are: yes or no
+
+MeshCutoff           150. Ry        # Mesh cutoff. real space mesh 
+
+# SCF options
+MaxSCFIterations       40           # Maximum number of SCF iter
+DM.MixingWeight       0.1           # New DM amount for next SCF cycle
+DM.Tolerance          1.d-3         # Tolerance in maximum difference
+                                    # between input and output DM
+DM.UseSaveDM          true          # to use continuation files
+DM.NumberPulay         3
+
+SolutionMethod        diagon        # OrderN or Diagon
+ElectronicTemperature  25 meV       # Temp. for Fermi smearing
+
+# MD options
+
+MD.TypeOfRun           cg           # Type of dynamics:
+MD.NumCGsteps           0           # Number of CG steps for 
+                                    #   coordinate optimization
+MD.MaxCGDispl          0.1 Ang      # Maximum atomic displacement 
+                                    #   in one CG step (Bohr)
+MD.MaxForceTol         0.04 eV/Ang  # Tolerance in the maximum 
+                                    #   atomic force (Ry/Bohr)
+
+# Atomic coordinates
+AtomicCoordinatesFormat     Fractional    
+%block AtomicCoordinatesAndAtomicSpecies
+  0.000000000000    0.000000000000    0.000000000000  1 
+%endblock AtomicCoordinatesAndAtomicSpecies
diff --git a/tests/data/parsers/siesta/Fe/Fe.ion b/tests/data/parsers/siesta/Fe/Fe.ion
new file mode 100644
index 0000000000000000000000000000000000000000..7cd917dbdffbb6ae19d36f67d87d3ac534c038ff
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.ion
@@ -0,0 +1,6075 @@
+<preamble>
+
+<basis_specs>
+===============================================================================
+Fe                   Z=  26    Mass=  55.850        Charge= 0.17977+309
+Lmxo=2 Lmxkb= 3    BasisType=split      Semic=F
+L=0  Nsemic=0  Cnfigmx=4
+          n=1  nzeta=2  polorb=1
+            splnorm:   0.15000    
+               vcte:    0.0000    
+               rinn:    0.0000    
+               qcoe:    0.0000    
+               qyuk:    0.0000    
+               qwid:   0.10000E-01
+                rcs:    6.0008      5.8526    
+            lambdas:    1.0000      1.0000    
+L=1  Nsemic=0  Cnfigmx=4
+L=2  Nsemic=0  Cnfigmx=3
+          n=1  nzeta=2  polorb=0
+            splnorm:   0.15000    
+               vcte:    0.0000    
+               rinn:    0.0000    
+               qcoe:    0.0000    
+               qyuk:    0.0000    
+               qwid:   0.10000E-01
+                rcs:    4.7917      2.2353    
+            lambdas:    1.0000      1.0000    
+-------------------------------------------------------------------------------
+L=0  Nkbl=1  erefs:-0.38830    
+L=1  Nkbl=1  erefs:-0.97543E-01
+L=2  Nkbl=1  erefs:-0.55324    
+L=3  Nkbl=1  erefs: 0.31783E-02
+===============================================================================
+</basis_specs>
+
+<pseudopotential_header>
+ Fe pb rel pcec
+ ATM3       8-OCT-07 Troullier-Martins                       
+ 4s 2.00r r= 2.00/4p 0.00r r= 2.00/3d 6.00r r= 2.00/4f 0.00r r= 2.00/  
+</pseudopotential_header>
+</preamble>
+Fe                            # Symbol
+Fe                            # Label
+   26                         # Atomic number
+     8.00000000000                             # Valence charge
+     55.8500000000        # Mass 
+     52.3270529712        # Self energy 
+   2   5                      # Lmax for basis, no. of nl orbitals 
+   3   4                      # Lmax for projectors, no. of nl KB projectors 
+# PAOs:__________________________
+  0  4  1  0  2.000000   #orbital l, n, z, is_polarized, population
+ 500    0.120255885413E-01     6.00076868209     # npts, delta, cutoff
+     0.00000000000        0.137304333797    
+    0.120255885413E-01    0.137314553623    
+    0.240511770825E-01    0.137345866308    
+    0.360767656238E-01    0.137398063644    
+    0.481023541650E-01    0.137471159886    
+    0.601279427063E-01    0.137565174972    
+    0.721535312475E-01    0.137680134500    
+    0.841791197888E-01    0.137816069694    
+    0.962047083301E-01    0.137973017371    
+    0.108230296871        0.138151019891    
+    0.120255885413        0.138350125113    
+    0.132281473954        0.138570386333    
+    0.144307062495        0.138811862216    
+    0.156332651036        0.139074616727    
+    0.168358239578        0.139358719048    
+    0.180383828119        0.139664243484    
+    0.192409416660        0.139991269372    
+    0.204435005201        0.140339880968    
+    0.216460593743        0.140710167333    
+    0.228486182284        0.141102222206    
+    0.240511770825        0.141516143869    
+    0.252537359366        0.141952035002    
+    0.264562947908        0.142410002524    
+    0.276588536449        0.142890157426    
+    0.288614124990        0.143392614592    
+    0.300639713531        0.143917492608    
+    0.312665302073        0.144464913552    
+    0.324690890614        0.145035002786    
+    0.336716479155        0.145627888718    
+    0.348742067696        0.146243702557    
+    0.360767656238        0.146882578058    
+    0.372793244779        0.147544651239    
+    0.384818833320        0.148230060095    
+    0.396844421861        0.148938944290    
+    0.408870010403        0.149671444825    
+    0.420895598944        0.150427703704    
+    0.432921187485        0.151207863563    
+    0.444946776026        0.152012067298    
+    0.456972364568        0.152840457655    
+    0.468997953109        0.153693176815    
+    0.481023541650        0.154570365949    
+    0.493049130192        0.155472164753    
+    0.505074718733        0.156398710963    
+    0.517100307274        0.157350139843    
+    0.529125895815        0.158326583652    
+    0.541151484357        0.159328171086    
+    0.553177072898        0.160355026696    
+    0.565202661439        0.161407270278    
+    0.577228249980        0.162485016241    
+    0.589253838522        0.163588372944    
+    0.601279427063        0.164717442011    
+    0.613305015604        0.165872317615    
+    0.625330604145        0.167053085736    
+    0.637356192687        0.168259823393    
+    0.649381781228        0.169492597845    
+    0.661407369769        0.170751465767    
+    0.673432958310        0.172036472394    
+    0.685458546852        0.173347650646    
+    0.697484135393        0.174685020211    
+    0.709509723934        0.176048586616    
+    0.721535312475        0.177438340264    
+    0.733560901017        0.178854255439    
+    0.745586489558        0.180296289301    
+    0.757612078099        0.181764380839    
+    0.769637666640        0.183258449815    
+    0.781663255182        0.184778395679    
+    0.793688843723        0.186324096460    
+    0.805714432264        0.187895407648    
+    0.817740020805        0.189492161048    
+    0.829765609347        0.191114163628    
+    0.841791197888        0.192761196347    
+    0.853816786429        0.194433012977    
+    0.865842374970        0.196129338918    
+    0.877867963512        0.197849870003    
+    0.889893552053        0.199594271312    
+    0.901919140594        0.201362175977    
+    0.913944729135        0.203153184004    
+    0.925970317677        0.204966861098    
+    0.937995906218        0.206802737506    
+    0.950021494759        0.208660306884    
+    0.962047083301        0.210539025180    
+    0.974072671842        0.212438309558    
+    0.986098260383        0.214357537348    
+    0.998123848924        0.216296045046    
+     1.01014943747        0.218253127355    
+     1.02217502601        0.220228036294    
+     1.03420061455        0.222219980349    
+     1.04622620309        0.224228123703    
+     1.05825179163        0.226251585554    
+     1.07027738017        0.228289439489    
+     1.08230296871        0.230340712975    
+     1.09432855725        0.232404386923    
+     1.10635414580        0.234479395392    
+     1.11837973434        0.236564625367    
+     1.13040532288        0.238658916695    
+     1.14243091142        0.240761062131    
+     1.15445649996        0.242869807526    
+     1.16648208850        0.244983852170    
+     1.17850767704        0.247101849266    
+     1.19053326558        0.249222406595    
+     1.20255885413        0.251344087334    
+     1.21458444267        0.253465411042    
+     1.22661003121        0.255584854837    
+     1.23863561975        0.257700854776    
+     1.25066120829        0.259811807383    
+     1.26268679683        0.261916071423    
+     1.27471238537        0.264011969858    
+     1.28673797391        0.266097792003    
+     1.29876356246        0.268171795890    
+     1.31078915100        0.270232210854    
+     1.32281473954        0.272277240321    
+     1.33484032808        0.274305064798    
+     1.34686591662        0.276313845080    
+     1.35889150516        0.278301725658    
+     1.37091709370        0.280266838324    
+     1.38294268224        0.282207305978    
+     1.39496827079        0.284121246611    
+     1.40699385933        0.286006777477    
+     1.41901944787        0.287862019433    
+     1.43104503641        0.289685101423    
+     1.44307062495        0.291474165129    
+     1.45509621349        0.293227369735    
+     1.46712180203        0.294942896812    
+     1.47914739057        0.296618955297    
+     1.49117297912        0.298253786552    
+     1.50319856766        0.299845669478    
+     1.51522415620        0.301392925668    
+     1.52724974474        0.302893924577    
+     1.53927533328        0.304347088661    
+     1.55130092182        0.305750898496    
+     1.56332651036        0.307103897841    
+     1.57535209890        0.308404698583    
+     1.58737768745        0.309651985583    
+     1.59940327599        0.310844521374    
+     1.61142886453        0.311981150672    
+     1.62345445307        0.313060804684    
+     1.63548004161        0.314082505185    
+     1.64750563015        0.315045368324    
+     1.65953121869        0.315948608129    
+     1.67155680723        0.316791539695    
+     1.68358239578        0.317573582018    
+     1.69560798432        0.318294260441    
+     1.70763357286        0.318953208697    
+     1.71965916140        0.319550170511    
+     1.73168474994        0.320085000748    
+     1.74371033848        0.320557666075    
+     1.75573592702        0.320968245115    
+     1.76776151556        0.321316928080    
+     1.77978710411        0.321604015849    
+     1.79181269265        0.321829918493    
+     1.80383828119        0.321995153216    
+     1.81586386973        0.322100341703    
+     1.82788945827        0.322146206865    
+     1.83991504681        0.322133568964    
+     1.85194063535        0.322063341132    
+     1.86396622389        0.321936524235    
+     1.87599181244        0.321754201083    
+     1.88801740098        0.321517530040    
+     1.90004298952        0.321227738004    
+     1.91206857806        0.320886112659    
+     1.92409416660        0.320493994305    
+     1.93611975514        0.320052766638    
+     1.94814534368        0.319563846424    
+     1.96017093222        0.319028674549    
+     1.97219652077        0.318448704849    
+     1.98422210931        0.317825392114    
+     1.99624769785        0.317160179414    
+     2.00827328639        0.316454487411    
+     2.02029887493        0.315709699458    
+     2.03232446347        0.314927158821    
+     2.04435005201        0.314108174961    
+     2.05637564055        0.313254021211    
+     2.06840122910        0.312365934917    
+     2.08042681764        0.311445119175    
+     2.09245240618        0.310492744877    
+     2.10447799472        0.309509952472    
+     2.11650358326        0.308497848510    
+     2.12852917180        0.307457505978    
+     2.14055476034        0.306389969488    
+     2.15258034888        0.305296256661    
+     2.16460593743        0.304177356672    
+     2.17663152597        0.303034231406    
+     2.18865711451        0.301867815674    
+     2.20068270305        0.300679018891    
+     2.21270829159        0.299468725393    
+     2.22473388013        0.298237795102    
+     2.23675946867        0.296987064281    
+     2.24878505721        0.295717346180    
+     2.26081064576        0.294429431684    
+     2.27283623430        0.293124089937    
+     2.28486182284        0.291802068942    
+     2.29688741138        0.290464096156    
+     2.30891299992        0.289110879051    
+     2.32093858846        0.287743105673    
+     2.33296417700        0.286361445167    
+     2.34498976554        0.284966548302    
+     2.35701535409        0.283559047970    
+     2.36904094263        0.282139559670    
+     2.38106653117        0.280708681989    
+     2.39309211971        0.279266997045    
+     2.40511770825        0.277815070935    
+     2.41714329679        0.276353454164    
+     2.42916888533        0.274882682065    
+     2.44119447388        0.273403275192    
+     2.45322006242        0.271915739729    
+     2.46524565096        0.270420567859    
+     2.47727123950        0.268918238126    
+     2.48929682804        0.267409215764    
+     2.50132241658        0.265893953219    
+     2.51334800512        0.264372890162    
+     2.52537359366        0.262846454082    
+     2.53739918221        0.261315060226    
+     2.54942477075        0.259779112800    
+     2.56145035929        0.258239005369    
+     2.57347594783        0.256695120133    
+     2.58550153637        0.255147828524    
+     2.59752712491        0.253597491002    
+     2.60955271345        0.252044457938    
+     2.62157830199        0.250489069585    
+     2.63360389054        0.248931656450    
+     2.64562947908        0.247372539479    
+     2.65765506762        0.245812030350    
+     2.66968065616        0.244250431722    
+     2.68170624470        0.242688037436    
+     2.69373183324        0.241125132757    
+     2.70575742178        0.239561994592    
+     2.71778301032        0.237998891703    
+     2.72980859887        0.236436084908    
+     2.74183418741        0.234873827295    
+     2.75385977595        0.233312364410    
+     2.76588536449        0.231751934451    
+     2.77791095303        0.230192768451    
+     2.78993654157        0.228635090456    
+     2.80196213011        0.227079117698    
+     2.81398771865        0.225525060774    
+     2.82601330720        0.223973123806    
+     2.83803889574        0.222423504601    
+     2.85006448428        0.220876394815    
+     2.86209007282        0.219331980097    
+     2.87411566136        0.217790440246    
+     2.88614124990        0.216251949351    
+     2.89816683844        0.214716675936    
+     2.91019242698        0.213184783096    
+     2.92221801553        0.211656428633    
+     2.93424360407        0.210131765185    
+     2.94626919261        0.208610940354    
+     2.95829478115        0.207094096832    
+     2.97032036969        0.205581372522    
+     2.98234595823        0.204072900654    
+     2.99437154677        0.202568809903    
+     3.00639713531        0.201069224501    
+     3.01842272386        0.199574264344    
+     3.03044831240        0.198084045101    
+     3.04247390094        0.196598678321    
+     3.05449948948        0.195118271528    
+     3.06652507802        0.193642928326    
+     3.07855066656        0.192172748491    
+     3.09057625510        0.190707828071    
+     3.10260184364        0.189248259472    
+     3.11462743219        0.187794131550    
+     3.12665302073        0.186345529702    
+     3.13867860927        0.184902535945    
+     3.15070419781        0.183465229002    
+     3.16272978635        0.182033684385    
+     3.17475537489        0.180607974473    
+     3.18678096343        0.179188168586    
+     3.19880655197        0.177774333067    
+     3.21083214052        0.176366531348    
+     3.22285772906        0.174964824027    
+     3.23488331760        0.173569268938    
+     3.24690890614        0.172179921214    
+     3.25893449468        0.170796833362    
+     3.27096008322        0.169420055318    
+     3.28298567176        0.168049634520    
+     3.29501126030        0.166685615964    
+     3.30703684885        0.165328042266    
+     3.31906243739        0.163976953720    
+     3.33108802593        0.162632388360    
+     3.34311361447        0.161294382009    
+     3.35513920301        0.159962968339    
+     3.36716479155        0.158638178923    
+     3.37919038009        0.157320043288    
+     3.39121596863        0.156008588966    
+     3.40324155718        0.154703841540    
+     3.41526714572        0.153405824700    
+     3.42729273426        0.152114560284    
+     3.43931832280        0.150830068328    
+     3.45134391134        0.149552367109    
+     3.46336949988        0.148281473190    
+     3.47539508842        0.147017401466    
+     3.48742067696        0.145760165203    
+     3.49944626551        0.144509776078    
+     3.51147185405        0.143266244226    
+     3.52349744259        0.142029578271    
+     3.53552303113        0.140799785370    
+     3.54754861967        0.139576871251    
+     3.55957420821        0.138360840245    
+     3.57159979675        0.137151695328    
+     3.58362538529        0.135949438152    
+     3.59565097384        0.134754069080    
+     3.60767656238        0.133565587223    
+     3.61970215092        0.132383990467    
+     3.63172773946        0.131209275513    
+     3.64375332800        0.130041437899    
+     3.65577891654        0.128880472041    
+     3.66780450508        0.127726371256    
+     3.67983009362        0.126579127793    
+     3.69185568217        0.125438732865    
+     3.70388127071        0.124305176672    
+     3.71590685925        0.123178448436    
+     3.72793244779        0.122058536420    
+     3.73995803633        0.120945427960    
+     3.75198362487        0.119839109490    
+     3.76400921341        0.118739566566    
+     3.77603480195        0.117646783892    
+     3.78806039050        0.116560745347    
+     3.80008597904        0.115481434002    
+     3.81211156758        0.114408832151    
+     3.82413715612        0.113342921329    
+     3.83616274466        0.112283682337    
+     3.84818833320        0.111231095265    
+     3.86021392174        0.110185139509    
+     3.87223951028        0.109145793797    
+     3.88426509883        0.108113036206    
+     3.89629068737        0.107086844188    
+     3.90831627591        0.106067194582    
+     3.92034186445        0.105054063639    
+     3.93236745299        0.104047427043    
+     3.94439304153        0.103047259922    
+     3.95641863007        0.102053536873    
+     3.96844421861        0.101066231978    
+     3.98046980716        0.100085318822    
+     3.99249539570        0.991107705099E-01
+     4.00452098424        0.981425596828E-01
+     4.01654657278        0.971806585360E-01
+     4.02857216132        0.962250388345E-01
+     4.04059774986        0.952756719291E-01
+     4.05262333840        0.943325287720E-01
+     4.06464892694        0.933955799321E-01
+     4.07667451549        0.924647956102E-01
+     4.08870010403        0.915401456533E-01
+     4.10072569257        0.906215995696E-01
+     4.11275128111        0.897091265421E-01
+     4.12477686965        0.888026954426E-01
+     4.13680245819        0.879022748451E-01
+     4.14882804673        0.870078330395E-01
+     4.16085363527        0.861193380436E-01
+     4.17287922382        0.852367576169E-01
+     4.18490481236        0.843600592723E-01
+     4.19693040090        0.834892102886E-01
+     4.20895598944        0.826241777221E-01
+     4.22098157798        0.817649284187E-01
+     4.23300716652        0.809114290250E-01
+     4.24503275506        0.800636459991E-01
+     4.25705834360        0.792215456222E-01
+     4.26908393215        0.783850940087E-01
+     4.28110952069        0.775542571168E-01
+     4.29313510923        0.767290007587E-01
+     4.30516069777        0.759092906105E-01
+     4.31718628631        0.750950922221E-01
+     4.32921187485        0.742863710262E-01
+     4.34123746339        0.734830923482E-01
+     4.35326305193        0.726852214148E-01
+     4.36528864048        0.718927233630E-01
+     4.37731422902        0.711055632485E-01
+     4.38933981756        0.703237060546E-01
+     4.40136540610        0.695471166998E-01
+     4.41339099464        0.687757600464E-01
+     4.42541658318        0.680096009079E-01
+     4.43744217172        0.672486040566E-01
+     4.44946776026        0.664927342312E-01
+     4.46149334881        0.657419561440E-01
+     4.47351893735        0.649962344878E-01
+     4.48554452589        0.642555339427E-01
+     4.49757011443        0.635198191830E-01
+     4.50959570297        0.627890548835E-01
+     4.52162129151        0.620632057260E-01
+     4.53364688005        0.613422364049E-01
+     4.54567246859        0.606261116340E-01
+     4.55769805714        0.599147961516E-01
+     4.56972364568        0.592082547262E-01
+     4.58174923422        0.585064521624E-01
+     4.59377482276        0.578093533056E-01
+     4.60580041130        0.571169230476E-01
+     4.61782599984        0.564291263313E-01
+     4.62985158838        0.557459281559E-01
+     4.64187717692        0.550672935810E-01
+     4.65390276547        0.543931877317E-01
+     4.66592835401        0.537235758028E-01
+     4.67795394255        0.530584230627E-01
+     4.68997953109        0.523976948581E-01
+     4.70200511963        0.517413566175E-01
+     4.71403070817        0.510893738551E-01
+     4.72605629671        0.504417121747E-01
+     4.73808188525        0.497983372732E-01
+     4.75010747380        0.491592149438E-01
+     4.76213306234        0.485243110798E-01
+     4.77415865088        0.478935916772E-01
+     4.78618423942        0.472670228383E-01
+     4.79820982796        0.466445707743E-01
+     4.81023541650        0.460262018083E-01
+     4.82226100504        0.454118823779E-01
+     4.83428659359        0.448015790379E-01
+     4.84631218213        0.441952584630E-01
+     4.85833777067        0.435928874498E-01
+     4.87036335921        0.429944329193E-01
+     4.88238894775        0.423998619190E-01
+     4.89441453629        0.418091416252E-01
+     4.90644012483        0.412222393449E-01
+     4.91846571337        0.406391225174E-01
+     4.93049130192        0.400597587164E-01
+     4.94251689046        0.394841156517E-01
+     4.95454247900        0.389121611708E-01
+     4.96656806754        0.383438632602E-01
+     4.97859365608        0.377791900471E-01
+     4.99061924462        0.372181098008E-01
+     5.00264483316        0.366605909338E-01
+     5.01467042170        0.361066020029E-01
+     5.02669601025        0.355561117108E-01
+     5.03872159879        0.350090889066E-01
+     5.05074718733        0.344655025870E-01
+     5.06277277587        0.339253218973E-01
+     5.07479836441        0.333885161319E-01
+     5.08682395295        0.328550547355E-01
+     5.09884954149        0.323249073033E-01
+     5.11087513003        0.317980435821E-01
+     5.12290071858        0.312744334705E-01
+     5.13492630712        0.307540470195E-01
+     5.14695189566        0.302368544330E-01
+     5.15897748420        0.297228260682E-01
+     5.17100307274        0.292119324357E-01
+     5.18302866128        0.287041442001E-01
+     5.19505424982        0.281994321800E-01
+     5.20707983836        0.276977673480E-01
+     5.21910542691        0.271991208312E-01
+     5.23113101545        0.267034639109E-01
+     5.24315660399        0.262107680228E-01
+     5.25518219253        0.257210047569E-01
+     5.26720778107        0.252341458574E-01
+     5.27923336961        0.247501632226E-01
+     5.29125895815        0.242690289046E-01
+     5.30328454669        0.237907151094E-01
+     5.31531013524        0.233151941963E-01
+     5.32733572378        0.228424386778E-01
+     5.33936131232        0.223724212191E-01
+     5.35138690086        0.219051146380E-01
+     5.36341248940        0.214404919044E-01
+     5.37543807794        0.209785261395E-01
+     5.38746366648        0.205191906158E-01
+     5.39948925502        0.200624587565E-01
+     5.41151484357        0.196083041347E-01
+     5.42354043211        0.191567004732E-01
+     5.43556602065        0.187076216436E-01
+     5.44759160919        0.182610416657E-01
+     5.45961719773        0.178169347073E-01
+     5.47164278627        0.173752750829E-01
+     5.48366837481        0.169360372534E-01
+     5.49569396335        0.164991958252E-01
+     5.50771955190        0.160647255497E-01
+     5.51974514044        0.156326013220E-01
+     5.53177072898        0.152027981809E-01
+     5.54379631752        0.147752913073E-01
+     5.55582190606        0.143500560238E-01
+     5.56784749460        0.139270677941E-01
+     5.57987308314        0.135063022214E-01
+     5.59189867168        0.130877350482E-01
+     5.60392426023        0.126713421551E-01
+     5.61594984877        0.122570995598E-01
+     5.62797543731        0.118449834167E-01
+     5.64000102585        0.114349700150E-01
+     5.65202661439        0.110270357788E-01
+     5.66405220293        0.106211572656E-01
+     5.67607779147        0.102173111650E-01
+     5.68810338001        0.981547429866E-02
+     5.70012896856        0.941562361828E-02
+     5.71215455710        0.901773620527E-02
+     5.72418014564        0.862178926945E-02
+     5.73620573418        0.822776014812E-02
+     5.74823132272        0.783562630498E-02
+     5.76025691126        0.744536532905E-02
+     5.77228249980        0.705695493374E-02
+     5.78430808834        0.667037295572E-02
+     5.79633367689        0.628559735386E-02
+     5.80835926543        0.590260620817E-02
+     5.82038485397        0.552137771910E-02
+     5.83241044251        0.514189020495E-02
+     5.84443603105        0.476412210303E-02
+     5.85646161959        0.438805196720E-02
+     5.86848720813        0.401365846706E-02
+     5.88051279667        0.364092038688E-02
+     5.89253838522        0.326981662639E-02
+     5.90456397376        0.290032619201E-02
+     5.91658956230        0.253242820688E-02
+     5.92861515084        0.216610190291E-02
+     5.94064073938        0.180132662125E-02
+     5.95266632792        0.143808181124E-02
+     5.96469191646        0.107634676591E-02
+     5.97671750500        0.716101653325E-03
+     5.98874309355        0.357326090176E-03
+     6.00076868209         0.00000000000    
+  0  4  2  0  0.000000   #orbital l, n, z, is_polarized, population
+ 500    0.117286709851E-01     5.85260682156     # npts, delta, cutoff
+     0.00000000000        0.644029599560E-01
+    0.117286709851E-01    0.644186611955E-01
+    0.234573419702E-01    0.644667821547E-01
+    0.351860129553E-01    0.645469971889E-01
+    0.469146839404E-01    0.646593263922E-01
+    0.586433549255E-01    0.648037978753E-01
+    0.703720259105E-01    0.649804477300E-01
+    0.821006968956E-01    0.651893199863E-01
+    0.938293678807E-01    0.654304665640E-01
+    0.105558038866        0.657039472136E-01
+    0.117286709851        0.660098294498E-01
+    0.129015380836        0.663481884653E-01
+    0.140744051821        0.667191070589E-01
+    0.152472722806        0.671226755173E-01
+    0.164201393791        0.675589915224E-01
+    0.175930064776        0.680281600221E-01
+    0.187658735761        0.685302931030E-01
+    0.199387406747        0.690655098444E-01
+    0.211116077732        0.696339361668E-01
+    0.222844748717        0.702357046617E-01
+    0.234573419702        0.708709544132E-01
+    0.246302090687        0.715398307988E-01
+    0.258030761672        0.722424852885E-01
+    0.269759432657        0.729790752130E-01
+    0.281488103642        0.737497635346E-01
+    0.293216774627        0.745547185840E-01
+    0.304945445612        0.753941137973E-01
+    0.316674116597        0.762681274231E-01
+    0.328402787583        0.771769422173E-01
+    0.340131458568        0.781207451218E-01
+    0.351860129553        0.790997269159E-01
+    0.363588800538        0.801140818564E-01
+    0.375317471523        0.811640072924E-01
+    0.387046142508        0.822497032559E-01
+    0.398774813493        0.833713720363E-01
+    0.410503484478        0.845292177260E-01
+    0.422232155463        0.857234457454E-01
+    0.433960826448        0.869542623396E-01
+    0.445689497433        0.882218740541E-01
+    0.457418168419        0.895264871776E-01
+    0.469146839404        0.908683071619E-01
+    0.480875510389        0.922475380130E-01
+    0.492604181374        0.936643816488E-01
+    0.504332852359        0.951190372333E-01
+    0.516061523344        0.966117004734E-01
+    0.527790194329        0.981425628870E-01
+    0.539518865314        0.997118110401E-01
+    0.551247536299        0.101319625748    
+    0.562976207284        0.102966181242    
+    0.574704878269        0.104651644304    
+    0.586433549255        0.106376173365    
+    0.598162220240        0.108139917568    
+    0.609890891225        0.109943015791    
+    0.621619562210        0.111785595640    
+    0.633348233195        0.113667772399    
+    0.645076904180        0.115589647944    
+    0.656805575165        0.117551309626    
+    0.668534246150        0.119552829104    
+    0.680262917135        0.121594261152    
+    0.691991588120        0.123675642426    
+    0.703720259105        0.125796990189    
+    0.715448930091        0.127958301006    
+    0.727177601076        0.130159549402    
+    0.738906272061        0.132400686484    
+    0.750634943046        0.134681638530    
+    0.762363614031        0.137002305547    
+    0.774092285016        0.139362559798    
+    0.785820956001        0.141762244298    
+    0.797549626986        0.144201171286    
+    0.809278297971        0.146679120671    
+    0.821006968956        0.149195838453    
+    0.832735639941        0.151751035136    
+    0.844464310926        0.154344384104    
+    0.856192981912        0.156975520008    
+    0.867921652897        0.159644037127    
+    0.879650323882        0.162349487731    
+    0.891378994867        0.165091380444    
+    0.903107665852        0.167869178608    
+    0.914836336837        0.170682298660    
+    0.926565007822        0.173530108521    
+    0.938293678807        0.176411926010    
+    0.950022349792        0.179327017280    
+    0.961751020777        0.182274595295    
+    0.973479691762        0.185253818338    
+    0.985208362748        0.188263788578    
+    0.996937033733        0.191303550688    
+     1.00866570472        0.194372090521    
+     1.02039437570        0.197468333876    
+     1.03212304669        0.200591145335    
+     1.04385171767        0.203739327164    
+     1.05558038866        0.206911618386    
+     1.06730905964        0.210106693883    
+     1.07903773063        0.213323163668    
+     1.09076640161        0.216559572264    
+     1.10249507260        0.219814398241    
+     1.11422374358        0.223086053887    
+     1.12595241457        0.226372885042    
+     1.13768108555        0.229673171121    
+     1.14940975654        0.232985125289    
+     1.16113842752        0.236306894864    
+     1.17286709851        0.239636561882    
+     1.18459576949        0.242972143898    
+     1.19632444048        0.246311595021    
+     1.20805311146        0.249652807152    
+     1.21978178245        0.252993611461    
+     1.23151045343        0.256331780153    
+     1.24323912442        0.259665028439    
+     1.25496779540        0.262991016782    
+     1.26669646639        0.266307353437    
+     1.27842513737        0.269611597243    
+     1.29015380836        0.272901260681    
+     1.30188247935        0.276173813222    
+     1.31361115033        0.279426684971    
+     1.32533982132        0.282657270568    
+     1.33706849230        0.285862933381    
+     1.34879716329        0.289041009970    
+     1.36052583427        0.292188814828    
+     1.37225450526        0.295303645390    
+     1.38398317624        0.298382787304    
+     1.39571184723        0.301423519933    
+     1.40744051821        0.304423122122    
+     1.41916918920        0.307378878177    
+     1.43089786018        0.310288084044    
+     1.44262653117        0.313148053703    
+     1.45435520215        0.315956125726    
+     1.46608387314        0.318709669984    
+     1.47781254412        0.321406094488    
+     1.48954121511        0.324042852342    
+     1.50126988609        0.326617448760    
+     1.51299855708        0.329127448154    
+     1.52472722806        0.331570481237    
+     1.53645589905        0.333944252102    
+     1.54818457003        0.336246545263    
+     1.55991324102        0.338475232642    
+     1.57164191200        0.340628280412    
+     1.58337058299        0.342703755695    
+     1.59509925397        0.344699833093    
+     1.60682792496        0.346614800975    
+     1.61855659594        0.348447067497    
+     1.63028526693        0.350195166339    
+     1.64201393791        0.351857762084    
+     1.65374260890        0.353433655215    
+     1.66547127988        0.354921786702    
+     1.67719995087        0.356321242131    
+     1.68892862185        0.357631255329    
+     1.70065729284        0.358851211477    
+     1.71238596382        0.359980649634    
+     1.72411463481        0.361019264682    
+     1.73584330579        0.361966908633    
+     1.74757197678        0.362823591278    
+     1.75930064776        0.363589480144    
+     1.77102931875        0.364264899739    
+     1.78275798973        0.364850330052    
+     1.79448666072        0.365346404296    
+     1.80621533170        0.365753905871    
+     1.81794400269        0.366073764526    
+     1.82967267367        0.366307051704    
+     1.84140134466        0.366454975061    
+     1.85313001564        0.366518872160    
+     1.86485868663        0.366500203295    
+     1.87658735761        0.366400543417    
+     1.88831602860        0.366221573322    
+     1.90004469958        0.365965069845    
+     1.91177337057        0.365632895355    
+     1.92350204155        0.365226986192    
+     1.93523071254        0.364749340271    
+     1.94695938352        0.364202003469    
+     1.95868805451        0.363587055464    
+     1.97041672550        0.362906596678    
+     1.98214539648        0.362162730827    
+     1.99387406747        0.361357547389    
+     2.00560273845        0.360493108219    
+     2.01733140944        0.359571424562    
+     2.02906008042        0.358594450299    
+     2.04078875141        0.357564091607    
+     2.05251742239        0.356482203727    
+     2.06424609338        0.355350590748    
+     2.07597476436        0.354171007620    
+     2.08770343535        0.352945163117    
+     2.09943210633        0.351674723311    
+     2.11116077732        0.350361306558    
+     2.12288944830        0.349006485748    
+     2.13461811929        0.347611787871    
+     2.14634679027        0.346178702087    
+     2.15807546126        0.344708679828    
+     2.16980413224        0.343203132036    
+     2.18153280323        0.341663431101    
+     2.19326147421        0.340090912915    
+     2.20499014520        0.338486877362    
+     2.21671881618        0.336852589478    
+     2.22844748717        0.335189280224    
+     2.24017615815        0.333498147526    
+     2.25190482914        0.331780357157    
+     2.26363350012        0.330037043614    
+     2.27536217111        0.328269310965    
+     2.28709084209        0.326478233680    
+     2.29881951308        0.324664857431    
+     2.31054818406        0.322830199864    
+     2.32227685505        0.320975251364    
+     2.33400552603        0.319100975774    
+     2.34573419702        0.317208311109    
+     2.35746286800        0.315298170243    
+     2.36919153899        0.313371441577    
+     2.38092020997        0.311428989692    
+     2.39264888096        0.309471655964    
+     2.40437755194        0.307500259174    
+     2.41610622293        0.305515596104    
+     2.42783489391        0.303518442109    
+     2.43956356490        0.301509551665    
+     2.45129223588        0.299489658929    
+     2.46302090687        0.297459478251    
+     2.47474957785        0.295419704670    
+     2.48647824884        0.293371014364    
+     2.49820691982        0.291314065400    
+     2.50993559081        0.289249497740    
+     2.52166426179        0.287177934074    
+     2.53339293278        0.285099979541    
+     2.54512160376        0.283016223741    
+     2.55685027475        0.280927240323    
+     2.56857894573        0.278833588259    
+     2.58030761672        0.276735810303    
+     2.59203628770        0.274634434256    
+     2.60376495869        0.272529972737    
+     2.61549362968        0.270422924412    
+     2.62722230066        0.268313773923    
+     2.63895097165        0.266202992249    
+     2.65067964263        0.264091037113    
+     2.66240831362        0.261978353344    
+     2.67413698460        0.259865373150    
+     2.68586565559        0.257752516460    
+     2.69759432657        0.255640191225    
+     2.70932299756        0.253528793720    
+     2.72105166854        0.251418708830    
+     2.73278033953        0.249310310328    
+     2.74450901051        0.247203961167    
+     2.75623768150        0.245100013733    
+     2.76796635248        0.242998810116    
+     2.77969502347        0.240900682353    
+     2.79142369445        0.238805952674    
+     2.80315236544        0.236714933743    
+     2.81488103642        0.234627928898    
+     2.82660970741        0.232545232369    
+     2.83833837839        0.230467129508    
+     2.85006704938        0.228393896999    
+     2.86179572036        0.226325803069    
+     2.87352439135        0.224263107694    
+     2.88525306233        0.222206062800    
+     2.89698173332        0.220154912455    
+     2.90871040430        0.218109893061    
+     2.92043907529        0.216071233540    
+     2.93216774627        0.214039155512    
+     2.94389641726        0.212013873471    
+     2.95562508824        0.209995594961    
+     2.96735375923        0.207984520739    
+     2.97908243021        0.205980844941    
+     2.99081110120        0.203984755238    
+     3.00253977218        0.201996432999    
+     3.01426844317        0.200016053434    
+     3.02599711415        0.198043785747    
+     3.03772578514        0.196079793282    
+     3.04945445612        0.194124233657    
+     3.06118312711        0.192177258909    
+     3.07291179809        0.190239015626    
+     3.08464046908        0.188309645075    
+     3.09636914006        0.186389283335    
+     3.10809781105        0.184478061415    
+     3.11982648203        0.182576105384    
+     3.13155515302        0.180683536484    
+     3.14328382400        0.178800471245    
+     3.15501249499        0.176927021606    
+     3.16674116597        0.175063295016    
+     3.17846983696        0.173209394547    
+     3.19019850794        0.171365419001    
+     3.20192717893        0.169531463006    
+     3.21365584991        0.167707617124    
+     3.22538452090        0.165893967944    
+     3.23711319188        0.164090598180    
+     3.24884186287        0.162297586763    
+     3.26057053386        0.160515008932    
+     3.27229920484        0.158742936326    
+     3.28402787583        0.156981437065    
+     3.29575654681        0.155230575843    
+     3.30748521780        0.153490414002    
+     3.31921388878        0.151761009619    
+     3.33094255977        0.150042417584    
+     3.34267123075        0.148334689675    
+     3.35439990174        0.146637874637    
+     3.36612857272        0.144952018251    
+     3.37785724371        0.143277163410    
+     3.38958591469        0.141613350186    
+     3.40131458568        0.139960615903    
+     3.41304325666        0.138318995200    
+     3.42477192765        0.136688520098    
+     3.43650059863        0.135069220065    
+     3.44822926962        0.133461122076    
+     3.45995794060        0.131864250677    
+     3.47168661159        0.130278628044    
+     3.48341528257        0.128704274041    
+     3.49514395356        0.127141206278    
+     3.50687262454        0.125589440164    
+     3.51860129553        0.124048988966    
+     3.53032996651        0.122519863861    
+     3.54205863750        0.121002073985    
+     3.55378730848        0.119495626489    
+     3.56551597947        0.118000526587    
+     3.57724465045        0.116516777603    
+     3.58897332144        0.115044381022    
+     3.60070199242        0.113583336535    
+     3.61243066341        0.112133642085    
+     3.62415933439        0.110695293913    
+     3.63588800538        0.109268286600    
+     3.64761667636        0.107852613113    
+     3.65934534735        0.106448264844    
+     3.67107401833        0.105055231651    
+     3.68280268932        0.103673501902    
+     3.69453136030        0.102303062513    
+     3.70626003129        0.100943898983    
+     3.71798870227        0.995959954377E-01
+     3.72971737326        0.982593346622E-01
+     3.74144604424        0.969338981399E-01
+     3.75317471523        0.956196660872E-01
+     3.76490338621        0.943166174886E-01
+     3.77663205720        0.930247301307E-01
+     3.78836072818        0.917439806364E-01
+     3.80008939917        0.904743444969E-01
+     3.81181807015        0.892157961046E-01
+     3.82354674114        0.879683087845E-01
+     3.83527541212        0.867318548251E-01
+     3.84700408311        0.855064055087E-01
+     3.85873275409        0.842919311412E-01
+     3.87046142508        0.830884010812E-01
+     3.88219009606        0.818957837690E-01
+     3.89391876705        0.807140467541E-01
+     3.90564743804        0.795431567231E-01
+     3.91737610902        0.783830795264E-01
+     3.92910478001        0.772337802046E-01
+     3.94083345099        0.760952230149E-01
+     3.95256212198        0.749673714558E-01
+     3.96429079296        0.738501882924E-01
+     3.97601946395        0.727436355810E-01
+     3.98774813493        0.716476746926E-01
+     3.99947680592        0.705622663369E-01
+     4.01120547690        0.694873705850E-01
+     4.02293414789        0.684229468921E-01
+     4.03466281887        0.673689541194E-01
+     4.04639148986        0.663253505560E-01
+     4.05812016084        0.652920939403E-01
+     4.06984883183        0.642691414803E-01
+     4.08157750281        0.632564498749E-01
+     4.09330617380        0.622539753332E-01
+     4.10503484478        0.612616735943E-01
+     4.11676351577        0.602794999470E-01
+     4.12849218675        0.593074092479E-01
+     4.14022085774        0.583453559403E-01
+     4.15194952872        0.573932940722E-01
+     4.16367819971        0.564511773139E-01
+     4.17540687069        0.555189589755E-01
+     4.18713554168        0.545965920239E-01
+     4.19886421266        0.536840290995E-01
+     4.21059288365        0.527812225322E-01
+     4.22232155463        0.518881243578E-01
+     4.23405022562        0.510046863329E-01
+     4.24577889660        0.501308599510E-01
+     4.25750756759        0.492665964567E-01
+     4.26923623857        0.484118468609E-01
+     4.28096490956        0.475665619545E-01
+     4.29269358054        0.467306923232E-01
+     4.30442225153        0.459041883604E-01
+     4.31615092251        0.450870002807E-01
+     4.32787959350        0.442790781337E-01
+     4.33960826448        0.434803718157E-01
+     4.35133693547        0.426908310828E-01
+     4.36306560645        0.419104055630E-01
+     4.37479427744        0.411390447678E-01
+     4.38652294842        0.403766981044E-01
+     4.39825161941        0.396233148864E-01
+     4.40998029039        0.388788443452E-01
+     4.42170896138        0.381432356409E-01
+     4.43343763236        0.374164378724E-01
+     4.44516630335        0.366984000883E-01
+     4.45689497433        0.359890712962E-01
+     4.46862364532        0.352884004729E-01
+     4.48035231630        0.345963365737E-01
+     4.49208098729        0.339128285420E-01
+     4.50380965827        0.332378253178E-01
+     4.51553832926        0.325712758468E-01
+     4.52726700024        0.319131290890E-01
+     4.53899567123        0.312633340267E-01
+     4.55072434221        0.306218396729E-01
+     4.56245301320        0.299885950789E-01
+     4.57418168419        0.293635493421E-01
+     4.58591035517        0.287466516133E-01
+     4.59763902616        0.281378511040E-01
+     4.60936769714        0.275370970932E-01
+     4.62109636813        0.269443389343E-01
+     4.63282503911        0.263595260620E-01
+     4.64455371010        0.257826079981E-01
+     4.65628238108        0.252135343580E-01
+     4.66801105207        0.246522548568E-01
+     4.67973972305        0.240987193147E-01
+     4.69146839404        0.235528776629E-01
+     4.70319706502        0.230146799490E-01
+     4.71492573601        0.224840763420E-01
+     4.72665440699        0.219610171379E-01
+     4.73838307798        0.214454527638E-01
+     4.75011174896        0.209373337835E-01
+     4.76184041995        0.204366109013E-01
+     4.77356909093        0.199432349669E-01
+     4.78529776192        0.194571569793E-01
+     4.79702643290        0.189783280910E-01
+     4.80875510389        0.185066996119E-01
+     4.82048377487        0.180422230132E-01
+     4.83221244586        0.175848499307E-01
+     4.84394111684        0.171345321683E-01
+     4.85566978783        0.166912217018E-01
+     4.86739845881        0.162548706814E-01
+     4.87912712980        0.158254314352E-01
+     4.89085580078        0.154028564719E-01
+     4.90258447177        0.149870984837E-01
+     4.91431314275        0.145781103487E-01
+     4.92604181374        0.141758451337E-01
+     4.93777048472        0.137802560964E-01
+     4.94949915571        0.133912966877E-01
+     4.96122782669        0.130089205538E-01
+     4.97295649768        0.126330815385E-01
+     4.98468516866        0.122637336847E-01
+     4.99641383965        0.119008312367E-01
+     5.00814251063        0.115443286412E-01
+     5.01987118162        0.111941805499E-01
+     5.03159985260        0.108503418200E-01
+     5.04332852359        0.105127675161E-01
+     5.05505719457        0.101814129113E-01
+     5.06678586556        0.985623348866E-02
+     5.07851453654        0.953718494194E-02
+     5.09024320753        0.922422317680E-02
+     5.10197187851        0.891730431172E-02
+     5.11370054950        0.861638467878E-02
+     5.12542922048        0.832142082445E-02
+     5.13715789147        0.803236951020E-02
+     5.14888656245        0.774918771310E-02
+     5.16061523344        0.747183262634E-02
+     5.17234390442        0.720026165964E-02
+     5.18407257541        0.693443243960E-02
+     5.19580124639        0.667430280999E-02
+     5.20752991738        0.641983083189E-02
+     5.21925858837        0.617097478400E-02
+     5.23098725935        0.592769316250E-02
+     5.24271593034        0.568994468114E-02
+     5.25444460132        0.545768827122E-02
+     5.26617327231        0.523088308147E-02
+     5.27790194329        0.500948847770E-02
+     5.28963061428        0.479346404284E-02
+     5.30135928526        0.458276957652E-02
+     5.31308795625        0.437736509470E-02
+     5.32481662723        0.417721082929E-02
+     5.33654529822        0.398226722769E-02
+     5.34827396920        0.379249495246E-02
+     5.36000264019        0.360785488045E-02
+     5.37173131117        0.342830810245E-02
+     5.38345998216        0.325381592244E-02
+     5.39518865314        0.308433985700E-02
+     5.40691732413        0.291984163454E-02
+     5.41864599511        0.276028319441E-02
+     5.43037466610        0.260562668637E-02
+     5.44210333708        0.245583446958E-02
+     5.45383200807        0.231086911172E-02
+     5.46556067905        0.217069338811E-02
+     5.47728935004        0.203527028084E-02
+     5.48901802102        0.190456297765E-02
+     5.50074669201        0.177853487101E-02
+     5.51247536299        0.165714955707E-02
+     5.52420403398        0.154037083460E-02
+     5.53593270496        0.142816270388E-02
+     5.54766137595        0.132048936553E-02
+     5.55939004693        0.121731521951E-02
+     5.57111871792        0.111860486380E-02
+     5.58284738890        0.102432309328E-02
+     5.59457605989        0.934434898521E-03
+     5.60630473087        0.848905464541E-03
+     5.61803340186        0.767700169433E-03
+     5.62976207284        0.690784583303E-03
+     5.64149074383        0.618124466830E-03
+     5.65321941481        0.549685769994E-03
+     5.66494808580        0.485434630738E-03
+     5.67667675678        0.425337374293E-03
+     5.68840542777        0.369360509048E-03
+     5.70013409875        0.317470729327E-03
+     5.71186276974        0.269634911386E-03
+     5.72359144072        0.225820112622E-03
+     5.73532011171        0.185993570153E-03
+     5.74704878269        0.150122705074E-03
+     5.75877745368        0.118175097824E-03
+     5.77050612466        0.901185204879E-04
+     5.78223479565        0.659209145468E-04
+     5.79396346663        0.455503942726E-04
+     5.80569213762        0.289752453557E-04
+     5.81742080860        0.161635886566E-04
+     5.82914947959        0.708469142872E-05
+     5.84087815057        0.170715379296E-05
+     5.85260682156         0.00000000000    
+  2  3  1  0  6.000000   #orbital l, n, z, is_polarized, population
+ 500    0.960258899576E-02     4.79169190889     # npts, delta, cutoff
+     0.00000000000         6.87665059845    
+    0.960258899576E-02     6.87548260340    
+    0.192051779915E-01     6.87196926313    
+    0.288077669873E-01     6.86611677482    
+    0.384103559831E-01     6.85792980214    
+    0.480129449788E-01     6.84741486852    
+    0.576155339746E-01     6.83458036120    
+    0.672181229704E-01     6.81943653281    
+    0.768207119661E-01     6.80199550265    
+    0.864233009619E-01     6.78227125757    
+    0.960258899576E-01     6.76027965277    
+    0.105628478953         6.73603841225    
+    0.115231067949         6.70956712873    
+    0.124833656945         6.68088726293    
+    0.134436245941         6.65002214165    
+    0.144038834936         6.61699695555    
+    0.153641423932         6.58183875547    
+    0.163244012928         6.54457644619    
+    0.172846601924         6.50524078051    
+    0.182449190920         6.46386434971    
+    0.192051779915         6.42048157294    
+    0.201654368911         6.37512868373    
+    0.211256957907         6.32784371407    
+    0.220859546903         6.27866647606    
+    0.230462135898         6.22763854003    
+    0.240064724894         6.17480320987    
+    0.249667313890         6.12020549467    
+    0.259269902886         6.06389207711    
+    0.268872491881         6.00591127777    
+    0.278475080877         5.94631301596    
+    0.288077669873         5.88514876594    
+    0.297680258869         5.82247150965    
+    0.307282847864         5.75833568454    
+    0.316885436860         5.69279712777    
+    0.326488025856         5.62591301544    
+    0.336090614852         5.55774179786    
+    0.345693203848         5.48834313022    
+    0.355295792843         5.41777779905    
+    0.364898381839         5.34610764435    
+    0.374500970835         5.27339547769    
+    0.384103559831         5.19970499592    
+    0.393706148826         5.12510069142    
+    0.403308737822         5.04964775828    
+    0.412911326818         4.97341199528    
+    0.422513915814         4.89645970530    
+    0.432116504809         4.81885759195    
+    0.441719093805         4.74067265353    
+    0.451321682801         4.66197207448    
+    0.460924271797         4.58282311484    
+    0.470526860792         4.50329299812    
+    0.480129449788         4.42344879783    
+    0.489732038784         4.34335732308    
+    0.499334627780         4.26308500385    
+    0.508937216776         4.18269777609    
+    0.518539805771         4.10226096732    
+    0.528142394767         4.02183918301    
+    0.537744983763         3.94149619428    
+    0.547347572759         3.86129482737    
+    0.556950161754         3.78129685519    
+    0.566552750750         3.70156289167    
+    0.576155339746         3.62215228892    
+    0.585757928742         3.54312303811    
+    0.595360517737         3.46453167402    
+    0.604963106733         3.38643318393    
+    0.614565695729         3.30888092115    
+    0.624168284725         3.23192652343    
+    0.633770873720         3.15561983670    
+    0.643373462716         3.08000884434    
+    0.652976051712         3.00513960226    
+    0.662578640708         2.93105618003    
+    0.672181229704         2.85780060823    
+    0.681783818699         2.78541283221    
+    0.691386407695         2.71393067236    
+    0.700988996691         2.64338979092    
+    0.710591585687         2.57382366555    
+    0.720194174682         2.50526356950    
+    0.729796763678         2.43773855847    
+    0.739399352674         2.37127546405    
+    0.749001941670         2.30589889368    
+    0.758604530665         2.24163123703    
+    0.768207119661         2.17849267863    
+    0.777809708657         2.11650121654    
+    0.787412297653         2.05567268674    
+    0.797014886648         1.99602079426    
+    0.806617475644         1.93755714512    
+    0.816220064640         1.88029129883    
+    0.825822653636         1.82423080066    
+    0.835425242632         1.76938122124    
+    0.845027831627         1.71574623944    
+    0.854630420623         1.66332768199    
+    0.864233009619         1.61212558940    
+    0.873835598615         1.56213827939    
+    0.883438187610         1.51336241413    
+    0.893040776606         1.46579306980    
+    0.902643365602         1.41942380810    
+    0.912245954598         1.37424674945    
+    0.921848543593         1.33025264754    
+    0.931451132589         1.28743096477    
+    0.941053721585         1.24576994840    
+    0.950656310581         1.20525670691    
+    0.960258899576         1.16587728646    
+    0.969861488572         1.12761674697    
+    0.979464077568         1.09045923763    
+    0.989066666564         1.05438807162    
+    0.998669255560         1.01938579964    
+     1.00827184456        0.985434282140    
+     1.01787443355        0.952514760073    
+     1.02747702255        0.920607923802    
+     1.03707961154        0.889693980198    
+     1.04668220054        0.859752717588    
+     1.05628478953        0.830763568546    
+     1.06588737853        0.802705670359    
+     1.07548996753        0.775557923044    
+     1.08509255652        0.749299044882    
+     1.09469514552        0.723907625371    
+     1.10429773451        0.699362175542    
+     1.11390032351        0.675641175656    
+     1.12350291250        0.652723120192    
+     1.13310550150        0.630586560161    
+     1.14270809050        0.609210142780    
+     1.15231067949        0.588572648454    
+     1.16191326849        0.568653025161    
+     1.17151585748        0.549430420281    
+     1.18111844648        0.530884209861    
+     1.19072103547        0.512994025438    
+     1.20032362447        0.495739778459    
+     1.20992621347        0.479101682387    
+     1.21952880246        0.463060272556    
+     1.22913139146        0.447596423847    
+     1.23873398045        0.432691366319    
+     1.24833656945        0.418326698849    
+     1.25793915845        0.404484400873    
+     1.26754174744        0.391146842329    
+     1.27714433644        0.378296791916    
+     1.28674692543        0.365917423737    
+     1.29634951443        0.353992322445    
+     1.30595210342        0.342505486958    
+     1.31555469242        0.331441332863    
+     1.32515728142        0.320784693596    
+     1.33475987041        0.310520820478    
+     1.34436245941        0.300635381706    
+     1.35396504840        0.291114460370    
+     1.36356763740        0.281944551600    
+     1.37317022639        0.273112558895    
+     1.38277281539        0.264605789735    
+     1.39237540439        0.256411950541    
+     1.40197799338        0.248519141042    
+     1.41158058238        0.240915848127    
+     1.42118317137        0.233590939241    
+     1.43078576037        0.226533655391    
+     1.44038834936        0.219733603797    
+     1.44999093836        0.213180750265    
+     1.45959352736        0.206865411318    
+     1.46919611635        0.200778246128    
+     1.47879870535        0.194910248303    
+     1.48840129434        0.189252737551    
+     1.49800388334        0.183797351276    
+     1.50760647234        0.178536036121    
+     1.51720906133        0.173461039499    
+     1.52681165033        0.168564901137    
+     1.53641423932        0.163840444660    
+     1.54601682832        0.159280769227    
+     1.55561941731        0.154879241250    
+     1.56522200631        0.150629486208    
+     1.57482459531        0.146525380573    
+     1.58442718430        0.142561043861    
+     1.59402977330        0.138730830815    
+     1.60363236229        0.135029323736    
+     1.61323495129        0.131451324970    
+     1.62283754028        0.127991849546    
+     1.63244012928        0.124646117987    
+     1.64204271828        0.121409549284    
+     1.65164530727        0.118277754040    
+     1.66124789627        0.115246527786    
+     1.67085048526        0.112311844470    
+     1.68045307426        0.109469850110    
+     1.69005566325        0.106716856627    
+     1.69965825225        0.104049335832    
+     1.70926084125        0.101463913587    
+     1.71886343024        0.989573641205E-01
+     1.72846601924        0.965266044985E-01
+     1.73806860823        0.941686892511E-01
+     1.74767119723        0.918808051421E-01
+     1.75727378622        0.896602660830E-01
+     1.76687637522        0.875045081811E-01
+     1.77647896422        0.854110849221E-01
+     1.78608155321        0.833776624750E-01
+     1.79568414221        0.814020151197E-01
+     1.80528673120        0.794820207884E-01
+     1.81488932020        0.776156567166E-01
+     1.82449190920        0.758009951987E-01
+     1.83409449819        0.740361994421E-01
+     1.84369708719        0.723195195179E-01
+     1.85329967618        0.706492884012E-01
+     1.86290226518        0.690239180903E-01
+     1.87250485417        0.674418958132E-01
+     1.88210744317        0.659017803091E-01
+     1.89171003217        0.644021981907E-01
+     1.90131262116        0.629418403628E-01
+     1.91091521016        0.615194585254E-01
+     1.92051779915        0.601338617219E-01
+     1.93012038815        0.587839129645E-01
+     1.93972297714        0.574685259221E-01
+     1.94932556614        0.561866614801E-01
+     1.95892815514        0.549373248895E-01
+     1.96853074413        0.537195624154E-01
+     1.97813333313        0.525324582249E-01
+     1.98773592212        0.513751310493E-01
+     1.99733851112        0.502467323681E-01
+     2.00694110011        0.491464417204E-01
+     2.01654368911        0.480734655634E-01
+     2.02614627811        0.470270343883E-01
+     2.03574886710        0.460064039134E-01
+     2.04535145610        0.450108530509E-01
+     2.05495404509        0.440396831419E-01
+     2.06455663409        0.430922172703E-01
+     2.07415922309        0.421677997472E-01
+     2.08376181208        0.412657950192E-01
+     2.09336440108        0.403855871704E-01
+     2.10296699007        0.395265792176E-01
+     2.11256957907        0.386881924937E-01
+     2.12217216806        0.378698660190E-01
+     2.13177475706        0.370710559237E-01
+     2.14137734606        0.362912348343E-01
+     2.15097993505        0.355298913336E-01
+     2.16058252405        0.347865294399E-01
+     2.17018511304        0.340606680860E-01
+     2.17978770204        0.333518406292E-01
+     2.18939029103        0.326595943683E-01
+     2.19899288003        0.319834900869E-01
+     2.20859546903        0.313231016085E-01
+     2.21819805802        0.306780153704E-01
+     2.22780064702        0.300478300106E-01
+     2.23740323601        0.294321559703E-01
+     2.24700582501        0.288306151103E-01
+     2.25660841400        0.282428403407E-01
+     2.26621100300        0.276684752646E-01
+     2.27581359200        0.271071738329E-01
+     2.28541618099        0.265586000123E-01
+     2.29501876999        0.260224274645E-01
+     2.30462135898        0.254983392367E-01
+     2.31422394798        0.249860274625E-01
+     2.32382653698        0.244851930738E-01
+     2.33342912597        0.239955455218E-01
+     2.34303171497        0.235168025087E-01
+     2.35263430396        0.230486897275E-01
+     2.36223689296        0.225909406120E-01
+     2.37183948195        0.221432960938E-01
+     2.38144207095        0.217055043695E-01
+     2.39104465995        0.212773206736E-01
+     2.40064724894        0.208585070610E-01
+     2.41024983794        0.204488321956E-01
+     2.41985242693        0.200480711473E-01
+     2.42945501593        0.196560051946E-01
+     2.43905760492        0.192724216345E-01
+     2.44866019392        0.188971135990E-01
+     2.45826278292        0.185298798769E-01
+     2.46786537191        0.181705247420E-01
+     2.47746796091        0.178188577874E-01
+     2.48707054990        0.174746937623E-01
+     2.49667313890        0.171378524268E-01
+     2.50627572789        0.168081583862E-01
+     2.51587831689        0.164854409540E-01
+     2.52548090589        0.161695340163E-01
+     2.53508349488        0.158602758731E-01
+     2.54468608388        0.155575091554E-01
+     2.55428867287        0.152610806612E-01
+     2.56389126187        0.149708412721E-01
+     2.57349385086        0.146866457707E-01
+     2.58309643986        0.144083527635E-01
+     2.59269902886        0.141358245389E-01
+     2.60230161785        0.138689269937E-01
+     2.61190420685        0.136075295107E-01
+     2.62150679584        0.133515048613E-01
+     2.63110938484        0.131007291112E-01
+     2.64071197384        0.128550815204E-01
+     2.65031456283        0.126144444554E-01
+     2.65991715183        0.123787033004E-01
+     2.66951974082        0.121477463698E-01
+     2.67912232982        0.119214648261E-01
+     2.68872491881        0.116997525988E-01
+     2.69832750781        0.114825063067E-01
+     2.70793009681        0.112696251816E-01
+     2.71753268580        0.110610109954E-01
+     2.72713527480        0.108565679887E-01
+     2.73673786379        0.106562028020E-01
+     2.74634045279        0.104598244091E-01
+     2.75594304178        0.102673440520E-01
+     2.76554563078        0.100786751785E-01
+     2.77514821978        0.989373338084E-02
+     2.78475080877        0.971243633704E-02
+     2.79435339777        0.953470375340E-02
+     2.80395598676        0.936045730919E-02
+     2.81355857576        0.918962060270E-02
+     2.82316116475        0.902211909904E-02
+     2.83276375375        0.885788007956E-02
+     2.84236634275        0.869683259252E-02
+     2.85196893174        0.853890740556E-02
+     2.86157152074        0.838403695936E-02
+     2.87117410973        0.823215532277E-02
+     2.88077669873        0.808319814922E-02
+     2.89037928773        0.793710263445E-02
+     2.89998187672        0.779380747553E-02
+     2.90958446572        0.765325283089E-02
+     2.91918705471        0.751538028174E-02
+     2.92878964371        0.738013279447E-02
+     2.93839223270        0.724745468428E-02
+     2.94799482170        0.711729157965E-02
+     2.95759741070        0.698959038809E-02
+     2.96719999969        0.686429926265E-02
+     2.97680258869        0.674136756959E-02
+     2.98640517768        0.662074585682E-02
+     2.99600776668        0.650238582331E-02
+     3.00561035567        0.638624028942E-02
+     3.01521294467        0.627226316798E-02
+     3.02481553367        0.616040943624E-02
+     3.03441812266        0.605063510859E-02
+     3.04402071166        0.594289721009E-02
+     3.05362330065        0.583715375073E-02
+     3.06322588965        0.573336370036E-02
+     3.07282847864        0.563148696442E-02
+     3.08243106764        0.553148436024E-02
+     3.09203365664        0.543331759412E-02
+     3.10163624563        0.533694923888E-02
+     3.11123883463        0.524234271222E-02
+     3.12084142362        0.514946225554E-02
+     3.13044401262        0.505827291342E-02
+     3.14004660162        0.496874051357E-02
+     3.14964919061        0.488083164749E-02
+     3.15925177961        0.479451365147E-02
+     3.16885436860        0.470975458828E-02
+     3.17845695760        0.462652322921E-02
+     3.18805954659        0.454478903669E-02
+     3.19766213559        0.446452214737E-02
+     3.20726472459        0.438569335564E-02
+     3.21686731358        0.430827409754E-02
+     3.22646990258        0.423223643523E-02
+     3.23607249157        0.415755304175E-02
+     3.24567508057        0.408419718628E-02
+     3.25527766956        0.401214271972E-02
+     3.26488025856        0.394136406066E-02
+     3.27448284756        0.387183618181E-02
+     3.28408543655        0.380353459669E-02
+     3.29368802555        0.373643534668E-02
+     3.30329061454        0.367051498848E-02
+     3.31289320354        0.360575058182E-02
+     3.32249579253        0.354211967755E-02
+     3.33209838153        0.347960030602E-02
+     3.34170097053        0.341817096572E-02
+     3.35130355952        0.335781061231E-02
+     3.36090614852        0.329849864780E-02
+     3.37050873751        0.324021491021E-02
+     3.38011132651        0.318293966324E-02
+     3.38971391550        0.312665358642E-02
+     3.39931650450        0.307133776543E-02
+     3.40891909350        0.301697368266E-02
+     3.41852168249        0.296354320800E-02
+     3.42812427149        0.291102858990E-02
+     3.43772686048        0.285941244668E-02
+     3.44732944948        0.280867775797E-02
+     3.45693203848        0.275880785644E-02
+     3.46653462747        0.270978641975E-02
+     3.47613721647        0.266159746263E-02
+     3.48573980546        0.261422532919E-02
+     3.49534239446        0.256765468551E-02
+     3.50494498345        0.252187051226E-02
+     3.51454757245        0.247685809760E-02
+     3.52415016145        0.243260303028E-02
+     3.53375275044        0.238909119281E-02
+     3.54335533944        0.234630875492E-02
+     3.55295792843        0.230424216707E-02
+     3.56256051743        0.226287815421E-02
+     3.57216310642        0.222220370962E-02
+     3.58176569542        0.218220608897E-02
+     3.59136828442        0.214287280447E-02
+     3.60097087341        0.210419161919E-02
+     3.61057346241        0.206615054150E-02
+     3.62017605140        0.202873781968E-02
+     3.62977864040        0.199194193664E-02
+     3.63938122939        0.195575160474E-02
+     3.64898381839        0.192015576078E-02
+     3.65858640739        0.188514356107E-02
+     3.66818899638        0.185070437669E-02
+     3.67779158538        0.181682778877E-02
+     3.68739417437        0.178350358394E-02
+     3.69699676337        0.175072174985E-02
+     3.70659935237        0.171847247089E-02
+     3.71620194136        0.168674612387E-02
+     3.72580453036        0.165553327393E-02
+     3.73540711935        0.162482467045E-02
+     3.74500970835        0.159461124315E-02
+     3.75461229734        0.156488409817E-02
+     3.76421488634        0.153563451436E-02
+     3.77381747534        0.150685393958E-02
+     3.78342006433        0.147853398710E-02
+     3.79302265333        0.145066643208E-02
+     3.80262524232        0.142324320819E-02
+     3.81222783132        0.139625640422E-02
+     3.82183042031        0.136969826082E-02
+     3.83143300931        0.134356116731E-02
+     3.84103559831        0.131783765856E-02
+     3.85063818730        0.129252041195E-02
+     3.86024077630        0.126760224436E-02
+     3.86984336529        0.124307610931E-02
+     3.87944595429        0.121893509407E-02
+     3.88904854328        0.119517241689E-02
+     3.89865113228        0.117178142432E-02
+     3.90825372128        0.114875558852E-02
+     3.91785631027        0.112608850468E-02
+     3.92745889927        0.110377388847E-02
+     3.93706148826        0.108180557358E-02
+     3.94666407726        0.106017750932E-02
+     3.95626666626        0.103888375818E-02
+     3.96586925525        0.101791849361E-02
+     3.97547184425        0.997275997666E-03
+     3.98507443324        0.976950658873E-03
+     3.99467702224        0.956936970018E-03
+     4.00427961123        0.937229526049E-03
+     4.01388220023        0.917823022019E-03
+     4.02348478923        0.898712251038E-03
+     4.03308737822        0.879892102317E-03
+     4.04268996722        0.861357559227E-03
+     4.05229255621        0.843103697407E-03
+     4.06189514521        0.825125682920E-03
+     4.07149773420        0.807418770437E-03
+     4.08110032320        0.789978301471E-03
+     4.09070291220        0.772799702648E-03
+     4.10030550119        0.755878484005E-03
+     4.10990809019        0.739210237354E-03
+     4.11951067918        0.722790634636E-03
+     4.12911326818        0.706615426348E-03
+     4.13871585717        0.690680439992E-03
+     4.14831844617        0.674981578557E-03
+     4.15792103517        0.659514819027E-03
+     4.16752362416        0.644276210939E-03
+     4.17712621316        0.629261874951E-03
+     4.18672880215        0.614468001452E-03
+     4.19633139115        0.599890849202E-03
+     4.20593398014        0.585526743994E-03
+     4.21553656914        0.571372077361E-03
+     4.22513915814        0.557423305281E-03
+     4.23474174713        0.543676946937E-03
+     4.24434433613        0.530129583490E-03
+     4.25394692512        0.516777856882E-03
+     4.26354951412        0.503618468660E-03
+     4.27315210312        0.490648178834E-03
+     4.28275469211        0.477863804742E-03
+     4.29235728111        0.465262219955E-03
+     4.30195987010        0.452840353201E-03
+     4.31156245910        0.440595187301E-03
+     4.32116504809        0.428523758147E-03
+     4.33076763709        0.416623153678E-03
+     4.34037022609        0.404890512891E-03
+     4.34997281508        0.393323024875E-03
+     4.35957540408        0.381917927854E-03
+     4.36917799307        0.370672508256E-03
+     4.37878058207        0.359584099810E-03
+     4.38838317106        0.348650082634E-03
+     4.39798576006        0.337867882375E-03
+     4.40758834906        0.327234969343E-03
+     4.41719093805        0.316748857673E-03
+     4.42679352705        0.306407104502E-03
+     4.43639611604        0.296207309166E-03
+     4.44599870504        0.286147112400E-03
+     4.45560129403        0.276224195570E-03
+     4.46520388303        0.266436279916E-03
+     4.47480647203        0.256781125802E-03
+     4.48440906102        0.247256531996E-03
+     4.49401165002        0.237860334948E-03
+     4.50361423901        0.228590408094E-03
+     4.51321682801        0.219444661168E-03
+     4.52281941701        0.210421039534E-03
+     4.53242200600        0.201517523522E-03
+     4.54202459500        0.192732127790E-03
+     4.55162718399        0.184062900682E-03
+     4.56122977299        0.175507923612E-03
+     4.57083236198        0.167065310456E-03
+     4.58043495098        0.158733206956E-03
+     4.59003753998        0.150509790125E-03
+     4.59964012897        0.142393267714E-03
+     4.60924271797        0.134381877592E-03
+     4.61884530696        0.126473887232E-03
+     4.62844789596        0.118667593159E-03
+     4.63805048495        0.110961320430E-03
+     4.64765307395        0.103353421934E-03
+     4.65725566295        0.958422786010E-04
+     4.66685825194        0.884262978348E-04
+     4.67646084094        0.811039136963E-04
+     4.68606342993        0.738735862679E-04
+     4.69566601893        0.667338011832E-04
+     4.70526860792        0.596830654800E-04
+     4.71487119692        0.527199222078E-04
+     4.72447378592        0.458429280613E-04
+     4.73407637491        0.390506664414E-04
+     4.74367896391        0.323417438645E-04
+     4.75328155290        0.257147894640E-04
+     4.76288414190        0.191683327486E-04
+     4.77248673090        0.127012802926E-04
+     4.78208931989        0.631225643447E-05
+     4.79169190889         0.00000000000    
+  2  3  2  0  0.000000   #orbital l, n, z, is_polarized, population
+ 500    0.447949355830E-02     2.23526728559     # npts, delta, cutoff
+     0.00000000000         8.36370785267    
+    0.447949355830E-02     8.36339774637    
+    0.895898711659E-02     8.36245488325    
+    0.134384806749E-01     8.36088359384    
+    0.179179742332E-01     8.35868415785    
+    0.223974677915E-01     8.35585695868    
+    0.268769613498E-01     8.35240248736    
+    0.313564549081E-01     8.34832134327    
+    0.358359484664E-01     8.34361423472    
+    0.403154420247E-01     8.33828197870    
+    0.447949355830E-01     8.33232550124    
+    0.492744291413E-01     8.32574583720    
+    0.537539226996E-01     8.31854413055    
+    0.582334162579E-01     8.31072163433    
+    0.627129098162E-01     8.30227971062    
+    0.671924033744E-01     8.29321983058    
+    0.716718969327E-01     8.28354357456    
+    0.761513904910E-01     8.27325263202    
+    0.806308840493E-01     8.26234880170    
+    0.851103776076E-01     8.25083399146    
+    0.895898711659E-01     8.23871021842    
+    0.940693647242E-01     8.22597960893    
+    0.985488582825E-01     8.21264439858    
+    0.103028351841         8.19870693219    
+    0.107507845399         8.18416966392    
+    0.111987338957         8.16903515669    
+    0.116466832516         8.15330608345    
+    0.120946326074         8.13698522532    
+    0.125425819632         8.12007547320    
+    0.129905313191         8.10257982656    
+    0.134384806749         8.08450139441    
+    0.138864300307         8.06584339372    
+    0.143343793865         8.04660915083    
+    0.147823287424         8.02680210063    
+    0.152302780982         8.00642578603    
+    0.156782274540         7.98548385874    
+    0.161261768099         7.96398007824    
+    0.165741261657         7.94191831183    
+    0.170220755215         7.91930253461    
+    0.174700248774         7.89613682871    
+    0.179179742332         7.87242538380    
+    0.183659235890         7.84817249560    
+    0.188138729448         7.82338256688    
+    0.192618223007         7.79806010574    
+    0.197097716565         7.77220972634    
+    0.201577210123         7.74583614770    
+    0.206056703682         7.71894419332    
+    0.210536197240         7.69153879102    
+    0.215015690798         7.66362497193    
+    0.219495184357         7.63520787035    
+    0.223974677915         7.60629272243    
+    0.228454171473         7.57688486628    
+    0.232933665031         7.54698974060    
+    0.237413158590         7.51661288426    
+    0.241892652148         7.48575993529    
+    0.246372145706         7.45443663026    
+    0.250851639265         7.42264880312    
+    0.255331132823         7.39040238423    
+    0.259810626381         7.35770339967    
+    0.264290119939         7.32455796969    
+    0.268769613498         7.29097230814    
+    0.273249107056         7.25695272090    
+    0.277728600614         7.22250560482    
+    0.282208094173         7.18763744649    
+    0.286687587731         7.15235482074    
+    0.291167081289         7.11666438961    
+    0.295646574848         7.08057290057    
+    0.300126068406         7.04408718527    
+    0.304605561964         7.00721415772    
+    0.309085055522         6.96996081321    
+    0.313564549081         6.93233422607    
+    0.318044042639         6.89434154830    
+    0.322523536197         6.85599000788    
+    0.327003029756         6.81728690669    
+    0.331482523314         6.77823961884    
+    0.335962016872         6.73885558865    
+    0.340441510431         6.69914232871    
+    0.344921003989         6.65910741777    
+    0.349400497547         6.61875849882    
+    0.353879991105         6.57810327675    
+    0.358359484664         6.53714951625    
+    0.362838978222         6.49590503956    
+    0.367318471780         6.45437772421    
+    0.371797965339         6.41257550051    
+    0.376277458897         6.37050634931    
+    0.380756952455         6.32817829946    
+    0.385236446014         6.28559942536    
+    0.389715939572         6.24277784437    
+    0.394195433130         6.19972171426    
+    0.398674926688         6.15643923048    
+    0.403154420247         6.11293862366    
+    0.407633913805         6.06922815671    
+    0.412113407363         6.02531612212    
+    0.416592900922         5.98121083922    
+    0.421072394480         5.93692065124    
+    0.425551888038         5.89245392252    
+    0.430031381596         5.84781903556    
+    0.434510875155         5.80302438812    
+    0.438990368713         5.75807839030    
+    0.443469862271         5.71298946140    
+    0.447949355830         5.66776602706    
+    0.452428849388         5.62241651614    
+    0.456908342946         5.57694935769    
+    0.461387836505         5.53137297789    
+    0.465867330063         5.48569579692    
+    0.470346823621         5.43992622588    
+    0.474826317179         5.39407266368    
+    0.479305810738         5.34814349391    
+    0.483785304296         5.30214708169    
+    0.488264797854         5.25609177055    
+    0.492744291413         5.20998587933    
+    0.497223784971         5.16383769900    
+    0.501703278529         5.11765548953    
+    0.506182772088         5.07144747681    
+    0.510662265646         5.02522184953    
+    0.515141759204         4.97898675601    
+    0.519621252762         4.93275030122    
+    0.524100746321         4.88652054364    
+    0.528580239879         4.84030549226    
+    0.533059733437         4.79411310349    
+    0.537539226996         4.74795127821    
+    0.542018720554         4.70182785881    
+    0.546498214112         4.65575062624    
+    0.550977707670         4.60972729703    
+    0.555457201229         4.56376552052    
+    0.559936694787         4.51787287601    
+    0.564416188345         4.47205686991    
+    0.568895681904         4.42632493301    
+    0.573375175462         4.38068441782    
+    0.577854669020         4.33514259588    
+    0.582334162579         4.28970665517    
+    0.586813656137         4.24438369753    
+    0.591293149695         4.19918073618    
+    0.595772643253         4.15410469330    
+    0.600252136812         4.10916239763    
+    0.604731630370         4.06436058213    
+    0.609211123928         4.01970588177    
+    0.613690617487         3.97520483131    
+    0.618170111045         3.93086386318    
+    0.622649604603         3.88668930541    
+    0.627129098162         3.84268737969    
+    0.631608591720         3.79886419940    
+    0.636088085278         3.75522576783    
+    0.640567578836         3.71177797636    
+    0.645047072395         3.66852660281    
+    0.649526565953         3.62547730981    
+    0.654006059511         3.58263564327    
+    0.658485553070         3.54000703095    
+    0.662965046628         3.49759678107    
+    0.667444540186         3.45541008099    
+    0.671924033744         3.41345199608    
+    0.676403527303         3.37172746853    
+    0.680883020861         3.33024131632    
+    0.685362514419         3.28899823227    
+    0.689842007978         3.24800278319    
+    0.694321501536         3.20725940906    
+    0.698800995094         3.16677242233    
+    0.703280488653         3.12654600733    
+    0.707759982211         3.08658421971    
+    0.712239475769         3.04689098599    
+    0.716718969327         3.00747010322    
+    0.721198462886         2.96832523868    
+    0.725677956444         2.92945992969    
+    0.730157450002         2.89087758350    
+    0.734636943561         2.85258147728    
+    0.739116437119         2.81457475814    
+    0.743595930677         2.77686044326    
+    0.748075424236         2.73944142015    
+    0.752554917794         2.70232044692    
+    0.757034411352         2.66550015264    
+    0.761513904910         2.62898303780    
+    0.765993398469         2.59277147486    
+    0.770472892027         2.55686770880    
+    0.774952385585         2.52127385787    
+    0.779431879144         2.48599191426    
+    0.783911372702         2.45102374495    
+    0.788390866260         2.41637109257    
+    0.792870359818         2.38203557675    
+    0.797349853377         2.34801869455    
+    0.801829346935         2.31432182051    
+    0.806308840493         2.28094621078    
+    0.810788334052         2.24789300338    
+    0.815267827610         2.21516322047    
+    0.819747321168         2.18275776437    
+    0.824226814727         2.15067741935    
+    0.828706308285         2.11892285873    
+    0.833185801843         2.08749464605    
+    0.837665295401         2.05639323344    
+    0.842144788960         2.02561896420    
+    0.846624282518         1.99517207379    
+    0.851103776076         1.96505269258    
+    0.855583269635         1.93526084707    
+    0.860062763193         1.90579646153    
+    0.864542256751         1.87665935994    
+    0.869021750310         1.84784926776    
+    0.873501243868         1.81936581380    
+    0.877980737426         1.79120853208    
+    0.882460230984         1.76337686379    
+    0.886939724543         1.73587015914    
+    0.891419218101         1.70868767943    
+    0.895898711659         1.68182859893    
+    0.900378205218         1.65529200696    
+    0.904857698776         1.62907690985    
+    0.909337192334         1.60318223302    
+    0.913816685893         1.57760682300    
+    0.918296179451         1.55234944949    
+    0.922775673009         1.52740880745    
+    0.927255166567         1.50278351914    
+    0.931734660126         1.47847213624    
+    0.936214153684         1.45447314190    
+    0.940693647242         1.43078495285    
+    0.945173140801         1.40740592148    
+    0.949652634359         1.38433433789    
+    0.954132127917         1.36156843205    
+    0.958611621475         1.33910637577    
+    0.963091115034         1.31694628487    
+    0.967570608592         1.29508622114    
+    0.972050102150         1.27352419449    
+    0.976529595709         1.25225816489    
+    0.981009089267         1.23128604447    
+    0.985488582825         1.21060569946    
+    0.989968076384         1.19021495226    
+    0.994447569942         1.17011158334    
+    0.998927063500         1.15029333325    
+     1.00340655706         1.13075790452    
+     1.00788605062         1.11150296360    
+     1.01236554418         1.09252614274    
+     1.01684503773         1.07382504186    
+     1.02132453129         1.05539723040    
+     1.02580402485         1.03724024915    
+     1.03028351841         1.01935161202    
+     1.03476301197         1.00172880784    
+     1.03924250552        0.984369302046    
+     1.04372199908        0.967270538450    
+     1.04820149264        0.950429940888    
+     1.05268098620        0.933844914879    
+     1.05716047976        0.917512849250    
+     1.06163997332        0.901431117719    
+     1.06611946687        0.885597080458    
+     1.07059896043        0.870008085618    
+     1.07507845399        0.854661470822    
+     1.07955794755        0.839554564631    
+     1.08403744111        0.824684687967    
+     1.08851693467        0.810049155510    
+     1.09299642822        0.795645277057    
+     1.09747592178        0.781470358852    
+     1.10195541534        0.767521704876    
+     1.10643490890        0.753796618115    
+     1.11091440246        0.740292401775    
+     1.11539389602        0.727006360480    
+     1.11987338957        0.713935801426    
+     1.12435288313        0.701078035502    
+     1.12883237669        0.688430378387    
+     1.13331187025        0.675990151595    
+     1.13779136381        0.663754683510    
+     1.14227085737        0.651721310360    
+     1.14675035092        0.639887377180    
+     1.15122984448        0.628250238729    
+     1.15570933804        0.616807260385    
+     1.16018883160        0.605555818995    
+     1.16466832516        0.594493303706    
+     1.16914781872        0.583617116752    
+     1.17362731227        0.572924674215    
+     1.17810680583        0.562413406758    
+     1.18258629939        0.552080760319    
+     1.18706579295        0.541924196784    
+     1.19154528651        0.531941194624    
+     1.19602478007        0.522129249501    
+     1.20050427362        0.512485874858    
+     1.20498376718        0.503008602458    
+     1.20946326074        0.493694982923    
+     1.21394275430        0.484542586216    
+     1.21842224786        0.475549002118    
+     1.22290174141        0.466711840668    
+     1.22738123497        0.458028732582    
+     1.23186072853        0.449497329643    
+     1.23634022209        0.441115305072    
+     1.24081971565        0.432880353869    
+     1.24529920921        0.424790193129    
+     1.24977870276        0.416842562340    
+     1.25425819632        0.409035223656    
+     1.25873768988        0.401365962148    
+     1.26321718344        0.393832586033    
+     1.26769667700        0.386432926886    
+     1.27217617056        0.379164839824    
+     1.27665566411        0.372026203681    
+     1.28113515767        0.365014921151    
+     1.28561465123        0.358128918925    
+     1.29009414479        0.351366147802    
+     1.29457363835        0.344724582781    
+     1.29905313191        0.338202223147    
+     1.30353262546        0.331797092525    
+     1.30801211902        0.325507238932    
+     1.31249161258        0.319330734807    
+     1.31697110614        0.313265677029    
+     1.32145059970        0.307310186914    
+     1.32593009326        0.301462410209    
+     1.33040958681        0.295720517065    
+     1.33488908037        0.290082702000    
+     1.33936857393        0.284547183849    
+     1.34384806749        0.279112205703    
+     1.34832756105        0.273776034837    
+     1.35280705461        0.268536962627    
+     1.35728654816        0.263393304454    
+     1.36176604172        0.258343399605    
+     1.36624553528        0.253385611157    
+     1.37072502884        0.248518325856    
+     1.37520452240        0.243739953988    
+     1.37968401596        0.239048929240    
+     1.38416350951        0.234443708558    
+     1.38864300307        0.229922771987    
+     1.39312249663        0.225484622517    
+     1.39760199019        0.221127785915    
+     1.40208148375        0.216850810551    
+     1.40656097731        0.212652267222    
+     1.41104047086        0.208530748968    
+     1.41551996442        0.204484870884    
+     1.41999945798        0.200513269925    
+     1.42447895154        0.196614604711    
+     1.42895844510        0.192787555322    
+     1.43343793865        0.189030823097    
+     1.43791743221        0.185343130421    
+     1.44239692577        0.181723220515    
+     1.44687641933        0.178169857221    
+     1.45135591289        0.174681824786    
+     1.45583540645        0.171257927638    
+     1.46031490000        0.167896990169    
+     1.46479439356        0.164597856508    
+     1.46927388712        0.161359390298    
+     1.47375338068        0.158180474465    
+     1.47823287424        0.155060010995    
+     1.48271236780        0.151996920703    
+     1.48719186135        0.148990143000    
+     1.49167135491        0.146038635670    
+     1.49615084847        0.143141374633    
+     1.50063034203        0.140297353715    
+     1.50510983559        0.137505584420    
+     1.50958932915        0.134765095695    
+     1.51406882270        0.132074933701    
+     1.51854831626        0.129434161586    
+     1.52302780982        0.126841859250    
+     1.52750730338        0.124297123118    
+     1.53198679694        0.121799065913    
+     1.53646629050        0.119346816429    
+     1.54094578405        0.116939519300    
+     1.54542527761        0.114576334780    
+     1.54990477117        0.112256438517    
+     1.55438426473        0.109979021329    
+     1.55886375829        0.107743288985    
+     1.56334325185        0.105548461984    
+     1.56782274540        0.103393775337    
+     1.57230223896        0.101278478352    
+     1.57678173252        0.992018344149E-01
+     1.58126122608        0.971631207813E-01
+     1.58574071964        0.951616283623E-01
+     1.59022021320        0.931966615152E-01
+     1.59469970675        0.912675378375E-01
+     1.59917920031        0.893735879601E-01
+     1.60365869387        0.875141553442E-01
+     1.60813818743        0.856885960801E-01
+     1.61261768099        0.838962786870E-01
+     1.61709717455        0.821365839166E-01
+     1.62157666810        0.804089045571E-01
+     1.62605616166        0.787126452407E-01
+     1.63053565522        0.770472222515E-01
+     1.63501514878        0.754120633386E-01
+     1.63949464234        0.738066075280E-01
+     1.64397413589        0.722303049389E-01
+     1.64845362945        0.706826166011E-01
+     1.65293312301        0.691630142750E-01
+     1.65741261657        0.676709802739E-01
+     1.66189211013        0.662060072881E-01
+     1.66637160369        0.647675982116E-01
+     1.67085109724        0.633552659698E-01
+     1.67533059080        0.619685333518E-01
+     1.67981008436        0.606069328420E-01
+     1.68428957792        0.592700064557E-01
+     1.68876907148        0.579573055764E-01
+     1.69324856504        0.566683907940E-01
+     1.69772805859        0.554028317475E-01
+     1.70220755215        0.541602069674E-01
+     1.70668704571        0.529401037213E-01
+     1.71116653927        0.517421178611E-01
+     1.71564603283        0.505658536723E-01
+     1.72012552639        0.494109237257E-01
+     1.72460501994        0.482769487297E-01
+     1.72908451350        0.471635573863E-01
+     1.73356400706        0.460703862474E-01
+     1.73804350062        0.449970795734E-01
+     1.74252299418        0.439432891944E-01
+     1.74700248774        0.429086743721E-01
+     1.75148198129        0.418929016639E-01
+     1.75596147485        0.408956447887E-01
+     1.76044096841        0.399165844940E-01
+     1.76492046197        0.389554084255E-01
+     1.76939995553        0.380118109978E-01
+     1.77387944909        0.370854932661E-01
+     1.77835894264        0.361761628002E-01
+     1.78283843620        0.352835335603E-01
+     1.78731792976        0.344073257731E-01
+     1.79179742332        0.335472658106E-01
+     1.79627691688        0.327030860693E-01
+     1.80075641044        0.318745248517E-01
+     1.80523590399        0.310613262481E-01
+     1.80971539755        0.302632400209E-01
+     1.81419489111        0.294800214893E-01
+     1.81867438467        0.287114314161E-01
+     1.82315387823        0.279572358935E-01
+     1.82763337179        0.272172062340E-01
+     1.83211286534        0.264911188594E-01
+     1.83659235890        0.257787551916E-01
+     1.84107185246        0.250799015451E-01
+     1.84555134602        0.243943490193E-01
+     1.85003083958        0.237218933959E-01
+     1.85451033313        0.230623350295E-01
+     1.85898982669        0.224154787472E-01
+     1.86346932025        0.217811337450E-01
+     1.86794881381        0.211591134872E-01
+     1.87242830737        0.205492356022E-01
+     1.87690780093        0.199513217883E-01
+     1.88138729448        0.193651977110E-01
+     1.88586678804        0.187906929063E-01
+     1.89034628160        0.182276406847E-01
+     1.89482577516        0.176758780294E-01
+     1.89930526872        0.171352455099E-01
+     1.90378476228        0.166055871812E-01
+     1.90826425583        0.160867504917E-01
+     1.91274374939        0.155785861866E-01
+     1.91722324295        0.150809482305E-01
+     1.92170273651        0.145936936929E-01
+     1.92618223007        0.141166826717E-01
+     1.93066172363        0.136497782002E-01
+     1.93514121718        0.131928461577E-01
+     1.93962071074        0.127457552271E-01
+     1.94410020430        0.123083766037E-01
+     1.94857969786        0.118805842333E-01
+     1.95305919142        0.114622545109E-01
+     1.95753868498        0.110532662451E-01
+     1.96201817853        0.106535005673E-01
+     1.96649767209        0.102628408633E-01
+     1.97097716565        0.988117266085E-02
+     1.97545665921        0.950838356280E-02
+     1.97993615277        0.914436316011E-02
+     1.98441564633        0.878900295105E-02
+     1.98889513988        0.844219600223E-02
+     1.99337463344        0.810383802628E-02
+     1.99785412700        0.777382546771E-02
+     2.00233362056        0.745205665980E-02
+     2.00681311412        0.713843147797E-02
+     2.01129260768        0.683285163315E-02
+     2.01577210123        0.653521919179E-02
+     2.02025159479        0.624543873656E-02
+     2.02473108835        0.596341595119E-02
+     2.02921058191        0.568905791303E-02
+     2.03369007547        0.542227306983E-02
+     2.03816956902        0.516297118048E-02
+     2.04264906258        0.491106345502E-02
+     2.04712855614        0.466646228221E-02
+     2.05160804970        0.442908137363E-02
+     2.05608754326        0.419883570555E-02
+     2.06056703682        0.397564149946E-02
+     2.06504653037        0.375941615240E-02
+     2.06952602393        0.355007844017E-02
+     2.07400551749        0.334754814215E-02
+     2.07848501105        0.315174625937E-02
+     2.08296450461        0.296259493898E-02
+     2.08744399817        0.278001745904E-02
+     2.09192349172        0.260393819823E-02
+     2.09640298528        0.243428263695E-02
+     2.10088247884        0.227097732838E-02
+     2.10536197240        0.211394988412E-02
+     2.10984146596        0.196312895746E-02
+     2.11432095952        0.181844422030E-02
+     2.11880045307        0.167982637459E-02
+     2.12327994663        0.154720709420E-02
+     2.12775944019        0.142051903592E-02
+     2.13223893375        0.129969581783E-02
+     2.13671842731        0.118467200404E-02
+     2.14119792087        0.107538309189E-02
+     2.14567741442        0.971765488574E-03
+     2.15015690798        0.873756510027E-03
+     2.15463640154        0.781294358336E-03
+     2.15911589510        0.694318109826E-03
+     2.16359538866        0.612767701427E-03
+     2.16807488222        0.536583912670E-03
+     2.17255437577        0.465708371669E-03
+     2.17703386933        0.400083513420E-03
+     2.18151336289        0.339652585159E-03
+     2.18599285645        0.284359629622E-03
+     2.19047235001        0.234149472723E-03
+     2.19495184357        0.188967629113E-03
+     2.19943133712        0.148760626497E-03
+     2.20391083068        0.113475504414E-03
+     2.20839032424        0.830601040194E-04
+     2.21286981780        0.574629860774E-04
+     2.21734931136        0.366334180059E-04
+     2.22182880492        0.205181939604E-04
+     2.22630829847        0.907403516964E-05
+     2.23078779203        0.225043914382E-05
+     2.23526728559         0.00000000000    
+  1  4  1  1  0.000000   #orbital l, n, z, is_polarized, population
+ 500    0.120255885413E-01     6.00076868209     # npts, delta, cutoff
+     0.00000000000        0.162289134098    
+    0.120255885413E-01    0.150452259263    
+    0.240511770825E-01    0.148470596113    
+    0.360767656238E-01    0.146960219061    
+    0.481023541650E-01    0.145702397925    
+    0.601279427063E-01    0.144611116040    
+    0.721535312475E-01    0.143641906195    
+    0.841791197888E-01    0.142768202666    
+    0.962047083301E-01    0.141972614969    
+    0.108230296871        0.141243012425    
+    0.120255885413        0.140570527395    
+    0.132281473954        0.139948439536    
+    0.144307062495        0.139371507897    
+    0.156332651036        0.138835548912    
+    0.168358239578        0.138337157890    
+    0.180383828119        0.137873518496    
+    0.192409416660        0.137442268427    
+    0.204435005201        0.137041402234    
+    0.216460593743        0.136669199444    
+    0.228486182284        0.136324170353    
+    0.240511770825        0.136005014430    
+    0.252537359366        0.135710587925    
+    0.264562947908        0.135439878269    
+    0.276588536449        0.135191983627    
+    0.288614124990        0.134966096339    
+    0.300639713531        0.134761489414    
+    0.312665302073        0.134577505364    
+    0.324690890614        0.134413546934    
+    0.336716479155        0.134269069309    
+    0.348742067696        0.134143573518    
+    0.360767656238        0.134036600830    
+    0.372793244779        0.133947727932    
+    0.384818833320        0.133876562763    
+    0.396844421861        0.133822740898    
+    0.408870010403        0.133785922378    
+    0.420895598944        0.133765788918    
+    0.432921187485        0.133762041437    
+    0.444946776026        0.133774397855    
+    0.456972364568        0.133802591113    
+    0.468997953109        0.133846367397    
+    0.481023541650        0.133905484522    
+    0.493049130192        0.133979710455    
+    0.505074718733        0.134068821971    
+    0.517100307274        0.134172603404    
+    0.529125895815        0.134290845491    
+    0.541151484357        0.134423344302    
+    0.553177072898        0.134569900231    
+    0.565202661439        0.134730317047    
+    0.577228249980        0.134904401002    
+    0.589253838522        0.135091959980    
+    0.601279427063        0.135292802682    
+    0.613305015604        0.135506737856    
+    0.625330604145        0.135733573547    
+    0.637356192687        0.135973116382    
+    0.649381781228        0.136225170871    
+    0.661407369769        0.136489538731    
+    0.673432958310        0.136766018239    
+    0.685458546852        0.137054403584    
+    0.697484135393        0.137354484249    
+    0.709509723934        0.137666044401    
+    0.721535312475        0.137988862296    
+    0.733560901017        0.138322709691    
+    0.745586489558        0.138667351280    
+    0.757612078099        0.139022544127    
+    0.769637666640        0.139388037121    
+    0.781663255182        0.139763570438    
+    0.793688843723        0.140148875018    
+    0.805714432264        0.140543672050    
+    0.817740020805        0.140947672470    
+    0.829765609347        0.141360576482    
+    0.841791197888        0.141782073076    
+    0.853816786429        0.142211839580    
+    0.865842374970        0.142649541219    
+    0.877867963512        0.143094830688    
+    0.889893552053        0.143547347757    
+    0.901919140594        0.144006718885    
+    0.913944729135        0.144472556864    
+    0.925970317677        0.144944460483    
+    0.937995906218        0.145422014225    
+    0.950021494759        0.145904787982    
+    0.962047083301        0.146392336811    
+    0.974072671842        0.146884200718    
+    0.986098260383        0.147379904474    
+    0.998123848924        0.147878957476    
+     1.01014943747        0.148380853637    
+     1.02217502601        0.148885071333    
+     1.03420061455        0.149391073382    
+     1.04622620309        0.149898307065    
+     1.05825179163        0.150406204231    
+     1.07027738017        0.150914181400    
+     1.08230296871        0.151421639971    
+     1.09432855725        0.151927966455    
+     1.10635414580        0.152432532785    
+     1.11837973434        0.152934696678    
+     1.13040532288        0.153433802066    
+     1.14243091142        0.153929179593    
+     1.15445649996        0.154420147177    
+     1.16648208850        0.154906010651    
+     1.17850767704        0.155386064454    
+     1.19053326558        0.155859592423    
+     1.20255885413        0.156325868644    
+     1.21458444267        0.156784158374    
+     1.22661003121        0.157233719044    
+     1.23863561975        0.157673801351    
+     1.25066120829        0.158103650393    
+     1.26268679683        0.158522506909    
+     1.27471238537        0.158929608586    
+     1.28673797391        0.159324191436    
+     1.29876356246        0.159705491232    
+     1.31078915100        0.160072745040    
+     1.32281473954        0.160425192799    
+     1.33484032808        0.160762078967    
+     1.34686591662        0.161082654228    
+     1.35889150516        0.161386177258    
+     1.37091709370        0.161671916534    
+     1.38294268224        0.161939152201    
+     1.39496827079        0.162187177963    
+     1.40699385933        0.162415303018    
+     1.41901944787        0.162622854024    
+     1.43104503641        0.162809177064    
+     1.44307062495        0.162973639649    
+     1.45509621349        0.163115632705    
+     1.46712180203        0.163234572563    
+     1.47914739057        0.163329902930    
+     1.49117297912        0.163401096841    
+     1.50319856766        0.163447658567    
+     1.51522415620        0.163469125493    
+     1.52724974474        0.163465069932    
+     1.53927533328        0.163435100870    
+     1.55130092182        0.163378865644    
+     1.56332651036        0.163296051532    
+     1.57535209890        0.163186387235    
+     1.58737768745        0.163049644262    
+     1.59940327599        0.162885638193    
+     1.61142886453        0.162694229810    
+     1.62345445307        0.162475326084    
+     1.63548004161        0.162228881027    
+     1.64750563015        0.161954896366    
+     1.65953121869        0.161653422064    
+     1.67155680723        0.161324556655    
+     1.68358239578        0.160968447400    
+     1.69560798432        0.160585290250    
+     1.70763357286        0.160175329607    
+     1.71965916140        0.159738857885    
+     1.73168474994        0.159276214864    
+     1.74371033848        0.158787786822    
+     1.75573592702        0.158274005460    
+     1.76776151556        0.157735346603    
+     1.77978710411        0.157172328679    
+     1.79181269265        0.156585510976    
+     1.80383828119        0.155975491684    
+     1.81586386973        0.155342905702    
+     1.82788945827        0.154688422239    
+     1.83991504681        0.154012742187    
+     1.85194063535        0.153316595289    
+     1.86396622389        0.152600737085    
+     1.87599181244        0.151865945642    
+     1.88801740098        0.151113018101    
+     1.90004298952        0.150342767027    
+     1.91206857806        0.149556016536    
+     1.92409416660        0.148753598327    
+     1.93611975514        0.147936347351    
+     1.94814534368        0.147105097100    
+     1.96017093222        0.146260675630    
+     1.97219652077        0.145403900709    
+     1.98422210931        0.144535574733    
+     1.99624769785        0.143656479420    
+     2.00827328639        0.142767371593    
+     2.02029887493        0.141868977208    
+     2.03232446347        0.140961990826    
+     2.04435005201        0.140047079263    
+     2.05637564055        0.139124881201    
+     2.06840122910        0.138196008149    
+     2.08042681764        0.137261046066    
+     2.09245240618        0.136320555820    
+     2.10447799472        0.135375074391    
+     2.11650358326        0.134425116005    
+     2.12852917180        0.133471173102    
+     2.14055476034        0.132513717061    
+     2.15258034888        0.131553199056    
+     2.16460593743        0.130590050929    
+     2.17663152597        0.129624685959    
+     2.18865711451        0.128657499625    
+     2.20068270305        0.127688870304    
+     2.21270829159        0.126719159966    
+     2.22473388013        0.125748714839    
+     2.23675946867        0.124777866040    
+     2.24878505721        0.123806930180    
+     2.26081064576        0.122836209948    
+     2.27283623430        0.121865994662    
+     2.28486182284        0.120896560809    
+     2.29688741138        0.119928172548    
+     2.30891299992        0.118961082208    
+     2.32093858846        0.117995530749    
+     2.33296417700        0.117031748217    
+     2.34498976554        0.116069954171    
+     2.35701535409        0.115110358095    
+     2.36904094263        0.114153159799    
+     2.38106653117        0.113198549792    
+     2.39309211971        0.112246709649    
+     2.40511770825        0.111297812357    
+     2.41714329679        0.110352022649    
+     2.42916888533        0.109409497328    
+     2.44119447388        0.108470385570    
+     2.45322006242        0.107534829224    
+     2.46524565096        0.106602963096    
+     2.47727123950        0.105674915213    
+     2.48929682804        0.104750807074    
+     2.50132241658        0.103830753970    
+     2.51334800512        0.102914865100    
+     2.52537359366        0.102003243903    
+     2.53739918221        0.101095988138    
+     2.54942477075        0.100193190433    
+     2.56145035929        0.992949385362E-01
+     2.57347594783        0.984013151150E-01
+     2.58550153637        0.975123980692E-01
+     2.59752712491        0.966282605253E-01
+     2.60955271345        0.957489712550E-01
+     2.62157830199        0.948745947305E-01
+     2.63360389054        0.940051913354E-01
+     2.64562947908        0.931408174939E-01
+     2.65765506762        0.922815258449E-01
+     2.66968065616        0.914273653922E-01
+     2.68170624470        0.905783816324E-01
+     2.69373183324        0.897346167001E-01
+     2.70575742178        0.888961094954E-01
+     2.71778301032        0.880628958113E-01
+     2.72980859887        0.872350084521E-01
+     2.74183418741        0.864124773536E-01
+     2.75385977595        0.855953296934E-01
+     2.76588536449        0.847835900002E-01
+     2.77791095303        0.839772802546E-01
+     2.78993654157        0.831764199905E-01
+     2.80196213011        0.823810263900E-01
+     2.81398771865        0.815911143774E-01
+     2.82601330720        0.808066967074E-01
+     2.83803889574        0.800277840516E-01
+     2.85006448428        0.792543850800E-01
+     2.86209007282        0.784865065415E-01
+     2.87411566136        0.777241533403E-01
+     2.88614124990        0.769673286099E-01
+     2.89816683844        0.762160337842E-01
+     2.91019242698        0.754702686664E-01
+     2.92221801553        0.747300314952E-01
+     2.93424360407        0.739953190084E-01
+     2.94626919261        0.732661265045E-01
+     2.95829478115        0.725424479020E-01
+     2.97032036969        0.718242757968E-01
+     2.98234595823        0.711116015171E-01
+     2.99437154677        0.704044151764E-01
+     3.00639713531        0.697027057254E-01
+     3.01842272386        0.690064610009E-01
+     3.03044831240        0.683156677734E-01
+     3.04247390094        0.676303117937E-01
+     3.05449948948        0.669503778365E-01
+     3.06652507802        0.662758497437E-01
+     3.07855066656        0.656067104654E-01
+     3.09057625510        0.649429420996E-01
+     3.10260184364        0.642845259311E-01
+     3.11462743219        0.636314424677E-01
+     3.12665302073        0.629836714763E-01
+     3.13867860927        0.623411920174E-01
+     3.15070419781        0.617039824782E-01
+     3.16272978635        0.610720206044E-01
+     3.17475537489        0.604452835313E-01
+     3.18678096343        0.598237478135E-01
+     3.19880655197        0.592073894535E-01
+     3.21083214052        0.585961839294E-01
+     3.22285772906        0.579901062220E-01
+     3.23488331760        0.573891308397E-01
+     3.24690890614        0.567932318442E-01
+     3.25893449468        0.562023828739E-01
+     3.27096008322        0.556165571671E-01
+     3.28298567176        0.550357275843E-01
+     3.29501126030        0.544598666296E-01
+     3.30703684885        0.538889464713E-01
+     3.31906243739        0.533229389622E-01
+     3.33108802593        0.527618156583E-01
+     3.34311361447        0.522055478379E-01
+     3.35513920301        0.516541065188E-01
+     3.36716479155        0.511074624763E-01
+     3.37919038009        0.505655862592E-01
+     3.39121596863        0.500284482061E-01
+     3.40324155718        0.494960184606E-01
+     3.41526714572        0.489682669867E-01
+     3.42729273426        0.484451635824E-01
+     3.43931832280        0.479266778943E-01
+     3.45134391134        0.474127794301E-01
+     3.46336949988        0.469034375722E-01
+     3.47539508842        0.463986215896E-01
+     3.48742067696        0.458983006501E-01
+     3.49944626551        0.454024438316E-01
+     3.51147185405        0.449110201334E-01
+     3.52349744259        0.444239984864E-01
+     3.53552303113        0.439413477642E-01
+     3.54754861967        0.434630367922E-01
+     3.55957420821        0.429890343578E-01
+     3.57159979675        0.425193092190E-01
+     3.58362538529        0.420538301139E-01
+     3.59565097384        0.415925657687E-01
+     3.60767656238        0.411354849064E-01
+     3.61970215092        0.406825562544E-01
+     3.63172773946        0.402337485522E-01
+     3.64375332800        0.397890305590E-01
+     3.65577891654        0.393483710605E-01
+     3.66780450508        0.389117388759E-01
+     3.67983009362        0.384791028644E-01
+     3.69185568217        0.380504319317E-01
+     3.70388127071        0.376256950357E-01
+     3.71590685925        0.372048611930E-01
+     3.72793244779        0.367878994839E-01
+     3.73995803633        0.363747790582E-01
+     3.75198362487        0.359654691406E-01
+     3.76400921341        0.355599390354E-01
+     3.77603480195        0.351581581313E-01
+     3.78806039050        0.347600959065E-01
+     3.80008597904        0.343657219328E-01
+     3.81211156758        0.339750058802E-01
+     3.82413715612        0.335879175206E-01
+     3.83616274466        0.332044267324E-01
+     3.84818833320        0.328245035039E-01
+     3.86021392174        0.324481179369E-01
+     3.87223951028        0.320752402506E-01
+     3.88426509883        0.317058407849E-01
+     3.89629068737        0.313398900034E-01
+     3.90831627591        0.309773584967E-01
+     3.92034186445        0.306182169856E-01
+     3.93236745299        0.302624363233E-01
+     3.94439304153        0.299099874990E-01
+     3.95641863007        0.295608416401E-01
+     3.96844421861        0.292149700143E-01
+     3.98046980716        0.288723440329E-01
+     3.99249539570        0.285329352524E-01
+     4.00452098424        0.281967153771E-01
+     4.01654657278        0.278636562607E-01
+     4.02857216132        0.275337299089E-01
+     4.04059774986        0.272069084809E-01
+     4.05262333840        0.268831642912E-01
+     4.06464892694        0.265624698114E-01
+     4.07667451549        0.262447976720E-01
+     4.08870010403        0.259301206637E-01
+     4.10072569257        0.256184117389E-01
+     4.11275128111        0.253096440131E-01
+     4.12477686965        0.250037907661E-01
+     4.13680245819        0.247008254436E-01
+     4.14882804673        0.244007216579E-01
+     4.16085363527        0.241034531890E-01
+     4.17287922382        0.238089939859E-01
+     4.18490481236        0.235173181674E-01
+     4.19693040090        0.232284000228E-01
+     4.20895598944        0.229422140129E-01
+     4.22098157798        0.226587347708E-01
+     4.23300716652        0.223779371023E-01
+     4.24503275506        0.220997959867E-01
+     4.25705834360        0.218242865774E-01
+     4.26908393215        0.215513842022E-01
+     4.28110952069        0.212810643639E-01
+     4.29313510923        0.210133027408E-01
+     4.30516069777        0.207480751867E-01
+     4.31718628631        0.204853577314E-01
+     4.32921187485        0.202251265812E-01
+     4.34123746339        0.199673581183E-01
+     4.35326305193        0.197120289020E-01
+     4.36528864048        0.194591156677E-01
+     4.37731422902        0.192085953279E-01
+     4.38933981756        0.189604449716E-01
+     4.40136540610        0.187146418644E-01
+     4.41339099464        0.184711634485E-01
+     4.42541658318        0.182299873427E-01
+     4.43744217172        0.179910913419E-01
+     4.44946776026        0.177544534171E-01
+     4.46149334881        0.175200517152E-01
+     4.47351893735        0.172878645587E-01
+     4.48554452589        0.170578704454E-01
+     4.49757011443        0.168300480478E-01
+     4.50959570297        0.166043762134E-01
+     4.52162129151        0.163808339633E-01
+     4.53364688005        0.161594004928E-01
+     4.54567246859        0.159400551701E-01
+     4.55769805714        0.157227775365E-01
+     4.56972364568        0.155075473053E-01
+     4.58174923422        0.152943443613E-01
+     4.59377482276        0.150831487609E-01
+     4.60580041130        0.148739407305E-01
+     4.61782599984        0.146667006667E-01
+     4.62985158838        0.144614091352E-01
+     4.64187717692        0.142580468701E-01
+     4.65390276547        0.140565947736E-01
+     4.66592835401        0.138570339149E-01
+     4.67795394255        0.136593455295E-01
+     4.68997953109        0.134635110187E-01
+     4.70200511963        0.132695119484E-01
+     4.71403070817        0.130773300487E-01
+     4.72605629671        0.128869472130E-01
+     4.73808188525        0.126983454969E-01
+     4.75010747380        0.125115071177E-01
+     4.76213306234        0.123264144532E-01
+     4.77415865088        0.121430500411E-01
+     4.78618423942        0.119613965781E-01
+     4.79820982796        0.117814369186E-01
+     4.81023541650        0.116031540744E-01
+     4.82226100504        0.114265312132E-01
+     4.83428659359        0.112515516580E-01
+     4.84631218213        0.110781988859E-01
+     4.85833777067        0.109064565273E-01
+     4.87036335921        0.107363083651E-01
+     4.88238894775        0.105677383332E-01
+     4.89441453629        0.104007305159E-01
+     4.90644012483        0.102352691467E-01
+     4.91846571337        0.100713386075E-01
+     4.93049130192        0.990892342743E-02
+     4.94251689046        0.974800828172E-02
+     4.95454247900        0.958857799089E-02
+     4.96656806754        0.943061751951E-02
+     4.97859365608        0.927411197532E-02
+     4.99061924462        0.911904660807E-02
+     5.00264483316        0.896540680847E-02
+     5.01467042170        0.881317810718E-02
+     5.02669601025        0.866234617373E-02
+     5.03872159879        0.851289681538E-02
+     5.05074718733        0.836481597617E-02
+     5.06277277587        0.821808973572E-02
+     5.07479836441        0.807270430825E-02
+     5.08682395295        0.792864604144E-02
+     5.09884954149        0.778590141541E-02
+     5.11087513003        0.764445704156E-02
+     5.12290071858        0.750429966157E-02
+     5.13492630712        0.736541614627E-02
+     5.14695189566        0.722779349454E-02
+     5.15897748420        0.709141883230E-02
+     5.17100307274        0.695627941136E-02
+     5.18302866128        0.682236260837E-02
+     5.19505424982        0.668965592373E-02
+     5.20707983836        0.655814698052E-02
+     5.21910542691        0.642782352343E-02
+     5.23113101545        0.629867341767E-02
+     5.24315660399        0.617068464788E-02
+     5.25518219253        0.604384531711E-02
+     5.26720778107        0.591814364573E-02
+     5.27923336961        0.579356797031E-02
+     5.29125895815        0.567010674266E-02
+     5.30328454669        0.554774852872E-02
+     5.31531013524        0.542648200748E-02
+     5.32733572378        0.530629597000E-02
+     5.33936131232        0.518717931827E-02
+     5.35138690086        0.506912106428E-02
+     5.36341248940        0.495211032887E-02
+     5.37543807794        0.483613634077E-02
+     5.38746366648        0.472118843555E-02
+     5.39948925502        0.460725605460E-02
+     5.41151484357        0.449432874408E-02
+     5.42354043211        0.438239615395E-02
+     5.43556602065        0.427144803695E-02
+     5.44759160919        0.416147424760E-02
+     5.45961719773        0.405246474118E-02
+     5.47164278627        0.394440957276E-02
+     5.48366837481        0.383729889620E-02
+     5.49569396335        0.373112296320E-02
+     5.50771955190        0.362587212229E-02
+     5.51974514044        0.352153681788E-02
+     5.53177072898        0.341810758929E-02
+     5.54379631752        0.331557506982E-02
+     5.55582190606        0.321392998577E-02
+     5.56784749460        0.311316315552E-02
+     5.57987308314        0.301326548857E-02
+     5.59189867168        0.291422798466E-02
+     5.60392426023        0.281604173278E-02
+     5.61594984877        0.271869791033E-02
+     5.62797543731        0.262218778215E-02
+     5.64000102585        0.252650269964E-02
+     5.65202661439        0.243163409989E-02
+     5.66405220293        0.233757350476E-02
+     5.67607779147        0.224431251786E-02
+     5.68810338001        0.215184283272E-02
+     5.70012896856        0.206015621821E-02
+     5.71215455710        0.196924452639E-02
+     5.72418014564        0.187909968971E-02
+     5.73620573418        0.178971372019E-02
+     5.74823132272        0.170107871102E-02
+     5.76025691126        0.161318682579E-02
+     5.77228249980        0.152603031295E-02
+     5.78430808834        0.143960149532E-02
+     5.79633367689        0.135389277151E-02
+     5.80835926543        0.126889661511E-02
+     5.82038485397        0.118460556798E-02
+     5.83241044251        0.110101226359E-02
+     5.84443603105        0.101810938960E-02
+     5.85646161959        0.935889709793E-03
+     5.86848720813        0.854346057575E-03
+     5.88051279667        0.773471334817E-03
+     5.89253838522        0.693258525458E-03
+     5.90456397376        0.613700633646E-03
+     5.91658956230        0.534790770673E-03
+     5.92861515084        0.456522099335E-03
+     5.94064073938        0.378887845308E-03
+     5.95266632792        0.301881296075E-03
+     5.96469191646        0.225495538005E-03
+     5.97671750500        0.149724481633E-03
+     5.98874309355        0.745614436156E-04
+     6.00076868209         0.00000000000    
+# KBs:__________________________
+  0  1    4.2593215953062842   #kb l, n (sequence number), Reference energy
+ 500    0.410418052671E-02     2.04798608283     # npts, delta, cutoff
+     0.00000000000         1.23230651908    
+    0.410418052671E-02     1.23227905469    
+    0.820836105343E-02     1.23226803780    
+    0.123125415801E-01     1.23224976138    
+    0.164167221069E-01     1.23222429387    
+    0.205209026336E-01     1.23219170452    
+    0.246250831603E-01     1.23215206302    
+    0.287292636870E-01     1.23210543946    
+    0.328334442137E-01     1.23205190440    
+    0.369376247404E-01     1.23199152889    
+    0.410418052671E-01     1.23192438457    
+    0.451459857938E-01     1.23185054369    
+    0.492501663206E-01     1.23177007920    
+    0.533543468473E-01     1.23168306484    
+    0.574585273740E-01     1.23158957518    
+    0.615627079007E-01     1.23148968574    
+    0.656668884274E-01     1.23138347301    
+    0.697710689541E-01     1.23127101460    
+    0.738752494808E-01     1.23115238927    
+    0.779794300076E-01     1.23102767704    
+    0.820836105343E-01     1.23089695922    
+    0.861877910610E-01     1.23076031854    
+    0.902919715877E-01     1.23061783918    
+    0.943961521144E-01     1.23046960686    
+    0.985003326411E-01     1.23031570885    
+    0.102604513168         1.23015623410    
+    0.106708693695         1.22999127320    
+    0.110812874221         1.22982091846    
+    0.114917054748         1.22964526395    
+    0.119021235275         1.22946440548    
+    0.123125415801         1.22927844064    
+    0.127229596328         1.22908746877    
+    0.131333776855         1.22889159098    
+    0.135437957382         1.22869091012    
+    0.139542137908         1.22848553074    
+    0.143646318435         1.22827555902    
+    0.147750498962         1.22806110280    
+    0.151854679488         1.22784227144    
+    0.155958860015         1.22761917578    
+    0.160063040542         1.22739192806    
+    0.164167221069         1.22716064182    
+    0.168271401595         1.22692543181    
+    0.172375582122         1.22668641390    
+    0.176479762649         1.22644370492    
+    0.180583943175         1.22619742260    
+    0.184688123702         1.22594768542    
+    0.188792304229         1.22569461248    
+    0.192896484756         1.22543832335    
+    0.197000665282         1.22517893798    
+    0.201104845809         1.22491657653    
+    0.205209026336         1.22465135923    
+    0.209313206862         1.22438340628    
+    0.213417387389         1.22411283765    
+    0.217521567916         1.22383977301    
+    0.221625748443         1.22356433155    
+    0.225729928969         1.22328663186    
+    0.229834109496         1.22300679182    
+    0.233938290023         1.22272492846    
+    0.238042470549         1.22244115784    
+    0.242146651076         1.22215559495    
+    0.246250831603         1.22186835361    
+    0.250355012130         1.22157954632    
+    0.254459192656         1.22128928425    
+    0.258563373183         1.22099767709    
+    0.262667553710         1.22070483298    
+    0.266771734236         1.22041085846    
+    0.270875914763         1.22011585840    
+    0.274980095290         1.21981993591    
+    0.279084275817         1.21952319236    
+    0.283188456343         1.21922572726    
+    0.287292636870         1.21892763828    
+    0.291396817397         1.21862902122    
+    0.295500997923         1.21832996997    
+    0.299605178450         1.21803057650    
+    0.303709358977         1.21773093089    
+    0.307813539504         1.21743112129    
+    0.311917720030         1.21713123397    
+    0.316021900557         1.21683135331    
+    0.320126081084         1.21653156185    
+    0.324230261610         1.21623194033    
+    0.328334442137         1.21593256770    
+    0.332438622664         1.21563352118    
+    0.336542803191         1.21533487636    
+    0.340646983717         1.21503670720    
+    0.344751164244         1.21473908616    
+    0.348855344771         1.21444208426    
+    0.352959525297         1.21414577118    
+    0.357063705824         1.21385021534    
+    0.361167886351         1.21355548402    
+    0.365272066877         1.21326164350    
+    0.369376247404         1.21296875914    
+    0.373480427931         1.21267689555    
+    0.377584608458         1.21238611672    
+    0.381688788984         1.21209648616    
+    0.385792969511         1.21180806705    
+    0.389897150038         1.21152092244    
+    0.394001330564         1.21123511536    
+    0.398105511091         1.21095070902    
+    0.402209691618         1.21066776699    
+    0.406313872145         1.21038635335    
+    0.410418052671         1.21010653289    
+    0.414522233198         1.20982837123    
+    0.418626413725         1.20955193508    
+    0.422730594251         1.20927729229    
+    0.426834774778         1.20900451207    
+    0.430938955305         1.20873366511    
+    0.435043135832         1.20846482372    
+    0.439147316358         1.20819806191    
+    0.443251496885         1.20793345549    
+    0.447355677412         1.20767108214    
+    0.451459857938         1.20741102142    
+    0.455564038465         1.20715335481    
+    0.459668218992         1.20689816567    
+    0.463772399519         1.20664553915    
+    0.467876580045         1.20639556211    
+    0.471980760572         1.20614832298    
+    0.476084941099         1.20590391154    
+    0.480189121625         1.20566241865    
+    0.484293302152         1.20542393602    
+    0.488397482679         1.20518855579    
+    0.492501663206         1.20495637016    
+    0.496605843732         1.20472747089    
+    0.500710024259         1.20450194880    
+    0.504814204786         1.20427989314    
+    0.508918385312         1.20406139098    
+    0.513022565839         1.20384652645    
+    0.517126746366         1.20363538000    
+    0.521230926893         1.20342802753    
+    0.525335107419         1.20322453955    
+    0.529439287946         1.20302498016    
+    0.533543468473         1.20282940608    
+    0.537647648999         1.20263786564    
+    0.541751829526         1.20245039761    
+    0.545856010053         1.20226703014    
+    0.549960190580         1.20208777952    
+    0.554064371106         1.20191264906    
+    0.558168551633         1.20174162784    
+    0.562272732160         1.20157468947    
+    0.566376912686         1.20141179091    
+    0.570481093213         1.20125287118    
+    0.574585273740         1.20109785021    
+    0.578689454267         1.20094662759    
+    0.582793634793         1.20079908147    
+    0.586897815320         1.20065506734    
+    0.591001995847         1.20051441705    
+    0.595106176373         1.20037693774    
+    0.599210356900         1.20024241086    
+    0.603314537427         1.20011059134    
+    0.607418717954         1.19998120671    
+    0.611522898480         1.19985395648    
+    0.615627079007         1.19972851139    
+    0.619731259534         1.19960451282    
+    0.623835440060         1.19948157284    
+    0.627939620587         1.19935927410    
+    0.632043801114         1.19923716667    
+    0.636147981641         1.19911476895    
+    0.640252162167         1.19899157914    
+    0.644356342694         1.19886706568    
+    0.648460523221         1.19874064580    
+    0.652564703747         1.19861178919    
+    0.656668884274         1.19847958944    
+    0.660773064801         1.19834322609    
+    0.664877245328         1.19820343875    
+    0.668981425854         1.19805906875    
+    0.673085606381         1.19790776732    
+    0.677189786908         1.19774631018    
+    0.681293967434         1.19757845543    
+    0.685398147961         1.19740954565    
+    0.689502328488         1.19723427346    
+    0.693606509015         1.19704113619    
+    0.697710689541         1.19681302616    
+    0.701814870068         1.19652854725    
+    0.705919050595         1.19618732045    
+    0.710023231121         1.19580768389    
+    0.714127411648         1.19540069686    
+    0.718231592175         1.19497330474    
+    0.722335772702         1.19452863107    
+    0.726439953228         1.19406032204    
+    0.730544133755         1.19356488974    
+    0.734648314282         1.19304488820    
+    0.738752494808         1.19250123761    
+    0.742856675335         1.19193458322    
+    0.746960855862         1.19134354066    
+    0.751065036389         1.19072816222    
+    0.755169216915         1.19008858350    
+    0.759273397442         1.18942467954    
+    0.763377577969         1.18873636876    
+    0.767481758495         1.18802356539    
+    0.771585939022         1.18728615836    
+    0.775690119549         1.18652400230    
+    0.779794300076         1.18573695486    
+    0.783898480602         1.18492486546    
+    0.788002661129         1.18408756118    
+    0.792106841656         1.18322485239    
+    0.796211022182         1.18233653497    
+    0.800315202709         1.18142238881    
+    0.804419383236         1.18048217853    
+    0.808523563763         1.17951565296    
+    0.812627744289         1.17852254574    
+    0.816731924816         1.17750257566    
+    0.820836105343         1.17645544700    
+    0.824940285869         1.17538085002    
+    0.829044466396         1.17427846139    
+    0.833148646923         1.17314794470    
+    0.837252827450         1.17198895104    
+    0.841357007976         1.17080111952    
+    0.845461188503         1.16958407788    
+    0.849565369030         1.16833744304    
+    0.853669549556         1.16706082176    
+    0.857773730083         1.16575381119    
+    0.861877910610         1.16441599950    
+    0.865982091137         1.16304696651    
+    0.870086271663         1.16164628429    
+    0.874190452190         1.16021351773    
+    0.878294632717         1.15874822521    
+    0.882398813243         1.15724995916    
+    0.886502993770         1.15571826663    
+    0.890607174297         1.15415268991    
+    0.894711354824         1.15255276711    
+    0.898815535350         1.15091803267    
+    0.902919715877         1.14924801798    
+    0.907023896404         1.14754225187    
+    0.911128076930         1.14580026120    
+    0.915232257457         1.14402157133    
+    0.919336437984         1.14220570668    
+    0.923440618511         1.14035219119    
+    0.927544799037         1.13846054886    
+    0.931648979564         1.13653030420    
+    0.935753160091         1.13456098270    
+    0.939857340617         1.13255211130    
+    0.943961521144         1.13050321887    
+    0.948065701671         1.12841383658    
+    0.952169882198         1.12628349842    
+    0.956274062724         1.12411174152    
+    0.960378243251         1.12189810666    
+    0.964482423778         1.11964213861    
+    0.968586604304         1.11734338655    
+    0.972690784831         1.11500140442    
+    0.976794965358         1.11261575136    
+    0.980899145885         1.11018599199    
+    0.985003326411         1.10771169685    
+    0.989107506938         1.10519244270    
+    0.993211687465         1.10262781291    
+    0.997315867991         1.10001739774    
+     1.00142004852         1.09736079470    
+     1.00552422904         1.09465760887    
+     1.00962840957         1.09190745318    
+     1.01373259010         1.08910994876    
+     1.01783677062         1.08626472522    
+     1.02194095115         1.08337142096    
+     1.02604513168         1.08042968345    
+     1.03014931221         1.07743916953    
+     1.03425349273         1.07439954566    
+     1.03835767326         1.07131048817    
+     1.04246185379         1.06817168358    
+     1.04656603431         1.06498282879    
+     1.05067021484         1.06174363140    
+     1.05477439537         1.05845380992    
+     1.05887857589         1.05511309403    
+     1.06298275642         1.05172122481    
+     1.06708693695         1.04827795498    
+     1.07119111747         1.04478304912    
+     1.07529529800         1.04123628392    
+     1.07939947853         1.03763744836    
+     1.08350365905         1.03398634392    
+     1.08760783958         1.03028278484    
+     1.09171202011         1.02652659830    
+     1.09581620063         1.02271762460    
+     1.09992038116         1.01885571740    
+     1.10402456169         1.01494074386    
+     1.10812874221         1.01097258490    
+     1.11223292274         1.00695113531    
+     1.11633710327         1.00287630398    
+     1.12044128379        0.998748014070    
+     1.12454546432        0.994566203162    
+     1.12864964485        0.990330823458    
+     1.13275382537        0.986041841932    
+     1.13685800590        0.981699240493    
+     1.14096218643        0.977303016148    
+     1.14506636695        0.972853181156    
+     1.14917054748        0.968349763181    
+     1.15327472801        0.963792805441    
+     1.15737890853        0.959182366855    
+     1.16148308906        0.954518522183    
+     1.16558726959        0.949801362171    
+     1.16969145011        0.945030993682    
+     1.17379563064        0.940207539828    
+     1.17789981117        0.935331140107    
+     1.18200399169        0.930401950519    
+     1.18610817222        0.925420143707    
+     1.19021235275        0.920385909062    
+     1.19431653327        0.915299452863    
+     1.19842071380        0.910160998362    
+     1.20252489433        0.904970785916    
+     1.20662907485        0.899729073086    
+     1.21073325538        0.894436134749    
+     1.21483743591        0.889092263201    
+     1.21894161643        0.883697768258    
+     1.22304579696        0.878252977360    
+     1.22714997749        0.872758235646    
+     1.23125415801        0.867213906083    
+     1.23535833854        0.861620369523    
+     1.23946251907        0.855978024833    
+     1.24356669959        0.850287288913    
+     1.24767088012        0.844548596813    
+     1.25177506065        0.838762401804    
+     1.25587924117        0.832929175428    
+     1.25998342170        0.827049407607    
+     1.26408760223        0.821123606688    
+     1.26819178275        0.815152299512    
+     1.27229596328        0.809136031472    
+     1.27640014381        0.803075366570    
+     1.28050432433        0.796970887470    
+     1.28460850486        0.790823195538    
+     1.28871268539        0.784632910903    
+     1.29281686591        0.778400672473    
+     1.29692104644        0.772127137982    
+     1.30102522697        0.765812984019    
+     1.30512940749        0.759458906046    
+     1.30923358802        0.753065618431    
+     1.31333776855        0.746633854455    
+     1.31744194908        0.740164366327    
+     1.32154612960        0.733657925182    
+     1.32565031013        0.727115321086    
+     1.32975449066        0.720537363026    
+     1.33385867118        0.713924878898    
+     1.33796285171        0.707278715486    
+     1.34206703224        0.700599738434    
+     1.34617121276        0.693888832216    
+     1.35027539329        0.687146900094    
+     1.35437957382        0.680374864072    
+     1.35848375434        0.673573664836    
+     1.36258793487        0.666744261699    
+     1.36669211540        0.659887632524    
+     1.37079629592        0.653004773643    
+     1.37490047645        0.646096699779    
+     1.37900465698        0.639164443942    
+     1.38310883750        0.632209057323    
+     1.38721301803        0.625231609189    
+     1.39131719856        0.618233186739    
+     1.39542137908        0.611214894984    
+     1.39952555961        0.604177856598    
+     1.40362974014        0.597123211750    
+     1.40773392066        0.590052117960    
+     1.41183810119        0.582965749903    
+     1.41594228172        0.575865299227    
+     1.42004646224        0.568751974345    
+     1.42415064277        0.561627000236    
+     1.42825482330        0.554491618192    
+     1.43235900382        0.547347085598    
+     1.43646318435        0.540194675670    
+     1.44056736488        0.533035677183    
+     1.44467154540        0.525871394201    
+     1.44877572593        0.518703145772    
+     1.45287990646        0.511532265617    
+     1.45698408698        0.504360101802    
+     1.46108826751        0.497188016395    
+     1.46519244804        0.490017385105    
+     1.46929662856        0.482849596901    
+     1.47340080909        0.475686053622    
+     1.47750498962        0.468528169554    
+     1.48160917014        0.461377371009    
+     1.48571335067        0.454235095865    
+     1.48981753120        0.447102793101    
+     1.49392171172        0.439981922295    
+     1.49802589225        0.432873953121    
+     1.50213007278        0.425780364811    
+     1.50623425330        0.418702645601    
+     1.51033843383        0.411642292154    
+     1.51444261436        0.404600808938    
+     1.51854679488        0.397579707636    
+     1.52265097541        0.390580506479    
+     1.52675515594        0.383604729572    
+     1.53085933646        0.376653906191    
+     1.53496351699        0.369729570074    
+     1.53906769752        0.362833258663    
+     1.54317187804        0.355966512330    
+     1.54727605857        0.349130873584    
+     1.55138023910        0.342327886209    
+     1.55548441962        0.335559094463    
+     1.55958860015        0.328826042166    
+     1.56369278068        0.322130271798    
+     1.56779696120        0.315473323571    
+     1.57190114173        0.308856734450    
+     1.57600532226        0.302282037194    
+     1.58010950278        0.295750759325    
+     1.58421368331        0.289264422097    
+     1.58831786384        0.282824539435    
+     1.59242204436        0.276432616832    
+     1.59652622489        0.270090150269    
+     1.60063040542        0.263798625064    
+     1.60473458594        0.257559514722    
+     1.60883876647        0.251374279754    
+     1.61294294700        0.245244366515    
+     1.61704712753        0.239171205942    
+     1.62115130805        0.233156212364    
+     1.62525548858        0.227200782238    
+     1.62935966911        0.221306292941    
+     1.63346384963        0.215474101438    
+     1.63756803016        0.209705543045    
+     1.64167221069        0.204001930141    
+     1.64577639121        0.198364550857    
+     1.64988057174        0.192794667886    
+     1.65398475227        0.187293517044    
+     1.65808893279        0.181862306068    
+     1.66219311332        0.176502213317    
+     1.66629729385        0.171214386460    
+     1.67040147437        0.165999941334    
+     1.67450565490        0.160859960499    
+     1.67860983543        0.155795492105    
+     1.68271401595        0.150807548642    
+     1.68681819648        0.145897105727    
+     1.69092237701        0.141065100893    
+     1.69502655753        0.136312432542    
+     1.69913073806        0.131639958607    
+     1.70323491859        0.127048495572    
+     1.70733909911        0.122538817360    
+     1.71144327964        0.118111654254    
+     1.71554746017        0.113767691982    
+     1.71965164069        0.109507570577    
+     1.72375582122        0.105331883530    
+     1.72786000175        0.101241176861    
+     1.73196418227        0.972359482450E-01
+     1.73606836280        0.933166462011E-01
+     1.74017254333        0.894836692754E-01
+     1.74427672385        0.857373653151E-01
+     1.74838090438        0.820780307611E-01
+     1.75248508491        0.785059099859E-01
+     1.75658926543        0.750211946853E-01
+     1.76069344596        0.716240232921E-01
+     1.76479762649        0.683144804542E-01
+     1.76890180701        0.650925965453E-01
+     1.77300598754        0.619583472204E-01
+     1.77711016807        0.589116531686E-01
+     1.78121434859        0.559523790651E-01
+     1.78531852912        0.530803343451E-01
+     1.78942270965        0.502952721990E-01
+     1.79352689017        0.475968894947E-01
+     1.79763107070        0.449848257553E-01
+     1.80173525123        0.424586664302E-01
+     1.80583943175        0.400179374587E-01
+     1.80994361228        0.376621085263E-01
+     1.81404779281        0.353905922310E-01
+     1.81815197333        0.332027440608E-01
+     1.82225615386        0.310978663878E-01
+     1.82636033439        0.290751908869E-01
+     1.83046451491        0.271339067658E-01
+     1.83456869544        0.252731421406E-01
+     1.83867287597        0.234919684827E-01
+     1.84277705649        0.217893831884E-01
+     1.84688123702        0.201643830658E-01
+     1.85098541755        0.186158523225E-01
+     1.85508959807        0.171426334770E-01
+     1.85919377860        0.157435114063E-01
+     1.86329795913        0.144172138144E-01
+     1.86740213965        0.131624642367E-01
+     1.87150632018        0.119777561236E-01
+     1.87561050071        0.108617082450E-01
+     1.87971468123        0.981283401168E-02
+     1.88381886176        0.882959570283E-02
+     1.88792304229        0.791040376531E-02
+     1.89202722281        0.705349830038E-02
+     1.89613140334        0.625746606505E-02
+     1.90023558387        0.552041014009E-02
+     1.90433976440        0.484050164037E-02
+     1.90844394492        0.421584783754E-02
+     1.91254812545        0.364482104782E-02
+     1.91665230598        0.312469814252E-02
+     1.92075648650        0.265371471598E-02
+     1.92486066703        0.222977988232E-02
+     1.92896484756        0.185077049552E-02
+     1.93306902808        0.151452942722E-02
+     1.93717320861        0.121855043901E-02
+     1.94127738914        0.961279974636E-03
+     1.94538156966        0.740124055711E-03
+     1.94948575019        0.552704842350E-03
+     1.95358993072        0.396565030713E-03
+     1.95769411124        0.269166721025E-03
+     1.96179829177        0.167958735434E-03
+     1.96590247230        0.901101379875E-04
+     1.97000665282        0.329382139110E-04
+     1.97411083335       -0.634181950380E-05
+     1.97821501388       -0.305334213304E-04
+     1.98231919440       -0.424315783813E-04
+     1.98642337493       -0.444547235565E-04
+     1.99052755546       -0.400006061296E-04
+     1.99463173598       -0.313062531296E-04
+     1.99873591651       -0.207126289139E-04
+     2.00284009704       -0.102966529433E-04
+     2.00694427756       -0.180228573367E-05
+     2.01104845809        0.129502154033E-05
+     2.01515263862        0.260233453506E-05
+     2.01925681914        0.177617829786E-06
+     2.02336099967       -0.555333667616E-05
+     2.02746518020       -0.135383310149E-04
+     2.03156936072       -0.220463917330E-04
+     2.03567354125       -0.158151730674E-04
+     2.03977772178       -0.161707519898E-04
+     2.04388190230       -0.117073035786E-04
+     2.04798608283         0.00000000000    
+  1  1    2.8507847663824797   #kb l, n (sequence number), Reference energy
+ 500    0.410418052671E-02     2.04798608283     # npts, delta, cutoff
+     0.00000000000       -0.276741973137E-01
+    0.410418052671E-02   -0.278299032875E-01
+    0.820836105343E-02   -0.280185839801E-01
+    0.123125415801E-01   -0.283325378521E-01
+    0.164167221069E-01   -0.287712462120E-01
+    0.205209026336E-01   -0.293340982759E-01
+    0.246250831603E-01   -0.300203933324E-01
+    0.287292636870E-01   -0.308293406464E-01
+    0.328334442137E-01   -0.317600599280E-01
+    0.369376247404E-01   -0.328115815329E-01
+    0.410418052671E-01   -0.339828468487E-01
+    0.451459857938E-01   -0.352727086218E-01
+    0.492501663206E-01   -0.366799312542E-01
+    0.533543468473E-01   -0.382031913196E-01
+    0.574585273740E-01   -0.398410780649E-01
+    0.615627079007E-01   -0.415920937710E-01
+    0.656668884274E-01   -0.434546544987E-01
+    0.697710689541E-01   -0.454270906142E-01
+    0.738752494808E-01   -0.475076474639E-01
+    0.779794300076E-01   -0.496944861138E-01
+    0.820836105343E-01   -0.519856843438E-01
+    0.861877910610E-01   -0.543792372714E-01
+    0.902919715877E-01   -0.568730584514E-01
+    0.943961521144E-01   -0.594649808912E-01
+    0.985003326411E-01   -0.621527580605E-01
+    0.102604513168       -0.649340653530E-01
+    0.106708693695       -0.678065010304E-01
+    0.110812874221       -0.707675878376E-01
+    0.114917054748       -0.738147743649E-01
+    0.119021235275       -0.769454365519E-01
+    0.123125415801       -0.801568793534E-01
+    0.127229596328       -0.834463386259E-01
+    0.131333776855       -0.868109824587E-01
+    0.135437957382       -0.902479137829E-01
+    0.139542137908       -0.937541715686E-01
+    0.143646318435       -0.973267336203E-01
+    0.147750498962       -0.100962518279    
+    0.151854679488       -0.104658386707    
+    0.155958860015       -0.108411145402    
+    0.160063040542       -0.112217548401    
+    0.164167221069       -0.116074299751    
+    0.168271401595       -0.119978056148    
+    0.172375582122       -0.123925429312    
+    0.176479762649       -0.127912988835    
+    0.180583943175       -0.131937264812    
+    0.184688123702       -0.135994750425    
+    0.188792304229       -0.140081904987    
+    0.192896484756       -0.144195156415    
+    0.197000665282       -0.148330904380    
+    0.201104845809       -0.152485522962    
+    0.205209026336       -0.156655363571    
+    0.209313206862       -0.160836757926    
+    0.213417387389       -0.165026020759    
+    0.217521567916       -0.169219452939    
+    0.221625748443       -0.173413344125    
+    0.225729928969       -0.177603975831    
+    0.229834109496       -0.181787624151    
+    0.233938290023       -0.185960562730    
+    0.238042470549       -0.190119065433    
+    0.242146651076       -0.194259409262    
+    0.246250831603       -0.198377877137    
+    0.250355012130       -0.202470760519    
+    0.254459192656       -0.206534362075    
+    0.258563373183       -0.210564998576    
+    0.262667553710       -0.214559003185    
+    0.266771734236       -0.218512728288    
+    0.270875914763       -0.222422547878    
+    0.274980095290       -0.226284860092    
+    0.279084275817       -0.230096089592    
+    0.283188456343       -0.233852689973    
+    0.287292636870       -0.237551146054    
+    0.291396817397       -0.241187976273    
+    0.295500997923       -0.244759734740    
+    0.299605178450       -0.248263013574    
+    0.303709358977       -0.251694444802    
+    0.307813539504       -0.255050702671    
+    0.311917720030       -0.258328505500    
+    0.316021900557       -0.261524617570    
+    0.320126081084       -0.264635851197    
+    0.324230261610       -0.267659068404    
+    0.328334442137       -0.270591182711    
+    0.332438622664       -0.273429160874    
+    0.336542803191       -0.276170024539    
+    0.340646983717       -0.278810851704    
+    0.344751164244       -0.281348778341    
+    0.348855344771       -0.283780999833    
+    0.352959525297       -0.286104772261    
+    0.357063705824       -0.288317413800    
+    0.361167886351       -0.290416305916    
+    0.365272066877       -0.292398894541    
+    0.369376247404       -0.294262691175    
+    0.373480427931       -0.296005273898    
+    0.377584608458       -0.297624288392    
+    0.381688788984       -0.299117448790    
+    0.385792969511       -0.300482538528    
+    0.389897150038       -0.301717411131    
+    0.394001330564       -0.302819990929    
+    0.398105511091       -0.303788273702    
+    0.402209691618       -0.304620327325    
+    0.406313872145       -0.305314292310    
+    0.410418052671       -0.305868382320    
+    0.414522233198       -0.306280884692    
+    0.418626413725       -0.306550160886    
+    0.422730594251       -0.306674646901    
+    0.426834774778       -0.306652853718    
+    0.430938955305       -0.306483367700    
+    0.435043135832       -0.306164851028    
+    0.439147316358       -0.305696042116    
+    0.443251496885       -0.305075755985    
+    0.447355677412       -0.304302884810    
+    0.451459857938       -0.303376398354    
+    0.455564038465       -0.302295344488    
+    0.459668218992       -0.301058849801    
+    0.463772399519       -0.299666120190    
+    0.467876580045       -0.298116441546    
+    0.471980760572       -0.296409180511    
+    0.476084941099       -0.294543785285    
+    0.480189121625       -0.292519786511    
+    0.484293302152       -0.290336798240    
+    0.488397482679       -0.287994518954    
+    0.492501663206       -0.285492732717    
+    0.496605843732       -0.282831310363    
+    0.500710024259       -0.280010210711    
+    0.504814204786       -0.277029481951    
+    0.508918385312       -0.273889263057    
+    0.513022565839       -0.270589785202    
+    0.517126746366       -0.267131373290    
+    0.521230926893       -0.263514447506    
+    0.525335107419       -0.259739524892    
+    0.529439287946       -0.255807220923    
+    0.533543468473       -0.251718251087    
+    0.537647648999       -0.247473432472    
+    0.541751829526       -0.243073685297    
+    0.545856010053       -0.238520034376    
+    0.549960190580       -0.233813610532    
+    0.554064371106       -0.228955651908    
+    0.558168551633       -0.223947505171    
+    0.562272732160       -0.218790626577    
+    0.566376912686       -0.213486582853    
+    0.570481093213       -0.208037051940    
+    0.574585273740       -0.202443823517    
+    0.578689454267       -0.196708799323    
+    0.582793634793       -0.190833993228    
+    0.586897815320       -0.184821531030    
+    0.591001995847       -0.178673650000    
+    0.595106176373       -0.172392698146    
+    0.599210356900       -0.165981133192    
+    0.603314537427       -0.159441521253    
+    0.607418717954       -0.152776535095    
+    0.611522898480       -0.145988952075    
+    0.615627079007       -0.139081652057    
+    0.619731259534       -0.132057615070    
+    0.623835440060       -0.124919916946    
+    0.627939620587       -0.117671725516    
+    0.632043801114       -0.110316304676    
+    0.636147981641       -0.102857007765    
+    0.640252162167       -0.952972447690E-01
+    0.644356342694       -0.876405018519E-01
+    0.648460523221       -0.798903917038E-01
+    0.652564703747       -0.720504010025E-01
+    0.656668884274       -0.641248983374E-01
+    0.660773064801       -0.561180325035E-01
+    0.664877245328       -0.480302499026E-01
+    0.668981425854       -0.398664671874E-01
+    0.673085606381       -0.316344042440E-01
+    0.677189786908       -0.233438473505E-01
+    0.681293967434       -0.149880634986E-01
+    0.685398147961       -0.655643676279E-02
+    0.689502328488        0.193635898469E-02
+    0.693606509015        0.104611121649E-01
+    0.697710689541        0.189770983811E-01
+    0.701814870068        0.274346363719E-01
+    0.705919050595        0.358323612294E-01
+    0.710023231121        0.442121724995E-01
+    0.714127411648        0.525983848603E-01
+    0.718231592175        0.610047158945E-01
+    0.722335772702        0.694366806600E-01
+    0.726439953228        0.778787005311E-01
+    0.730544133755        0.863214355404E-01
+    0.734648314282        0.947691179964E-01
+    0.738752494808        0.103222329578    
+    0.742856675335        0.111681041590    
+    0.746960855862        0.120140674129    
+    0.751065036389        0.128599877996    
+    0.755169216915        0.137057492670    
+    0.759273397442        0.145511778351    
+    0.763377577969        0.153961095688    
+    0.767481758495        0.162403809826    
+    0.771585939022        0.170838243407    
+    0.775690119549        0.179262660607    
+    0.779794300076        0.187675347454    
+    0.783898480602        0.196074590470    
+    0.788002661129        0.204458649085    
+    0.792106841656        0.212825769481    
+    0.796211022182        0.221174191275    
+    0.800315202709        0.229502146269    
+    0.804419383236        0.237807861811    
+    0.808523563763        0.246089561455    
+    0.812627744289        0.254345467917    
+    0.816731924816        0.262573805378    
+    0.820836105343        0.270772801699    
+    0.824940285869        0.278940690752    
+    0.829044466396        0.287075714674    
+    0.833148646923        0.295176126130    
+    0.837252827450        0.303240190510    
+    0.841357007976        0.311266188068    
+    0.845461188503        0.319252415994    
+    0.849565369030        0.327197190388    
+    0.853669549556        0.335098848173    
+    0.857773730083        0.342955748917    
+    0.861877910610        0.350766276546    
+    0.865982091137        0.358528840980    
+    0.870086271663        0.366241879649    
+    0.874190452190        0.373903858931    
+    0.878294632717        0.381513275461    
+    0.882398813243        0.389068657356    
+    0.886502993770        0.396568565333    
+    0.890607174297        0.404011593736    
+    0.894711354824        0.411396371459    
+    0.898815535350        0.418721562767    
+    0.902919715877        0.425985868012    
+    0.907023896404        0.433188024266    
+    0.911128076930        0.440326805860    
+    0.915232257457        0.447401024845    
+    0.919336437984        0.454409531350    
+    0.923440618511        0.461351213855    
+    0.927544799037        0.468224999392    
+    0.931648979564        0.475029853657    
+    0.935753160091        0.481764781059    
+    0.939857340617        0.488428824679    
+    0.943961521144        0.495021066177    
+    0.948065701671        0.501540625608    
+    0.952169882198        0.507986661196    
+    0.956274062724        0.514358369026    
+    0.960378243251        0.520654982704    
+    0.964482423778        0.526875772928    
+    0.968586604304        0.533020047039    
+    0.972690784831        0.539087148477    
+    0.976794965358        0.545076456233    
+    0.980899145885        0.550987384218    
+    0.985003326411        0.556819380649    
+    0.989107506938        0.562571927326    
+    0.993211687465        0.568244538920    
+    0.997315867991        0.573836762175    
+     1.00142004852        0.579348175122    
+     1.00552422904        0.584778386247    
+     1.00962840957        0.590127033623    
+     1.01373259010        0.595393784040    
+     1.01783677062        0.600578332066    
+     1.02194095115        0.605680399177    
+     1.02604513168        0.610699732766    
+     1.03014931221        0.615636105219    
+     1.03425349273        0.620489312857    
+     1.03835767326        0.625259174985    
+     1.04246185379        0.629945532848    
+     1.04656603431        0.634548248653    
+     1.05067021484        0.639067204522    
+     1.05477439537        0.643502301461    
+     1.05887857589        0.647853458329    
+     1.06298275642        0.652120610794    
+     1.06708693695        0.656303710303    
+     1.07119111747        0.660402723015    
+     1.07529529800        0.664417628775    
+     1.07939947853        0.668348420071    
+     1.08350365905        0.672195100995    
+     1.08760783958        0.675957686236    
+     1.09171202011        0.679636200043    
+     1.09581620063        0.683230675226    
+     1.09992038116        0.686741152143    
+     1.10402456169        0.690167677717    
+     1.10812874221        0.693510304451    
+     1.11223292274        0.696769089473    
+     1.11633710327        0.699944093580    
+     1.12044128379        0.703035380310    
+     1.12454546432        0.706043015018    
+     1.12864964485        0.708967063986    
+     1.13275382537        0.711807593535    
+     1.13685800590        0.714564669173    
+     1.14096218643        0.717238354749    
+     1.14506636695        0.719828711641    
+     1.14917054748        0.722335797961    
+     1.15327472801        0.724759667782    
+     1.15737890853        0.727100370399    
+     1.16148308906        0.729357949607    
+     1.16558726959        0.731532443011    
+     1.16969145011        0.733623881352    
+     1.17379563064        0.735632287879    
+     1.17789981117        0.737557677734    
+     1.18200399169        0.739400057370    
+     1.18610817222        0.741159424020    
+     1.19021235275        0.742835765164    
+     1.19431653327        0.744429058065    
+     1.19842071380        0.745939269284    
+     1.20252489433        0.747366354274    
+     1.20662907485        0.748710256998    
+     1.21073325538        0.749970909563    
+     1.21483743591        0.751148231927    
+     1.21894161643        0.752242131608    
+     1.22304579696        0.753252503441    
+     1.22714997749        0.754179229372    
+     1.23125415801        0.755022178298    
+     1.23535833854        0.755781205919    
+     1.23946251907        0.756456154679    
+     1.24356669959        0.757046853667    
+     1.24767088012        0.757553118621    
+     1.25177506065        0.757974751962    
+     1.25587924117        0.758311542832    
+     1.25998342170        0.758563267238    
+     1.26408760223        0.758729688181    
+     1.26819178275        0.758810555852    
+     1.27229596328        0.758805607862    
+     1.27640014381        0.758714569521    
+     1.28050432433        0.758537154154    
+     1.28460850486        0.758273063456    
+     1.28871268539        0.757921987912    
+     1.29281686591        0.757483607220    
+     1.29692104644        0.756957590794    
+     1.30102522697        0.756343598300    
+     1.30512940749        0.755641280223    
+     1.30923358802        0.754850278508    
+     1.31333776855        0.753970227218    
+     1.31744194908        0.753000753243    
+     1.32154612960        0.751941477066    
+     1.32565031013        0.750792013551    
+     1.32975449066        0.749551972793    
+     1.33385867118        0.748220961007    
+     1.33796285171        0.746798581461    
+     1.34206703224        0.745284435451    
+     1.34617121276        0.743678123321    
+     1.35027539329        0.741979245528    
+     1.35437957382        0.740187403753    
+     1.35848375434        0.738302202040    
+     1.36258793487        0.736323247993    
+     1.36669211540        0.734250154011    
+     1.37079629592        0.732082538559    
+     1.37490047645        0.729820027483    
+     1.37900465698        0.727462255366    
+     1.38310883750        0.725008866918    
+     1.38721301803        0.722459518415    
+     1.39131719856        0.719813879156    
+     1.39542137908        0.717071632972    
+     1.39952555961        0.714232479768    
+     1.40362974014        0.711296137094    
+     1.40773392066        0.708262341752    
+     1.41183810119        0.705130851427    
+     1.41594228172        0.701901446364    
+     1.42004646224        0.698573931050    
+     1.42415064277        0.695148135951    
+     1.42825482330        0.691623919239    
+     1.43235900382        0.688001168572    
+     1.43646318435        0.684279802879    
+     1.44056736488        0.680459774170    
+     1.44467154540        0.676541069357    
+     1.44877572593        0.672523712092    
+     1.45287990646        0.668407764619    
+     1.45698408698        0.664193329633    
+     1.46108826751        0.659880552138    
+     1.46519244804        0.655469621324    
+     1.46929662856        0.650960772429    
+     1.47340080909        0.646354288610    
+     1.47750498962        0.641650502797    
+     1.48160917014        0.636849799551    
+     1.48571335067        0.631952616903    
+     1.48981753120        0.626959448178    
+     1.49392171172        0.621870843781    
+     1.49802589225        0.616687413006    
+     1.50213007278        0.611409825773    
+     1.50623425330        0.606038814349    
+     1.51033843383        0.600575175048    
+     1.51444261436        0.595019769844    
+     1.51854679488        0.589373528023    
+     1.52265097541        0.583637447708    
+     1.52675515594        0.577812597381    
+     1.53085933646        0.571900117286    
+     1.53496351699        0.565901220876    
+     1.53906769752        0.559817196102    
+     1.54317187804        0.553649406661    
+     1.54727605857        0.547399293191    
+     1.55138023910        0.541068374303    
+     1.55548441962        0.534658247682    
+     1.55958860015        0.528170590954    
+     1.56369278068        0.521607162525    
+     1.56779696120        0.514969802325    
+     1.57190114173        0.508260432363    
+     1.57600532226        0.501481057362    
+     1.58010950278        0.494633765092    
+     1.58421368331        0.487720726679    
+     1.58831786384        0.480744196789    
+     1.59242204436        0.473706513604    
+     1.59652622489        0.466610098856    
+     1.60063040542        0.459457457537    
+     1.60473458594        0.452251177563    
+     1.60883876647        0.444993929298    
+     1.61294294700        0.437688464853    
+     1.61704712753        0.430337617411    
+     1.62115130805        0.422944300226    
+     1.62525548858        0.415511505571    
+     1.62935966911        0.408042303432    
+     1.63346384963        0.400539840206    
+     1.63756803016        0.393007337089    
+     1.64167221069        0.385448088368    
+     1.64577639121        0.377865459542    
+     1.64988057174        0.370262885249    
+     1.65398475227        0.362643867088    
+     1.65808893279        0.355011971219    
+     1.66219311332        0.347370825808    
+     1.66629729385        0.339724118319    
+     1.67040147437        0.332075592617    
+     1.67450565490        0.324429045919    
+     1.67860983543        0.316788325566    
+     1.68271401595        0.309157325632    
+     1.68681819648        0.301539983370    
+     1.69092237701        0.293940275476    
+     1.69502655753        0.286362214245    
+     1.69913073806        0.278809843457    
+     1.70323491859        0.271287234216    
+     1.70733909911        0.263798480568    
+     1.71144327964        0.256347694969    
+     1.71554746017        0.248939003694    
+     1.71965164069        0.241576541882    
+     1.72375582122        0.234264448658    
+     1.72786000175        0.227006862006    
+     1.73196418227        0.219807913490    
+     1.73606836280        0.212671723007    
+     1.74017254333        0.205602393073    
+     1.74427672385        0.198604003317    
+     1.74838090438        0.191680604695    
+     1.75248508491        0.184836213561    
+     1.75658926543        0.178074805924    
+     1.76069344596        0.171400310995    
+     1.76479762649        0.164816605224    
+     1.76890180701        0.158327505963    
+     1.77300598754        0.151936765094    
+     1.77711016807        0.145648062593    
+     1.78121434859        0.139464999892    
+     1.78531852912        0.133391093431    
+     1.78942270965        0.127429767878    
+     1.79352689017        0.121584349415    
+     1.79763107070        0.115858058283    
+     1.80173525123        0.110254004755    
+     1.80583943175        0.104775177935    
+     1.80994361228        0.994244415813E-01
+     1.81404779281        0.942045265423E-01
+     1.81815197333        0.891180237975E-01
+     1.82225615386        0.841673800091E-01
+     1.82636033439        0.793548793948E-01
+     1.83046451491        0.746826545553E-01
+     1.83456869544        0.701526676487E-01
+     1.83867287597        0.657667061473E-01
+     1.84277705649        0.615263640572E-01
+     1.84688123702        0.574330842806E-01
+     1.85098541755        0.534880762417E-01
+     1.85508959807        0.496923565386E-01
+     1.85919377860        0.460467311988E-01
+     1.86329795913        0.425517890012E-01
+     1.86740213965        0.392079295358E-01
+     1.87150632018        0.360152070262E-01
+     1.87561050071        0.329735582420E-01
+     1.87971468123        0.300826432531E-01
+     1.88381886176        0.273418744505E-01
+     1.88792304229        0.247504093246E-01
+     1.89202722281        0.223070652855E-01
+     1.89613140334        0.200106553151E-01
+     1.90023558387        0.178594315823E-01
+     1.90433976440        0.158514441767E-01
+     1.90844394492        0.139844472807E-01
+     1.91254812545        0.122564110143E-01
+     1.91665230598        0.106633610461E-01
+     1.92075648650        0.920261680900E-02
+     1.92486066703        0.787074878455E-02
+     1.92896484756        0.666403290978E-02
+     1.93306902808        0.557843703144E-02
+     1.93717320861        0.460917866644E-02
+     1.94127738914        0.375249442821E-02
+     1.94538156966        0.300290451485E-02
+     1.94948575019        0.235492307241E-02
+     1.95358993072        0.180264844083E-02
+     1.95769411124        0.133975957853E-02
+     1.96179829177        0.959444392053E-03
+     1.96590247230        0.654743876545E-03
+     1.97000665282        0.418084118000E-03
+     1.97411083335        0.241641415514E-03
+     1.97821501388        0.117332090193E-03
+     1.98231919440        0.368961383393E-04
+     1.98642337493       -0.659725751177E-05
+     1.99052755546       -0.244576086282E-04
+     1.99463173598       -0.234651859046E-04
+     1.99873591651       -0.112052762116E-04
+     2.00284009704        0.542128265051E-05
+     2.00694427756        0.204329708175E-04
+     2.01104845809        0.214629836119E-04
+     2.01515263862        0.208999348128E-04
+     2.01925681914        0.112380664694E-04
+     2.02336099967       -0.695239450152E-05
+     2.02746518020       -0.311882319644E-04
+     2.03156936072       -0.568968417028E-04
+     2.03567354125       -0.341241043427E-04
+     2.03977772178       -0.363557189534E-04
+     2.04388190230       -0.270216422831E-04
+     2.04798608283         0.00000000000    
+  2  1  -12.5673336001767844   #kb l, n (sequence number), Reference energy
+ 500    0.405319520407E-02     2.02254440683     # npts, delta, cutoff
+     0.00000000000        -14.6354839121    
+    0.405319520407E-02    -14.6352985551    
+    0.810639040814E-02    -14.6342660581    
+    0.121595856122E-01    -14.6325443190    
+    0.162127808163E-01    -14.6301324625    
+    0.202659760203E-01    -14.6270294320    
+    0.243191712244E-01    -14.6232339970    
+    0.283723664285E-01    -14.6187447584    
+    0.324255616325E-01    -14.6135601505    
+    0.364787568366E-01    -14.6076784422    
+    0.405319520407E-01    -14.6010977404    
+    0.445851472447E-01    -14.5938159923    
+    0.486383424488E-01    -14.5858309878    
+    0.526915376529E-01    -14.5771403633    
+    0.567447328570E-01    -14.5677416047    
+    0.607979280610E-01    -14.5576320518    
+    0.648511232651E-01    -14.5468089006    
+    0.689043184692E-01    -14.5352692095    
+    0.729575136732E-01    -14.5230099023    
+    0.770107088773E-01    -14.5100277743    
+    0.810639040814E-01    -14.4963194962    
+    0.851170992854E-01    -14.4818816202    
+    0.891702944895E-01    -14.4667105857    
+    0.932234896936E-01    -14.4508027247    
+    0.972766848976E-01    -14.4341542688    
+    0.101329880102        -14.4167613548    
+    0.105383075306        -14.3986200328    
+    0.109436270510        -14.3797262721    
+    0.113489465714        -14.3600759695    
+    0.117542660918        -14.3396649557    
+    0.121595856122        -14.3184890039    
+    0.125649051326        -14.2965438400    
+    0.129702246530        -14.2738251467    
+    0.133755441734        -14.2503285767    
+    0.137808636938        -14.2260497571    
+    0.141861832142        -14.2009843030    
+    0.145915027346        -14.1751278230    
+    0.149968222551        -14.1484759314    
+    0.154021417755        -14.1210242569    
+    0.158074612959        -14.0927684515    
+    0.162127808163        -14.0637042025    
+    0.166181003367        -14.0338272406    
+    0.170234198571        -14.0031333522    
+    0.174287393775        -13.9716183875    
+    0.178340588979        -13.9392782736    
+    0.182393784183        -13.9061090220    
+    0.186446979387        -13.8721067422    
+    0.190500174591        -13.8372676502    
+    0.194553369795        -13.8015880800    
+    0.198606564999        -13.7650644936    
+    0.202659760203        -13.7276934930    
+    0.206712955407        -13.6894718289    
+    0.210766150612        -13.6503964125    
+    0.214819345816        -13.6104643253    
+    0.218872541020        -13.5696728304    
+    0.222925736224        -13.5280193807    
+    0.226978931428        -13.4855016317    
+    0.231032126632        -13.4421174487    
+    0.235085321836        -13.3978649189    
+    0.239138517040        -13.3527423594    
+    0.243191712244        -13.3067483275    
+    0.247244907448        -13.2598816297    
+    0.251298102652        -13.2121413307    
+    0.255351297856        -13.1635267619    
+    0.259404493060        -13.1140375307    
+    0.263457688264        -13.0636735274    
+    0.267510883468        -13.0124349350    
+    0.271564078673        -12.9603222358    
+    0.275617273877        -12.9073362188    
+    0.279670469081        -12.8534779877    
+    0.283723664285        -12.7987489667    
+    0.287776859489        -12.7431509079    
+    0.291830054693        -12.6866858975    
+    0.295883249897        -12.6293563615    
+    0.299936445101        -12.5711650708    
+    0.303989640305        -12.5121151471    
+    0.308042835509        -12.4522100681    
+    0.312096030713        -12.3914536713    
+    0.316149225917        -12.3298501584    
+    0.320202421121        -12.2674040991    
+    0.324255616325        -12.2041204348    
+    0.328308811530        -12.1400044817    
+    0.332362006734        -12.0750619332    
+    0.336415201938        -12.0092988619    
+    0.340468397142        -11.9427217225    
+    0.344521592346        -11.8753373524    
+    0.348574787550        -11.8071529730    
+    0.352627982754        -11.7381761911    
+    0.356681177958        -11.6684149983    
+    0.360734373162        -11.5978777710    
+    0.364787568366        -11.5265732711    
+    0.368840763570        -11.4545106433    
+    0.372893958774        -11.3816994149    
+    0.376947153978        -11.3081494940    
+    0.381000349182        -11.2338711672    
+    0.385053544386        -11.1588750969    
+    0.389106739591        -11.0831723189    
+    0.393159934795        -11.0067742388    
+    0.397213129999        -10.9296926283    
+    0.401266325203        -10.8519396211    
+    0.405319520407        -10.7735277089    
+    0.409372715611        -10.6944697361    
+    0.413425910815        -10.6147788951    
+    0.417479106019        -10.5344687210    
+    0.421532301223        -10.4535530849    
+    0.425585496427        -10.3720461890    
+    0.429638691631        -10.2899625597    
+    0.433691886835        -10.2073170410    
+    0.437745082039        -10.1241247876    
+    0.441798277243        -10.0404012575    
+    0.445851472447        -9.95616220515    
+    0.449904667652        -9.87142367342    
+    0.453957862856        -9.78620198571    
+    0.458011058060        -9.70051373815    
+    0.462064253264        -9.61437579126    
+    0.466117448468        -9.52780526133    
+    0.470170643672        -9.44081951227    
+    0.474223838876        -9.35343614667    
+    0.478277034080        -9.26567299689    
+    0.482330229284        -9.17754811608    
+    0.486383424488        -9.08907976910    
+    0.490436619692        -9.00028642330    
+    0.494489814896        -8.91118673914    
+    0.498543010100        -8.82179956072    
+    0.502596205304        -8.73214390621    
+    0.506649400509        -8.64223895816    
+    0.510702595713        -8.55210405365    
+    0.514755790917        -8.46175867442    
+    0.518808986121        -8.37122243692    
+    0.522862181325        -8.28051508220    
+    0.526915376529        -8.18965646563    
+    0.530968571733        -8.09866654632    
+    0.535021766937        -8.00756537672    
+    0.539074962141        -7.91637309221    
+    0.543128157345        -7.82510990006    
+    0.547181352549        -7.73379606844    
+    0.551234547753        -7.64245191536    
+    0.555287742957        -7.55109779732    
+    0.559340938161        -7.45975409798    
+    0.563394133365        -7.36844121637    
+    0.567447328570        -7.27717955502    
+    0.571500523774        -7.18598950795    
+    0.575553718978        -7.09489144841    
+    0.579606914182        -7.00390571649    
+    0.583660109386        -6.91305260651    
+    0.587713304590        -6.82235235404    
+    0.591766499794        -6.73182512297    
+    0.595819694998        -6.64149099243    
+    0.599872890202        -6.55136994329    
+    0.603926085406        -6.46148184468    
+    0.607979280610        -6.37184644044    
+    0.612032475814        -6.28248333534    
+    0.616085671018        -6.19341198122    
+    0.620138866222        -6.10465166331    
+    0.624192061426        -6.01622148509    
+    0.628245256631        -5.92814035435    
+    0.632298451835        -5.84042697623    
+    0.636351647039        -5.75309983508    
+    0.640404842243        -5.66617715457    
+    0.644458037447        -5.57967692743    
+    0.648511232651        -5.49361686088    
+    0.652564427855        -5.40801431231    
+    0.656617623059        -5.32288704376    
+    0.660670818263        -5.23825152502    
+    0.664724013467        -5.15412346122    
+    0.668777208671        -5.07051762063    
+    0.672830403875        -4.98745387711    
+    0.676883599079        -4.90495390859    
+    0.680936794283        -4.82302382538    
+    0.684989989488        -4.74166379893    
+    0.689043184692        -4.66089659939    
+    0.693096379896        -4.58075763400    
+    0.697149575100        -4.50129115556    
+    0.701202770304        -4.42255282293    
+    0.705255965508        -4.34455729876    
+    0.709309160712        -4.26727658064    
+    0.713362355916        -4.19069537646    
+    0.717415551120        -4.11480774431    
+    0.721468746324        -4.03961402785    
+    0.725521941528        -3.96513301874    
+    0.729575136732        -3.89137898277    
+    0.733628331936        -3.81836216602    
+    0.737681527140        -3.74608184978    
+    0.741734722344        -3.67454478163    
+    0.745787917549        -3.60376013507    
+    0.749841112753        -3.53373411289    
+    0.753894307957        -3.46447229157    
+    0.757947503161        -3.39598029509    
+    0.762000698365        -3.32826328890    
+    0.766053893569        -3.26132612574    
+    0.770107088773        -3.19517328791    
+    0.774160283977        -3.12980896613    
+    0.778213479181        -3.06523697902    
+    0.782266674385        -3.00146078737    
+    0.786319869589        -2.93848351826    
+    0.790373064793        -2.87630795575    
+    0.794426259997        -2.81493654788    
+    0.798479455201        -2.75437140062    
+    0.802532650405        -2.69461428204    
+    0.806585845610        -2.63566662713    
+    0.810639040814        -2.57752953803    
+    0.814692236018        -2.52020378785    
+    0.818745431222        -2.46368981934    
+    0.822798626426        -2.40798774783    
+    0.826851821630        -2.35309736889    
+    0.830905016834        -2.29901815983    
+    0.834958212038        -2.24574928495    
+    0.839011407242        -2.19328959672    
+    0.843064602446        -2.14163764086    
+    0.847117797650        -2.09079166150    
+    0.851170992854        -2.04074960550    
+    0.855224188058        -1.99150912755    
+    0.859277383262        -1.94306759534    
+    0.863330578467        -1.89542209500    
+    0.867383773671        -1.84856943681    
+    0.871436968875        -1.80250616107    
+    0.875490164079        -1.75722854414    
+    0.879543359283        -1.71273260469    
+    0.883596554487        -1.66901411011    
+    0.887649749691        -1.62606858308    
+    0.891702944895        -1.58389130828    
+    0.895756140099        -1.54247733923    
+    0.899809335303        -1.50182150525    
+    0.903862530507        -1.46191841851    
+    0.907915725711        -1.42276248120    
+    0.911968920915        -1.38434789277    
+    0.916022116119        -1.34666865721    
+    0.920075311323        -1.30971859045    
+    0.924128506528        -1.27349132773    
+    0.928181701732        -1.23798033106    
+    0.932234896936        -1.20317889667    
+    0.936288092140        -1.16908016248    
+    0.940341287344        -1.13567711561    
+    0.944394482548        -1.10296259976    
+    0.948447677752        -1.07092932275    
+    0.952500872956        -1.03956986389    
+    0.956554068160        -1.00887668133    
+    0.960607263364       -0.978842119452    
+    0.964660458568       -0.949458416098    
+    0.968713653772       -0.920717709795    
+    0.972766848976       -0.892612046907    
+    0.976820044180       -0.865133388682    
+    0.980873239384       -0.838273618244    
+    0.984926434589       -0.812024547456    
+    0.988979629793       -0.786377923719    
+    0.993032824997       -0.761325436644    
+    0.997086020201       -0.736858724647    
+     1.00113921540       -0.712969381395    
+     1.00519241061       -0.689648962153    
+     1.00924560581       -0.666888989984    
+     1.01329880102       -0.644680961844    
+     1.01735199622       -0.623016354534    
+     1.02140519143       -0.601886630520    
+     1.02545838663       -0.581283243611    
+     1.02951158183       -0.561197644500    
+     1.03356477704       -0.541621286168    
+     1.03761797224       -0.522545629126    
+     1.04167116745       -0.503962146527    
+     1.04572436265       -0.485862329113    
+     1.04977755785       -0.468237690017    
+     1.05383075306       -0.451079769423    
+     1.05788394826       -0.434380139050    
+     1.06193714347       -0.418130406505    
+     1.06599033867       -0.402322219471    
+     1.07004353387       -0.386947269741    
+     1.07409672908       -0.371997297115    
+     1.07814992428       -0.357464093119    
+     1.08220311949       -0.343339504598    
+     1.08625631469       -0.329615437125    
+     1.09030950989       -0.316283858286    
+     1.09436270510       -0.303336800802    
+     1.09841590030       -0.290766365511    
+     1.10246909551       -0.278564724194    
+     1.10652229071       -0.266724122266    
+     1.11057548591       -0.255236881314    
+     1.11462868112       -0.244095401492    
+     1.11868187632       -0.233292163783    
+     1.12273507153       -0.222819732120    
+     1.12678826673       -0.212670755376    
+     1.13084146194       -0.202837969212    
+     1.13489465714       -0.193314197802    
+     1.13894785234       -0.184092355430    
+     1.14300104755       -0.175165447951    
+     1.14705424275       -0.166526574139    
+     1.15110743796       -0.158168926913    
+     1.15516063316       -0.150085794446    
+     1.15921382836       -0.142270561159    
+     1.16326702357       -0.134716708602    
+     1.16732021877       -0.127417816231    
+     1.17137341398       -0.120367562066    
+     1.17542660918       -0.113559723261    
+     1.17947980438       -0.106988176577    
+     1.18353299959       -0.100646898734    
+     1.18758619479       -0.945299666980E-01
+     1.19163939000       -0.886315578630E-01
+     1.19569258520       -0.829459501428E-01
+     1.19974578040       -0.774675219941E-01
+     1.20379897561       -0.721907523418E-01
+     1.20785217081       -0.671102204317E-01
+     1.21190536602       -0.622206056169E-01
+     1.21595856122       -0.575166870462E-01
+     1.22001175642       -0.529933433113E-01
+     1.22406495163       -0.486455520123E-01
+     1.22811814683       -0.444683892660E-01
+     1.23217134204       -0.404570291504E-01
+     1.23622453724       -0.366067430936E-01
+     1.24027773244       -0.329128992047E-01
+     1.24433092765       -0.293709615579E-01
+     1.24838412285       -0.259764894217E-01
+     1.25243731806       -0.227251364429E-01
+     1.25649051326       -0.196126497919E-01
+     1.26054370847       -0.166348692517E-01
+     1.26459690367       -0.137877262828E-01
+     1.26865009887       -0.110672430450E-01
+     1.27270329408       -0.846953138413E-02
+     1.27675648928       -0.599079179075E-02
+     1.28080968449       -0.362731232545E-02
+     1.28486287969       -0.137546751870E-02
+     1.28891607489        0.768282755057E-03
+     1.29296927010        0.280739442635E-02
+     1.29702246530        0.474524040070E-02
+     1.30107566051        0.658511174796E-02
+     1.30512885571        0.833021890791E-02
+     1.30918205091        0.998369291297E-02
+     1.31323524612        0.115485866225E-01
+     1.31728844132        0.130278759697E-01
+     1.32134163653        0.144244612187E-01
+     1.32539483173        0.157411682291E-01
+     1.32944802693        0.169807497281E-01
+     1.33350122214        0.181458865875E-01
+     1.33755441734        0.192391891066E-01
+     1.34160761255        0.202631982927E-01
+     1.34566080775        0.212203871477E-01
+     1.34971400295        0.221131619521E-01
+     1.35376719816        0.229438635489E-01
+     1.35782039336        0.237147686228E-01
+     1.36187358857        0.244280909777E-01
+     1.36592678377        0.250859828083E-01
+     1.36997997898        0.256905359693E-01
+     1.37403317418        0.262437832298E-01
+     1.37808636938        0.267476995287E-01
+     1.38213956459        0.272042032164E-01
+     1.38619275979        0.276151572908E-01
+     1.39024595500        0.279823706190E-01
+     1.39429915020        0.283075991510E-01
+     1.39835234540        0.285925471216E-01
+     1.40240554061        0.288388682386E-01
+     1.40645873581        0.290481668627E-01
+     1.41051193102        0.292219991650E-01
+     1.41456512622        0.293618742800E-01
+     1.41861832142        0.294692554386E-01
+     1.42267151663        0.295455610911E-01
+     1.42672471183        0.295921660078E-01
+     1.43077790704        0.296104023705E-01
+     1.43483110224        0.296015608441E-01
+     1.43888429744        0.295668916374E-01
+     1.44293749265        0.295076055375E-01
+     1.44699068785        0.294248749367E-01
+     1.45104388306        0.293198348378E-01
+     1.45509707826        0.291935838424E-01
+     1.45915027346        0.290471851255E-01
+     1.46320346867        0.288816673846E-01
+     1.46725666387        0.286980257784E-01
+     1.47130985908        0.284972228444E-01
+     1.47536305428        0.282801894014E-01
+     1.47941624948        0.280478254276E-01
+     1.48346944469        0.278010009273E-01
+     1.48752263989        0.275405567764E-01
+     1.49157583510        0.272673055499E-01
+     1.49562903030        0.269820323346E-01
+     1.49968222551        0.266854955163E-01
+     1.50373542071        0.263784275568E-01
+     1.50778861591        0.260615357481E-01
+     1.51184181112        0.257355029536E-01
+     1.51589500632        0.254009883241E-01
+     1.51994820153        0.250586280030E-01
+     1.52400139673        0.247090358107E-01
+     1.52805459193        0.243528039118E-01
+     1.53210778714        0.239905034678E-01
+     1.53616098234        0.236226852669E-01
+     1.54021417755        0.232498803424E-01
+     1.54426737275        0.228726005720E-01
+     1.54832056795        0.224913392601E-01
+     1.55237376316        0.221065717069E-01
+     1.55642695836        0.217187557551E-01
+     1.56048015357        0.213283323269E-01
+     1.56453334877        0.209357259424E-01
+     1.56858654397        0.205413452219E-01
+     1.57263973918        0.201455833770E-01
+     1.57669293438        0.197488186795E-01
+     1.58074612959        0.193514149220E-01
+     1.58479932479        0.189537218619E-01
+     1.58885251999        0.185560756496E-01
+     1.59290571520        0.181587992480E-01
+     1.59695891040        0.177622028289E-01
+     1.60101210561        0.173665841655E-01
+     1.60506530081        0.169722290063E-01
+     1.60911849602        0.165794114412E-01
+     1.61317169122        0.161883942470E-01
+     1.61722488642        0.157994292280E-01
+     1.62127808163        0.154127575421E-01
+     1.62533127683        0.150286100142E-01
+     1.62938447204        0.146472074438E-01
+     1.63343766724        0.142687608906E-01
+     1.63749086244        0.138934719605E-01
+     1.64154405765        0.135215330752E-01
+     1.64559725285        0.131531277332E-01
+     1.64965044806        0.127884307642E-01
+     1.65370364326        0.124276085655E-01
+     1.65775683846        0.120708193381E-01
+     1.66181003367        0.117182133092E-01
+     1.66586322887        0.113699329477E-01
+     1.66991642408        0.110261131696E-01
+     1.67396961928        0.106868815405E-01
+     1.67802281448        0.103523584605E-01
+     1.68207600969        0.100226573515E-01
+     1.68612920489        0.969788483225E-02
+     1.69018240010        0.937814088699E-02
+     1.69423559530        0.906351902943E-02
+     1.69828879050        0.875410645613E-02
+     1.70234198571        0.844998419773E-02
+     1.70639518091        0.815122726219E-02
+     1.71044837612        0.785790477278E-02
+     1.71450157132        0.757008009997E-02
+     1.71855476652        0.728781098909E-02
+     1.72260796173        0.701114968178E-02
+     1.72666115693        0.674014303313E-02
+     1.73071435214        0.647483262453E-02
+     1.73476754734        0.621525486906E-02
+     1.73882074255        0.596144111862E-02
+     1.74287393775        0.571341776099E-02
+     1.74692713295        0.547120631579E-02
+     1.75098032816        0.523482352604E-02
+     1.75503352336        0.500428144639E-02
+     1.75908671857        0.477958752677E-02
+     1.76313991377        0.456074469507E-02
+     1.76719310897        0.434775143437E-02
+     1.77124630418        0.414060185819E-02
+     1.77529949938        0.393928578764E-02
+     1.77935269459        0.374378880066E-02
+     1.78340588979        0.355409233014E-02
+     1.78745908499        0.337017370869E-02
+     1.79151228020        0.319200623533E-02
+     1.79556547540        0.301955923539E-02
+     1.79961867061        0.285279809558E-02
+     1.80367186581        0.269168442047E-02
+     1.80772506101        0.253617592570E-02
+     1.81177825622        0.238622659711E-02
+     1.81583145142        0.224178671671E-02
+     1.81988464663        0.210280303568E-02
+     1.82393784183        0.196921830385E-02
+     1.82799103703        0.184097210818E-02
+     1.83204423224        0.171800041807E-02
+     1.83609742744        0.160023574316E-02
+     1.84015062265        0.148760717423E-02
+     1.84420381785        0.138003996845E-02
+     1.84825701306        0.127745755012E-02
+     1.85231020826        0.117977847562E-02
+     1.85636340346        0.108691847451E-02
+     1.86041659867        0.998790022300E-03
+     1.86446979387        0.915302388538E-03
+     1.86852298908        0.836362980345E-03
+     1.87257618428        0.761871687392E-03
+     1.87662937948        0.691730059634E-03
+     1.88068257469        0.625835267654E-03
+     1.88473576989        0.564081588499E-03
+     1.88878896510        0.506357009405E-03
+     1.89284216030        0.452557442443E-03
+     1.89689535550        0.402565341726E-03
+     1.90094855071        0.356263133874E-03
+     1.90500174591        0.313530184590E-03
+     1.90905494112        0.274242852745E-03
+     1.91310813632        0.238286327933E-03
+     1.91716133152        0.205505324347E-03
+     1.92121452673        0.175779236469E-03
+     1.92526772193        0.148974490894E-03
+     1.92932091714        0.124955553329E-03
+     1.93337411234        0.103584843916E-03
+     1.93742730754        0.847123703564E-04
+     1.94148050275        0.682185656044E-04
+     1.94553369795        0.539484108601E-04
+     1.94958689316        0.417532502493E-04
+     1.95364008836        0.314809474317E-04
+     1.95769328356        0.229759291157E-04
+     1.96174647877        0.161004002058E-04
+     1.96579967397        0.106471550595E-04
+     1.96985286918        0.647154133802E-05
+     1.97390606438        0.340954967313E-05
+     1.97795925959        0.129813235709E-05
+     1.98201245479       -0.234676799584E-07
+     1.98606564999       -0.767536168649E-06
+     1.99011884520       -0.970494404109E-06
+     1.99417204040       -0.819884164462E-06
+     1.99822523561       -0.450164299318E-06
+     2.00227843081        0.118203097346E-07
+     2.00633162601        0.447740041637E-06
+     2.01038482122        0.968978092690E-06
+     2.01443801642        0.105405166638E-05
+     2.01849121163        0.741638688150E-06
+     2.02254440683         0.00000000000    
+  3  1   -1.6499965700688726   #kb l, n (sequence number), Reference energy
+ 500    0.410418052671E-02     2.04798608283     # npts, delta, cutoff
+     0.00000000000        -2.34574468901    
+    0.410418052671E-02    -2.34617902780    
+    0.820836105343E-02    -2.34642056042    
+    0.123125415801E-01    -2.34682231847    
+    0.164167221069E-01    -2.34738360839    
+    0.205209026336E-01    -2.34810363690    
+    0.246250831603E-01    -2.34898152042    
+    0.287292636870E-01    -2.35001628588    
+    0.328334442137E-01    -2.35120687141    
+    0.369376247404E-01    -2.35255212660    
+    0.410418052671E-01    -2.35405081254    
+    0.451459857938E-01    -2.35570160224    
+    0.492501663206E-01    -2.35750308012    
+    0.533543468473E-01    -2.35945374267    
+    0.574585273740E-01    -2.36155199853    
+    0.615627079007E-01    -2.36379616811    
+    0.656668884274E-01    -2.36618448438    
+    0.697710689541E-01    -2.36871509255    
+    0.738752494808E-01    -2.37138605076    
+    0.779794300076E-01    -2.37419533030    
+    0.820836105343E-01    -2.37714081553    
+    0.861877910610E-01    -2.38022030495    
+    0.902919715877E-01    -2.38343151105    
+    0.943961521144E-01    -2.38677206162    
+    0.985003326411E-01    -2.39023949962    
+    0.102604513168        -2.39383128445    
+    0.106708693695        -2.39754479272    
+    0.110812874221        -2.40137731872    
+    0.114917054748        -2.40532607636    
+    0.119021235275        -2.40938819932    
+    0.123125415801        -2.41356074263    
+    0.127229596328        -2.41784068483    
+    0.131333776855        -2.42222492746    
+    0.135437957382        -2.42671029923    
+    0.139542137908        -2.43129355498    
+    0.143646318435        -2.43597137956    
+    0.147750498962        -2.44074038880    
+    0.151854679488        -2.44559713102    
+    0.155958860015        -2.45053809026    
+    0.160063040542        -2.45555968733    
+    0.164167221069        -2.46065828273    
+    0.168271401595        -2.46583017851    
+    0.172375582122        -2.47107162091    
+    0.176479762649        -2.47637880271    
+    0.180583943175        -2.48174786598    
+    0.184688123702        -2.48717490417    
+    0.188792304229        -2.49265596539    
+    0.192896484756        -2.49818705397    
+    0.197000665282        -2.50376413452    
+    0.201104845809        -2.50938313369    
+    0.205209026336        -2.51503994287    
+    0.209313206862        -2.52073042153    
+    0.213417387389        -2.52645039936    
+    0.217521567916        -2.53219567939    
+    0.221625748443        -2.53796204027    
+    0.225729928969        -2.54374523946    
+    0.229834109496        -2.54954101527    
+    0.233938290023        -2.55534509026    
+    0.238042470549        -2.56115317296    
+    0.242146651076        -2.56696096109    
+    0.246250831603        -2.57276414390    
+    0.250355012130        -2.57855840449    
+    0.254459192656        -2.58433942205    
+    0.258563373183        -2.59010287494    
+    0.262667553710        -2.59584444190    
+    0.266771734236        -2.60155980536    
+    0.270875914763        -2.60724465295    
+    0.274980095290        -2.61289467985    
+    0.279084275817        -2.61850559084    
+    0.283188456343        -2.62407310220    
+    0.287292636870        -2.62959294375    
+    0.291396817397        -2.63506086101    
+    0.295500997923        -2.64047261637    
+    0.299605178450        -2.64582399159    
+    0.303709358977        -2.65111078875    
+    0.307813539504        -2.65632883277    
+    0.311917720030        -2.66147397234    
+    0.316021900557        -2.66654208150    
+    0.320126081084        -2.67152906164    
+    0.324230261610        -2.67643084237    
+    0.328334442137        -2.68124338309    
+    0.332438622664        -2.68596267432    
+    0.336542803191        -2.69058473899    
+    0.340646983717        -2.69510563339    
+    0.344751164244        -2.69952144852    
+    0.348855344771        -2.70382831122    
+    0.352959525297        -2.70802238495    
+    0.357063705824        -2.71209987083    
+    0.361167886351        -2.71605700862    
+    0.365272066877        -2.71989007747    
+    0.369376247404        -2.72359539678    
+    0.373480427931        -2.72716932673    
+    0.377584608458        -2.73060826923    
+    0.381688788984        -2.73390866838    
+    0.385792969511        -2.73706701104    
+    0.389897150038        -2.74007982753    
+    0.394001330564        -2.74294369202    
+    0.398105511091        -2.74565522299    
+    0.402209691618        -2.74821108388    
+    0.406313872145        -2.75060798347    
+    0.410418052671        -2.75284267624    
+    0.414522233198        -2.75491196300    
+    0.418626413725        -2.75681269138    
+    0.422730594251        -2.75854175627    
+    0.426834774778        -2.76009610056    
+    0.430938955305        -2.76147271559    
+    0.435043135832        -2.76266864208    
+    0.439147316358        -2.76368097095    
+    0.443251496885        -2.76450684396    
+    0.447355677412        -2.76514345505    
+    0.451459857938        -2.76558805138    
+    0.455564038465        -2.76583793459    
+    0.459668218992        -2.76589046245    
+    0.463772399519        -2.76574305036    
+    0.467876580045        -2.76539317317    
+    0.471980760572        -2.76483836733    
+    0.476084941099        -2.76407623302    
+    0.480189121625        -2.76310443661    
+    0.484293302152        -2.76192071331    
+    0.488397482679        -2.76052287000    
+    0.492501663206        -2.75890878837    
+    0.496605843732        -2.75707642829    
+    0.500710024259        -2.75502383137    
+    0.504814204786        -2.75274912447    
+    0.508918385312        -2.75025052371    
+    0.513022565839        -2.74752633879    
+    0.517126746366        -2.74457497720    
+    0.521230926893        -2.74139494855    
+    0.525335107419        -2.73798486926    
+    0.529439287946        -2.73434346726    
+    0.533543468473        -2.73046958674    
+    0.537647648999        -2.72636219300    
+    0.541751829526        -2.72202037730    
+    0.545856010053        -2.71744336178    
+    0.549960190580        -2.71263050416    
+    0.554064371106        -2.70758130240    
+    0.558168551633        -2.70229539939    
+    0.562272732160        -2.69677258735    
+    0.566376912686        -2.69101281206    
+    0.570481093213        -2.68501617676    
+    0.574585273740        -2.67878294576    
+    0.578689454267        -2.67231354796    
+    0.582793634793        -2.66560857981    
+    0.586897815320        -2.65866880771    
+    0.591001995847        -2.65149517028    
+    0.595106176373        -2.64408878009    
+    0.599210356900        -2.63645092477    
+    0.603314537427        -2.62858306760    
+    0.607418717954        -2.62048684777    
+    0.611522898480        -2.61216407979    
+    0.615627079007        -2.60361675270    
+    0.619731259534        -2.59484702900    
+    0.623835440060        -2.58585724021    
+    0.627939620587        -2.57664988316    
+    0.632043801114        -2.56722763021    
+    0.636147981641        -2.55759332053    
+    0.640252162167        -2.54774990477    
+    0.644356342694        -2.53770048289    
+    0.648460523221        -2.52744839688    
+    0.652564703747        -2.51699678023    
+    0.656668884274        -2.50635037441    
+    0.660773064801        -2.49551355104    
+    0.664877245328        -2.48448404876    
+    0.668981425854        -2.47326767703    
+    0.673085606381        -2.46187531772    
+    0.677189786908        -2.45032160009    
+    0.681293967434        -2.43859147126    
+    0.685398147961        -2.42666295630    
+    0.689502328488        -2.41455958550    
+    0.693606509015        -2.40233109976    
+    0.697710689541        -2.39004836101    
+    0.701814870068        -2.37779863523    
+    0.705919050595        -2.36558200478    
+    0.710023231121        -2.35332054110    
+    0.714127411648        -2.34096791660    
+    0.718231592175        -2.32849672959    
+    0.722335772702        -2.31589455245    
+    0.726439953228        -2.30318722708    
+    0.730544133755        -2.29038930752    
+    0.734648314282        -2.27749083146    
+    0.738752494808        -2.26448849917    
+    0.742856675335        -2.25138016926    
+    0.746960855862        -2.23817199297    
+    0.751065036389        -2.22486432946    
+    0.755169216915        -2.21145725248    
+    0.759273397442        -2.19795194271    
+    0.763377577969        -2.18434945781    
+    0.767481758495        -2.17065090931    
+    0.771585939022        -2.15685754875    
+    0.775690119549        -2.14297079823    
+    0.779794300076        -2.12899210526    
+    0.783898480602        -2.11492298287    
+    0.788002661129        -2.10076506097    
+    0.792106841656        -2.08652006209    
+    0.796211022182        -2.07218979014    
+    0.800315202709        -2.05777613356    
+    0.804419383236        -2.04328105987    
+    0.808523563763        -2.02870661514    
+    0.812627744289        -2.01405491912    
+    0.816731924816        -1.99932816154    
+    0.820836105343        -1.98452859832    
+    0.824940285869        -1.96965854771    
+    0.829044466396        -1.95472038626    
+    0.833148646923        -1.93971654478    
+    0.837252827450        -1.92464950436    
+    0.841357007976        -1.90952179235    
+    0.845461188503        -1.89433597834    
+    0.849565369030        -1.87909467031    
+    0.853669549556        -1.86380051078    
+    0.857773730083        -1.84845617300    
+    0.861877910610        -1.83306435732    
+    0.865982091137        -1.81762778760    
+    0.870086271663        -1.80214920773    
+    0.874190452190        -1.78663137825    
+    0.878294632717        -1.77107707314    
+    0.882398813243        -1.75548907663    
+    0.886502993770        -1.73987018023    
+    0.890607174297        -1.72422317977    
+    0.894711354824        -1.70855087265    
+    0.898815535350        -1.69285605514    
+    0.902919715877        -1.67714151986    
+    0.907023896404        -1.66141005328    
+    0.911128076930        -1.64566443346    
+    0.915232257457        -1.62990742779    
+    0.919336437984        -1.61414179096    
+    0.923440618511        -1.59837026288    
+    0.927544799037        -1.58259556683    
+    0.931648979564        -1.56682040763    
+    0.935753160091        -1.55104747002    
+    0.939857340617        -1.53527941699    
+    0.943961521144        -1.51951888834    
+    0.948065701671        -1.50376849926    
+    0.952169882198        -1.48803083897    
+    0.956274062724        -1.47230846952    
+    0.960378243251        -1.45660392465    
+    0.964482423778        -1.44091970866    
+    0.968586604304        -1.42525829545    
+    0.972690784831        -1.40962212763    
+    0.976794965358        -1.39401361563    
+    0.980899145885        -1.37843513692    
+    0.985003326411        -1.36288903529    
+    0.989107506938        -1.34737762019    
+    0.993211687465        -1.33190316613    
+    0.997315867991        -1.31646791218    
+     1.00142004852        -1.30107406147    
+     1.00552422904        -1.28572378076    
+     1.00962840957        -1.27041920009    
+     1.01373259010        -1.25516241246    
+     1.01783677062        -1.23995547356    
+     1.02194095115        -1.22480040142    
+     1.02604513168        -1.20969917634    
+     1.03014931221        -1.19465374061    
+     1.03425349273        -1.17966599856    
+     1.03835767326        -1.16473781642    
+     1.04246185379        -1.14987102235    
+     1.04656603431        -1.13506740631    
+     1.05067021484        -1.12032872017    
+     1.05477439537        -1.10565667774    
+     1.05887857589        -1.09105295488    
+     1.06298275642        -1.07651918957    
+     1.06708693695        -1.06205698208    
+     1.07119111747        -1.04766789514    
+     1.07529529800        -1.03335345412    
+     1.07939947853        -1.01911514724    
+     1.08350365905        -1.00495442580    
+     1.08760783958       -0.990872704443    
+     1.09171202011       -0.976871361398    
+     1.09581620063       -0.962951738795    
+     1.09992038116       -0.949115142925    
+     1.10402456169       -0.935362844575    
+     1.10812874221       -0.921696079338    
+     1.11223292274       -0.908116047974    
+     1.11633710327       -0.894623916753    
+     1.12044128379       -0.881220817809    
+     1.12454546432       -0.867907849527    
+     1.12864964485       -0.854686076894    
+     1.13275382537       -0.841556531900    
+     1.13685800590       -0.828520213922    
+     1.14096218643       -0.815578090126    
+     1.14506636695       -0.802731095862    
+     1.14917054748       -0.789980135078    
+     1.15327472801       -0.777326080717    
+     1.15737890853       -0.764769775140    
+     1.16148308906       -0.752312030533    
+     1.16558726959       -0.739953629319    
+     1.16969145011       -0.727695324576    
+     1.17379563064       -0.715537840443    
+     1.17789981117       -0.703481872538    
+     1.18200399169       -0.691528088371    
+     1.18610817222       -0.679677127742    
+     1.19021235275       -0.667929603159    
+     1.19431653327       -0.656286100223    
+     1.19842071380       -0.644747178057    
+     1.20252489433       -0.633313369680    
+     1.20662907485       -0.621985182406    
+     1.21073325538       -0.610763098231    
+     1.21483743591       -0.599647574204    
+     1.21894161643       -0.588639042807    
+     1.22304579696       -0.577737912309    
+     1.22714997749       -0.566944567162    
+     1.23125415801       -0.556259368294    
+     1.23535833854       -0.545682653513    
+     1.23946251907       -0.535214737772    
+     1.24356669959       -0.524855913605    
+     1.24767088012       -0.514606451396    
+     1.25177506065       -0.504466599700    
+     1.25587924117       -0.494436585593    
+     1.25998342170       -0.484516614905    
+     1.26408760223       -0.474706872550    
+     1.26819178275       -0.465007522802    
+     1.27229596328       -0.455418709561    
+     1.27640014381       -0.445940556631    
+     1.28050432433       -0.436573167965    
+     1.28460850486       -0.427316627925    
+     1.28871268539       -0.418171001501    
+     1.29281686591       -0.409136334573    
+     1.29692104644       -0.400212654113    
+     1.30102522697       -0.391399968404    
+     1.30512940749       -0.382698267250    
+     1.30923358802       -0.374107522157    
+     1.31333776855       -0.365627686527    
+     1.31744194908       -0.357258695840    
+     1.32154612960       -0.349000467813    
+     1.32565031013       -0.340852902573    
+     1.32975449066       -0.332815882801    
+     1.33385867118       -0.324889273879    
+     1.33796285171       -0.317072924028    
+     1.34206703224       -0.309366664431    
+     1.34617121276       -0.301770309362    
+     1.35027539329       -0.294283656290    
+     1.35437957382       -0.286906485989    
+     1.35848375434       -0.279638562636    
+     1.36258793487       -0.272479633903    
+     1.36669211540       -0.265429431039    
+     1.37079629592       -0.258487668949    
+     1.37490047645       -0.251654046262    
+     1.37900465698       -0.244928245393    
+     1.38310883750       -0.238309932607    
+     1.38721301803       -0.231798758067    
+     1.39131719856       -0.225394355881    
+     1.39542137908       -0.219096344147    
+     1.39952555961       -0.212904324987    
+     1.40362974014       -0.206817884577    
+     1.40773392066       -0.200836593179    
+     1.41183810119       -0.194960005166    
+     1.41594228172       -0.189187659036    
+     1.42004646224       -0.183519077432    
+     1.42415064277       -0.177953767162    
+     1.42825482330       -0.172491219197    
+     1.43235900382       -0.167130908691    
+     1.43646318435       -0.161872294984    
+     1.44056736488       -0.156714821609    
+     1.44467154540       -0.151657916301    
+     1.44877572593       -0.146700990999    
+     1.45287990646       -0.141843441856    
+     1.45698408698       -0.137084649243    
+     1.46108826751       -0.132423977760    
+     1.46519244804       -0.127860776247    
+     1.46929662856       -0.123394377795    
+     1.47340080909       -0.119024099762    
+     1.47750498962       -0.114749243807    
+     1.48160917014       -0.110569095891    
+     1.48571335067       -0.106482926324    
+     1.48981753120       -0.102489989794    
+     1.49392171172       -0.985895254169E-01
+     1.49802589225       -0.947807567779E-01
+     1.50213007278       -0.910628919952E-01
+     1.50623425330       -0.874351237846E-01
+     1.51033843383       -0.838966295301E-01
+     1.51444261436       -0.804465713929E-01
+     1.51854679488       -0.770840963710E-01
+     1.52265097541       -0.738083364297E-01
+     1.52675515594       -0.706184086143E-01
+     1.53085933646       -0.675134151926E-01
+     1.53496351699       -0.644924437846E-01
+     1.53906769752       -0.615545675317E-01
+     1.54317187804       -0.586988452680E-01
+     1.54727605857       -0.559243217039E-01
+     1.55138023910       -0.532300276536E-01
+     1.55548441962       -0.506149802184E-01
+     1.55958860015       -0.480781830448E-01
+     1.56369278068       -0.456186265722E-01
+     1.56779696120       -0.432352882996E-01
+     1.57190114173       -0.409271330832E-01
+     1.57600532226       -0.386931134218E-01
+     1.58010950278       -0.365321697885E-01
+     1.58421368331       -0.344432309668E-01
+     1.58831786384       -0.324252144063E-01
+     1.59242204436       -0.304770265905E-01
+     1.59652622489       -0.285975634335E-01
+     1.60063040542       -0.267857106807E-01
+     1.60473458594       -0.250403443321E-01
+     1.60883876647       -0.233603310830E-01
+     1.61294294700       -0.217445287629E-01
+     1.61704712753       -0.201917868269E-01
+     1.62115130805       -0.187009468222E-01
+     1.62525548858       -0.172708428999E-01
+     1.62935966911       -0.159003022693E-01
+     1.63346384963       -0.145881457985E-01
+     1.63756803016       -0.133331884969E-01
+     1.64167221069       -0.121342400670E-01
+     1.64577639121       -0.109901054708E-01
+     1.64988057174       -0.989958541883E-02
+     1.65398475227       -0.886147703913E-02
+     1.65808893279       -0.787457438613E-02
+     1.66219311332       -0.693766903072E-02
+     1.66629729385       -0.604955065954E-02
+     1.67040147437       -0.520900757997E-02
+     1.67450565490       -0.441482742226E-02
+     1.67860983543       -0.366579765576E-02
+     1.68271401595       -0.296070619089E-02
+     1.68681819648       -0.229834196484E-02
+     1.69092237701       -0.167749554089E-02
+     1.69502655753       -0.109695962183E-02
+     1.69913073806       -0.555529739697E-03
+     1.70323491859       -0.520047572453E-04
+     1.70733909911        0.414812544041E-03
+     1.71144327964        0.846114892343E-03
+     1.71554746017        0.124308999024E-02
+     1.71965164069        0.160691991864E-02
+     1.72375582122        0.193878061325E-02
+     1.72786000175        0.223984131394E-02
+     1.73196418227        0.251126403248E-02
+     1.73606836280        0.275420298971E-02
+     1.74017254333        0.296980413210E-02
+     1.74427672385        0.315920457872E-02
+     1.74838090438        0.332353210779E-02
+     1.75248508491        0.346390464807E-02
+     1.75658926543        0.358142973137E-02
+     1.76069344596        0.367720403188E-02
+     1.76479762649        0.375231282400E-02
+     1.76890180701        0.380782947927E-02
+     1.77300598754        0.384481495536E-02
+     1.77711016807        0.386431741481E-02
+     1.78121434859        0.386737112698E-02
+     1.78531852912        0.385499687659E-02
+     1.78942270965        0.382820082409E-02
+     1.79352689017        0.378797411408E-02
+     1.79763107070        0.373529165874E-02
+     1.80173525123        0.367111443812E-02
+     1.80583943175        0.359638454861E-02
+     1.80994361228        0.351202741298E-02
+     1.81404779281        0.341895056251E-02
+     1.81815197333        0.331804305139E-02
+     1.82225615386        0.321017809895E-02
+     1.82636033439        0.309619814971E-02
+     1.83046451491        0.297693714341E-02
+     1.83456869544        0.285320465009E-02
+     1.83867287597        0.272578872562E-02
+     1.84277705649        0.259544098498E-02
+     1.84688123702        0.246293533143E-02
+     1.85098541755        0.232897629075E-02
+     1.85508959807        0.219425557821E-02
+     1.85919377860        0.205943822109E-02
+     1.86329795913        0.192516195501E-02
+     1.86740213965        0.179207881516E-02
+     1.87150632018        0.166067249579E-02
+     1.87561050071        0.153154294417E-02
+     1.87971468123        0.140521982629E-02
+     1.88381886176        0.128220496796E-02
+     1.88792304229        0.116297061274E-02
+     1.89202722281        0.104786333466E-02
+     1.89613140334        0.937516659823E-03
+     1.90023558387        0.832185089078E-03
+     1.90433976440        0.732184440702E-03
+     1.90844394492        0.637784936923E-03
+     1.91254812545        0.549426566401E-03
+     1.91665230598        0.466822664286E-03
+     1.92075648650        0.390311031557E-03
+     1.92486066703        0.320007238607E-03
+     1.92896484756        0.255997494943E-03
+     1.93306902808        0.198336719053E-03
+     1.93717320861        0.146871648937E-03
+     1.94127738914        0.101964681073E-03
+     1.94538156966        0.633811653108E-04
+     1.94948575019        0.309872633901E-04
+     1.95358993072        0.458240607435E-05
+     1.95769411124       -0.161045760647E-04
+     1.96179829177       -0.313930596886E-04
+     1.96590247230       -0.417549598357E-04
+     1.97000665282       -0.476543477363E-04
+     1.97411083335       -0.496446883077E-04
+     1.97821501388       -0.483384664627E-04
+     1.98231919440       -0.443974981868E-04
+     1.98642337493       -0.383206444327E-04
+     1.99052755546       -0.312589850896E-04
+     1.99463173598       -0.237489685616E-04
+     1.99873591651       -0.164742462672E-04
+     2.00284009704       -0.100554357330E-04
+     2.00694427756       -0.501853685853E-05
+     2.01104845809       -0.285822859771E-05
+     2.01515263862       -0.151814671852E-05
+     2.01925681914       -0.187744042748E-05
+     2.02336099967       -0.369144717864E-05
+     2.02746518020       -0.648920542217E-05
+     2.03156936072       -0.955036187011E-05
+     2.03567354125       -0.623771098613E-05
+     2.03977772178       -0.609793953392E-05
+     2.04388190230       -0.429424725625E-05
+     2.04798608283         0.00000000000    
+# Vna:__________________________
+ 500    0.120255885413E-01     6.00076868209     # npts, delta, cutoff
+     0.00000000000        -4.50780512073    
+    0.120255885413E-01    -4.50685303869    
+    0.240511770825E-01    -4.50400713993    
+    0.360767656238E-01    -4.49928340387    
+    0.481023541650E-01    -4.49269844704    
+    0.601279427063E-01    -4.48426957873    
+    0.721535312475E-01    -4.47401488359    
+    0.841791197888E-01    -4.46195332930    
+    0.962047083301E-01    -4.44810489722    
+    0.108230296871        -4.43249073353    
+    0.120255885413        -4.41513331758    
+    0.132281473954        -4.39605664445    
+    0.144307062495        -4.37528641783    
+    0.156332651036        -4.35285024951    
+    0.168358239578        -4.32877786139    
+    0.180383828119        -4.30310128576    
+    0.192409416660        -4.27585505972    
+    0.204435005201        -4.24707640940    
+    0.216460593743        -4.21680541991    
+    0.228486182284        -4.18508518688    
+    0.240511770825        -4.15196194587    
+    0.252537359366        -4.11748517595    
+    0.264562947908        -4.08170767430    
+    0.276588536449        -4.04468559893    
+    0.288614124990        -4.00647847700    
+    0.300639713531        -3.96714917684    
+    0.312665302073        -3.92676384222    
+    0.324690890614        -3.88539178778    
+    0.336716479155        -3.84310535547    
+    0.348742067696        -3.79997973204    
+    0.360767656238        -3.75609272840    
+    0.372793244779        -3.71152452229    
+    0.384818833320        -3.66635736607    
+    0.396844421861        -3.62067526209    
+    0.408870010403        -3.57456360872    
+    0.420895598944        -3.52810882030    
+    0.432921187485        -3.48139792495    
+    0.444946776026        -3.43451814433    
+    0.456972364568        -3.38755645998    
+    0.468997953109        -3.34059917079    
+    0.481023541650        -3.29373144647    
+    0.493049130192        -3.24703688213    
+    0.505074718733        -3.20059705865    
+    0.517100307274        -3.15449111397    
+    0.529125895815        -3.10879532973    
+    0.541151484357        -3.06358273810    
+    0.553177072898        -3.01892275271    
+    0.565202661439        -2.97488082773    
+    0.577228249980        -2.93151814861    
+    0.589253838522        -2.88889135729    
+    0.601279427063        -2.84705231471    
+    0.613305015604        -2.80604790246    
+    0.625330604145        -2.76591986513    
+    0.637356192687        -2.72670469434    
+    0.649381781228        -2.68843355481    
+    0.661407369769        -2.65113225244    
+    0.673432958310        -2.61482124364    
+    0.685458546852        -2.57951568487    
+    0.697484135393        -2.54522552078    
+    0.709509723934        -2.51195560889    
+    0.721535312475        -2.47970587846    
+    0.733560901017        -2.44847152091    
+    0.745586489558        -2.41824320863    
+    0.757612078099        -2.38900733916    
+    0.769637666640        -2.36074630126    
+    0.781663255182        -2.33343875949    
+    0.793688843723        -2.30705995371    
+    0.805714432264        -2.28158201005    
+    0.817740020805        -2.25697425980    
+    0.829765609347        -2.23320356303    
+    0.841791197888        -2.21023463350    
+    0.853816786429        -2.18803036189    
+    0.865842374970        -2.16655213462    
+    0.877867963512        -2.14576014544    
+    0.889893552053        -2.12561369758    
+    0.901919140594        -2.10607149434    
+    0.913944729135        -2.08709191620    
+    0.925970317677        -2.06863328298    
+    0.937995906218        -2.05065409979    
+    0.950021494759        -2.03311328569    
+    0.962047083301        -2.01597038439    
+    0.974072671842        -1.99918575650    
+    0.986098260383        -1.98272075298    
+    0.998123848924        -1.96653786994    
+     1.01014943747        -1.95060088468    
+     1.02217502601        -1.93487497377    
+     1.03420061455        -1.91932681305    
+     1.04622620309        -1.90392466050    
+     1.05825179163        -1.88863842334    
+     1.07027738017        -1.87343970876    
+     1.08230296871        -1.85830186068    
+     1.09432855725        -1.84319998256    
+     1.10635414580        -1.82811094798    
+     1.11837973434        -1.81301339914    
+     1.13040532288        -1.79788773540    
+     1.14243091142        -1.78271609201    
+     1.15445649996        -1.76748231046    
+     1.16648208850        -1.75217190167    
+     1.17850767704        -1.73677200208    
+     1.19053326558        -1.72127132489    
+     1.20255885413        -1.70566010640    
+     1.21458444267        -1.68993004815    
+     1.22661003121        -1.67407425633    
+     1.23863561975        -1.65808717903    
+     1.25066120829        -1.64196454100    
+     1.26268679683        -1.62570327803    
+     1.27471238537        -1.60930147054    
+     1.28673797391        -1.59275827698    
+     1.29876356246        -1.57607386737    
+     1.31078915100        -1.55924935798    
+     1.32281473954        -1.54228674688    
+     1.33484032808        -1.52518885062    
+     1.34686591662        -1.50795924273    
+     1.35889150516        -1.49060219380    
+     1.37091709370        -1.47312261365    
+     1.38294268224        -1.45552599552    
+     1.39496827079        -1.43781836230    
+     1.40699385933        -1.42000621513    
+     1.41901944787        -1.40209648437    
+     1.43104503641        -1.38409648256    
+     1.44307062495        -1.36601386011    
+     1.45509621349        -1.34785656310    
+     1.46712180203        -1.32963279336    
+     1.47914739057        -1.31135097089    
+     1.49117297912        -1.29301969850    
+     1.50319856766        -1.27464772848    
+     1.51522415620        -1.25624393168    
+     1.52724974474        -1.23781726853    
+     1.53927533328        -1.21937676164    
+     1.55130092182        -1.20093147090    
+     1.56332651036        -1.18249047024    
+     1.57535209890        -1.16406282586    
+     1.58737768745        -1.14565757643    
+     1.59940327599        -1.12728371493    
+     1.61142886453        -1.10895017186    
+     1.62345445307        -1.09066579993    
+     1.63548004161        -1.07243936033    
+     1.64750563015        -1.05427951013    
+     1.65953121869        -1.03619479094    
+     1.67155680723        -1.01819361888    
+     1.68358239578        -1.00028427560    
+     1.69560798432       -0.982474900368    
+     1.70763357286       -0.964773483189    
+     1.71965916140       -0.947187858764    
+     1.73168474994       -0.929725701459    
+     1.74371033848       -0.912394521119    
+     1.75573592702       -0.895201659604    
+     1.76776151556       -0.878154288090    
+     1.77978710411       -0.861259405018    
+     1.79181269265       -0.844523834726    
+     1.80383828119       -0.827954226705    
+     1.81586386973       -0.811557055395    
+     1.82788945827       -0.795338620520    
+     1.83991504681       -0.779305047876    
+     1.85194063535       -0.763462290529    
+     1.86396622389       -0.747816130472    
+     1.87599181244       -0.732372180699    
+     1.88801740098       -0.717135887525    
+     1.90004298952       -0.702112533162    
+     1.91206857806       -0.687307238664    
+     1.92409416660       -0.672724967256    
+     1.93611975514       -0.658370527528    
+     1.94814534368       -0.644248576937    
+     1.96017093222       -0.630363625574    
+     1.97219652077       -0.616720039209    
+     1.98422210931       -0.603322064904    
+     1.99624769785       -0.590173746859    
+     2.00827328639       -0.577278989685    
+     2.02029887493       -0.564641843139    
+     2.03232446347       -0.552266107509    
+     2.04435005201       -0.540154913156    
+     2.05637564055       -0.528309907243    
+     2.06840122910       -0.516730691943    
+     2.08042681764       -0.505415627022    
+     2.09245240618       -0.494357458466    
+     2.10447799472       -0.483542463820    
+     2.11650358326       -0.472962351681    
+     2.12852917180       -0.462616247747    
+     2.14055476034       -0.452500390688    
+     2.15258034888       -0.442607305039    
+     2.16460593743       -0.432930941435    
+     2.17663152597       -0.423465700561    
+     2.18865711451       -0.414207605805    
+     2.20068270305       -0.405151710079    
+     2.21270829159       -0.396292934371    
+     2.22473388013       -0.387626645793    
+     2.23675946867       -0.379148404913    
+     2.24878505721       -0.370853834707    
+     2.26081064576       -0.362738686389    
+     2.27283623430       -0.354798807724    
+     2.28486182284       -0.347030176518    
+     2.29688741138       -0.339428879071    
+     2.30891299992       -0.331991104305    
+     2.32093858846       -0.324713142931    
+     2.33296417700       -0.317591384141    
+     2.34498976554       -0.310622312017    
+     2.35701535409       -0.303802502484    
+     2.36904094263       -0.297128620178    
+     2.38106653117       -0.290597415571    
+     2.39309211971       -0.284205722291    
+     2.40511770825       -0.277950454406    
+     2.41714329679       -0.271828603918    
+     2.42916888533       -0.265837199808    
+     2.44119447388       -0.259973505046    
+     2.45322006242       -0.254234648739    
+     2.46524565096       -0.248618016947    
+     2.47727123950       -0.243120158800    
+     2.48929682804       -0.237738347650    
+     2.50132241658       -0.232473901015    
+     2.51334800512       -0.227322359758    
+     2.52537359366       -0.222279410968    
+     2.53739918221       -0.217332898934    
+     2.54942477075       -0.212480097867    
+     2.56145035929       -0.207729320175    
+     2.57347594783       -0.203082244692    
+     2.58550153637       -0.198540666522    
+     2.59752712491       -0.194097135088    
+     2.60955271345       -0.189749475214    
+     2.62157830199       -0.185494327149    
+     2.63360389054       -0.181331351320    
+     2.64562947908       -0.177257970873    
+     2.65765506762       -0.173272260101    
+     2.66968065616       -0.169371965761    
+     2.68170624470       -0.165555276897    
+     2.69373183324       -0.161820335031    
+     2.70575742178       -0.158165336068    
+     2.71778301032       -0.154588527414    
+     2.72980859887       -0.151088205365    
+     2.74183418741       -0.147662712657    
+     2.75385977595       -0.144310436271    
+     2.76588536449       -0.141029805418    
+     2.77791095303       -0.137819289639    
+     2.78993654157       -0.134677397100    
+     2.80196213011       -0.131602673003    
+     2.81398771865       -0.128593698094    
+     2.82601330720       -0.125649087309    
+     2.83803889574       -0.122767488498    
+     2.85006448428       -0.119947581237    
+     2.86209007282       -0.117188075718    
+     2.87411566136       -0.114487711725    
+     2.88614124990       -0.111845257632    
+     2.89816683844       -0.109259509505    
+     2.91019242698       -0.106729290235    
+     2.92221801553       -0.104253448727    
+     2.93424360407       -0.101830859125    
+     2.94626919261       -0.994604200888E-01
+     2.95829478115       -0.971410541025E-01
+     2.97032036969       -0.948717068102E-01
+     2.98234595823       -0.926513464084E-01
+     2.99437154677       -0.904789630055E-01
+     3.00639713531       -0.883535680777E-01
+     3.01842272386       -0.862741938955E-01
+     3.03044831240       -0.842398930398E-01
+     3.04247390094       -0.822497378710E-01
+     3.05449948948       -0.803028200697E-01
+     3.06652507802       -0.783982501330E-01
+     3.07855066656       -0.765351569449E-01
+     3.09057625510       -0.747126873341E-01
+     3.10260184364       -0.729300056617E-01
+     3.11462743219       -0.711862934147E-01
+     3.12665302073       -0.694807488105E-01
+     3.13867860927       -0.678125864282E-01
+     3.15070419781       -0.661810368372E-01
+     3.16272978635       -0.645853462415E-01
+     3.17475537489       -0.630247761412E-01
+     3.18678096343       -0.614986029826E-01
+     3.19880655197       -0.600061178412E-01
+     3.21083214052       -0.585466261018E-01
+     3.22285772906       -0.571194471524E-01
+     3.23488331760       -0.557239140840E-01
+     3.24690890614       -0.543593733967E-01
+     3.25893449468       -0.530251847210E-01
+     3.27096008322       -0.517207205391E-01
+     3.28298567176       -0.504453659144E-01
+     3.29501126030       -0.491985182337E-01
+     3.30703684885       -0.479795869416E-01
+     3.31906243739       -0.467879932971E-01
+     3.33108802593       -0.456231701248E-01
+     3.34311361447       -0.444845615817E-01
+     3.35513920301       -0.433716229226E-01
+     3.36716479155       -0.422838202729E-01
+     3.37919038009       -0.412206304080E-01
+     3.39121596863       -0.401815405343E-01
+     3.40324155718       -0.391660480789E-01
+     3.41526714572       -0.381736604832E-01
+     3.42729273426       -0.372038949985E-01
+     3.43931832280       -0.362562784894E-01
+     3.45134391134       -0.353303472413E-01
+     3.46336949988       -0.344256467677E-01
+     3.47539508842       -0.335417316318E-01
+     3.48742067696       -0.326781652604E-01
+     3.49944626551       -0.318345197743E-01
+     3.51147185405       -0.310103758039E-01
+     3.52349744259       -0.302053223263E-01
+     3.53552303113       -0.294189564989E-01
+     3.54754861967       -0.286508834922E-01
+     3.55957420821       -0.279007163401E-01
+     3.57159979675       -0.271680757795E-01
+     3.58362538529       -0.264525900989E-01
+     3.59565097384       -0.257538949906E-01
+     3.60767656238       -0.250716334029E-01
+     3.61970215092       -0.244054553968E-01
+     3.63172773946       -0.237550180110E-01
+     3.64375332800       -0.231199851171E-01
+     3.65577891654       -0.225000272895E-01
+     3.66780450508       -0.218948216749E-01
+     3.67983009362       -0.213040518561E-01
+     3.69185568217       -0.207274077383E-01
+     3.70388127071       -0.201645854189E-01
+     3.71590685925       -0.196152870661E-01
+     3.72793244779       -0.190792208078E-01
+     3.73995803633       -0.185561006032E-01
+     3.75198362487       -0.180456461365E-01
+     3.76400921341       -0.175475827048E-01
+     3.77603480195       -0.170616411029E-01
+     3.78806039050       -0.165875575269E-01
+     3.80008597904       -0.161250734626E-01
+     3.81211156758       -0.156739355826E-01
+     3.82413715612       -0.152338956523E-01
+     3.83616274466       -0.148047104196E-01
+     3.84818833320       -0.143861415252E-01
+     3.86021392174       -0.139779554075E-01
+     3.87223951028       -0.135799232040E-01
+     3.88426509883       -0.131918206699E-01
+     3.89629068737       -0.128134280828E-01
+     3.90831627591       -0.124445301561E-01
+     3.92034186445       -0.120849159552E-01
+     3.93236745299       -0.117343788102E-01
+     3.94439304153       -0.113927162353E-01
+     3.95641863007       -0.110597298463E-01
+     3.96844421861       -0.107352252857E-01
+     3.98046980716       -0.104190121377E-01
+     3.99249539570       -0.101109038567E-01
+     4.00452098424       -0.981071769327E-02
+     4.01654657278       -0.951827461230E-02
+     4.02857216132       -0.923339923603E-02
+     4.04059774986       -0.895591976454E-02
+     4.05262333840       -0.868566790598E-02
+     4.06464892694       -0.842247882122E-02
+     4.07667451549       -0.816619103766E-02
+     4.08870010403       -0.791664639603E-02
+     4.10072569257       -0.767368998711E-02
+     4.11275128111       -0.743717007561E-02
+     4.12477686965       -0.720693805992E-02
+     4.13680245819       -0.698284839980E-02
+     4.14882804673       -0.676475856020E-02
+     4.16085363527       -0.655252895085E-02
+     4.17287922382       -0.634602288122E-02
+     4.18490481236       -0.614510648481E-02
+     4.19693040090       -0.594964867764E-02
+     4.20895598944       -0.575952110388E-02
+     4.22098157798       -0.557459807365E-02
+     4.23300716652       -0.539475652763E-02
+     4.24503275506       -0.521987597686E-02
+     4.25705834360       -0.504983845419E-02
+     4.26908393215       -0.488452847202E-02
+     4.28110952069       -0.472383296539E-02
+     4.29313510923       -0.456764125088E-02
+     4.30516069777       -0.441584497976E-02
+     4.31718628631       -0.426833809379E-02
+     4.32921187485       -0.412501677833E-02
+     4.34123746339       -0.398577942418E-02
+     4.35326305193       -0.385052658220E-02
+     4.36528864048       -0.371916092233E-02
+     4.37731422902       -0.359158719448E-02
+     4.38933981756       -0.346771218635E-02
+     4.40136540610       -0.334744468579E-02
+     4.41339099464       -0.323069544218E-02
+     4.42541658318       -0.311737712917E-02
+     4.43744217172       -0.300740430675E-02
+     4.44946776026       -0.290069338692E-02
+     4.46149334881       -0.279716259719E-02
+     4.47351893735       -0.269673194527E-02
+     4.48554452589       -0.259932318871E-02
+     4.49757011443       -0.250485979612E-02
+     4.50959570297       -0.241326691764E-02
+     4.52162129151       -0.232447135230E-02
+     4.53364688005       -0.223840151899E-02
+     4.54567246859       -0.215498741553E-02
+     4.55769805714       -0.207416060435E-02
+     4.56972364568       -0.199585417315E-02
+     4.58174923422       -0.192000270808E-02
+     4.59377482276       -0.184654225930E-02
+     4.60580041130       -0.177541033896E-02
+     4.61782599984       -0.170654585231E-02
+     4.62985158838       -0.163988909724E-02
+     4.64187717692       -0.157538173203E-02
+     4.65390276547       -0.151296673852E-02
+     4.66592835401       -0.145258844811E-02
+     4.67795394255       -0.139419243474E-02
+     4.68997953109       -0.133772554550E-02
+     4.70200511963       -0.128313586512E-02
+     4.71403070817       -0.123037275522E-02
+     4.72605629671       -0.117938654970E-02
+     4.73808188525       -0.113012899771E-02
+     4.75010747380       -0.108255292946E-02
+     4.76213306234       -0.103661223447E-02
+     4.77415865088       -0.992262116584E-03
+     4.78618423942       -0.949458638724E-03
+     4.79820982796       -0.908158945226E-03
+     4.81023541650       -0.868321174067E-03
+     4.82226100504       -0.829904377431E-03
+     4.83428659359       -0.792868689954E-03
+     4.84631218213       -0.757175001819E-03
+     4.85833777067       -0.722785111068E-03
+     4.87036335921       -0.689661659755E-03
+     4.88238894775       -0.657768205517E-03
+     4.89441453629       -0.627068814669E-03
+     4.90644012483       -0.597528623671E-03
+     4.91846571337       -0.569113477076E-03
+     4.93049130192       -0.541789990100E-03
+     4.94251689046       -0.515525535536E-03
+     4.95454247900       -0.490288203274E-03
+     4.96656806754       -0.466046910258E-03
+     4.97859365608       -0.442771187162E-03
+     4.99061924462       -0.420431297524E-03
+     5.00264483316       -0.398998193467E-03
+     5.01467042170       -0.378443501698E-03
+     5.02669601025       -0.358739516844E-03
+     5.03872159879       -0.339859179963E-03
+     5.05074718733       -0.321776072501E-03
+     5.06277277587       -0.304464403044E-03
+     5.07479836441       -0.287898994740E-03
+     5.08682395295       -0.272055277862E-03
+     5.09884954149       -0.256909272322E-03
+     5.11087513003       -0.242437580590E-03
+     5.12290071858       -0.228617375927E-03
+     5.13492630712       -0.215426391121E-03
+     5.14695189566       -0.202842910579E-03
+     5.15897748420       -0.190845756226E-03
+     5.17100307274       -0.179414279829E-03
+     5.18302866128       -0.168528352611E-03
+     5.19505424982       -0.158168355586E-03
+     5.20707983836       -0.148315171702E-03
+     5.21910542691       -0.138950169450E-03
+     5.23113101545       -0.130055205120E-03
+     5.24315660399       -0.121612606383E-03
+     5.25518219253       -0.113605165266E-03
+     5.26720778107       -0.106016127092E-03
+     5.27923336961       -0.988291922482E-04
+     5.29125895815       -0.920284920590E-04
+     5.30328454669       -0.855985906015E-04
+     5.31531013524       -0.795244743841E-04
+     5.32733572378       -0.737915444991E-04
+     5.33936131232       -0.683856111699E-04
+     5.35138690086       -0.632928763964E-04
+     5.36341248940       -0.584999423340E-04
+     5.37543807794       -0.539937936506E-04
+     5.38746366648       -0.497617929061E-04
+     5.39948925502       -0.457916716495E-04
+     5.41151484357       -0.420715316466E-04
+     5.42354043211       -0.385898257978E-04
+     5.43556602065       -0.353353593085E-04
+     5.44759160919       -0.322972814109E-04
+     5.45961719773       -0.294650790050E-04
+     5.47164278627       -0.268285715307E-04
+     5.48366837481       -0.243779001212E-04
+     5.49569396335       -0.221035290670E-04
+     5.50771955190       -0.199962351205E-04
+     5.51974514044       -0.180471028934E-04
+     5.53177072898       -0.162475192210E-04
+     5.54379631752       -0.145891670730E-04
+     5.55582190606       -0.130640226012E-04
+     5.56784749460       -0.116643458623E-04
+     5.57987308314       -0.103826782363E-04
+     5.59189867168       -0.921183668246E-05
+     5.60392426023       -0.814490905122E-05
+     5.61594984877       -0.717524784947E-05
+     5.62797543731       -0.629646743456E-05
+     5.64000102585       -0.550243804989E-05
+     5.65202661439       -0.478728149602E-05
+     5.66405220293       -0.414536660707E-05
+     5.67607779147       -0.357130475009E-05
+     5.68810338001       -0.305994575923E-05
+     5.70012896856       -0.260637325057E-05
+     5.71215455710       -0.220590071817E-05
+     5.72418014564       -0.185406738104E-05
+     5.73620573418       -0.154663417486E-05
+     5.74823132272       -0.127957973927E-05
+     5.76025691126       -0.104909693213E-05
+     5.77228249980       -0.851588509707E-06
+     5.78430808834       -0.683663788629E-06
+     5.79633367689       -0.542134950064E-06
+     5.80835926543       -0.424013501434E-06
+     5.82038485397       -0.326505973629E-06
+     5.83241044251       -0.247014028143E-06
+     5.84443603105       -0.183125893821E-06
+     5.85646161959       -0.132616424910E-06
+     5.86848720813       -0.934431580100E-07
+     5.88051279667       -0.637432082347E-07
+     5.89253838522       -0.418037357604E-07
+     5.90456397376       -0.261671806521E-07
+     5.91658956230       -0.154708216233E-07
+     5.92861515084       -0.854089327514E-08
+     5.94064073938       -0.436705629637E-08
+     5.95266632792       -0.209908865268E-08
+     5.96469191646       -0.234970044412E-09
+     5.97671750500        0.213006242980E-09
+     5.98874309355        0.972163470027E-10
+     6.00076868209         0.00000000000    
+# Chlocal:__________________________
+ 500    0.612281183908E-02     3.05528310770     # npts, delta, cutoff
+     0.00000000000        -1.57620815071    
+    0.612281183908E-02    -1.57478908686    
+    0.122456236782E-01    -1.57046027230    
+    0.183684355172E-01    -1.56606139091    
+    0.244912473563E-01    -1.56159331844    
+    0.306140591954E-01    -1.55705693498    
+    0.367368710345E-01    -1.55245312474    
+    0.428596828735E-01    -1.54778277583    
+    0.489824947126E-01    -1.54304678006    
+    0.551053065517E-01    -1.53824603271    
+    0.612281183908E-01    -1.53338143233    
+    0.673509302299E-01    -1.52845388052    
+    0.734737420689E-01    -1.52346428174    
+    0.795965539080E-01    -1.51841354307    
+    0.857193657471E-01    -1.51330257401    
+    0.918421775862E-01    -1.50813228632    
+    0.979649894253E-01    -1.50290359375    
+    0.104087801264        -1.49761741188    
+    0.110210613103        -1.49227465790    
+    0.116333424942        -1.48687625043    
+    0.122456236782        -1.48142310930    
+    0.128579048621        -1.47591615537    
+    0.134701860460        -1.47035631032    
+    0.140824672299        -1.46474449649    
+    0.146947484138        -1.45908163665    
+    0.153070295977        -1.45336865384    
+    0.159193107816        -1.44760647116    
+    0.165315919655        -1.44179601161    
+    0.171438731494        -1.43593819790    
+    0.177561543333        -1.43003395224    
+    0.183684355172        -1.42408419622    
+    0.189807167011        -1.41808985057    
+    0.195929978851        -1.41205183503    
+    0.202052790690        -1.40597106817    
+    0.208175602529        -1.39984846719    
+    0.214298414368        -1.39368494779    
+    0.220421226207        -1.38748142398    
+    0.226544038046        -1.38123880792    
+    0.232666849885        -1.37495800978    
+    0.238789661724        -1.36863993756    
+    0.244912473563        -1.36228549691    
+    0.251035285402        -1.35589559103    
+    0.257158097241        -1.34947112047    
+    0.263280909080        -1.34301298302    
+    0.269403720919        -1.33652207353    
+    0.275526532759        -1.32999928376    
+    0.281649344598        -1.32344550227    
+    0.287772156437        -1.31686161426    
+    0.293894968276        -1.31024850144    
+    0.300017780115        -1.30360704186    
+    0.306140591954        -1.29693810984    
+    0.312263403793        -1.29024257579    
+    0.318386215632        -1.28352130607    
+    0.324509027471        -1.27677516292    
+    0.330631839310        -1.27000500429    
+    0.336754651149        -1.26321168375    
+    0.342877462988        -1.25639605031    
+    0.349000274827        -1.24955894841    
+    0.355123086667        -1.24270121768    
+    0.361245898506        -1.23582369295    
+    0.367368710345        -1.22892720403    
+    0.373491522184        -1.22201257571    
+    0.379614334023        -1.21508062755    
+    0.385737145862        -1.20813217387    
+    0.391859957701        -1.20116802359    
+    0.397982769540        -1.19418898016    
+    0.404105581379        -1.18719584147    
+    0.410228393218        -1.18018939972    
+    0.416351205057        -1.17317044139    
+    0.422474016896        -1.16613974711    
+    0.428596828735        -1.15909809158    
+    0.434719640575        -1.15204624350    
+    0.440842452414        -1.14498496548    
+    0.446965264253        -1.13791501398    
+    0.453088076092        -1.13083713921    
+    0.459210887931        -1.12375208507    
+    0.465333699770        -1.11666058909    
+    0.471456511609        -1.10956338233    
+    0.477579323448        -1.10246118936    
+    0.483702135287        -1.09535472815    
+    0.489824947126        -1.08824471005    
+    0.495947758965        -1.08113183970    
+    0.502070570804        -1.07401681498    
+    0.508193382643        -1.06690032698    
+    0.514316194483        -1.05978305991    
+    0.520439006322        -1.05266569109    
+    0.526561818161        -1.04554889087    
+    0.532684630000        -1.03843332259    
+    0.538807441839        -1.03131964256    
+    0.544930253678        -1.02420849999    
+    0.551053065517        -1.01710053697    
+    0.557175877356        -1.00999638843    
+    0.563298689195        -1.00289668210    
+    0.569421501034       -0.995802038474    
+    0.575544312873       -0.988713070796    
+    0.581667124712       -0.981630385016    
+    0.587789936552       -0.974554579770    
+    0.593912748391       -0.967486246355    
+    0.600035560230       -0.960425968706    
+    0.606158372069       -0.953374323377    
+    0.612281183908       -0.946331879521    
+    0.618403995747       -0.939299198872    
+    0.624526807586       -0.932276835737    
+    0.630649619425       -0.925265336973    
+    0.636772431264       -0.918265241986    
+    0.642895243103       -0.911277082715    
+    0.649018054942       -0.904301383629    
+    0.655140866781       -0.897338661717    
+    0.661263678620       -0.890389426488    
+    0.667386490460       -0.883454179970    
+    0.673509302299       -0.876533416705    
+    0.679632114138       -0.869627623752    
+    0.685754925977       -0.862737280692    
+    0.691877737816       -0.855862859631    
+    0.698000549655       -0.849004825208    
+    0.704123361494       -0.842163634599    
+    0.710246173333       -0.835339737529    
+    0.716368985172       -0.828533576283    
+    0.722491797011       -0.821745585718    
+    0.728614608850       -0.814976193277    
+    0.734737420689       -0.808225819003    
+    0.740860232528       -0.801494875556    
+    0.746983044368       -0.794783768235    
+    0.753105856207       -0.788092894990    
+    0.759228668046       -0.781422646451    
+    0.765351479885       -0.774773405945    
+    0.771474291724       -0.768145549519    
+    0.777597103563       -0.761539445969    
+    0.783719915402       -0.754955456863    
+    0.789842727241       -0.748393936567    
+    0.795965539080       -0.741855232277    
+    0.802088350919       -0.735339684047    
+    0.808211162758       -0.728847624817    
+    0.814333974597       -0.722379380449    
+    0.820456786436       -0.715935269759    
+    0.826579598276       -0.709515604546    
+    0.832702410115       -0.703120689637    
+    0.838825221954       -0.696750822913    
+    0.844948033793       -0.690406295350    
+    0.851070845632       -0.684087391060    
+    0.857193657471       -0.677794387326    
+    0.863316469310       -0.671527554641    
+    0.869439281149       -0.665287156754    
+    0.875562092988       -0.659073450705    
+    0.881684904827       -0.652886686874    
+    0.887807716666       -0.646727109019    
+    0.893930528505       -0.640594954322    
+    0.900053340344       -0.634490453435    
+    0.906176152184       -0.628413830524    
+    0.912298964023       -0.622365303316    
+    0.918421775862       -0.616345083146    
+    0.924544587701       -0.610353375005    
+    0.930667399540       -0.604390377586    
+    0.936790211379       -0.598456283336    
+    0.942913023218       -0.592551278506    
+    0.949035835057       -0.586675543196    
+    0.955158646896       -0.580829251413    
+    0.961281458735       -0.575012571115    
+    0.967404270574       -0.569225664270    
+    0.973527082413       -0.563468686902    
+    0.979649894253       -0.557741789146    
+    0.985772706092       -0.552045115304    
+    0.991895517931       -0.546378803893    
+    0.998018329770       -0.540742987705    
+     1.00414114161       -0.535137793857    
+     1.01026395345       -0.529563343849    
+     1.01638676529       -0.524019753615    
+     1.02250957713       -0.518507133583    
+     1.02863238897       -0.513025588729    
+     1.03475520080       -0.507575218632    
+     1.04087801264       -0.502156117532    
+     1.04700082448       -0.496768374386    
+     1.05312363632       -0.491412072924    
+     1.05924644816       -0.486087291708    
+     1.06536926000       -0.480794104188    
+     1.07149207184       -0.475532578759    
+     1.07761488368       -0.470302778820    
+     1.08373769552       -0.465104762829    
+     1.08986050736       -0.459938584366    
+     1.09598331919       -0.454804292186    
+     1.10210613103       -0.449701930279    
+     1.10822894287       -0.444631537929    
+     1.11435175471       -0.439593149770    
+     1.12047456655       -0.434586795847    
+     1.12659737839       -0.429612501672    
+     1.13272019023       -0.424670288284    
+     1.13884300207       -0.419760172306    
+     1.14496581391       -0.414882166006    
+     1.15108862575       -0.410036277350    
+     1.15721143759       -0.405222510066    
+     1.16333424942       -0.400440863699    
+     1.16945706126       -0.395691333669    
+     1.17557987310       -0.390973911330    
+     1.18170268494       -0.386288584030    
+     1.18782549678       -0.381635335163    
+     1.19394830862       -0.377014144234    
+     1.20007112046       -0.372424986909    
+     1.20619393230       -0.367867835079    
+     1.21231674414       -0.363342656915    
+     1.21843955598       -0.358849416922    
+     1.22456236782       -0.354388076001    
+     1.23068517965       -0.349958591502    
+     1.23680799149       -0.345560917282    
+     1.24293080333       -0.341195003761    
+     1.24905361517       -0.336860797979    
+     1.25517642701       -0.332558243649    
+     1.26129923885       -0.328287281217    
+     1.26742205069       -0.324047847913    
+     1.27354486253       -0.319839877809    
+     1.27966767437       -0.315663301872    
+     1.28579048621       -0.311518048019    
+     1.29191329805       -0.307404041172    
+     1.29803610988       -0.303321203312    
+     1.30415892172       -0.299269453531    
+     1.31028173356       -0.295248708087    
+     1.31640454540       -0.291258880455    
+     1.32252735724       -0.287299881382    
+     1.32865016908       -0.283371618937    
+     1.33477298092       -0.279473998566    
+     1.34089579276       -0.275606923140    
+     1.34701860460       -0.271770293008    
+     1.35314141644       -0.267964006049    
+     1.35926422828       -0.264187957720    
+     1.36538704011       -0.260442041107    
+     1.37150985195       -0.256726146977    
+     1.37763266379       -0.253040163825    
+     1.38375547563       -0.249383977921    
+     1.38987828747       -0.245757473364    
+     1.39600109931       -0.242160532125    
+     1.40212391115       -0.238593034099    
+     1.40824672299       -0.235054857148    
+     1.41436953483       -0.231545877150    
+     1.42049234667       -0.228065968048    
+     1.42661515851       -0.224615001890    
+     1.43273797034       -0.221192848881    
+     1.43886078218       -0.217799377424    
+     1.44498359402       -0.214434454167    
+     1.45110640586       -0.211097944044    
+     1.45722921770       -0.207789710324    
+     1.46335202954       -0.204509614651    
+     1.46947484138       -0.201257517085    
+     1.47559765322       -0.198033276151    
+     1.48172046506       -0.194836748875    
+     1.48784327690       -0.191667790827    
+     1.49396608874       -0.188526256164    
+     1.50008890057       -0.185411997668    
+     1.50621171241       -0.182324866791    
+     1.51233452425       -0.179264713687    
+     1.51845733609       -0.176231387259    
+     1.52458014793       -0.173224735192    
+     1.53070295977       -0.170244603997    
+     1.53682577161       -0.167290839042    
+     1.54294858345       -0.164363284595    
+     1.54907139529       -0.161461783858    
+     1.55519420713       -0.158586179006    
+     1.56131701896       -0.155736311220    
+     1.56743983080       -0.152912020724    
+     1.57356264264       -0.150113146820    
+     1.57968545448       -0.147339527922    
+     1.58580826632       -0.144591001591    
+     1.59193107816       -0.141867404567    
+     1.59805389000       -0.139168572805    
+     1.60417670184       -0.136494341505    
+     1.61029951368       -0.133844545143    
+     1.61642232552       -0.131219017508    
+     1.62254513736       -0.128617591727    
+     1.62866794919       -0.126040100300    
+     1.63479076103       -0.123486375130    
+     1.64091357287       -0.120956247549    
+     1.64703638471       -0.118449548352    
+     1.65315919655       -0.115966107823    
+     1.65928200839       -0.113505755766    
+     1.66540482023       -0.111068321529    
+     1.67152763207       -0.108653634035    
+     1.67765044391       -0.106261521807    
+     1.68377325575       -0.103891812996    
+     1.68989606759       -0.101544335407    
+     1.69601887942       -0.992189165225E-01
+     1.70214169126       -0.969153835299E-01
+     1.70826450310       -0.946335633456E-01
+     1.71438731494       -0.923732826390E-01
+     1.72051012678       -0.901343678565E-01
+     1.72663293862       -0.879166452449E-01
+     1.73275575046       -0.857199408741E-01
+     1.73887856230       -0.835440806601E-01
+     1.74500137414       -0.813888903862E-01
+     1.75112418598       -0.792541957253E-01
+     1.75724699782       -0.771398222610E-01
+     1.76336980965       -0.750455955076E-01
+     1.76949262149       -0.729713409313E-01
+     1.77561543333       -0.709168839695E-01
+     1.78173824517       -0.688820500504E-01
+     1.78786105701       -0.668666646120E-01
+     1.79398386885       -0.648705531204E-01
+     1.80010668069       -0.628935410884E-01
+     1.80622949253       -0.609354540930E-01
+     1.81235230437       -0.589961177925E-01
+     1.81847511621       -0.570753579439E-01
+     1.82459792805       -0.551730004188E-01
+     1.83072073988       -0.532888712200E-01
+     1.83684355172       -0.514227964968E-01
+     1.84296636356       -0.495746025606E-01
+     1.84908917540       -0.477441158995E-01
+     1.85521198724       -0.459311631928E-01
+     1.86133479908       -0.441355713252E-01
+     1.86745761092       -0.423571674006E-01
+     1.87358042276       -0.405957787550E-01
+     1.87970323460       -0.388512329698E-01
+     1.88582604644       -0.371233578842E-01
+     1.89194885828       -0.354119816073E-01
+     1.89807167011       -0.337169325300E-01
+     1.90419448195       -0.320380393362E-01
+     1.91031729379       -0.303751310140E-01
+     1.91644010563       -0.287280368664E-01
+     1.92256291747       -0.270965865215E-01
+     1.92868572931       -0.254806099425E-01
+     1.93480854115       -0.238799374369E-01
+     1.94093135299       -0.222943996666E-01
+     1.94705416483       -0.207238276558E-01
+     1.95317697667       -0.191680528000E-01
+     1.95929978851       -0.176269068744E-01
+     1.96542260034       -0.161032160693E-01
+     1.97154541218       -0.145883668784E-01
+     1.97766822402       -0.130869644160E-01
+     1.98379103586       -0.116004517760E-01
+     1.98991384770       -0.101099830358E-01
+     1.99603665954       -0.867216145896E-02
+     2.00215947138       -0.725510691129E-02
+     2.00828228322       -0.584597333631E-02
+     2.01440509506       -0.448371496459E-02
+     2.02052790690       -0.301536893223E-02
+     2.02665071873       -0.151719150054E-02
+     2.03277353057       -0.309058642183E-04
+     2.03889634241        0.143085220434E-02
+     2.04501915425        0.265383132524E-02
+     2.05114196609        0.361991155844E-02
+     2.05726477793        0.427414083459E-02
+     2.06338758977        0.463563139565E-02
+     2.06951040161        0.458769088542E-02
+     2.07563321345        0.422152745566E-02
+     2.08175602529        0.362426989695E-02
+     2.08787883713        0.271598930681E-02
+     2.09400164896        0.209548283350E-02
+     2.10012446080        0.170480036859E-02
+     2.10624727264        0.159152768019E-02
+     2.11237008448        0.173840283408E-02
+     2.11849289632        0.227813734671E-02
+     2.12461570816        0.251593574734E-02
+     2.13073852000        0.263114848442E-02
+     2.13686133184        0.258593432319E-02
+     2.14298414368        0.220582800474E-02
+     2.14910695552        0.199533524478E-02
+     2.15522976736        0.181495631266E-02
+     2.16135257919        0.169660614904E-02
+     2.16747539103        0.175173989785E-02
+     2.17359820287        0.174440381036E-02
+     2.17972101471        0.173964810353E-02
+     2.18584382655        0.172288748817E-02
+     2.19196663839        0.168507084139E-02
+     2.19808945023        0.159112425354E-02
+     2.20421226207        0.153155753669E-02
+     2.21033507391        0.147452179025E-02
+     2.21645788575        0.142353158228E-02
+     2.22258069759        0.139132886305E-02
+     2.22870350942        0.135248477930E-02
+     2.23482632126        0.131530023347E-02
+     2.24094913310        0.127877187876E-02
+     2.24707194494        0.124218068017E-02
+     2.25319475678        0.120279527200E-02
+     2.25931756862        0.116685212308E-02
+     2.26544038046        0.113194185457E-02
+     2.27156319230        0.109819678434E-02
+     2.27768600414        0.106620976009E-02
+     2.28380881598        0.103482716410E-02
+     2.28993162782        0.100440350368E-02
+     2.29605443965        0.974883250714E-03
+     2.30217725149        0.946216726057E-03
+     2.30830006333        0.918283882149E-03
+     2.31442287517        0.891247886630E-03
+     2.32054568701        0.865012393829E-03
+     2.32666849885        0.839556462116E-03
+     2.33279131069        0.814859172817E-03
+     2.33891412253        0.790909128302E-03
+     2.34503693437        0.767659601233E-03
+     2.35115974621        0.745099449091E-03
+     2.35728255805        0.723207861755E-03
+     2.36340536988        0.701964766258E-03
+     2.36952818172        0.681478800498E-03
+     2.37565099356        0.661407188550E-03
+     2.38177380540        0.641896923535E-03
+     2.38789661724        0.622963854548E-03
+     2.39401942908        0.604628722101E-03
+     2.40014224092        0.584023888595E-03
+     2.40626505276        0.568635098285E-03
+     2.41238786460        0.554474745972E-03
+     2.41851067644        0.540702440463E-03
+     2.42463348827        0.552515963449E-03
+     2.43075630011        0.531893413047E-03
+     2.43687911195        0.501012307931E-03
+     2.44300192379        0.464054823536E-03
+     2.44912473563        0.427873875965E-03
+     2.45524754747        0.296944750166E-03
+     2.46137035931        0.306580275168E-03
+     2.46749317115        0.371538554207E-03
+     2.47361598299        0.477649687573E-03
+     2.47973879483        0.597104942437E-03
+     2.48586160667        0.945301554960E-03
+     2.49198441850        0.928686392749E-03
+     2.49810723034        0.723250564306E-03
+     2.50423004218        0.331908292642E-03
+     2.51035285402       -0.207287899165E-03
+     2.51647566586       -0.824218675120E-03
+     2.52259847770       -0.177974538964E-02
+     2.52872128954       -0.207449376137E-02
+     2.53484410138       -0.206103015491E-02
+     2.54096691322       -0.173078372296E-02
+     2.54708972506       -0.112377153344E-02
+     2.55321253690        0.872603849974E-04
+     2.55933534873        0.787502557525E-03
+     2.56545816057        0.132681612362E-02
+     2.57158097241        0.164482078808E-02
+     2.57770378425        0.171888998835E-02
+     2.58382659609        0.124330586191E-02
+     2.58994940793        0.101873017119E-02
+     2.59607221977        0.781738516691E-03
+     2.60219503161        0.578515665811E-03
+     2.60831784345        0.441417735685E-03
+     2.61444065529        0.548959390675E-03
+     2.62056346713        0.536988152759E-03
+     2.62668627896        0.539412148398E-03
+     2.63280909080        0.544498329992E-03
+     2.63893190264        0.542158407106E-03
+     2.64505471448        0.525557024856E-03
+     2.65117752632        0.447742782889E-03
+     2.65730033816        0.418146414280E-03
+     2.66342315000        0.389216334126E-03
+     2.66954596184        0.362237930941E-03
+     2.67566877368        0.338241959347E-03
+     2.68179158552        0.325213981240E-03
+     2.68791439736        0.306407564444E-03
+     2.69403720919        0.288765874899E-03
+     2.70016002103        0.272168859176E-03
+     2.70628283287        0.256504446957E-03
+     2.71240564471        0.241678077412E-03
+     2.71852845655        0.227320215627E-03
+     2.72465126839        0.214112975684E-03
+     2.73077408023        0.201674674054E-03
+     2.73689689207        0.189960389873E-03
+     2.74301970391        0.178927849017E-03
+     2.74914251575        0.168537039717E-03
+     2.75526532759        0.158751051586E-03
+     2.76138813942        0.149534438073E-03
+     2.76751095126        0.140854032342E-03
+     2.77363376310        0.132678605915E-03
+     2.77975657494        0.124978752025E-03
+     2.78587938678        0.117726792751E-03
+     2.79200219862        0.110896605560E-03
+     2.79812501046        0.104463639129E-03
+     2.80424782230        0.984047514778E-04
+     2.81037063414        0.926981436257E-04
+     2.81649344598        0.873232816765E-04
+     2.82261625782        0.822608879234E-04
+     2.82873906965        0.774925906440E-04
+     2.83486188149        0.730013114159E-04
+     2.84098469333        0.687709042719E-04
+     2.84710750517        0.647861705321E-04
+     2.85323031701        0.610327060805E-04
+     2.85935312885        0.574972586427E-04
+     2.86547594069        0.541670627418E-04
+     2.87159875253        0.510301794959E-04
+     2.87772156437        0.480753646751E-04
+     2.88384437621        0.452920277862E-04
+     2.88996718804        0.426630739300E-04
+     2.89608999988        0.401947922585E-04
+     2.90221281172        0.378713865627E-04
+     2.90833562356        0.356838847631E-04
+     2.91445843540        0.336235365570E-04
+     2.92058124724        0.316819295629E-04
+     2.92670405908        0.298590074138E-04
+     2.93282687092        0.281300970227E-04
+     2.93894968276        0.264966244127E-04
+     2.94507249460        0.249538754808E-04
+     2.95119530644        0.234984985812E-04
+     2.95731811827        0.221283543960E-04
+     2.96344093011        0.208226313243E-04
+     2.96956374195        0.196228916751E-04
+     2.97568655379        0.185100196769E-04
+     2.98180936563        0.174803124936E-04
+     2.98793217747        0.165263574827E-04
+     2.99405498931        0.156355738032E-04
+     3.00017780115        0.148466578087E-04
+     3.00630061299        0.140107671081E-04
+     3.01242342483        0.131347738670E-04
+     3.01854623667        0.121668017212E-04
+     3.02466904850        0.110439016096E-04
+     3.03079186034        0.969104244408E-05
+     3.03691467218        0.777342052720E-05
+     3.04303748402        0.566234671042E-05
+     3.04916029586        0.309934149065E-05
+     3.05528310770        0.169406589451E-20
+# Core:__________________________
+ 500    0.757253143774E-02     3.77869318743     # npts, delta, cutoff
+     0.00000000000         4.03133966476    
+    0.757253143774E-02     4.03110318342    
+    0.151450628755E-01     4.03038180371    
+    0.227175943132E-01     4.02917920477    
+    0.302901257509E-01     4.02749493816    
+    0.378626571887E-01     4.02532837813    
+    0.454351886264E-01     4.02267872327    
+    0.530077200641E-01     4.01954499880    
+    0.605802515019E-01     4.01592605974    
+    0.681527829396E-01     4.01182059403    
+    0.757253143774E-01     4.00722712672    
+    0.832978458151E-01     4.00214402436    
+    0.908703772528E-01     3.99656950007    
+    0.984429086906E-01     3.99050161902    
+    0.106015440128         3.98393830459    
+    0.113587971566         3.97687734501    
+    0.121160503004         3.96931640026    
+    0.128733034442         3.96125301019    
+    0.136305565879         3.95268460234    
+    0.143878097317         3.94360850078    
+    0.151450628755         3.93402193556    
+    0.159023160192         3.92392205221    
+    0.166595691630         3.91330592242    
+    0.174168223068         3.90217055441    
+    0.181740754506         3.89051290481    
+    0.189313285943         3.87832989018    
+    0.196885817381         3.86561839954    
+    0.204458348819         3.85237530724    
+    0.212030880257         3.83859748637    
+    0.219603411694         3.82428182261    
+    0.227175943132         3.80942522864    
+    0.234748474570         3.79402465892    
+    0.242321006008         3.77807712500    
+    0.249893537445         3.76157971135    
+    0.257466068883         3.74452959139    
+    0.265038600321         3.72692404415    
+    0.272611131758         3.70876047131    
+    0.280183663196         3.69003641451    
+    0.287756194634         3.67074957305    
+    0.295328726072         3.65089782205    
+    0.302901257509         3.63047923076    
+    0.310473788947         3.60949208123    
+    0.318046320385         3.58793488723    
+    0.325618851823         3.56580641343    
+    0.333191383260         3.54310569467    
+    0.340763914698         3.51983205551    
+    0.348336446136         3.49598512976    
+    0.355908977574         3.47156488024    
+    0.363481509011         3.44657161844    
+    0.371054040449         3.42100602429    
+    0.378626571887         3.39486916573    
+    0.386199103325         3.36816251832    
+    0.393771634762         3.34088798458    
+    0.401344166200         3.31304791315    
+    0.408916697638         3.28464511777    
+    0.416489229075         3.25568289569    
+    0.424061760513         3.22616504603    
+    0.431634291951         3.19609588731    
+    0.439206823389         3.16548027482    
+    0.446779354826         3.13432361712    
+    0.454351886264         3.10263189205    
+    0.461924417702         3.07041166192    
+    0.469496949140         3.03767008798    
+    0.477069480577         3.00441494399    
+    0.484642012015         2.97065462878    
+    0.492214543453         2.93639817790    
+    0.499787074891         2.90165527413    
+    0.507359606328         2.86643625676    
+    0.514932137766         2.83075212977    
+    0.522504669204         2.79461456851    
+    0.530077200641         2.75803592521    
+    0.537649732079         2.72102923274    
+    0.545222263517         2.68360820715    
+    0.552794794955         2.64578724839    
+    0.560367326392         2.60758143937    
+    0.567939857830         2.56900654349    
+    0.575512389268         2.53007900002    
+    0.583084920706         2.49081591809    
+    0.590657452143         2.45123506827    
+    0.598229983581         2.41135487267    
+    0.605802515019         2.37119439268    
+    0.613375046457         2.33077331486    
+    0.620947577894         2.29011193482    
+    0.628520109332         2.24923113880    
+    0.636092640770         2.20815238333    
+    0.643665172208         2.16689767272    
+    0.651237703645         2.12548953436    
+    0.658810235083         2.08395099204    
+    0.666382766521         2.04230553699    
+    0.673955297958         2.00057709476    
+    0.681527829396         1.95879000248    
+    0.689100360834         1.91696894747    
+    0.696672892272         1.87513906709    
+    0.704245423709         1.83332710305    
+    0.711817955147         1.79157762136    
+    0.719390486585         1.74994441530    
+    0.726963018023         1.70848015515    
+    0.734535549460         1.66723589377    
+    0.742108080898         1.62626070764    
+    0.749680612336         1.58560132469    
+    0.757253143774         1.54530194342    
+    0.764825675211         1.50540407194    
+    0.772398206649         1.46594642331    
+    0.779970738087         1.42696485541    
+    0.787543269524         1.38849234820    
+    0.795115800962         1.35055901271    
+    0.802688332400         1.31319212606    
+    0.810260863838         1.27641618822    
+    0.817833395275         1.24025299615    
+    0.825405926713         1.20472173191    
+    0.832978458151         1.16983906175    
+    0.840550989589         1.13561924331    
+    0.848123521026         1.10207423889    
+    0.855696052464         1.06921383268    
+    0.863268583902         1.03704575032    
+    0.870841115340         1.00557577936    
+    0.878413646777        0.974807889521    
+    0.885986178215        0.944744351659    
+    0.893558709653        0.915385854684    
+    0.901131241091        0.886731619741    
+    0.908703772528        0.858779511136    
+    0.916276303966        0.831526143576    
+    0.923848835404        0.804966985400    
+    0.931421366841        0.779096457581    
+    0.938993898279        0.753908028328    
+    0.946566429717        0.729394303167    
+    0.954138961155        0.705547110497    
+    0.961711492592        0.682357582573    
+    0.969284024030        0.659816231974    
+    0.976856555468        0.637913023615    
+    0.984429086906        0.616637442398    
+    0.992001618343        0.595978556594    
+    0.999574149781        0.575925077103    
+     1.00714668122        0.556465412741    
+     1.01471921266        0.537587721634    
+     1.02229174409        0.519279958962    
+     1.02986427553        0.501529921198    
+     1.03743680697        0.484325286951    
+     1.04500933841        0.467653654556    
+     1.05258186985        0.451502576719    
+     1.06015440128        0.435859592232    
+     1.06772693272        0.420712254966    
+     1.07529946416        0.406048160295    
+     1.08287199560        0.391854969120    
+     1.09044452703        0.378120429610    
+     1.09801705847        0.364832396794    
+     1.10558958991        0.351978850191    
+     1.11316212135        0.339547909561    
+     1.12073465278        0.327527848904    
+     1.12830718422        0.315907108839    
+     1.13587971566        0.304674307496    
+     1.14345224710        0.293818249986    
+     1.15102477854        0.283327936573    
+     1.15859730997        0.273192569646    
+     1.16616984141        0.263401559596    
+     1.17374237285        0.253944529651    
+     1.18131490429        0.244811319769    
+     1.18888743572        0.235991989671    
+     1.19645996716        0.227476821076    
+     1.20403249860        0.219256319213    
+     1.21160503004        0.211321213681    
+     1.21917756148        0.203662458677    
+     1.22675009291        0.196271232690    
+     1.23432262435        0.189138937709    
+     1.24189515579        0.182257197976    
+     1.24946768723        0.175617858329    
+     1.25704021866        0.169212982179    
+     1.26461275010        0.163034849175    
+     1.27218528154        0.157075952580    
+     1.27975781298        0.151328996392    
+     1.28733034442        0.145786892244    
+     1.29490287585        0.140442756105    
+     1.30247540729        0.135289904813    
+     1.31004793873        0.130321852471    
+     1.31762047017        0.125532306711    
+     1.32519300160        0.120915164873    
+     1.33276553304        0.116464510081    
+     1.34033806448        0.112174607274    
+     1.34791059592        0.108039899177    
+     1.35548312735        0.104055002237    
+     1.36305565879        0.100214702542    
+     1.37062819023        0.965139517269E-01
+     1.37820072167        0.929478628824E-01
+     1.38577325311        0.895117064740E-01
+     1.39334578454        0.862009062819E-01
+     1.40091831598        0.830110353643E-01
+     1.40849084742        0.799378120580E-01
+     1.41606337886        0.769770960217E-01
+     1.42363591029        0.741248843233E-01
+     1.43120844173        0.713773075795E-01
+     1.43878097317        0.687306261485E-01
+     1.44635350461        0.661812263852E-01
+     1.45392603605        0.637256169591E-01
+     1.46149856748        0.613604252373E-01
+     1.46907109892        0.590823937337E-01
+     1.47664363036        0.568883766307E-01
+     1.48421616180        0.547753363698E-01
+     1.49178869323        0.527403403185E-01
+     1.49936122467        0.507805575080E-01
+     1.50693375611        0.488932554454E-01
+     1.51450628755        0.470757970024E-01
+     1.52207881898        0.453256373776E-01
+     1.52965135042        0.436403211366E-01
+     1.53722388186        0.420174793256E-01
+     1.54479641330        0.404548266572E-01
+     1.55236894474        0.389501587738E-01
+     1.55994147617        0.375013495825E-01
+     1.56751400761        0.361063486652E-01
+     1.57508653905        0.347631787589E-01
+     1.58265907049        0.334699333064E-01
+     1.59023160192        0.322247740784E-01
+     1.59780413336        0.310259288633E-01
+     1.60537666480        0.298716892267E-01
+     1.61294919624        0.287604083361E-01
+     1.62052172768        0.276904988504E-01
+     1.62809425911        0.266604308744E-01
+     1.63566679055        0.256687299752E-01
+     1.64323932199        0.247139752615E-01
+     1.65081185343        0.237947975210E-01
+     1.65838438486        0.229098774175E-01
+     1.66595691630        0.220579437449E-01
+     1.67352944774        0.212377717370E-01
+     1.68110197918        0.204481814316E-01
+     1.68867451062        0.196880360884E-01
+     1.69624704205        0.189562406575E-01
+     1.70381957349        0.182517402990E-01
+     1.71139210493        0.175735189514E-01
+     1.71896463637        0.169205979476E-01
+     1.72653716780        0.162920346766E-01
+     1.73410969924        0.156869212905E-01
+     1.74168223068        0.151043834559E-01
+     1.74925476212        0.145435791465E-01
+     1.75682729355        0.140036974773E-01
+     1.76439982499        0.134839575794E-01
+     1.77197235643        0.129836075120E-01
+     1.77954488787        0.125019232138E-01
+     1.78711741931        0.120382074889E-01
+     1.79468995074        0.115917890289E-01
+     1.80226248218        0.111620214695E-01
+     1.80983501362        0.107482824789E-01
+     1.81740754506        0.103499728794E-01
+     1.82498007649        0.996651579936E-02
+     1.83255260793        0.959735585491E-02
+     1.84012513937        0.924195836148E-02
+     1.84769767081        0.889980857247E-02
+     1.85527020225        0.857041094549E-02
+     1.86284273368        0.825328843458E-02
+     1.87041526512        0.794798180792E-02
+     1.87798779656        0.765404898975E-02
+     1.88556032800        0.737106442651E-02
+     1.89313285943        0.709861847521E-02
+     1.90070539087        0.683631681422E-02
+     1.90827792231        0.658377987508E-02
+     1.91585045375        0.634064229515E-02
+     1.92342298518        0.610655238989E-02
+     1.93099551662        0.588117164484E-02
+     1.93856804806        0.566417422548E-02
+     1.94614057950        0.545524650547E-02
+     1.95371311094        0.525408661162E-02
+     1.96128564237        0.506040398594E-02
+     1.96885817381        0.487391896343E-02
+     1.97643070525        0.469436236571E-02
+     1.98400323669        0.452147510928E-02
+     1.99157576812        0.435500782832E-02
+     1.99914829956        0.419472051137E-02
+     2.00672083100        0.404038215139E-02
+     2.01429336244        0.389177040879E-02
+     2.02186589388        0.374867128679E-02
+     2.02943842531        0.361087881900E-02
+     2.03701095675        0.347819476838E-02
+     2.04458348819        0.335042833746E-02
+     2.05215601963        0.322739588931E-02
+     2.05972855106        0.310892067888E-02
+     2.06730108250        0.299483259429E-02
+     2.07487361394        0.288496790777E-02
+     2.08244614538        0.277916903593E-02
+     2.09001867681        0.267728430891E-02
+     2.09759120825        0.257916774810E-02
+     2.10516373969        0.248467885232E-02
+     2.11273627113        0.239368239181E-02
+     2.12030880257        0.230604821002E-02
+     2.12788133400        0.222165103283E-02
+     2.13545386544        0.214037028483E-02
+     2.14302639688        0.206208991259E-02
+     2.15059892832        0.198669821446E-02
+     2.15817145975        0.191408767681E-02
+     2.16574399119        0.184415481644E-02
+     2.17331652263        0.177680002882E-02
+     2.18088905407        0.171192744212E-02
+     2.18846158551        0.164944477668E-02
+     2.19603411694        0.158926320976E-02
+     2.20360664838        0.153129724542E-02
+     2.21117917982        0.147546458926E-02
+     2.21875171126        0.142168602788E-02
+     2.22632424269        0.136988531290E-02
+     2.23389677413        0.131998904932E-02
+     2.24146930557        0.127192658813E-02
+     2.24904183701        0.122562992292E-02
+     2.25661436845        0.118103359043E-02
+     2.26418689988        0.113807457479E-02
+     2.27175943132        0.109669221548E-02
+     2.27933196276        0.105682811867E-02
+     2.28690449420        0.101842607193E-02
+     2.29447702563        0.981431962174E-03
+     2.30204955707        0.945793696675E-03
+     2.30962208851        0.911461127102E-03
+     2.31719461995        0.878385976386E-03
+     2.32476715138        0.846521768380E-03
+     2.33233968282        0.815823760151E-03
+     2.33991221426        0.786248876848E-03
+     2.34748474570        0.757755649003E-03
+     2.35505727714        0.730304152250E-03
+     2.36262980857        0.703855949269E-03
+     2.37020234001        0.678374033947E-03
+     2.37777487145        0.653822777659E-03
+     2.38534740289        0.630167877541E-03
+     2.39291993432        0.607376306751E-03
+     2.40049246576        0.585416266602E-03
+     2.40806499720        0.564257140480E-03
+     2.41563752864        0.543869449547E-03
+     2.42321006008        0.524224810073E-03
+     2.43078259151        0.505295892398E-03
+     2.43835512295        0.487056381450E-03
+     2.44592765439        0.469480938723E-03
+     2.45350018583        0.452545165725E-03
+     2.46107271726        0.436225568786E-03
+     2.46864524870        0.420499525192E-03
+     2.47621778014        0.405345250616E-03
+     2.48379031158        0.390741767754E-03
+     2.49136284301        0.376668876152E-03
+     2.49893537445        0.363107123183E-03
+     2.50650790589        0.350037776086E-03
+     2.51408043733        0.337442795092E-03
+     2.52165296877        0.325304807544E-03
+     2.52922550020        0.313607082992E-03
+     2.53679803164        0.302333509238E-03
+     2.54437056308        0.291468569271E-03
+     2.55194309452        0.280997319070E-03
+     2.55951562595        0.270905366252E-03
+     2.56708815739        0.261178849509E-03
+     2.57466068883        0.251804418829E-03
+     2.58223322027        0.242769216454E-03
+     2.58980575171        0.234060858563E-03
+     2.59737828314        0.225667417626E-03
+     2.60495081458        0.217577405441E-03
+     2.61252334602        0.209779756792E-03
+     2.62009587746        0.202263813726E-03
+     2.62766840889        0.195019310429E-03
+     2.63524094033        0.188036358645E-03
+     2.64281347177        0.181305433668E-03
+     2.65038600321        0.174817360845E-03
+     2.65795853465        0.168563302591E-03
+     2.66553106608        0.162534745879E-03
+     2.67310359752        0.156723490213E-03
+     2.68067612896        0.151121636043E-03
+     2.68824866040        0.145721573619E-03
+     2.69582119183        0.140515972250E-03
+     2.70339372327        0.135497769978E-03
+     2.71096625471        0.130660163634E-03
+     2.71853878615        0.125996599259E-03
+     2.72611131758        0.121500762896E-03
+     2.73368384902        0.117166571710E-03
+     2.74125638046        0.112988165451E-03
+     2.74882891190        0.108959898228E-03
+     2.75640144334        0.105076330603E-03
+     2.76397397477        0.101332221961E-03
+     2.77154650621        0.977225231773E-04
+     2.77911903765        0.942423695539E-04
+     2.78669156909        0.908870740199E-04
+     2.79426410052        0.876521205884E-04
+     2.80183663196        0.845331580460E-04
+     2.80940916340        0.815259938886E-04
+     2.81698169484        0.786265884768E-04
+     2.82455422628        0.758310494152E-04
+     2.83212675771        0.731356261275E-04
+     2.83969928915        0.705367046461E-04
+     2.84727182059        0.680308025889E-04
+     2.85484435203        0.656145643231E-04
+     2.86241688346        0.632847563138E-04
+     2.86998941490        0.610382626332E-04
+     2.87756194634        0.588720806486E-04
+     2.88513447778        0.567833168636E-04
+     2.89270700921        0.547691829143E-04
+     2.90027954065        0.528269917196E-04
+     2.90785207209        0.509541537608E-04
+     2.91542460353        0.491481735117E-04
+     2.92299713497        0.474066459957E-04
+     2.93056966640        0.457272534686E-04
+     2.93814219784        0.441077622316E-04
+     2.94571472928        0.425460195479E-04
+     2.95328726072        0.410399506874E-04
+     2.96085979215        0.395875560731E-04
+     2.96843232359        0.381869085343E-04
+     2.97600485503        0.368361506647E-04
+     2.98357738647        0.355334922687E-04
+     2.99114991791        0.342772079116E-04
+     2.99872244934        0.330656345541E-04
+     3.00629498078        0.318971692814E-04
+     3.01386751222        0.307702671029E-04
+     3.02144004366        0.296834388450E-04
+     3.02901257509        0.286352491162E-04
+     3.03658510653        0.276243143468E-04
+     3.04415763797        0.266493009060E-04
+     3.05173016941        0.257089232776E-04
+     3.05930270085        0.248019423131E-04
+     3.06687523228        0.239271635440E-04
+     3.07444776372        0.230834355557E-04
+     3.08202029516        0.222696484273E-04
+     3.08959282660        0.214847322170E-04
+     3.09716535803        0.207276555133E-04
+     3.10473788947        0.199974240354E-04
+     3.11231042091        0.192930792852E-04
+     3.11988295235        0.186136972478E-04
+     3.12745548378        0.179583871443E-04
+     3.13502801522        0.173262902204E-04
+     3.14260054666        0.167165785896E-04
+     3.15017307810        0.161284541134E-04
+     3.15774560954        0.155611473228E-04
+     3.16531814097        0.150139163840E-04
+     3.17289067241        0.144860460913E-04
+     3.18046320385        0.139768469080E-04
+     3.18803573529        0.134856540362E-04
+     3.19560826672        0.130118265217E-04
+     3.20318079816        0.125547463951E-04
+     3.21075332960        0.121138178357E-04
+     3.21832586104        0.116884663749E-04
+     3.22589839248        0.112781381236E-04
+     3.23347092391        0.108822990290E-04
+     3.24104345535        0.105004341616E-04
+     3.24861598679        0.101320470200E-04
+     3.25618851823        0.977665886936E-05
+     3.26376104966        0.943380809995E-05
+     3.27133358110        0.910304960993E-05
+     3.27890611254        0.878395420960E-05
+     3.28647864398        0.847610805128E-05
+     3.29405117541        0.817911207184E-05
+     3.30162370685        0.789258146356E-05
+     3.30919623829        0.761614516035E-05
+     3.31676876973        0.734944534250E-05
+     3.32434130117        0.709213696342E-05
+     3.33191383260        0.684388728545E-05
+     3.33948636404        0.660437544046E-05
+     3.34705889548        0.637329200255E-05
+     3.35463142692        0.615033857705E-05
+     3.36220395835        0.593522740363E-05
+     3.36977648979        0.572768097732E-05
+     3.37734902123        0.552743167597E-05
+     3.38492155267        0.533422140856E-05
+     3.39249408411        0.514780127258E-05
+     3.40006661554        0.496793122389E-05
+     3.40763914698        0.479437976194E-05
+     3.41521167842        0.462692361935E-05
+     3.42278420986        0.446534746957E-05
+     3.43035674129        0.430944364186E-05
+     3.43792927273        0.415901184716E-05
+     3.44550180417        0.401385891325E-05
+     3.45307433561        0.387379853259E-05
+     3.46064686705        0.373865101283E-05
+     3.46821939848        0.360824304271E-05
+     3.47579192992        0.348240746337E-05
+     3.48336446136        0.336098304836E-05
+     3.49093699280        0.324381429118E-05
+     3.49850952423        0.313075120318E-05
+     3.50608205567        0.302164911290E-05
+     3.51365458711        0.291636847863E-05
+     3.52122711855        0.281477470469E-05
+     3.52879964998        0.271673796444E-05
+     3.53637218142        0.262213303231E-05
+     3.54394471286        0.253083911647E-05
+     3.55151724430        0.244273970275E-05
+     3.55908977574        0.235772240173E-05
+     3.56666230717        0.227567880173E-05
+     3.57423483861        0.219650432664E-05
+     3.58180737005        0.212009810129E-05
+     3.58937990149        0.204636281670E-05
+     3.59695243292        0.197520460499E-05
+     3.60452496436        0.190653291653E-05
+     3.61209749580        0.184026040183E-05
+     3.61967002724        0.177630279509E-05
+     3.62724255868        0.171457881578E-05
+     3.63481509011        0.165501004546E-05
+     3.64238762155        0.159752083690E-05
+     3.64996015299        0.154203821318E-05
+     3.65753268443        0.148849177283E-05
+     3.66510521586        0.143681356529E-05
+     3.67267774730        0.138693814115E-05
+     3.68025027874        0.133880225936E-05
+     3.68782281018        0.129234493644E-05
+     3.69539534161        0.124750733712E-05
+     3.70296787305        0.120423269829E-05
+     3.71054040449        0.116246576939E-05
+     3.71811293593        0.112215473039E-05
+     3.72568546737        0.108324822468E-05
+     3.73325799880        0.104569708061E-05
+     3.74083053024        0.100945383001E-05
+     3.74840306168        0.974472637742E-06
+     3.75597559312        0.940699493965E-06
+     3.76354812455        0.908110361762E-06
+     3.77112065599        0.876658261990E-06
+     3.77869318743        0.846305090294E-06
diff --git a/tests/data/parsers/siesta/Fe/Fe.ion.xml b/tests/data/parsers/siesta/Fe/Fe.ion.xml
new file mode 100644
index 0000000000000000000000000000000000000000..377d805f7412e7f8f9579c20d30070b9662731af
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.ion.xml
@@ -0,0 +1,6720 @@
+<ion version="0.1">
+<symbol> Fe </symbol> 
+<label> Fe </label> 
+<z>                        26 </z> 
+<valence>      8.00000000000 </valence> 
+<mass>      55.8500000000 </mass> 
+<self_energy>      52.3270529712 </self_energy> 
+<lmax_basis>                         2 </lmax_basis> 
+<norbs_nl>                         5 </norbs_nl> 
+<lmax_projs>                         3 </lmax_projs> 
+<nprojs_nl>                         4 </nprojs_nl> 
+<preamble>
+
+<basis_specs>
+===============================================================================
+Fe                   Z=  26    Mass=  55.850        Charge= 0.17977+309
+Lmxo=2 Lmxkb= 3    BasisType=split      Semic=F
+L=0  Nsemic=0  Cnfigmx=4
+          n=1  nzeta=2  polorb=1
+            splnorm:   0.15000    
+               vcte:    0.0000    
+               rinn:    0.0000    
+               qcoe:    0.0000    
+               qyuk:    0.0000    
+               qwid:   0.10000E-01
+                rcs:    6.0008      5.8526    
+            lambdas:    1.0000      1.0000    
+L=1  Nsemic=0  Cnfigmx=4
+L=2  Nsemic=0  Cnfigmx=3
+          n=1  nzeta=2  polorb=0
+            splnorm:   0.15000    
+               vcte:    0.0000    
+               rinn:    0.0000    
+               qcoe:    0.0000    
+               qyuk:    0.0000    
+               qwid:   0.10000E-01
+                rcs:    4.7917      2.2353    
+            lambdas:    1.0000      1.0000    
+-------------------------------------------------------------------------------
+L=0  Nkbl=1  erefs:-0.38830    
+L=1  Nkbl=1  erefs:-0.97543E-01
+L=2  Nkbl=1  erefs:-0.55324    
+L=3  Nkbl=1  erefs: 0.31783E-02
+===============================================================================
+</basis_specs>
+
+<pseudopotential_header>
+ Fe pb rel pcec
+ ATM3       8-OCT-07 Troullier-Martins                       
+ 4s 2.00r r= 2.00/4p 0.00r r= 2.00/3d 6.00r r= 2.00/4f 0.00r r= 2.00/  
+</pseudopotential_header>
+</preamble>
+<paos>
+<orbital 
+ l="                        0" 
+ n="                        4" 
+ z="                        1" 
+ ispol="                        0" 
+ population="     2.00000000000" 
+ >
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.120255885413E-01 </delta> 
+<cutoff>      6.00076868209 </cutoff> 
+<data>
+     0.00000000000        0.137304333797    
+    0.120255885413E-01    0.137314553623    
+    0.240511770825E-01    0.137345866308    
+    0.360767656238E-01    0.137398063644    
+    0.481023541650E-01    0.137471159886    
+    0.601279427063E-01    0.137565174972    
+    0.721535312475E-01    0.137680134500    
+    0.841791197888E-01    0.137816069694    
+    0.962047083301E-01    0.137973017371    
+    0.108230296871        0.138151019891    
+    0.120255885413        0.138350125113    
+    0.132281473954        0.138570386333    
+    0.144307062495        0.138811862216    
+    0.156332651036        0.139074616727    
+    0.168358239578        0.139358719048    
+    0.180383828119        0.139664243484    
+    0.192409416660        0.139991269372    
+    0.204435005201        0.140339880968    
+    0.216460593743        0.140710167333    
+    0.228486182284        0.141102222206    
+    0.240511770825        0.141516143869    
+    0.252537359366        0.141952035002    
+    0.264562947908        0.142410002524    
+    0.276588536449        0.142890157426    
+    0.288614124990        0.143392614592    
+    0.300639713531        0.143917492608    
+    0.312665302073        0.144464913552    
+    0.324690890614        0.145035002786    
+    0.336716479155        0.145627888718    
+    0.348742067696        0.146243702557    
+    0.360767656238        0.146882578058    
+    0.372793244779        0.147544651239    
+    0.384818833320        0.148230060095    
+    0.396844421861        0.148938944290    
+    0.408870010403        0.149671444825    
+    0.420895598944        0.150427703704    
+    0.432921187485        0.151207863563    
+    0.444946776026        0.152012067298    
+    0.456972364568        0.152840457655    
+    0.468997953109        0.153693176815    
+    0.481023541650        0.154570365949    
+    0.493049130192        0.155472164753    
+    0.505074718733        0.156398710963    
+    0.517100307274        0.157350139843    
+    0.529125895815        0.158326583652    
+    0.541151484357        0.159328171086    
+    0.553177072898        0.160355026696    
+    0.565202661439        0.161407270278    
+    0.577228249980        0.162485016241    
+    0.589253838522        0.163588372944    
+    0.601279427063        0.164717442011    
+    0.613305015604        0.165872317615    
+    0.625330604145        0.167053085736    
+    0.637356192687        0.168259823393    
+    0.649381781228        0.169492597845    
+    0.661407369769        0.170751465767    
+    0.673432958310        0.172036472394    
+    0.685458546852        0.173347650646    
+    0.697484135393        0.174685020211    
+    0.709509723934        0.176048586616    
+    0.721535312475        0.177438340264    
+    0.733560901017        0.178854255439    
+    0.745586489558        0.180296289301    
+    0.757612078099        0.181764380839    
+    0.769637666640        0.183258449815    
+    0.781663255182        0.184778395679    
+    0.793688843723        0.186324096460    
+    0.805714432264        0.187895407648    
+    0.817740020805        0.189492161048    
+    0.829765609347        0.191114163628    
+    0.841791197888        0.192761196347    
+    0.853816786429        0.194433012977    
+    0.865842374970        0.196129338918    
+    0.877867963512        0.197849870003    
+    0.889893552053        0.199594271312    
+    0.901919140594        0.201362175977    
+    0.913944729135        0.203153184004    
+    0.925970317677        0.204966861098    
+    0.937995906218        0.206802737506    
+    0.950021494759        0.208660306884    
+    0.962047083301        0.210539025180    
+    0.974072671842        0.212438309558    
+    0.986098260383        0.214357537348    
+    0.998123848924        0.216296045046    
+     1.01014943747        0.218253127355    
+     1.02217502601        0.220228036294    
+     1.03420061455        0.222219980349    
+     1.04622620309        0.224228123703    
+     1.05825179163        0.226251585554    
+     1.07027738017        0.228289439489    
+     1.08230296871        0.230340712975    
+     1.09432855725        0.232404386923    
+     1.10635414580        0.234479395392    
+     1.11837973434        0.236564625367    
+     1.13040532288        0.238658916695    
+     1.14243091142        0.240761062131    
+     1.15445649996        0.242869807526    
+     1.16648208850        0.244983852170    
+     1.17850767704        0.247101849266    
+     1.19053326558        0.249222406595    
+     1.20255885413        0.251344087334    
+     1.21458444267        0.253465411042    
+     1.22661003121        0.255584854837    
+     1.23863561975        0.257700854776    
+     1.25066120829        0.259811807383    
+     1.26268679683        0.261916071423    
+     1.27471238537        0.264011969858    
+     1.28673797391        0.266097792003    
+     1.29876356246        0.268171795890    
+     1.31078915100        0.270232210854    
+     1.32281473954        0.272277240321    
+     1.33484032808        0.274305064798    
+     1.34686591662        0.276313845080    
+     1.35889150516        0.278301725658    
+     1.37091709370        0.280266838324    
+     1.38294268224        0.282207305978    
+     1.39496827079        0.284121246611    
+     1.40699385933        0.286006777477    
+     1.41901944787        0.287862019433    
+     1.43104503641        0.289685101423    
+     1.44307062495        0.291474165129    
+     1.45509621349        0.293227369735    
+     1.46712180203        0.294942896812    
+     1.47914739057        0.296618955297    
+     1.49117297912        0.298253786552    
+     1.50319856766        0.299845669478    
+     1.51522415620        0.301392925668    
+     1.52724974474        0.302893924577    
+     1.53927533328        0.304347088661    
+     1.55130092182        0.305750898496    
+     1.56332651036        0.307103897841    
+     1.57535209890        0.308404698583    
+     1.58737768745        0.309651985583    
+     1.59940327599        0.310844521374    
+     1.61142886453        0.311981150672    
+     1.62345445307        0.313060804684    
+     1.63548004161        0.314082505185    
+     1.64750563015        0.315045368324    
+     1.65953121869        0.315948608129    
+     1.67155680723        0.316791539695    
+     1.68358239578        0.317573582018    
+     1.69560798432        0.318294260441    
+     1.70763357286        0.318953208697    
+     1.71965916140        0.319550170511    
+     1.73168474994        0.320085000748    
+     1.74371033848        0.320557666075    
+     1.75573592702        0.320968245115    
+     1.76776151556        0.321316928080    
+     1.77978710411        0.321604015849    
+     1.79181269265        0.321829918493    
+     1.80383828119        0.321995153216    
+     1.81586386973        0.322100341703    
+     1.82788945827        0.322146206865    
+     1.83991504681        0.322133568964    
+     1.85194063535        0.322063341132    
+     1.86396622389        0.321936524235    
+     1.87599181244        0.321754201083    
+     1.88801740098        0.321517530040    
+     1.90004298952        0.321227738004    
+     1.91206857806        0.320886112659    
+     1.92409416660        0.320493994305    
+     1.93611975514        0.320052766638    
+     1.94814534368        0.319563846424    
+     1.96017093222        0.319028674549    
+     1.97219652077        0.318448704849    
+     1.98422210931        0.317825392114    
+     1.99624769785        0.317160179414    
+     2.00827328639        0.316454487411    
+     2.02029887493        0.315709699458    
+     2.03232446347        0.314927158821    
+     2.04435005201        0.314108174961    
+     2.05637564055        0.313254021211    
+     2.06840122910        0.312365934917    
+     2.08042681764        0.311445119175    
+     2.09245240618        0.310492744877    
+     2.10447799472        0.309509952472    
+     2.11650358326        0.308497848510    
+     2.12852917180        0.307457505978    
+     2.14055476034        0.306389969488    
+     2.15258034888        0.305296256661    
+     2.16460593743        0.304177356672    
+     2.17663152597        0.303034231406    
+     2.18865711451        0.301867815674    
+     2.20068270305        0.300679018891    
+     2.21270829159        0.299468725393    
+     2.22473388013        0.298237795102    
+     2.23675946867        0.296987064281    
+     2.24878505721        0.295717346180    
+     2.26081064576        0.294429431684    
+     2.27283623430        0.293124089937    
+     2.28486182284        0.291802068942    
+     2.29688741138        0.290464096156    
+     2.30891299992        0.289110879051    
+     2.32093858846        0.287743105673    
+     2.33296417700        0.286361445167    
+     2.34498976554        0.284966548302    
+     2.35701535409        0.283559047970    
+     2.36904094263        0.282139559670    
+     2.38106653117        0.280708681989    
+     2.39309211971        0.279266997045    
+     2.40511770825        0.277815070935    
+     2.41714329679        0.276353454164    
+     2.42916888533        0.274882682065    
+     2.44119447388        0.273403275192    
+     2.45322006242        0.271915739729    
+     2.46524565096        0.270420567859    
+     2.47727123950        0.268918238126    
+     2.48929682804        0.267409215764    
+     2.50132241658        0.265893953219    
+     2.51334800512        0.264372890162    
+     2.52537359366        0.262846454082    
+     2.53739918221        0.261315060226    
+     2.54942477075        0.259779112800    
+     2.56145035929        0.258239005369    
+     2.57347594783        0.256695120133    
+     2.58550153637        0.255147828524    
+     2.59752712491        0.253597491002    
+     2.60955271345        0.252044457938    
+     2.62157830199        0.250489069585    
+     2.63360389054        0.248931656450    
+     2.64562947908        0.247372539479    
+     2.65765506762        0.245812030350    
+     2.66968065616        0.244250431722    
+     2.68170624470        0.242688037436    
+     2.69373183324        0.241125132757    
+     2.70575742178        0.239561994592    
+     2.71778301032        0.237998891703    
+     2.72980859887        0.236436084908    
+     2.74183418741        0.234873827295    
+     2.75385977595        0.233312364410    
+     2.76588536449        0.231751934451    
+     2.77791095303        0.230192768451    
+     2.78993654157        0.228635090456    
+     2.80196213011        0.227079117698    
+     2.81398771865        0.225525060774    
+     2.82601330720        0.223973123806    
+     2.83803889574        0.222423504601    
+     2.85006448428        0.220876394815    
+     2.86209007282        0.219331980097    
+     2.87411566136        0.217790440246    
+     2.88614124990        0.216251949351    
+     2.89816683844        0.214716675936    
+     2.91019242698        0.213184783096    
+     2.92221801553        0.211656428633    
+     2.93424360407        0.210131765185    
+     2.94626919261        0.208610940354    
+     2.95829478115        0.207094096832    
+     2.97032036969        0.205581372522    
+     2.98234595823        0.204072900654    
+     2.99437154677        0.202568809903    
+     3.00639713531        0.201069224501    
+     3.01842272386        0.199574264344    
+     3.03044831240        0.198084045101    
+     3.04247390094        0.196598678321    
+     3.05449948948        0.195118271528    
+     3.06652507802        0.193642928326    
+     3.07855066656        0.192172748491    
+     3.09057625510        0.190707828071    
+     3.10260184364        0.189248259472    
+     3.11462743219        0.187794131550    
+     3.12665302073        0.186345529702    
+     3.13867860927        0.184902535945    
+     3.15070419781        0.183465229002    
+     3.16272978635        0.182033684385    
+     3.17475537489        0.180607974473    
+     3.18678096343        0.179188168586    
+     3.19880655197        0.177774333067    
+     3.21083214052        0.176366531348    
+     3.22285772906        0.174964824027    
+     3.23488331760        0.173569268938    
+     3.24690890614        0.172179921214    
+     3.25893449468        0.170796833362    
+     3.27096008322        0.169420055318    
+     3.28298567176        0.168049634520    
+     3.29501126030        0.166685615964    
+     3.30703684885        0.165328042266    
+     3.31906243739        0.163976953720    
+     3.33108802593        0.162632388360    
+     3.34311361447        0.161294382009    
+     3.35513920301        0.159962968339    
+     3.36716479155        0.158638178923    
+     3.37919038009        0.157320043288    
+     3.39121596863        0.156008588966    
+     3.40324155718        0.154703841540    
+     3.41526714572        0.153405824700    
+     3.42729273426        0.152114560284    
+     3.43931832280        0.150830068328    
+     3.45134391134        0.149552367109    
+     3.46336949988        0.148281473190    
+     3.47539508842        0.147017401466    
+     3.48742067696        0.145760165203    
+     3.49944626551        0.144509776078    
+     3.51147185405        0.143266244226    
+     3.52349744259        0.142029578271    
+     3.53552303113        0.140799785370    
+     3.54754861967        0.139576871251    
+     3.55957420821        0.138360840245    
+     3.57159979675        0.137151695328    
+     3.58362538529        0.135949438152    
+     3.59565097384        0.134754069080    
+     3.60767656238        0.133565587223    
+     3.61970215092        0.132383990467    
+     3.63172773946        0.131209275513    
+     3.64375332800        0.130041437899    
+     3.65577891654        0.128880472041    
+     3.66780450508        0.127726371256    
+     3.67983009362        0.126579127793    
+     3.69185568217        0.125438732865    
+     3.70388127071        0.124305176672    
+     3.71590685925        0.123178448436    
+     3.72793244779        0.122058536420    
+     3.73995803633        0.120945427960    
+     3.75198362487        0.119839109490    
+     3.76400921341        0.118739566566    
+     3.77603480195        0.117646783892    
+     3.78806039050        0.116560745347    
+     3.80008597904        0.115481434002    
+     3.81211156758        0.114408832151    
+     3.82413715612        0.113342921329    
+     3.83616274466        0.112283682337    
+     3.84818833320        0.111231095265    
+     3.86021392174        0.110185139509    
+     3.87223951028        0.109145793797    
+     3.88426509883        0.108113036206    
+     3.89629068737        0.107086844188    
+     3.90831627591        0.106067194582    
+     3.92034186445        0.105054063639    
+     3.93236745299        0.104047427043    
+     3.94439304153        0.103047259922    
+     3.95641863007        0.102053536873    
+     3.96844421861        0.101066231978    
+     3.98046980716        0.100085318822    
+     3.99249539570        0.991107705099E-01
+     4.00452098424        0.981425596828E-01
+     4.01654657278        0.971806585360E-01
+     4.02857216132        0.962250388345E-01
+     4.04059774986        0.952756719291E-01
+     4.05262333840        0.943325287720E-01
+     4.06464892694        0.933955799321E-01
+     4.07667451549        0.924647956102E-01
+     4.08870010403        0.915401456533E-01
+     4.10072569257        0.906215995696E-01
+     4.11275128111        0.897091265421E-01
+     4.12477686965        0.888026954426E-01
+     4.13680245819        0.879022748451E-01
+     4.14882804673        0.870078330395E-01
+     4.16085363527        0.861193380436E-01
+     4.17287922382        0.852367576169E-01
+     4.18490481236        0.843600592723E-01
+     4.19693040090        0.834892102886E-01
+     4.20895598944        0.826241777221E-01
+     4.22098157798        0.817649284187E-01
+     4.23300716652        0.809114290250E-01
+     4.24503275506        0.800636459991E-01
+     4.25705834360        0.792215456222E-01
+     4.26908393215        0.783850940087E-01
+     4.28110952069        0.775542571168E-01
+     4.29313510923        0.767290007587E-01
+     4.30516069777        0.759092906105E-01
+     4.31718628631        0.750950922221E-01
+     4.32921187485        0.742863710262E-01
+     4.34123746339        0.734830923482E-01
+     4.35326305193        0.726852214148E-01
+     4.36528864048        0.718927233630E-01
+     4.37731422902        0.711055632485E-01
+     4.38933981756        0.703237060546E-01
+     4.40136540610        0.695471166998E-01
+     4.41339099464        0.687757600464E-01
+     4.42541658318        0.680096009079E-01
+     4.43744217172        0.672486040566E-01
+     4.44946776026        0.664927342312E-01
+     4.46149334881        0.657419561440E-01
+     4.47351893735        0.649962344878E-01
+     4.48554452589        0.642555339427E-01
+     4.49757011443        0.635198191830E-01
+     4.50959570297        0.627890548835E-01
+     4.52162129151        0.620632057260E-01
+     4.53364688005        0.613422364049E-01
+     4.54567246859        0.606261116340E-01
+     4.55769805714        0.599147961516E-01
+     4.56972364568        0.592082547262E-01
+     4.58174923422        0.585064521624E-01
+     4.59377482276        0.578093533056E-01
+     4.60580041130        0.571169230476E-01
+     4.61782599984        0.564291263313E-01
+     4.62985158838        0.557459281559E-01
+     4.64187717692        0.550672935810E-01
+     4.65390276547        0.543931877317E-01
+     4.66592835401        0.537235758028E-01
+     4.67795394255        0.530584230627E-01
+     4.68997953109        0.523976948581E-01
+     4.70200511963        0.517413566175E-01
+     4.71403070817        0.510893738551E-01
+     4.72605629671        0.504417121747E-01
+     4.73808188525        0.497983372732E-01
+     4.75010747380        0.491592149438E-01
+     4.76213306234        0.485243110798E-01
+     4.77415865088        0.478935916772E-01
+     4.78618423942        0.472670228383E-01
+     4.79820982796        0.466445707743E-01
+     4.81023541650        0.460262018083E-01
+     4.82226100504        0.454118823779E-01
+     4.83428659359        0.448015790379E-01
+     4.84631218213        0.441952584630E-01
+     4.85833777067        0.435928874498E-01
+     4.87036335921        0.429944329193E-01
+     4.88238894775        0.423998619190E-01
+     4.89441453629        0.418091416252E-01
+     4.90644012483        0.412222393449E-01
+     4.91846571337        0.406391225174E-01
+     4.93049130192        0.400597587164E-01
+     4.94251689046        0.394841156517E-01
+     4.95454247900        0.389121611708E-01
+     4.96656806754        0.383438632602E-01
+     4.97859365608        0.377791900471E-01
+     4.99061924462        0.372181098008E-01
+     5.00264483316        0.366605909338E-01
+     5.01467042170        0.361066020029E-01
+     5.02669601025        0.355561117108E-01
+     5.03872159879        0.350090889066E-01
+     5.05074718733        0.344655025870E-01
+     5.06277277587        0.339253218973E-01
+     5.07479836441        0.333885161319E-01
+     5.08682395295        0.328550547355E-01
+     5.09884954149        0.323249073033E-01
+     5.11087513003        0.317980435821E-01
+     5.12290071858        0.312744334705E-01
+     5.13492630712        0.307540470195E-01
+     5.14695189566        0.302368544330E-01
+     5.15897748420        0.297228260682E-01
+     5.17100307274        0.292119324357E-01
+     5.18302866128        0.287041442001E-01
+     5.19505424982        0.281994321800E-01
+     5.20707983836        0.276977673480E-01
+     5.21910542691        0.271991208312E-01
+     5.23113101545        0.267034639109E-01
+     5.24315660399        0.262107680228E-01
+     5.25518219253        0.257210047569E-01
+     5.26720778107        0.252341458574E-01
+     5.27923336961        0.247501632226E-01
+     5.29125895815        0.242690289046E-01
+     5.30328454669        0.237907151094E-01
+     5.31531013524        0.233151941963E-01
+     5.32733572378        0.228424386778E-01
+     5.33936131232        0.223724212191E-01
+     5.35138690086        0.219051146380E-01
+     5.36341248940        0.214404919044E-01
+     5.37543807794        0.209785261395E-01
+     5.38746366648        0.205191906158E-01
+     5.39948925502        0.200624587565E-01
+     5.41151484357        0.196083041347E-01
+     5.42354043211        0.191567004732E-01
+     5.43556602065        0.187076216436E-01
+     5.44759160919        0.182610416657E-01
+     5.45961719773        0.178169347073E-01
+     5.47164278627        0.173752750829E-01
+     5.48366837481        0.169360372534E-01
+     5.49569396335        0.164991958252E-01
+     5.50771955190        0.160647255497E-01
+     5.51974514044        0.156326013220E-01
+     5.53177072898        0.152027981809E-01
+     5.54379631752        0.147752913073E-01
+     5.55582190606        0.143500560238E-01
+     5.56784749460        0.139270677941E-01
+     5.57987308314        0.135063022214E-01
+     5.59189867168        0.130877350482E-01
+     5.60392426023        0.126713421551E-01
+     5.61594984877        0.122570995598E-01
+     5.62797543731        0.118449834167E-01
+     5.64000102585        0.114349700150E-01
+     5.65202661439        0.110270357788E-01
+     5.66405220293        0.106211572656E-01
+     5.67607779147        0.102173111650E-01
+     5.68810338001        0.981547429866E-02
+     5.70012896856        0.941562361828E-02
+     5.71215455710        0.901773620527E-02
+     5.72418014564        0.862178926945E-02
+     5.73620573418        0.822776014812E-02
+     5.74823132272        0.783562630498E-02
+     5.76025691126        0.744536532905E-02
+     5.77228249980        0.705695493374E-02
+     5.78430808834        0.667037295572E-02
+     5.79633367689        0.628559735386E-02
+     5.80835926543        0.590260620817E-02
+     5.82038485397        0.552137771910E-02
+     5.83241044251        0.514189020495E-02
+     5.84443603105        0.476412210303E-02
+     5.85646161959        0.438805196720E-02
+     5.86848720813        0.401365846706E-02
+     5.88051279667        0.364092038688E-02
+     5.89253838522        0.326981662639E-02
+     5.90456397376        0.290032619201E-02
+     5.91658956230        0.253242820688E-02
+     5.92861515084        0.216610190291E-02
+     5.94064073938        0.180132662125E-02
+     5.95266632792        0.143808181124E-02
+     5.96469191646        0.107634676591E-02
+     5.97671750500        0.716101653325E-03
+     5.98874309355        0.357326090176E-03
+     6.00076868209         0.00000000000    
+</data>
+</radfunc>
+</orbital>
+<orbital 
+ l="                        0" 
+ n="                        4" 
+ z="                        2" 
+ ispol="                        0" 
+ population="     0.00000000000" 
+ >
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.117286709851E-01 </delta> 
+<cutoff>      5.85260682156 </cutoff> 
+<data>
+     0.00000000000        0.644029599560E-01
+    0.117286709851E-01    0.644186611955E-01
+    0.234573419702E-01    0.644667821547E-01
+    0.351860129553E-01    0.645469971889E-01
+    0.469146839404E-01    0.646593263922E-01
+    0.586433549255E-01    0.648037978753E-01
+    0.703720259105E-01    0.649804477300E-01
+    0.821006968956E-01    0.651893199863E-01
+    0.938293678807E-01    0.654304665640E-01
+    0.105558038866        0.657039472136E-01
+    0.117286709851        0.660098294498E-01
+    0.129015380836        0.663481884653E-01
+    0.140744051821        0.667191070589E-01
+    0.152472722806        0.671226755173E-01
+    0.164201393791        0.675589915224E-01
+    0.175930064776        0.680281600221E-01
+    0.187658735761        0.685302931030E-01
+    0.199387406747        0.690655098444E-01
+    0.211116077732        0.696339361668E-01
+    0.222844748717        0.702357046617E-01
+    0.234573419702        0.708709544132E-01
+    0.246302090687        0.715398307988E-01
+    0.258030761672        0.722424852885E-01
+    0.269759432657        0.729790752130E-01
+    0.281488103642        0.737497635346E-01
+    0.293216774627        0.745547185840E-01
+    0.304945445612        0.753941137973E-01
+    0.316674116597        0.762681274231E-01
+    0.328402787583        0.771769422173E-01
+    0.340131458568        0.781207451218E-01
+    0.351860129553        0.790997269159E-01
+    0.363588800538        0.801140818564E-01
+    0.375317471523        0.811640072924E-01
+    0.387046142508        0.822497032559E-01
+    0.398774813493        0.833713720363E-01
+    0.410503484478        0.845292177260E-01
+    0.422232155463        0.857234457454E-01
+    0.433960826448        0.869542623396E-01
+    0.445689497433        0.882218740541E-01
+    0.457418168419        0.895264871776E-01
+    0.469146839404        0.908683071619E-01
+    0.480875510389        0.922475380130E-01
+    0.492604181374        0.936643816488E-01
+    0.504332852359        0.951190372333E-01
+    0.516061523344        0.966117004734E-01
+    0.527790194329        0.981425628870E-01
+    0.539518865314        0.997118110401E-01
+    0.551247536299        0.101319625748    
+    0.562976207284        0.102966181242    
+    0.574704878269        0.104651644304    
+    0.586433549255        0.106376173365    
+    0.598162220240        0.108139917568    
+    0.609890891225        0.109943015791    
+    0.621619562210        0.111785595640    
+    0.633348233195        0.113667772399    
+    0.645076904180        0.115589647944    
+    0.656805575165        0.117551309626    
+    0.668534246150        0.119552829104    
+    0.680262917135        0.121594261152    
+    0.691991588120        0.123675642426    
+    0.703720259105        0.125796990189    
+    0.715448930091        0.127958301006    
+    0.727177601076        0.130159549402    
+    0.738906272061        0.132400686484    
+    0.750634943046        0.134681638530    
+    0.762363614031        0.137002305547    
+    0.774092285016        0.139362559798    
+    0.785820956001        0.141762244298    
+    0.797549626986        0.144201171286    
+    0.809278297971        0.146679120671    
+    0.821006968956        0.149195838453    
+    0.832735639941        0.151751035136    
+    0.844464310926        0.154344384104    
+    0.856192981912        0.156975520008    
+    0.867921652897        0.159644037127    
+    0.879650323882        0.162349487731    
+    0.891378994867        0.165091380444    
+    0.903107665852        0.167869178608    
+    0.914836336837        0.170682298660    
+    0.926565007822        0.173530108521    
+    0.938293678807        0.176411926010    
+    0.950022349792        0.179327017280    
+    0.961751020777        0.182274595295    
+    0.973479691762        0.185253818338    
+    0.985208362748        0.188263788578    
+    0.996937033733        0.191303550688    
+     1.00866570472        0.194372090521    
+     1.02039437570        0.197468333876    
+     1.03212304669        0.200591145335    
+     1.04385171767        0.203739327164    
+     1.05558038866        0.206911618386    
+     1.06730905964        0.210106693883    
+     1.07903773063        0.213323163668    
+     1.09076640161        0.216559572264    
+     1.10249507260        0.219814398241    
+     1.11422374358        0.223086053887    
+     1.12595241457        0.226372885042    
+     1.13768108555        0.229673171121    
+     1.14940975654        0.232985125289    
+     1.16113842752        0.236306894864    
+     1.17286709851        0.239636561882    
+     1.18459576949        0.242972143898    
+     1.19632444048        0.246311595021    
+     1.20805311146        0.249652807152    
+     1.21978178245        0.252993611461    
+     1.23151045343        0.256331780153    
+     1.24323912442        0.259665028439    
+     1.25496779540        0.262991016782    
+     1.26669646639        0.266307353437    
+     1.27842513737        0.269611597243    
+     1.29015380836        0.272901260681    
+     1.30188247935        0.276173813222    
+     1.31361115033        0.279426684971    
+     1.32533982132        0.282657270568    
+     1.33706849230        0.285862933381    
+     1.34879716329        0.289041009970    
+     1.36052583427        0.292188814828    
+     1.37225450526        0.295303645390    
+     1.38398317624        0.298382787304    
+     1.39571184723        0.301423519933    
+     1.40744051821        0.304423122122    
+     1.41916918920        0.307378878177    
+     1.43089786018        0.310288084044    
+     1.44262653117        0.313148053703    
+     1.45435520215        0.315956125726    
+     1.46608387314        0.318709669984    
+     1.47781254412        0.321406094488    
+     1.48954121511        0.324042852342    
+     1.50126988609        0.326617448760    
+     1.51299855708        0.329127448154    
+     1.52472722806        0.331570481237    
+     1.53645589905        0.333944252102    
+     1.54818457003        0.336246545263    
+     1.55991324102        0.338475232642    
+     1.57164191200        0.340628280412    
+     1.58337058299        0.342703755695    
+     1.59509925397        0.344699833093    
+     1.60682792496        0.346614800975    
+     1.61855659594        0.348447067497    
+     1.63028526693        0.350195166339    
+     1.64201393791        0.351857762084    
+     1.65374260890        0.353433655215    
+     1.66547127988        0.354921786702    
+     1.67719995087        0.356321242131    
+     1.68892862185        0.357631255329    
+     1.70065729284        0.358851211477    
+     1.71238596382        0.359980649634    
+     1.72411463481        0.361019264682    
+     1.73584330579        0.361966908633    
+     1.74757197678        0.362823591278    
+     1.75930064776        0.363589480144    
+     1.77102931875        0.364264899739    
+     1.78275798973        0.364850330052    
+     1.79448666072        0.365346404296    
+     1.80621533170        0.365753905871    
+     1.81794400269        0.366073764526    
+     1.82967267367        0.366307051704    
+     1.84140134466        0.366454975061    
+     1.85313001564        0.366518872160    
+     1.86485868663        0.366500203295    
+     1.87658735761        0.366400543417    
+     1.88831602860        0.366221573322    
+     1.90004469958        0.365965069845    
+     1.91177337057        0.365632895355    
+     1.92350204155        0.365226986192    
+     1.93523071254        0.364749340271    
+     1.94695938352        0.364202003469    
+     1.95868805451        0.363587055464    
+     1.97041672550        0.362906596678    
+     1.98214539648        0.362162730827    
+     1.99387406747        0.361357547389    
+     2.00560273845        0.360493108219    
+     2.01733140944        0.359571424562    
+     2.02906008042        0.358594450299    
+     2.04078875141        0.357564091607    
+     2.05251742239        0.356482203727    
+     2.06424609338        0.355350590748    
+     2.07597476436        0.354171007620    
+     2.08770343535        0.352945163117    
+     2.09943210633        0.351674723311    
+     2.11116077732        0.350361306558    
+     2.12288944830        0.349006485748    
+     2.13461811929        0.347611787871    
+     2.14634679027        0.346178702087    
+     2.15807546126        0.344708679828    
+     2.16980413224        0.343203132036    
+     2.18153280323        0.341663431101    
+     2.19326147421        0.340090912915    
+     2.20499014520        0.338486877362    
+     2.21671881618        0.336852589478    
+     2.22844748717        0.335189280224    
+     2.24017615815        0.333498147526    
+     2.25190482914        0.331780357157    
+     2.26363350012        0.330037043614    
+     2.27536217111        0.328269310965    
+     2.28709084209        0.326478233680    
+     2.29881951308        0.324664857431    
+     2.31054818406        0.322830199864    
+     2.32227685505        0.320975251364    
+     2.33400552603        0.319100975774    
+     2.34573419702        0.317208311109    
+     2.35746286800        0.315298170243    
+     2.36919153899        0.313371441577    
+     2.38092020997        0.311428989692    
+     2.39264888096        0.309471655964    
+     2.40437755194        0.307500259174    
+     2.41610622293        0.305515596104    
+     2.42783489391        0.303518442109    
+     2.43956356490        0.301509551665    
+     2.45129223588        0.299489658929    
+     2.46302090687        0.297459478251    
+     2.47474957785        0.295419704670    
+     2.48647824884        0.293371014364    
+     2.49820691982        0.291314065400    
+     2.50993559081        0.289249497740    
+     2.52166426179        0.287177934074    
+     2.53339293278        0.285099979541    
+     2.54512160376        0.283016223741    
+     2.55685027475        0.280927240323    
+     2.56857894573        0.278833588259    
+     2.58030761672        0.276735810303    
+     2.59203628770        0.274634434256    
+     2.60376495869        0.272529972737    
+     2.61549362968        0.270422924412    
+     2.62722230066        0.268313773923    
+     2.63895097165        0.266202992249    
+     2.65067964263        0.264091037113    
+     2.66240831362        0.261978353344    
+     2.67413698460        0.259865373150    
+     2.68586565559        0.257752516460    
+     2.69759432657        0.255640191225    
+     2.70932299756        0.253528793720    
+     2.72105166854        0.251418708830    
+     2.73278033953        0.249310310328    
+     2.74450901051        0.247203961167    
+     2.75623768150        0.245100013733    
+     2.76796635248        0.242998810116    
+     2.77969502347        0.240900682353    
+     2.79142369445        0.238805952674    
+     2.80315236544        0.236714933743    
+     2.81488103642        0.234627928898    
+     2.82660970741        0.232545232369    
+     2.83833837839        0.230467129508    
+     2.85006704938        0.228393896999    
+     2.86179572036        0.226325803069    
+     2.87352439135        0.224263107694    
+     2.88525306233        0.222206062800    
+     2.89698173332        0.220154912455    
+     2.90871040430        0.218109893061    
+     2.92043907529        0.216071233540    
+     2.93216774627        0.214039155512    
+     2.94389641726        0.212013873471    
+     2.95562508824        0.209995594961    
+     2.96735375923        0.207984520739    
+     2.97908243021        0.205980844941    
+     2.99081110120        0.203984755238    
+     3.00253977218        0.201996432999    
+     3.01426844317        0.200016053434    
+     3.02599711415        0.198043785747    
+     3.03772578514        0.196079793282    
+     3.04945445612        0.194124233657    
+     3.06118312711        0.192177258909    
+     3.07291179809        0.190239015626    
+     3.08464046908        0.188309645075    
+     3.09636914006        0.186389283335    
+     3.10809781105        0.184478061415    
+     3.11982648203        0.182576105384    
+     3.13155515302        0.180683536484    
+     3.14328382400        0.178800471245    
+     3.15501249499        0.176927021606    
+     3.16674116597        0.175063295016    
+     3.17846983696        0.173209394547    
+     3.19019850794        0.171365419001    
+     3.20192717893        0.169531463006    
+     3.21365584991        0.167707617124    
+     3.22538452090        0.165893967944    
+     3.23711319188        0.164090598180    
+     3.24884186287        0.162297586763    
+     3.26057053386        0.160515008932    
+     3.27229920484        0.158742936326    
+     3.28402787583        0.156981437065    
+     3.29575654681        0.155230575843    
+     3.30748521780        0.153490414002    
+     3.31921388878        0.151761009619    
+     3.33094255977        0.150042417584    
+     3.34267123075        0.148334689675    
+     3.35439990174        0.146637874637    
+     3.36612857272        0.144952018251    
+     3.37785724371        0.143277163410    
+     3.38958591469        0.141613350186    
+     3.40131458568        0.139960615903    
+     3.41304325666        0.138318995200    
+     3.42477192765        0.136688520098    
+     3.43650059863        0.135069220065    
+     3.44822926962        0.133461122076    
+     3.45995794060        0.131864250677    
+     3.47168661159        0.130278628044    
+     3.48341528257        0.128704274041    
+     3.49514395356        0.127141206278    
+     3.50687262454        0.125589440164    
+     3.51860129553        0.124048988966    
+     3.53032996651        0.122519863861    
+     3.54205863750        0.121002073985    
+     3.55378730848        0.119495626489    
+     3.56551597947        0.118000526587    
+     3.57724465045        0.116516777603    
+     3.58897332144        0.115044381022    
+     3.60070199242        0.113583336535    
+     3.61243066341        0.112133642085    
+     3.62415933439        0.110695293913    
+     3.63588800538        0.109268286600    
+     3.64761667636        0.107852613113    
+     3.65934534735        0.106448264844    
+     3.67107401833        0.105055231651    
+     3.68280268932        0.103673501902    
+     3.69453136030        0.102303062513    
+     3.70626003129        0.100943898983    
+     3.71798870227        0.995959954377E-01
+     3.72971737326        0.982593346622E-01
+     3.74144604424        0.969338981399E-01
+     3.75317471523        0.956196660872E-01
+     3.76490338621        0.943166174886E-01
+     3.77663205720        0.930247301307E-01
+     3.78836072818        0.917439806364E-01
+     3.80008939917        0.904743444969E-01
+     3.81181807015        0.892157961046E-01
+     3.82354674114        0.879683087845E-01
+     3.83527541212        0.867318548251E-01
+     3.84700408311        0.855064055087E-01
+     3.85873275409        0.842919311412E-01
+     3.87046142508        0.830884010812E-01
+     3.88219009606        0.818957837690E-01
+     3.89391876705        0.807140467541E-01
+     3.90564743804        0.795431567231E-01
+     3.91737610902        0.783830795264E-01
+     3.92910478001        0.772337802046E-01
+     3.94083345099        0.760952230149E-01
+     3.95256212198        0.749673714558E-01
+     3.96429079296        0.738501882924E-01
+     3.97601946395        0.727436355810E-01
+     3.98774813493        0.716476746926E-01
+     3.99947680592        0.705622663369E-01
+     4.01120547690        0.694873705850E-01
+     4.02293414789        0.684229468921E-01
+     4.03466281887        0.673689541194E-01
+     4.04639148986        0.663253505560E-01
+     4.05812016084        0.652920939403E-01
+     4.06984883183        0.642691414803E-01
+     4.08157750281        0.632564498749E-01
+     4.09330617380        0.622539753332E-01
+     4.10503484478        0.612616735943E-01
+     4.11676351577        0.602794999470E-01
+     4.12849218675        0.593074092479E-01
+     4.14022085774        0.583453559403E-01
+     4.15194952872        0.573932940722E-01
+     4.16367819971        0.564511773139E-01
+     4.17540687069        0.555189589755E-01
+     4.18713554168        0.545965920239E-01
+     4.19886421266        0.536840290995E-01
+     4.21059288365        0.527812225322E-01
+     4.22232155463        0.518881243578E-01
+     4.23405022562        0.510046863329E-01
+     4.24577889660        0.501308599510E-01
+     4.25750756759        0.492665964567E-01
+     4.26923623857        0.484118468609E-01
+     4.28096490956        0.475665619545E-01
+     4.29269358054        0.467306923232E-01
+     4.30442225153        0.459041883604E-01
+     4.31615092251        0.450870002807E-01
+     4.32787959350        0.442790781337E-01
+     4.33960826448        0.434803718157E-01
+     4.35133693547        0.426908310828E-01
+     4.36306560645        0.419104055630E-01
+     4.37479427744        0.411390447678E-01
+     4.38652294842        0.403766981044E-01
+     4.39825161941        0.396233148864E-01
+     4.40998029039        0.388788443452E-01
+     4.42170896138        0.381432356409E-01
+     4.43343763236        0.374164378724E-01
+     4.44516630335        0.366984000883E-01
+     4.45689497433        0.359890712962E-01
+     4.46862364532        0.352884004729E-01
+     4.48035231630        0.345963365737E-01
+     4.49208098729        0.339128285420E-01
+     4.50380965827        0.332378253178E-01
+     4.51553832926        0.325712758468E-01
+     4.52726700024        0.319131290890E-01
+     4.53899567123        0.312633340267E-01
+     4.55072434221        0.306218396729E-01
+     4.56245301320        0.299885950789E-01
+     4.57418168419        0.293635493421E-01
+     4.58591035517        0.287466516133E-01
+     4.59763902616        0.281378511040E-01
+     4.60936769714        0.275370970932E-01
+     4.62109636813        0.269443389343E-01
+     4.63282503911        0.263595260620E-01
+     4.64455371010        0.257826079981E-01
+     4.65628238108        0.252135343580E-01
+     4.66801105207        0.246522548568E-01
+     4.67973972305        0.240987193147E-01
+     4.69146839404        0.235528776629E-01
+     4.70319706502        0.230146799490E-01
+     4.71492573601        0.224840763420E-01
+     4.72665440699        0.219610171379E-01
+     4.73838307798        0.214454527638E-01
+     4.75011174896        0.209373337835E-01
+     4.76184041995        0.204366109013E-01
+     4.77356909093        0.199432349669E-01
+     4.78529776192        0.194571569793E-01
+     4.79702643290        0.189783280910E-01
+     4.80875510389        0.185066996119E-01
+     4.82048377487        0.180422230132E-01
+     4.83221244586        0.175848499307E-01
+     4.84394111684        0.171345321683E-01
+     4.85566978783        0.166912217018E-01
+     4.86739845881        0.162548706814E-01
+     4.87912712980        0.158254314352E-01
+     4.89085580078        0.154028564719E-01
+     4.90258447177        0.149870984837E-01
+     4.91431314275        0.145781103487E-01
+     4.92604181374        0.141758451337E-01
+     4.93777048472        0.137802560964E-01
+     4.94949915571        0.133912966877E-01
+     4.96122782669        0.130089205538E-01
+     4.97295649768        0.126330815385E-01
+     4.98468516866        0.122637336847E-01
+     4.99641383965        0.119008312367E-01
+     5.00814251063        0.115443286412E-01
+     5.01987118162        0.111941805499E-01
+     5.03159985260        0.108503418200E-01
+     5.04332852359        0.105127675161E-01
+     5.05505719457        0.101814129113E-01
+     5.06678586556        0.985623348866E-02
+     5.07851453654        0.953718494194E-02
+     5.09024320753        0.922422317680E-02
+     5.10197187851        0.891730431172E-02
+     5.11370054950        0.861638467878E-02
+     5.12542922048        0.832142082445E-02
+     5.13715789147        0.803236951020E-02
+     5.14888656245        0.774918771310E-02
+     5.16061523344        0.747183262634E-02
+     5.17234390442        0.720026165964E-02
+     5.18407257541        0.693443243960E-02
+     5.19580124639        0.667430280999E-02
+     5.20752991738        0.641983083189E-02
+     5.21925858837        0.617097478400E-02
+     5.23098725935        0.592769316250E-02
+     5.24271593034        0.568994468114E-02
+     5.25444460132        0.545768827122E-02
+     5.26617327231        0.523088308147E-02
+     5.27790194329        0.500948847770E-02
+     5.28963061428        0.479346404284E-02
+     5.30135928526        0.458276957652E-02
+     5.31308795625        0.437736509470E-02
+     5.32481662723        0.417721082929E-02
+     5.33654529822        0.398226722769E-02
+     5.34827396920        0.379249495246E-02
+     5.36000264019        0.360785488045E-02
+     5.37173131117        0.342830810245E-02
+     5.38345998216        0.325381592244E-02
+     5.39518865314        0.308433985700E-02
+     5.40691732413        0.291984163454E-02
+     5.41864599511        0.276028319441E-02
+     5.43037466610        0.260562668637E-02
+     5.44210333708        0.245583446958E-02
+     5.45383200807        0.231086911172E-02
+     5.46556067905        0.217069338811E-02
+     5.47728935004        0.203527028084E-02
+     5.48901802102        0.190456297765E-02
+     5.50074669201        0.177853487101E-02
+     5.51247536299        0.165714955707E-02
+     5.52420403398        0.154037083460E-02
+     5.53593270496        0.142816270388E-02
+     5.54766137595        0.132048936553E-02
+     5.55939004693        0.121731521951E-02
+     5.57111871792        0.111860486380E-02
+     5.58284738890        0.102432309328E-02
+     5.59457605989        0.934434898521E-03
+     5.60630473087        0.848905464541E-03
+     5.61803340186        0.767700169433E-03
+     5.62976207284        0.690784583303E-03
+     5.64149074383        0.618124466830E-03
+     5.65321941481        0.549685769994E-03
+     5.66494808580        0.485434630738E-03
+     5.67667675678        0.425337374293E-03
+     5.68840542777        0.369360509048E-03
+     5.70013409875        0.317470729327E-03
+     5.71186276974        0.269634911386E-03
+     5.72359144072        0.225820112622E-03
+     5.73532011171        0.185993570153E-03
+     5.74704878269        0.150122705074E-03
+     5.75877745368        0.118175097824E-03
+     5.77050612466        0.901185204879E-04
+     5.78223479565        0.659209145468E-04
+     5.79396346663        0.455503942726E-04
+     5.80569213762        0.289752453557E-04
+     5.81742080860        0.161635886566E-04
+     5.82914947959        0.708469142872E-05
+     5.84087815057        0.170715379296E-05
+     5.85260682156         0.00000000000    
+</data>
+</radfunc>
+</orbital>
+<orbital 
+ l="                        2" 
+ n="                        3" 
+ z="                        1" 
+ ispol="                        0" 
+ population="     6.00000000000" 
+ >
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.960258899576E-02 </delta> 
+<cutoff>      4.79169190889 </cutoff> 
+<data>
+     0.00000000000         6.87665059845    
+    0.960258899576E-02     6.87548260340    
+    0.192051779915E-01     6.87196926313    
+    0.288077669873E-01     6.86611677482    
+    0.384103559831E-01     6.85792980214    
+    0.480129449788E-01     6.84741486852    
+    0.576155339746E-01     6.83458036120    
+    0.672181229704E-01     6.81943653281    
+    0.768207119661E-01     6.80199550265    
+    0.864233009619E-01     6.78227125757    
+    0.960258899576E-01     6.76027965277    
+    0.105628478953         6.73603841225    
+    0.115231067949         6.70956712873    
+    0.124833656945         6.68088726293    
+    0.134436245941         6.65002214165    
+    0.144038834936         6.61699695555    
+    0.153641423932         6.58183875547    
+    0.163244012928         6.54457644619    
+    0.172846601924         6.50524078051    
+    0.182449190920         6.46386434971    
+    0.192051779915         6.42048157294    
+    0.201654368911         6.37512868373    
+    0.211256957907         6.32784371407    
+    0.220859546903         6.27866647606    
+    0.230462135898         6.22763854003    
+    0.240064724894         6.17480320987    
+    0.249667313890         6.12020549467    
+    0.259269902886         6.06389207711    
+    0.268872491881         6.00591127777    
+    0.278475080877         5.94631301596    
+    0.288077669873         5.88514876594    
+    0.297680258869         5.82247150965    
+    0.307282847864         5.75833568454    
+    0.316885436860         5.69279712777    
+    0.326488025856         5.62591301544    
+    0.336090614852         5.55774179786    
+    0.345693203848         5.48834313022    
+    0.355295792843         5.41777779905    
+    0.364898381839         5.34610764435    
+    0.374500970835         5.27339547769    
+    0.384103559831         5.19970499592    
+    0.393706148826         5.12510069142    
+    0.403308737822         5.04964775828    
+    0.412911326818         4.97341199528    
+    0.422513915814         4.89645970530    
+    0.432116504809         4.81885759195    
+    0.441719093805         4.74067265353    
+    0.451321682801         4.66197207448    
+    0.460924271797         4.58282311484    
+    0.470526860792         4.50329299812    
+    0.480129449788         4.42344879783    
+    0.489732038784         4.34335732308    
+    0.499334627780         4.26308500385    
+    0.508937216776         4.18269777609    
+    0.518539805771         4.10226096732    
+    0.528142394767         4.02183918301    
+    0.537744983763         3.94149619428    
+    0.547347572759         3.86129482737    
+    0.556950161754         3.78129685519    
+    0.566552750750         3.70156289167    
+    0.576155339746         3.62215228892    
+    0.585757928742         3.54312303811    
+    0.595360517737         3.46453167402    
+    0.604963106733         3.38643318393    
+    0.614565695729         3.30888092115    
+    0.624168284725         3.23192652343    
+    0.633770873720         3.15561983670    
+    0.643373462716         3.08000884434    
+    0.652976051712         3.00513960226    
+    0.662578640708         2.93105618003    
+    0.672181229704         2.85780060823    
+    0.681783818699         2.78541283221    
+    0.691386407695         2.71393067236    
+    0.700988996691         2.64338979092    
+    0.710591585687         2.57382366555    
+    0.720194174682         2.50526356950    
+    0.729796763678         2.43773855847    
+    0.739399352674         2.37127546405    
+    0.749001941670         2.30589889368    
+    0.758604530665         2.24163123703    
+    0.768207119661         2.17849267863    
+    0.777809708657         2.11650121654    
+    0.787412297653         2.05567268674    
+    0.797014886648         1.99602079426    
+    0.806617475644         1.93755714512    
+    0.816220064640         1.88029129883    
+    0.825822653636         1.82423080066    
+    0.835425242632         1.76938122124    
+    0.845027831627         1.71574623944    
+    0.854630420623         1.66332768199    
+    0.864233009619         1.61212558940    
+    0.873835598615         1.56213827939    
+    0.883438187610         1.51336241413    
+    0.893040776606         1.46579306980    
+    0.902643365602         1.41942380810    
+    0.912245954598         1.37424674945    
+    0.921848543593         1.33025264754    
+    0.931451132589         1.28743096477    
+    0.941053721585         1.24576994840    
+    0.950656310581         1.20525670691    
+    0.960258899576         1.16587728646    
+    0.969861488572         1.12761674697    
+    0.979464077568         1.09045923763    
+    0.989066666564         1.05438807162    
+    0.998669255560         1.01938579964    
+     1.00827184456        0.985434282140    
+     1.01787443355        0.952514760073    
+     1.02747702255        0.920607923802    
+     1.03707961154        0.889693980198    
+     1.04668220054        0.859752717588    
+     1.05628478953        0.830763568546    
+     1.06588737853        0.802705670359    
+     1.07548996753        0.775557923044    
+     1.08509255652        0.749299044882    
+     1.09469514552        0.723907625371    
+     1.10429773451        0.699362175542    
+     1.11390032351        0.675641175656    
+     1.12350291250        0.652723120192    
+     1.13310550150        0.630586560161    
+     1.14270809050        0.609210142780    
+     1.15231067949        0.588572648454    
+     1.16191326849        0.568653025161    
+     1.17151585748        0.549430420281    
+     1.18111844648        0.530884209861    
+     1.19072103547        0.512994025438    
+     1.20032362447        0.495739778459    
+     1.20992621347        0.479101682387    
+     1.21952880246        0.463060272556    
+     1.22913139146        0.447596423847    
+     1.23873398045        0.432691366319    
+     1.24833656945        0.418326698849    
+     1.25793915845        0.404484400873    
+     1.26754174744        0.391146842329    
+     1.27714433644        0.378296791916    
+     1.28674692543        0.365917423737    
+     1.29634951443        0.353992322445    
+     1.30595210342        0.342505486958    
+     1.31555469242        0.331441332863    
+     1.32515728142        0.320784693596    
+     1.33475987041        0.310520820478    
+     1.34436245941        0.300635381706    
+     1.35396504840        0.291114460370    
+     1.36356763740        0.281944551600    
+     1.37317022639        0.273112558895    
+     1.38277281539        0.264605789735    
+     1.39237540439        0.256411950541    
+     1.40197799338        0.248519141042    
+     1.41158058238        0.240915848127    
+     1.42118317137        0.233590939241    
+     1.43078576037        0.226533655391    
+     1.44038834936        0.219733603797    
+     1.44999093836        0.213180750265    
+     1.45959352736        0.206865411318    
+     1.46919611635        0.200778246128    
+     1.47879870535        0.194910248303    
+     1.48840129434        0.189252737551    
+     1.49800388334        0.183797351276    
+     1.50760647234        0.178536036121    
+     1.51720906133        0.173461039499    
+     1.52681165033        0.168564901137    
+     1.53641423932        0.163840444660    
+     1.54601682832        0.159280769227    
+     1.55561941731        0.154879241250    
+     1.56522200631        0.150629486208    
+     1.57482459531        0.146525380573    
+     1.58442718430        0.142561043861    
+     1.59402977330        0.138730830815    
+     1.60363236229        0.135029323736    
+     1.61323495129        0.131451324970    
+     1.62283754028        0.127991849546    
+     1.63244012928        0.124646117987    
+     1.64204271828        0.121409549284    
+     1.65164530727        0.118277754040    
+     1.66124789627        0.115246527786    
+     1.67085048526        0.112311844470    
+     1.68045307426        0.109469850110    
+     1.69005566325        0.106716856627    
+     1.69965825225        0.104049335832    
+     1.70926084125        0.101463913587    
+     1.71886343024        0.989573641205E-01
+     1.72846601924        0.965266044985E-01
+     1.73806860823        0.941686892511E-01
+     1.74767119723        0.918808051421E-01
+     1.75727378622        0.896602660830E-01
+     1.76687637522        0.875045081811E-01
+     1.77647896422        0.854110849221E-01
+     1.78608155321        0.833776624750E-01
+     1.79568414221        0.814020151197E-01
+     1.80528673120        0.794820207884E-01
+     1.81488932020        0.776156567166E-01
+     1.82449190920        0.758009951987E-01
+     1.83409449819        0.740361994421E-01
+     1.84369708719        0.723195195179E-01
+     1.85329967618        0.706492884012E-01
+     1.86290226518        0.690239180903E-01
+     1.87250485417        0.674418958132E-01
+     1.88210744317        0.659017803091E-01
+     1.89171003217        0.644021981907E-01
+     1.90131262116        0.629418403628E-01
+     1.91091521016        0.615194585254E-01
+     1.92051779915        0.601338617219E-01
+     1.93012038815        0.587839129645E-01
+     1.93972297714        0.574685259221E-01
+     1.94932556614        0.561866614801E-01
+     1.95892815514        0.549373248895E-01
+     1.96853074413        0.537195624154E-01
+     1.97813333313        0.525324582249E-01
+     1.98773592212        0.513751310493E-01
+     1.99733851112        0.502467323681E-01
+     2.00694110011        0.491464417204E-01
+     2.01654368911        0.480734655634E-01
+     2.02614627811        0.470270343883E-01
+     2.03574886710        0.460064039134E-01
+     2.04535145610        0.450108530509E-01
+     2.05495404509        0.440396831419E-01
+     2.06455663409        0.430922172703E-01
+     2.07415922309        0.421677997472E-01
+     2.08376181208        0.412657950192E-01
+     2.09336440108        0.403855871704E-01
+     2.10296699007        0.395265792176E-01
+     2.11256957907        0.386881924937E-01
+     2.12217216806        0.378698660190E-01
+     2.13177475706        0.370710559237E-01
+     2.14137734606        0.362912348343E-01
+     2.15097993505        0.355298913336E-01
+     2.16058252405        0.347865294399E-01
+     2.17018511304        0.340606680860E-01
+     2.17978770204        0.333518406292E-01
+     2.18939029103        0.326595943683E-01
+     2.19899288003        0.319834900869E-01
+     2.20859546903        0.313231016085E-01
+     2.21819805802        0.306780153704E-01
+     2.22780064702        0.300478300106E-01
+     2.23740323601        0.294321559703E-01
+     2.24700582501        0.288306151103E-01
+     2.25660841400        0.282428403407E-01
+     2.26621100300        0.276684752646E-01
+     2.27581359200        0.271071738329E-01
+     2.28541618099        0.265586000123E-01
+     2.29501876999        0.260224274645E-01
+     2.30462135898        0.254983392367E-01
+     2.31422394798        0.249860274625E-01
+     2.32382653698        0.244851930738E-01
+     2.33342912597        0.239955455218E-01
+     2.34303171497        0.235168025087E-01
+     2.35263430396        0.230486897275E-01
+     2.36223689296        0.225909406120E-01
+     2.37183948195        0.221432960938E-01
+     2.38144207095        0.217055043695E-01
+     2.39104465995        0.212773206736E-01
+     2.40064724894        0.208585070610E-01
+     2.41024983794        0.204488321956E-01
+     2.41985242693        0.200480711473E-01
+     2.42945501593        0.196560051946E-01
+     2.43905760492        0.192724216345E-01
+     2.44866019392        0.188971135990E-01
+     2.45826278292        0.185298798769E-01
+     2.46786537191        0.181705247420E-01
+     2.47746796091        0.178188577874E-01
+     2.48707054990        0.174746937623E-01
+     2.49667313890        0.171378524268E-01
+     2.50627572789        0.168081583862E-01
+     2.51587831689        0.164854409540E-01
+     2.52548090589        0.161695340163E-01
+     2.53508349488        0.158602758731E-01
+     2.54468608388        0.155575091554E-01
+     2.55428867287        0.152610806612E-01
+     2.56389126187        0.149708412721E-01
+     2.57349385086        0.146866457707E-01
+     2.58309643986        0.144083527635E-01
+     2.59269902886        0.141358245389E-01
+     2.60230161785        0.138689269937E-01
+     2.61190420685        0.136075295107E-01
+     2.62150679584        0.133515048613E-01
+     2.63110938484        0.131007291112E-01
+     2.64071197384        0.128550815204E-01
+     2.65031456283        0.126144444554E-01
+     2.65991715183        0.123787033004E-01
+     2.66951974082        0.121477463698E-01
+     2.67912232982        0.119214648261E-01
+     2.68872491881        0.116997525988E-01
+     2.69832750781        0.114825063067E-01
+     2.70793009681        0.112696251816E-01
+     2.71753268580        0.110610109954E-01
+     2.72713527480        0.108565679887E-01
+     2.73673786379        0.106562028020E-01
+     2.74634045279        0.104598244091E-01
+     2.75594304178        0.102673440520E-01
+     2.76554563078        0.100786751785E-01
+     2.77514821978        0.989373338084E-02
+     2.78475080877        0.971243633704E-02
+     2.79435339777        0.953470375340E-02
+     2.80395598676        0.936045730919E-02
+     2.81355857576        0.918962060270E-02
+     2.82316116475        0.902211909904E-02
+     2.83276375375        0.885788007956E-02
+     2.84236634275        0.869683259252E-02
+     2.85196893174        0.853890740556E-02
+     2.86157152074        0.838403695936E-02
+     2.87117410973        0.823215532277E-02
+     2.88077669873        0.808319814922E-02
+     2.89037928773        0.793710263445E-02
+     2.89998187672        0.779380747553E-02
+     2.90958446572        0.765325283089E-02
+     2.91918705471        0.751538028174E-02
+     2.92878964371        0.738013279447E-02
+     2.93839223270        0.724745468428E-02
+     2.94799482170        0.711729157965E-02
+     2.95759741070        0.698959038809E-02
+     2.96719999969        0.686429926265E-02
+     2.97680258869        0.674136756959E-02
+     2.98640517768        0.662074585682E-02
+     2.99600776668        0.650238582331E-02
+     3.00561035567        0.638624028942E-02
+     3.01521294467        0.627226316798E-02
+     3.02481553367        0.616040943624E-02
+     3.03441812266        0.605063510859E-02
+     3.04402071166        0.594289721009E-02
+     3.05362330065        0.583715375073E-02
+     3.06322588965        0.573336370036E-02
+     3.07282847864        0.563148696442E-02
+     3.08243106764        0.553148436024E-02
+     3.09203365664        0.543331759412E-02
+     3.10163624563        0.533694923888E-02
+     3.11123883463        0.524234271222E-02
+     3.12084142362        0.514946225554E-02
+     3.13044401262        0.505827291342E-02
+     3.14004660162        0.496874051357E-02
+     3.14964919061        0.488083164749E-02
+     3.15925177961        0.479451365147E-02
+     3.16885436860        0.470975458828E-02
+     3.17845695760        0.462652322921E-02
+     3.18805954659        0.454478903669E-02
+     3.19766213559        0.446452214737E-02
+     3.20726472459        0.438569335564E-02
+     3.21686731358        0.430827409754E-02
+     3.22646990258        0.423223643523E-02
+     3.23607249157        0.415755304175E-02
+     3.24567508057        0.408419718628E-02
+     3.25527766956        0.401214271972E-02
+     3.26488025856        0.394136406066E-02
+     3.27448284756        0.387183618181E-02
+     3.28408543655        0.380353459669E-02
+     3.29368802555        0.373643534668E-02
+     3.30329061454        0.367051498848E-02
+     3.31289320354        0.360575058182E-02
+     3.32249579253        0.354211967755E-02
+     3.33209838153        0.347960030602E-02
+     3.34170097053        0.341817096572E-02
+     3.35130355952        0.335781061231E-02
+     3.36090614852        0.329849864780E-02
+     3.37050873751        0.324021491021E-02
+     3.38011132651        0.318293966324E-02
+     3.38971391550        0.312665358642E-02
+     3.39931650450        0.307133776543E-02
+     3.40891909350        0.301697368266E-02
+     3.41852168249        0.296354320800E-02
+     3.42812427149        0.291102858990E-02
+     3.43772686048        0.285941244668E-02
+     3.44732944948        0.280867775797E-02
+     3.45693203848        0.275880785644E-02
+     3.46653462747        0.270978641975E-02
+     3.47613721647        0.266159746263E-02
+     3.48573980546        0.261422532919E-02
+     3.49534239446        0.256765468551E-02
+     3.50494498345        0.252187051226E-02
+     3.51454757245        0.247685809760E-02
+     3.52415016145        0.243260303028E-02
+     3.53375275044        0.238909119281E-02
+     3.54335533944        0.234630875492E-02
+     3.55295792843        0.230424216707E-02
+     3.56256051743        0.226287815421E-02
+     3.57216310642        0.222220370962E-02
+     3.58176569542        0.218220608897E-02
+     3.59136828442        0.214287280447E-02
+     3.60097087341        0.210419161919E-02
+     3.61057346241        0.206615054150E-02
+     3.62017605140        0.202873781968E-02
+     3.62977864040        0.199194193664E-02
+     3.63938122939        0.195575160474E-02
+     3.64898381839        0.192015576078E-02
+     3.65858640739        0.188514356107E-02
+     3.66818899638        0.185070437669E-02
+     3.67779158538        0.181682778877E-02
+     3.68739417437        0.178350358394E-02
+     3.69699676337        0.175072174985E-02
+     3.70659935237        0.171847247089E-02
+     3.71620194136        0.168674612387E-02
+     3.72580453036        0.165553327393E-02
+     3.73540711935        0.162482467045E-02
+     3.74500970835        0.159461124315E-02
+     3.75461229734        0.156488409817E-02
+     3.76421488634        0.153563451436E-02
+     3.77381747534        0.150685393958E-02
+     3.78342006433        0.147853398710E-02
+     3.79302265333        0.145066643208E-02
+     3.80262524232        0.142324320819E-02
+     3.81222783132        0.139625640422E-02
+     3.82183042031        0.136969826082E-02
+     3.83143300931        0.134356116731E-02
+     3.84103559831        0.131783765856E-02
+     3.85063818730        0.129252041195E-02
+     3.86024077630        0.126760224436E-02
+     3.86984336529        0.124307610931E-02
+     3.87944595429        0.121893509407E-02
+     3.88904854328        0.119517241689E-02
+     3.89865113228        0.117178142432E-02
+     3.90825372128        0.114875558852E-02
+     3.91785631027        0.112608850468E-02
+     3.92745889927        0.110377388847E-02
+     3.93706148826        0.108180557358E-02
+     3.94666407726        0.106017750932E-02
+     3.95626666626        0.103888375818E-02
+     3.96586925525        0.101791849361E-02
+     3.97547184425        0.997275997666E-03
+     3.98507443324        0.976950658873E-03
+     3.99467702224        0.956936970018E-03
+     4.00427961123        0.937229526049E-03
+     4.01388220023        0.917823022019E-03
+     4.02348478923        0.898712251038E-03
+     4.03308737822        0.879892102317E-03
+     4.04268996722        0.861357559227E-03
+     4.05229255621        0.843103697407E-03
+     4.06189514521        0.825125682920E-03
+     4.07149773420        0.807418770437E-03
+     4.08110032320        0.789978301471E-03
+     4.09070291220        0.772799702648E-03
+     4.10030550119        0.755878484005E-03
+     4.10990809019        0.739210237354E-03
+     4.11951067918        0.722790634636E-03
+     4.12911326818        0.706615426348E-03
+     4.13871585717        0.690680439992E-03
+     4.14831844617        0.674981578557E-03
+     4.15792103517        0.659514819027E-03
+     4.16752362416        0.644276210939E-03
+     4.17712621316        0.629261874951E-03
+     4.18672880215        0.614468001452E-03
+     4.19633139115        0.599890849202E-03
+     4.20593398014        0.585526743994E-03
+     4.21553656914        0.571372077361E-03
+     4.22513915814        0.557423305281E-03
+     4.23474174713        0.543676946937E-03
+     4.24434433613        0.530129583490E-03
+     4.25394692512        0.516777856882E-03
+     4.26354951412        0.503618468660E-03
+     4.27315210312        0.490648178834E-03
+     4.28275469211        0.477863804742E-03
+     4.29235728111        0.465262219955E-03
+     4.30195987010        0.452840353201E-03
+     4.31156245910        0.440595187301E-03
+     4.32116504809        0.428523758147E-03
+     4.33076763709        0.416623153678E-03
+     4.34037022609        0.404890512891E-03
+     4.34997281508        0.393323024875E-03
+     4.35957540408        0.381917927854E-03
+     4.36917799307        0.370672508256E-03
+     4.37878058207        0.359584099810E-03
+     4.38838317106        0.348650082634E-03
+     4.39798576006        0.337867882375E-03
+     4.40758834906        0.327234969343E-03
+     4.41719093805        0.316748857673E-03
+     4.42679352705        0.306407104502E-03
+     4.43639611604        0.296207309166E-03
+     4.44599870504        0.286147112400E-03
+     4.45560129403        0.276224195570E-03
+     4.46520388303        0.266436279916E-03
+     4.47480647203        0.256781125802E-03
+     4.48440906102        0.247256531996E-03
+     4.49401165002        0.237860334948E-03
+     4.50361423901        0.228590408094E-03
+     4.51321682801        0.219444661168E-03
+     4.52281941701        0.210421039534E-03
+     4.53242200600        0.201517523522E-03
+     4.54202459500        0.192732127790E-03
+     4.55162718399        0.184062900682E-03
+     4.56122977299        0.175507923612E-03
+     4.57083236198        0.167065310456E-03
+     4.58043495098        0.158733206956E-03
+     4.59003753998        0.150509790125E-03
+     4.59964012897        0.142393267714E-03
+     4.60924271797        0.134381877592E-03
+     4.61884530696        0.126473887232E-03
+     4.62844789596        0.118667593159E-03
+     4.63805048495        0.110961320430E-03
+     4.64765307395        0.103353421934E-03
+     4.65725566295        0.958422786010E-04
+     4.66685825194        0.884262978348E-04
+     4.67646084094        0.811039136963E-04
+     4.68606342993        0.738735862679E-04
+     4.69566601893        0.667338011832E-04
+     4.70526860792        0.596830654800E-04
+     4.71487119692        0.527199222078E-04
+     4.72447378592        0.458429280613E-04
+     4.73407637491        0.390506664414E-04
+     4.74367896391        0.323417438645E-04
+     4.75328155290        0.257147894640E-04
+     4.76288414190        0.191683327486E-04
+     4.77248673090        0.127012802926E-04
+     4.78208931989        0.631225643447E-05
+     4.79169190889         0.00000000000    
+</data>
+</radfunc>
+</orbital>
+<orbital 
+ l="                        2" 
+ n="                        3" 
+ z="                        2" 
+ ispol="                        0" 
+ population="     0.00000000000" 
+ >
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.447949355830E-02 </delta> 
+<cutoff>      2.23526728559 </cutoff> 
+<data>
+     0.00000000000         8.36370785267    
+    0.447949355830E-02     8.36339774637    
+    0.895898711659E-02     8.36245488325    
+    0.134384806749E-01     8.36088359384    
+    0.179179742332E-01     8.35868415785    
+    0.223974677915E-01     8.35585695868    
+    0.268769613498E-01     8.35240248736    
+    0.313564549081E-01     8.34832134327    
+    0.358359484664E-01     8.34361423472    
+    0.403154420247E-01     8.33828197870    
+    0.447949355830E-01     8.33232550124    
+    0.492744291413E-01     8.32574583720    
+    0.537539226996E-01     8.31854413055    
+    0.582334162579E-01     8.31072163433    
+    0.627129098162E-01     8.30227971062    
+    0.671924033744E-01     8.29321983058    
+    0.716718969327E-01     8.28354357456    
+    0.761513904910E-01     8.27325263202    
+    0.806308840493E-01     8.26234880170    
+    0.851103776076E-01     8.25083399146    
+    0.895898711659E-01     8.23871021842    
+    0.940693647242E-01     8.22597960893    
+    0.985488582825E-01     8.21264439858    
+    0.103028351841         8.19870693219    
+    0.107507845399         8.18416966392    
+    0.111987338957         8.16903515669    
+    0.116466832516         8.15330608345    
+    0.120946326074         8.13698522532    
+    0.125425819632         8.12007547320    
+    0.129905313191         8.10257982656    
+    0.134384806749         8.08450139441    
+    0.138864300307         8.06584339372    
+    0.143343793865         8.04660915083    
+    0.147823287424         8.02680210063    
+    0.152302780982         8.00642578603    
+    0.156782274540         7.98548385874    
+    0.161261768099         7.96398007824    
+    0.165741261657         7.94191831183    
+    0.170220755215         7.91930253461    
+    0.174700248774         7.89613682871    
+    0.179179742332         7.87242538380    
+    0.183659235890         7.84817249560    
+    0.188138729448         7.82338256688    
+    0.192618223007         7.79806010574    
+    0.197097716565         7.77220972634    
+    0.201577210123         7.74583614770    
+    0.206056703682         7.71894419332    
+    0.210536197240         7.69153879102    
+    0.215015690798         7.66362497193    
+    0.219495184357         7.63520787035    
+    0.223974677915         7.60629272243    
+    0.228454171473         7.57688486628    
+    0.232933665031         7.54698974060    
+    0.237413158590         7.51661288426    
+    0.241892652148         7.48575993529    
+    0.246372145706         7.45443663026    
+    0.250851639265         7.42264880312    
+    0.255331132823         7.39040238423    
+    0.259810626381         7.35770339967    
+    0.264290119939         7.32455796969    
+    0.268769613498         7.29097230814    
+    0.273249107056         7.25695272090    
+    0.277728600614         7.22250560482    
+    0.282208094173         7.18763744649    
+    0.286687587731         7.15235482074    
+    0.291167081289         7.11666438961    
+    0.295646574848         7.08057290057    
+    0.300126068406         7.04408718527    
+    0.304605561964         7.00721415772    
+    0.309085055522         6.96996081321    
+    0.313564549081         6.93233422607    
+    0.318044042639         6.89434154830    
+    0.322523536197         6.85599000788    
+    0.327003029756         6.81728690669    
+    0.331482523314         6.77823961884    
+    0.335962016872         6.73885558865    
+    0.340441510431         6.69914232871    
+    0.344921003989         6.65910741777    
+    0.349400497547         6.61875849882    
+    0.353879991105         6.57810327675    
+    0.358359484664         6.53714951625    
+    0.362838978222         6.49590503956    
+    0.367318471780         6.45437772421    
+    0.371797965339         6.41257550051    
+    0.376277458897         6.37050634931    
+    0.380756952455         6.32817829946    
+    0.385236446014         6.28559942536    
+    0.389715939572         6.24277784437    
+    0.394195433130         6.19972171426    
+    0.398674926688         6.15643923048    
+    0.403154420247         6.11293862366    
+    0.407633913805         6.06922815671    
+    0.412113407363         6.02531612212    
+    0.416592900922         5.98121083922    
+    0.421072394480         5.93692065124    
+    0.425551888038         5.89245392252    
+    0.430031381596         5.84781903556    
+    0.434510875155         5.80302438812    
+    0.438990368713         5.75807839030    
+    0.443469862271         5.71298946140    
+    0.447949355830         5.66776602706    
+    0.452428849388         5.62241651614    
+    0.456908342946         5.57694935769    
+    0.461387836505         5.53137297789    
+    0.465867330063         5.48569579692    
+    0.470346823621         5.43992622588    
+    0.474826317179         5.39407266368    
+    0.479305810738         5.34814349391    
+    0.483785304296         5.30214708169    
+    0.488264797854         5.25609177055    
+    0.492744291413         5.20998587933    
+    0.497223784971         5.16383769900    
+    0.501703278529         5.11765548953    
+    0.506182772088         5.07144747681    
+    0.510662265646         5.02522184953    
+    0.515141759204         4.97898675601    
+    0.519621252762         4.93275030122    
+    0.524100746321         4.88652054364    
+    0.528580239879         4.84030549226    
+    0.533059733437         4.79411310349    
+    0.537539226996         4.74795127821    
+    0.542018720554         4.70182785881    
+    0.546498214112         4.65575062624    
+    0.550977707670         4.60972729703    
+    0.555457201229         4.56376552052    
+    0.559936694787         4.51787287601    
+    0.564416188345         4.47205686991    
+    0.568895681904         4.42632493301    
+    0.573375175462         4.38068441782    
+    0.577854669020         4.33514259588    
+    0.582334162579         4.28970665517    
+    0.586813656137         4.24438369753    
+    0.591293149695         4.19918073618    
+    0.595772643253         4.15410469330    
+    0.600252136812         4.10916239763    
+    0.604731630370         4.06436058213    
+    0.609211123928         4.01970588177    
+    0.613690617487         3.97520483131    
+    0.618170111045         3.93086386318    
+    0.622649604603         3.88668930541    
+    0.627129098162         3.84268737969    
+    0.631608591720         3.79886419940    
+    0.636088085278         3.75522576783    
+    0.640567578836         3.71177797636    
+    0.645047072395         3.66852660281    
+    0.649526565953         3.62547730981    
+    0.654006059511         3.58263564327    
+    0.658485553070         3.54000703095    
+    0.662965046628         3.49759678107    
+    0.667444540186         3.45541008099    
+    0.671924033744         3.41345199608    
+    0.676403527303         3.37172746853    
+    0.680883020861         3.33024131632    
+    0.685362514419         3.28899823227    
+    0.689842007978         3.24800278319    
+    0.694321501536         3.20725940906    
+    0.698800995094         3.16677242233    
+    0.703280488653         3.12654600733    
+    0.707759982211         3.08658421971    
+    0.712239475769         3.04689098599    
+    0.716718969327         3.00747010322    
+    0.721198462886         2.96832523868    
+    0.725677956444         2.92945992969    
+    0.730157450002         2.89087758350    
+    0.734636943561         2.85258147728    
+    0.739116437119         2.81457475814    
+    0.743595930677         2.77686044326    
+    0.748075424236         2.73944142015    
+    0.752554917794         2.70232044692    
+    0.757034411352         2.66550015264    
+    0.761513904910         2.62898303780    
+    0.765993398469         2.59277147486    
+    0.770472892027         2.55686770880    
+    0.774952385585         2.52127385787    
+    0.779431879144         2.48599191426    
+    0.783911372702         2.45102374495    
+    0.788390866260         2.41637109257    
+    0.792870359818         2.38203557675    
+    0.797349853377         2.34801869455    
+    0.801829346935         2.31432182051    
+    0.806308840493         2.28094621078    
+    0.810788334052         2.24789300338    
+    0.815267827610         2.21516322047    
+    0.819747321168         2.18275776437    
+    0.824226814727         2.15067741935    
+    0.828706308285         2.11892285873    
+    0.833185801843         2.08749464605    
+    0.837665295401         2.05639323344    
+    0.842144788960         2.02561896420    
+    0.846624282518         1.99517207379    
+    0.851103776076         1.96505269258    
+    0.855583269635         1.93526084707    
+    0.860062763193         1.90579646153    
+    0.864542256751         1.87665935994    
+    0.869021750310         1.84784926776    
+    0.873501243868         1.81936581380    
+    0.877980737426         1.79120853208    
+    0.882460230984         1.76337686379    
+    0.886939724543         1.73587015914    
+    0.891419218101         1.70868767943    
+    0.895898711659         1.68182859893    
+    0.900378205218         1.65529200696    
+    0.904857698776         1.62907690985    
+    0.909337192334         1.60318223302    
+    0.913816685893         1.57760682300    
+    0.918296179451         1.55234944949    
+    0.922775673009         1.52740880745    
+    0.927255166567         1.50278351914    
+    0.931734660126         1.47847213624    
+    0.936214153684         1.45447314190    
+    0.940693647242         1.43078495285    
+    0.945173140801         1.40740592148    
+    0.949652634359         1.38433433789    
+    0.954132127917         1.36156843205    
+    0.958611621475         1.33910637577    
+    0.963091115034         1.31694628487    
+    0.967570608592         1.29508622114    
+    0.972050102150         1.27352419449    
+    0.976529595709         1.25225816489    
+    0.981009089267         1.23128604447    
+    0.985488582825         1.21060569946    
+    0.989968076384         1.19021495226    
+    0.994447569942         1.17011158334    
+    0.998927063500         1.15029333325    
+     1.00340655706         1.13075790452    
+     1.00788605062         1.11150296360    
+     1.01236554418         1.09252614274    
+     1.01684503773         1.07382504186    
+     1.02132453129         1.05539723040    
+     1.02580402485         1.03724024915    
+     1.03028351841         1.01935161202    
+     1.03476301197         1.00172880784    
+     1.03924250552        0.984369302046    
+     1.04372199908        0.967270538450    
+     1.04820149264        0.950429940888    
+     1.05268098620        0.933844914879    
+     1.05716047976        0.917512849250    
+     1.06163997332        0.901431117719    
+     1.06611946687        0.885597080458    
+     1.07059896043        0.870008085618    
+     1.07507845399        0.854661470822    
+     1.07955794755        0.839554564631    
+     1.08403744111        0.824684687967    
+     1.08851693467        0.810049155510    
+     1.09299642822        0.795645277057    
+     1.09747592178        0.781470358852    
+     1.10195541534        0.767521704876    
+     1.10643490890        0.753796618115    
+     1.11091440246        0.740292401775    
+     1.11539389602        0.727006360480    
+     1.11987338957        0.713935801426    
+     1.12435288313        0.701078035502    
+     1.12883237669        0.688430378387    
+     1.13331187025        0.675990151595    
+     1.13779136381        0.663754683510    
+     1.14227085737        0.651721310360    
+     1.14675035092        0.639887377180    
+     1.15122984448        0.628250238729    
+     1.15570933804        0.616807260385    
+     1.16018883160        0.605555818995    
+     1.16466832516        0.594493303706    
+     1.16914781872        0.583617116752    
+     1.17362731227        0.572924674215    
+     1.17810680583        0.562413406758    
+     1.18258629939        0.552080760319    
+     1.18706579295        0.541924196784    
+     1.19154528651        0.531941194624    
+     1.19602478007        0.522129249501    
+     1.20050427362        0.512485874858    
+     1.20498376718        0.503008602458    
+     1.20946326074        0.493694982923    
+     1.21394275430        0.484542586216    
+     1.21842224786        0.475549002118    
+     1.22290174141        0.466711840668    
+     1.22738123497        0.458028732582    
+     1.23186072853        0.449497329643    
+     1.23634022209        0.441115305072    
+     1.24081971565        0.432880353869    
+     1.24529920921        0.424790193129    
+     1.24977870276        0.416842562340    
+     1.25425819632        0.409035223656    
+     1.25873768988        0.401365962148    
+     1.26321718344        0.393832586033    
+     1.26769667700        0.386432926886    
+     1.27217617056        0.379164839824    
+     1.27665566411        0.372026203681    
+     1.28113515767        0.365014921151    
+     1.28561465123        0.358128918925    
+     1.29009414479        0.351366147802    
+     1.29457363835        0.344724582781    
+     1.29905313191        0.338202223147    
+     1.30353262546        0.331797092525    
+     1.30801211902        0.325507238932    
+     1.31249161258        0.319330734807    
+     1.31697110614        0.313265677029    
+     1.32145059970        0.307310186914    
+     1.32593009326        0.301462410209    
+     1.33040958681        0.295720517065    
+     1.33488908037        0.290082702000    
+     1.33936857393        0.284547183849    
+     1.34384806749        0.279112205703    
+     1.34832756105        0.273776034837    
+     1.35280705461        0.268536962627    
+     1.35728654816        0.263393304454    
+     1.36176604172        0.258343399605    
+     1.36624553528        0.253385611157    
+     1.37072502884        0.248518325856    
+     1.37520452240        0.243739953988    
+     1.37968401596        0.239048929240    
+     1.38416350951        0.234443708558    
+     1.38864300307        0.229922771987    
+     1.39312249663        0.225484622517    
+     1.39760199019        0.221127785915    
+     1.40208148375        0.216850810551    
+     1.40656097731        0.212652267222    
+     1.41104047086        0.208530748968    
+     1.41551996442        0.204484870884    
+     1.41999945798        0.200513269925    
+     1.42447895154        0.196614604711    
+     1.42895844510        0.192787555322    
+     1.43343793865        0.189030823097    
+     1.43791743221        0.185343130421    
+     1.44239692577        0.181723220515    
+     1.44687641933        0.178169857221    
+     1.45135591289        0.174681824786    
+     1.45583540645        0.171257927638    
+     1.46031490000        0.167896990169    
+     1.46479439356        0.164597856508    
+     1.46927388712        0.161359390298    
+     1.47375338068        0.158180474465    
+     1.47823287424        0.155060010995    
+     1.48271236780        0.151996920703    
+     1.48719186135        0.148990143000    
+     1.49167135491        0.146038635670    
+     1.49615084847        0.143141374633    
+     1.50063034203        0.140297353715    
+     1.50510983559        0.137505584420    
+     1.50958932915        0.134765095695    
+     1.51406882270        0.132074933701    
+     1.51854831626        0.129434161586    
+     1.52302780982        0.126841859250    
+     1.52750730338        0.124297123118    
+     1.53198679694        0.121799065913    
+     1.53646629050        0.119346816429    
+     1.54094578405        0.116939519300    
+     1.54542527761        0.114576334780    
+     1.54990477117        0.112256438517    
+     1.55438426473        0.109979021329    
+     1.55886375829        0.107743288985    
+     1.56334325185        0.105548461984    
+     1.56782274540        0.103393775337    
+     1.57230223896        0.101278478352    
+     1.57678173252        0.992018344149E-01
+     1.58126122608        0.971631207813E-01
+     1.58574071964        0.951616283623E-01
+     1.59022021320        0.931966615152E-01
+     1.59469970675        0.912675378375E-01
+     1.59917920031        0.893735879601E-01
+     1.60365869387        0.875141553442E-01
+     1.60813818743        0.856885960801E-01
+     1.61261768099        0.838962786870E-01
+     1.61709717455        0.821365839166E-01
+     1.62157666810        0.804089045571E-01
+     1.62605616166        0.787126452407E-01
+     1.63053565522        0.770472222515E-01
+     1.63501514878        0.754120633386E-01
+     1.63949464234        0.738066075280E-01
+     1.64397413589        0.722303049389E-01
+     1.64845362945        0.706826166011E-01
+     1.65293312301        0.691630142750E-01
+     1.65741261657        0.676709802739E-01
+     1.66189211013        0.662060072881E-01
+     1.66637160369        0.647675982116E-01
+     1.67085109724        0.633552659698E-01
+     1.67533059080        0.619685333518E-01
+     1.67981008436        0.606069328420E-01
+     1.68428957792        0.592700064557E-01
+     1.68876907148        0.579573055764E-01
+     1.69324856504        0.566683907940E-01
+     1.69772805859        0.554028317475E-01
+     1.70220755215        0.541602069674E-01
+     1.70668704571        0.529401037213E-01
+     1.71116653927        0.517421178611E-01
+     1.71564603283        0.505658536723E-01
+     1.72012552639        0.494109237257E-01
+     1.72460501994        0.482769487297E-01
+     1.72908451350        0.471635573863E-01
+     1.73356400706        0.460703862474E-01
+     1.73804350062        0.449970795734E-01
+     1.74252299418        0.439432891944E-01
+     1.74700248774        0.429086743721E-01
+     1.75148198129        0.418929016639E-01
+     1.75596147485        0.408956447887E-01
+     1.76044096841        0.399165844940E-01
+     1.76492046197        0.389554084255E-01
+     1.76939995553        0.380118109978E-01
+     1.77387944909        0.370854932661E-01
+     1.77835894264        0.361761628002E-01
+     1.78283843620        0.352835335603E-01
+     1.78731792976        0.344073257731E-01
+     1.79179742332        0.335472658106E-01
+     1.79627691688        0.327030860693E-01
+     1.80075641044        0.318745248517E-01
+     1.80523590399        0.310613262481E-01
+     1.80971539755        0.302632400209E-01
+     1.81419489111        0.294800214893E-01
+     1.81867438467        0.287114314161E-01
+     1.82315387823        0.279572358935E-01
+     1.82763337179        0.272172062340E-01
+     1.83211286534        0.264911188594E-01
+     1.83659235890        0.257787551916E-01
+     1.84107185246        0.250799015451E-01
+     1.84555134602        0.243943490193E-01
+     1.85003083958        0.237218933959E-01
+     1.85451033313        0.230623350295E-01
+     1.85898982669        0.224154787472E-01
+     1.86346932025        0.217811337450E-01
+     1.86794881381        0.211591134872E-01
+     1.87242830737        0.205492356022E-01
+     1.87690780093        0.199513217883E-01
+     1.88138729448        0.193651977110E-01
+     1.88586678804        0.187906929063E-01
+     1.89034628160        0.182276406847E-01
+     1.89482577516        0.176758780294E-01
+     1.89930526872        0.171352455099E-01
+     1.90378476228        0.166055871812E-01
+     1.90826425583        0.160867504917E-01
+     1.91274374939        0.155785861866E-01
+     1.91722324295        0.150809482305E-01
+     1.92170273651        0.145936936929E-01
+     1.92618223007        0.141166826717E-01
+     1.93066172363        0.136497782002E-01
+     1.93514121718        0.131928461577E-01
+     1.93962071074        0.127457552271E-01
+     1.94410020430        0.123083766037E-01
+     1.94857969786        0.118805842333E-01
+     1.95305919142        0.114622545109E-01
+     1.95753868498        0.110532662451E-01
+     1.96201817853        0.106535005673E-01
+     1.96649767209        0.102628408633E-01
+     1.97097716565        0.988117266085E-02
+     1.97545665921        0.950838356280E-02
+     1.97993615277        0.914436316011E-02
+     1.98441564633        0.878900295105E-02
+     1.98889513988        0.844219600223E-02
+     1.99337463344        0.810383802628E-02
+     1.99785412700        0.777382546771E-02
+     2.00233362056        0.745205665980E-02
+     2.00681311412        0.713843147797E-02
+     2.01129260768        0.683285163315E-02
+     2.01577210123        0.653521919179E-02
+     2.02025159479        0.624543873656E-02
+     2.02473108835        0.596341595119E-02
+     2.02921058191        0.568905791303E-02
+     2.03369007547        0.542227306983E-02
+     2.03816956902        0.516297118048E-02
+     2.04264906258        0.491106345502E-02
+     2.04712855614        0.466646228221E-02
+     2.05160804970        0.442908137363E-02
+     2.05608754326        0.419883570555E-02
+     2.06056703682        0.397564149946E-02
+     2.06504653037        0.375941615240E-02
+     2.06952602393        0.355007844017E-02
+     2.07400551749        0.334754814215E-02
+     2.07848501105        0.315174625937E-02
+     2.08296450461        0.296259493898E-02
+     2.08744399817        0.278001745904E-02
+     2.09192349172        0.260393819823E-02
+     2.09640298528        0.243428263695E-02
+     2.10088247884        0.227097732838E-02
+     2.10536197240        0.211394988412E-02
+     2.10984146596        0.196312895746E-02
+     2.11432095952        0.181844422030E-02
+     2.11880045307        0.167982637459E-02
+     2.12327994663        0.154720709420E-02
+     2.12775944019        0.142051903592E-02
+     2.13223893375        0.129969581783E-02
+     2.13671842731        0.118467200404E-02
+     2.14119792087        0.107538309189E-02
+     2.14567741442        0.971765488574E-03
+     2.15015690798        0.873756510027E-03
+     2.15463640154        0.781294358336E-03
+     2.15911589510        0.694318109826E-03
+     2.16359538866        0.612767701427E-03
+     2.16807488222        0.536583912670E-03
+     2.17255437577        0.465708371669E-03
+     2.17703386933        0.400083513420E-03
+     2.18151336289        0.339652585159E-03
+     2.18599285645        0.284359629622E-03
+     2.19047235001        0.234149472723E-03
+     2.19495184357        0.188967629113E-03
+     2.19943133712        0.148760626497E-03
+     2.20391083068        0.113475504414E-03
+     2.20839032424        0.830601040194E-04
+     2.21286981780        0.574629860774E-04
+     2.21734931136        0.366334180059E-04
+     2.22182880492        0.205181939604E-04
+     2.22630829847        0.907403516964E-05
+     2.23078779203        0.225043914382E-05
+     2.23526728559         0.00000000000    
+</data>
+</radfunc>
+</orbital>
+<orbital 
+ l="                        1" 
+ n="                        4" 
+ z="                        1" 
+ ispol="                        1" 
+ population="     0.00000000000" 
+ >
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.120255885413E-01 </delta> 
+<cutoff>      6.00076868209 </cutoff> 
+<data>
+     0.00000000000        0.162289134098    
+    0.120255885413E-01    0.150452259263    
+    0.240511770825E-01    0.148470596113    
+    0.360767656238E-01    0.146960219061    
+    0.481023541650E-01    0.145702397925    
+    0.601279427063E-01    0.144611116040    
+    0.721535312475E-01    0.143641906195    
+    0.841791197888E-01    0.142768202666    
+    0.962047083301E-01    0.141972614969    
+    0.108230296871        0.141243012425    
+    0.120255885413        0.140570527395    
+    0.132281473954        0.139948439536    
+    0.144307062495        0.139371507897    
+    0.156332651036        0.138835548912    
+    0.168358239578        0.138337157890    
+    0.180383828119        0.137873518496    
+    0.192409416660        0.137442268427    
+    0.204435005201        0.137041402234    
+    0.216460593743        0.136669199444    
+    0.228486182284        0.136324170353    
+    0.240511770825        0.136005014430    
+    0.252537359366        0.135710587925    
+    0.264562947908        0.135439878269    
+    0.276588536449        0.135191983627    
+    0.288614124990        0.134966096339    
+    0.300639713531        0.134761489414    
+    0.312665302073        0.134577505364    
+    0.324690890614        0.134413546934    
+    0.336716479155        0.134269069309    
+    0.348742067696        0.134143573518    
+    0.360767656238        0.134036600830    
+    0.372793244779        0.133947727932    
+    0.384818833320        0.133876562763    
+    0.396844421861        0.133822740898    
+    0.408870010403        0.133785922378    
+    0.420895598944        0.133765788918    
+    0.432921187485        0.133762041437    
+    0.444946776026        0.133774397855    
+    0.456972364568        0.133802591113    
+    0.468997953109        0.133846367397    
+    0.481023541650        0.133905484522    
+    0.493049130192        0.133979710455    
+    0.505074718733        0.134068821971    
+    0.517100307274        0.134172603404    
+    0.529125895815        0.134290845491    
+    0.541151484357        0.134423344302    
+    0.553177072898        0.134569900231    
+    0.565202661439        0.134730317047    
+    0.577228249980        0.134904401002    
+    0.589253838522        0.135091959980    
+    0.601279427063        0.135292802682    
+    0.613305015604        0.135506737856    
+    0.625330604145        0.135733573547    
+    0.637356192687        0.135973116382    
+    0.649381781228        0.136225170871    
+    0.661407369769        0.136489538731    
+    0.673432958310        0.136766018239    
+    0.685458546852        0.137054403584    
+    0.697484135393        0.137354484249    
+    0.709509723934        0.137666044401    
+    0.721535312475        0.137988862296    
+    0.733560901017        0.138322709691    
+    0.745586489558        0.138667351280    
+    0.757612078099        0.139022544127    
+    0.769637666640        0.139388037121    
+    0.781663255182        0.139763570438    
+    0.793688843723        0.140148875018    
+    0.805714432264        0.140543672050    
+    0.817740020805        0.140947672470    
+    0.829765609347        0.141360576482    
+    0.841791197888        0.141782073076    
+    0.853816786429        0.142211839580    
+    0.865842374970        0.142649541219    
+    0.877867963512        0.143094830688    
+    0.889893552053        0.143547347757    
+    0.901919140594        0.144006718885    
+    0.913944729135        0.144472556864    
+    0.925970317677        0.144944460483    
+    0.937995906218        0.145422014225    
+    0.950021494759        0.145904787982    
+    0.962047083301        0.146392336811    
+    0.974072671842        0.146884200718    
+    0.986098260383        0.147379904474    
+    0.998123848924        0.147878957476    
+     1.01014943747        0.148380853637    
+     1.02217502601        0.148885071333    
+     1.03420061455        0.149391073382    
+     1.04622620309        0.149898307065    
+     1.05825179163        0.150406204231    
+     1.07027738017        0.150914181400    
+     1.08230296871        0.151421639971    
+     1.09432855725        0.151927966455    
+     1.10635414580        0.152432532785    
+     1.11837973434        0.152934696678    
+     1.13040532288        0.153433802066    
+     1.14243091142        0.153929179593    
+     1.15445649996        0.154420147177    
+     1.16648208850        0.154906010651    
+     1.17850767704        0.155386064454    
+     1.19053326558        0.155859592423    
+     1.20255885413        0.156325868644    
+     1.21458444267        0.156784158374    
+     1.22661003121        0.157233719044    
+     1.23863561975        0.157673801351    
+     1.25066120829        0.158103650393    
+     1.26268679683        0.158522506909    
+     1.27471238537        0.158929608586    
+     1.28673797391        0.159324191436    
+     1.29876356246        0.159705491232    
+     1.31078915100        0.160072745040    
+     1.32281473954        0.160425192799    
+     1.33484032808        0.160762078967    
+     1.34686591662        0.161082654228    
+     1.35889150516        0.161386177258    
+     1.37091709370        0.161671916534    
+     1.38294268224        0.161939152201    
+     1.39496827079        0.162187177963    
+     1.40699385933        0.162415303018    
+     1.41901944787        0.162622854024    
+     1.43104503641        0.162809177064    
+     1.44307062495        0.162973639649    
+     1.45509621349        0.163115632705    
+     1.46712180203        0.163234572563    
+     1.47914739057        0.163329902930    
+     1.49117297912        0.163401096841    
+     1.50319856766        0.163447658567    
+     1.51522415620        0.163469125493    
+     1.52724974474        0.163465069932    
+     1.53927533328        0.163435100870    
+     1.55130092182        0.163378865644    
+     1.56332651036        0.163296051532    
+     1.57535209890        0.163186387235    
+     1.58737768745        0.163049644262    
+     1.59940327599        0.162885638193    
+     1.61142886453        0.162694229810    
+     1.62345445307        0.162475326084    
+     1.63548004161        0.162228881027    
+     1.64750563015        0.161954896366    
+     1.65953121869        0.161653422064    
+     1.67155680723        0.161324556655    
+     1.68358239578        0.160968447400    
+     1.69560798432        0.160585290250    
+     1.70763357286        0.160175329607    
+     1.71965916140        0.159738857885    
+     1.73168474994        0.159276214864    
+     1.74371033848        0.158787786822    
+     1.75573592702        0.158274005460    
+     1.76776151556        0.157735346603    
+     1.77978710411        0.157172328679    
+     1.79181269265        0.156585510976    
+     1.80383828119        0.155975491684    
+     1.81586386973        0.155342905702    
+     1.82788945827        0.154688422239    
+     1.83991504681        0.154012742187    
+     1.85194063535        0.153316595289    
+     1.86396622389        0.152600737085    
+     1.87599181244        0.151865945642    
+     1.88801740098        0.151113018101    
+     1.90004298952        0.150342767027    
+     1.91206857806        0.149556016536    
+     1.92409416660        0.148753598327    
+     1.93611975514        0.147936347351    
+     1.94814534368        0.147105097100    
+     1.96017093222        0.146260675630    
+     1.97219652077        0.145403900709    
+     1.98422210931        0.144535574733    
+     1.99624769785        0.143656479420    
+     2.00827328639        0.142767371593    
+     2.02029887493        0.141868977208    
+     2.03232446347        0.140961990826    
+     2.04435005201        0.140047079263    
+     2.05637564055        0.139124881201    
+     2.06840122910        0.138196008149    
+     2.08042681764        0.137261046066    
+     2.09245240618        0.136320555820    
+     2.10447799472        0.135375074391    
+     2.11650358326        0.134425116005    
+     2.12852917180        0.133471173102    
+     2.14055476034        0.132513717061    
+     2.15258034888        0.131553199056    
+     2.16460593743        0.130590050929    
+     2.17663152597        0.129624685959    
+     2.18865711451        0.128657499625    
+     2.20068270305        0.127688870304    
+     2.21270829159        0.126719159966    
+     2.22473388013        0.125748714839    
+     2.23675946867        0.124777866040    
+     2.24878505721        0.123806930180    
+     2.26081064576        0.122836209948    
+     2.27283623430        0.121865994662    
+     2.28486182284        0.120896560809    
+     2.29688741138        0.119928172548    
+     2.30891299992        0.118961082208    
+     2.32093858846        0.117995530749    
+     2.33296417700        0.117031748217    
+     2.34498976554        0.116069954171    
+     2.35701535409        0.115110358095    
+     2.36904094263        0.114153159799    
+     2.38106653117        0.113198549792    
+     2.39309211971        0.112246709649    
+     2.40511770825        0.111297812357    
+     2.41714329679        0.110352022649    
+     2.42916888533        0.109409497328    
+     2.44119447388        0.108470385570    
+     2.45322006242        0.107534829224    
+     2.46524565096        0.106602963096    
+     2.47727123950        0.105674915213    
+     2.48929682804        0.104750807074    
+     2.50132241658        0.103830753970    
+     2.51334800512        0.102914865100    
+     2.52537359366        0.102003243903    
+     2.53739918221        0.101095988138    
+     2.54942477075        0.100193190433    
+     2.56145035929        0.992949385362E-01
+     2.57347594783        0.984013151150E-01
+     2.58550153637        0.975123980692E-01
+     2.59752712491        0.966282605253E-01
+     2.60955271345        0.957489712550E-01
+     2.62157830199        0.948745947305E-01
+     2.63360389054        0.940051913354E-01
+     2.64562947908        0.931408174939E-01
+     2.65765506762        0.922815258449E-01
+     2.66968065616        0.914273653922E-01
+     2.68170624470        0.905783816324E-01
+     2.69373183324        0.897346167001E-01
+     2.70575742178        0.888961094954E-01
+     2.71778301032        0.880628958113E-01
+     2.72980859887        0.872350084521E-01
+     2.74183418741        0.864124773536E-01
+     2.75385977595        0.855953296934E-01
+     2.76588536449        0.847835900002E-01
+     2.77791095303        0.839772802546E-01
+     2.78993654157        0.831764199905E-01
+     2.80196213011        0.823810263900E-01
+     2.81398771865        0.815911143774E-01
+     2.82601330720        0.808066967074E-01
+     2.83803889574        0.800277840516E-01
+     2.85006448428        0.792543850800E-01
+     2.86209007282        0.784865065415E-01
+     2.87411566136        0.777241533403E-01
+     2.88614124990        0.769673286099E-01
+     2.89816683844        0.762160337842E-01
+     2.91019242698        0.754702686664E-01
+     2.92221801553        0.747300314952E-01
+     2.93424360407        0.739953190084E-01
+     2.94626919261        0.732661265045E-01
+     2.95829478115        0.725424479020E-01
+     2.97032036969        0.718242757968E-01
+     2.98234595823        0.711116015171E-01
+     2.99437154677        0.704044151764E-01
+     3.00639713531        0.697027057254E-01
+     3.01842272386        0.690064610009E-01
+     3.03044831240        0.683156677734E-01
+     3.04247390094        0.676303117937E-01
+     3.05449948948        0.669503778365E-01
+     3.06652507802        0.662758497437E-01
+     3.07855066656        0.656067104654E-01
+     3.09057625510        0.649429420996E-01
+     3.10260184364        0.642845259311E-01
+     3.11462743219        0.636314424677E-01
+     3.12665302073        0.629836714763E-01
+     3.13867860927        0.623411920174E-01
+     3.15070419781        0.617039824782E-01
+     3.16272978635        0.610720206044E-01
+     3.17475537489        0.604452835313E-01
+     3.18678096343        0.598237478135E-01
+     3.19880655197        0.592073894535E-01
+     3.21083214052        0.585961839294E-01
+     3.22285772906        0.579901062220E-01
+     3.23488331760        0.573891308397E-01
+     3.24690890614        0.567932318442E-01
+     3.25893449468        0.562023828739E-01
+     3.27096008322        0.556165571671E-01
+     3.28298567176        0.550357275843E-01
+     3.29501126030        0.544598666296E-01
+     3.30703684885        0.538889464713E-01
+     3.31906243739        0.533229389622E-01
+     3.33108802593        0.527618156583E-01
+     3.34311361447        0.522055478379E-01
+     3.35513920301        0.516541065188E-01
+     3.36716479155        0.511074624763E-01
+     3.37919038009        0.505655862592E-01
+     3.39121596863        0.500284482061E-01
+     3.40324155718        0.494960184606E-01
+     3.41526714572        0.489682669867E-01
+     3.42729273426        0.484451635824E-01
+     3.43931832280        0.479266778943E-01
+     3.45134391134        0.474127794301E-01
+     3.46336949988        0.469034375722E-01
+     3.47539508842        0.463986215896E-01
+     3.48742067696        0.458983006501E-01
+     3.49944626551        0.454024438316E-01
+     3.51147185405        0.449110201334E-01
+     3.52349744259        0.444239984864E-01
+     3.53552303113        0.439413477642E-01
+     3.54754861967        0.434630367922E-01
+     3.55957420821        0.429890343578E-01
+     3.57159979675        0.425193092190E-01
+     3.58362538529        0.420538301139E-01
+     3.59565097384        0.415925657687E-01
+     3.60767656238        0.411354849064E-01
+     3.61970215092        0.406825562544E-01
+     3.63172773946        0.402337485522E-01
+     3.64375332800        0.397890305590E-01
+     3.65577891654        0.393483710605E-01
+     3.66780450508        0.389117388759E-01
+     3.67983009362        0.384791028644E-01
+     3.69185568217        0.380504319317E-01
+     3.70388127071        0.376256950357E-01
+     3.71590685925        0.372048611930E-01
+     3.72793244779        0.367878994839E-01
+     3.73995803633        0.363747790582E-01
+     3.75198362487        0.359654691406E-01
+     3.76400921341        0.355599390354E-01
+     3.77603480195        0.351581581313E-01
+     3.78806039050        0.347600959065E-01
+     3.80008597904        0.343657219328E-01
+     3.81211156758        0.339750058802E-01
+     3.82413715612        0.335879175206E-01
+     3.83616274466        0.332044267324E-01
+     3.84818833320        0.328245035039E-01
+     3.86021392174        0.324481179369E-01
+     3.87223951028        0.320752402506E-01
+     3.88426509883        0.317058407849E-01
+     3.89629068737        0.313398900034E-01
+     3.90831627591        0.309773584967E-01
+     3.92034186445        0.306182169856E-01
+     3.93236745299        0.302624363233E-01
+     3.94439304153        0.299099874990E-01
+     3.95641863007        0.295608416401E-01
+     3.96844421861        0.292149700143E-01
+     3.98046980716        0.288723440329E-01
+     3.99249539570        0.285329352524E-01
+     4.00452098424        0.281967153771E-01
+     4.01654657278        0.278636562607E-01
+     4.02857216132        0.275337299089E-01
+     4.04059774986        0.272069084809E-01
+     4.05262333840        0.268831642912E-01
+     4.06464892694        0.265624698114E-01
+     4.07667451549        0.262447976720E-01
+     4.08870010403        0.259301206637E-01
+     4.10072569257        0.256184117389E-01
+     4.11275128111        0.253096440131E-01
+     4.12477686965        0.250037907661E-01
+     4.13680245819        0.247008254436E-01
+     4.14882804673        0.244007216579E-01
+     4.16085363527        0.241034531890E-01
+     4.17287922382        0.238089939859E-01
+     4.18490481236        0.235173181674E-01
+     4.19693040090        0.232284000228E-01
+     4.20895598944        0.229422140129E-01
+     4.22098157798        0.226587347708E-01
+     4.23300716652        0.223779371023E-01
+     4.24503275506        0.220997959867E-01
+     4.25705834360        0.218242865774E-01
+     4.26908393215        0.215513842022E-01
+     4.28110952069        0.212810643639E-01
+     4.29313510923        0.210133027408E-01
+     4.30516069777        0.207480751867E-01
+     4.31718628631        0.204853577314E-01
+     4.32921187485        0.202251265812E-01
+     4.34123746339        0.199673581183E-01
+     4.35326305193        0.197120289020E-01
+     4.36528864048        0.194591156677E-01
+     4.37731422902        0.192085953279E-01
+     4.38933981756        0.189604449716E-01
+     4.40136540610        0.187146418644E-01
+     4.41339099464        0.184711634485E-01
+     4.42541658318        0.182299873427E-01
+     4.43744217172        0.179910913419E-01
+     4.44946776026        0.177544534171E-01
+     4.46149334881        0.175200517152E-01
+     4.47351893735        0.172878645587E-01
+     4.48554452589        0.170578704454E-01
+     4.49757011443        0.168300480478E-01
+     4.50959570297        0.166043762134E-01
+     4.52162129151        0.163808339633E-01
+     4.53364688005        0.161594004928E-01
+     4.54567246859        0.159400551701E-01
+     4.55769805714        0.157227775365E-01
+     4.56972364568        0.155075473053E-01
+     4.58174923422        0.152943443613E-01
+     4.59377482276        0.150831487609E-01
+     4.60580041130        0.148739407305E-01
+     4.61782599984        0.146667006667E-01
+     4.62985158838        0.144614091352E-01
+     4.64187717692        0.142580468701E-01
+     4.65390276547        0.140565947736E-01
+     4.66592835401        0.138570339149E-01
+     4.67795394255        0.136593455295E-01
+     4.68997953109        0.134635110187E-01
+     4.70200511963        0.132695119484E-01
+     4.71403070817        0.130773300487E-01
+     4.72605629671        0.128869472130E-01
+     4.73808188525        0.126983454969E-01
+     4.75010747380        0.125115071177E-01
+     4.76213306234        0.123264144532E-01
+     4.77415865088        0.121430500411E-01
+     4.78618423942        0.119613965781E-01
+     4.79820982796        0.117814369186E-01
+     4.81023541650        0.116031540744E-01
+     4.82226100504        0.114265312132E-01
+     4.83428659359        0.112515516580E-01
+     4.84631218213        0.110781988859E-01
+     4.85833777067        0.109064565273E-01
+     4.87036335921        0.107363083651E-01
+     4.88238894775        0.105677383332E-01
+     4.89441453629        0.104007305159E-01
+     4.90644012483        0.102352691467E-01
+     4.91846571337        0.100713386075E-01
+     4.93049130192        0.990892342743E-02
+     4.94251689046        0.974800828172E-02
+     4.95454247900        0.958857799089E-02
+     4.96656806754        0.943061751951E-02
+     4.97859365608        0.927411197532E-02
+     4.99061924462        0.911904660807E-02
+     5.00264483316        0.896540680847E-02
+     5.01467042170        0.881317810718E-02
+     5.02669601025        0.866234617373E-02
+     5.03872159879        0.851289681538E-02
+     5.05074718733        0.836481597617E-02
+     5.06277277587        0.821808973572E-02
+     5.07479836441        0.807270430825E-02
+     5.08682395295        0.792864604144E-02
+     5.09884954149        0.778590141541E-02
+     5.11087513003        0.764445704156E-02
+     5.12290071858        0.750429966157E-02
+     5.13492630712        0.736541614627E-02
+     5.14695189566        0.722779349454E-02
+     5.15897748420        0.709141883230E-02
+     5.17100307274        0.695627941136E-02
+     5.18302866128        0.682236260837E-02
+     5.19505424982        0.668965592373E-02
+     5.20707983836        0.655814698052E-02
+     5.21910542691        0.642782352343E-02
+     5.23113101545        0.629867341767E-02
+     5.24315660399        0.617068464788E-02
+     5.25518219253        0.604384531711E-02
+     5.26720778107        0.591814364573E-02
+     5.27923336961        0.579356797031E-02
+     5.29125895815        0.567010674266E-02
+     5.30328454669        0.554774852872E-02
+     5.31531013524        0.542648200748E-02
+     5.32733572378        0.530629597000E-02
+     5.33936131232        0.518717931827E-02
+     5.35138690086        0.506912106428E-02
+     5.36341248940        0.495211032887E-02
+     5.37543807794        0.483613634077E-02
+     5.38746366648        0.472118843555E-02
+     5.39948925502        0.460725605460E-02
+     5.41151484357        0.449432874408E-02
+     5.42354043211        0.438239615395E-02
+     5.43556602065        0.427144803695E-02
+     5.44759160919        0.416147424760E-02
+     5.45961719773        0.405246474118E-02
+     5.47164278627        0.394440957276E-02
+     5.48366837481        0.383729889620E-02
+     5.49569396335        0.373112296320E-02
+     5.50771955190        0.362587212229E-02
+     5.51974514044        0.352153681788E-02
+     5.53177072898        0.341810758929E-02
+     5.54379631752        0.331557506982E-02
+     5.55582190606        0.321392998577E-02
+     5.56784749460        0.311316315552E-02
+     5.57987308314        0.301326548857E-02
+     5.59189867168        0.291422798466E-02
+     5.60392426023        0.281604173278E-02
+     5.61594984877        0.271869791033E-02
+     5.62797543731        0.262218778215E-02
+     5.64000102585        0.252650269964E-02
+     5.65202661439        0.243163409989E-02
+     5.66405220293        0.233757350476E-02
+     5.67607779147        0.224431251786E-02
+     5.68810338001        0.215184283272E-02
+     5.70012896856        0.206015621821E-02
+     5.71215455710        0.196924452639E-02
+     5.72418014564        0.187909968971E-02
+     5.73620573418        0.178971372019E-02
+     5.74823132272        0.170107871102E-02
+     5.76025691126        0.161318682579E-02
+     5.77228249980        0.152603031295E-02
+     5.78430808834        0.143960149532E-02
+     5.79633367689        0.135389277151E-02
+     5.80835926543        0.126889661511E-02
+     5.82038485397        0.118460556798E-02
+     5.83241044251        0.110101226359E-02
+     5.84443603105        0.101810938960E-02
+     5.85646161959        0.935889709793E-03
+     5.86848720813        0.854346057575E-03
+     5.88051279667        0.773471334817E-03
+     5.89253838522        0.693258525458E-03
+     5.90456397376        0.613700633646E-03
+     5.91658956230        0.534790770673E-03
+     5.92861515084        0.456522099335E-03
+     5.94064073938        0.378887845308E-03
+     5.95266632792        0.301881296075E-03
+     5.96469191646        0.225495538005E-03
+     5.97671750500        0.149724481633E-03
+     5.98874309355        0.745614436156E-04
+     6.00076868209         0.00000000000    
+</data>
+</radfunc>
+</orbital>
+</paos>
+<kbs>
+<projector 
+ l="                        0" 
+ n="                        1" 
+ ref_energy="     4.25932159531" 
+ >
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.410418052671E-02 </delta> 
+<cutoff>      2.04798608283 </cutoff> 
+<data>
+     0.00000000000         1.23230651908    
+    0.410418052671E-02     1.23227905469    
+    0.820836105343E-02     1.23226803780    
+    0.123125415801E-01     1.23224976138    
+    0.164167221069E-01     1.23222429387    
+    0.205209026336E-01     1.23219170452    
+    0.246250831603E-01     1.23215206302    
+    0.287292636870E-01     1.23210543946    
+    0.328334442137E-01     1.23205190440    
+    0.369376247404E-01     1.23199152889    
+    0.410418052671E-01     1.23192438457    
+    0.451459857938E-01     1.23185054369    
+    0.492501663206E-01     1.23177007920    
+    0.533543468473E-01     1.23168306484    
+    0.574585273740E-01     1.23158957518    
+    0.615627079007E-01     1.23148968574    
+    0.656668884274E-01     1.23138347301    
+    0.697710689541E-01     1.23127101460    
+    0.738752494808E-01     1.23115238927    
+    0.779794300076E-01     1.23102767704    
+    0.820836105343E-01     1.23089695922    
+    0.861877910610E-01     1.23076031854    
+    0.902919715877E-01     1.23061783918    
+    0.943961521144E-01     1.23046960686    
+    0.985003326411E-01     1.23031570885    
+    0.102604513168         1.23015623410    
+    0.106708693695         1.22999127320    
+    0.110812874221         1.22982091846    
+    0.114917054748         1.22964526395    
+    0.119021235275         1.22946440548    
+    0.123125415801         1.22927844064    
+    0.127229596328         1.22908746877    
+    0.131333776855         1.22889159098    
+    0.135437957382         1.22869091012    
+    0.139542137908         1.22848553074    
+    0.143646318435         1.22827555902    
+    0.147750498962         1.22806110280    
+    0.151854679488         1.22784227144    
+    0.155958860015         1.22761917578    
+    0.160063040542         1.22739192806    
+    0.164167221069         1.22716064182    
+    0.168271401595         1.22692543181    
+    0.172375582122         1.22668641390    
+    0.176479762649         1.22644370492    
+    0.180583943175         1.22619742260    
+    0.184688123702         1.22594768542    
+    0.188792304229         1.22569461248    
+    0.192896484756         1.22543832335    
+    0.197000665282         1.22517893798    
+    0.201104845809         1.22491657653    
+    0.205209026336         1.22465135923    
+    0.209313206862         1.22438340628    
+    0.213417387389         1.22411283765    
+    0.217521567916         1.22383977301    
+    0.221625748443         1.22356433155    
+    0.225729928969         1.22328663186    
+    0.229834109496         1.22300679182    
+    0.233938290023         1.22272492846    
+    0.238042470549         1.22244115784    
+    0.242146651076         1.22215559495    
+    0.246250831603         1.22186835361    
+    0.250355012130         1.22157954632    
+    0.254459192656         1.22128928425    
+    0.258563373183         1.22099767709    
+    0.262667553710         1.22070483298    
+    0.266771734236         1.22041085846    
+    0.270875914763         1.22011585840    
+    0.274980095290         1.21981993591    
+    0.279084275817         1.21952319236    
+    0.283188456343         1.21922572726    
+    0.287292636870         1.21892763828    
+    0.291396817397         1.21862902122    
+    0.295500997923         1.21832996997    
+    0.299605178450         1.21803057650    
+    0.303709358977         1.21773093089    
+    0.307813539504         1.21743112129    
+    0.311917720030         1.21713123397    
+    0.316021900557         1.21683135331    
+    0.320126081084         1.21653156185    
+    0.324230261610         1.21623194033    
+    0.328334442137         1.21593256770    
+    0.332438622664         1.21563352118    
+    0.336542803191         1.21533487636    
+    0.340646983717         1.21503670720    
+    0.344751164244         1.21473908616    
+    0.348855344771         1.21444208426    
+    0.352959525297         1.21414577118    
+    0.357063705824         1.21385021534    
+    0.361167886351         1.21355548402    
+    0.365272066877         1.21326164350    
+    0.369376247404         1.21296875914    
+    0.373480427931         1.21267689555    
+    0.377584608458         1.21238611672    
+    0.381688788984         1.21209648616    
+    0.385792969511         1.21180806705    
+    0.389897150038         1.21152092244    
+    0.394001330564         1.21123511536    
+    0.398105511091         1.21095070902    
+    0.402209691618         1.21066776699    
+    0.406313872145         1.21038635335    
+    0.410418052671         1.21010653289    
+    0.414522233198         1.20982837123    
+    0.418626413725         1.20955193508    
+    0.422730594251         1.20927729229    
+    0.426834774778         1.20900451207    
+    0.430938955305         1.20873366511    
+    0.435043135832         1.20846482372    
+    0.439147316358         1.20819806191    
+    0.443251496885         1.20793345549    
+    0.447355677412         1.20767108214    
+    0.451459857938         1.20741102142    
+    0.455564038465         1.20715335481    
+    0.459668218992         1.20689816567    
+    0.463772399519         1.20664553915    
+    0.467876580045         1.20639556211    
+    0.471980760572         1.20614832298    
+    0.476084941099         1.20590391154    
+    0.480189121625         1.20566241865    
+    0.484293302152         1.20542393602    
+    0.488397482679         1.20518855579    
+    0.492501663206         1.20495637016    
+    0.496605843732         1.20472747089    
+    0.500710024259         1.20450194880    
+    0.504814204786         1.20427989314    
+    0.508918385312         1.20406139098    
+    0.513022565839         1.20384652645    
+    0.517126746366         1.20363538000    
+    0.521230926893         1.20342802753    
+    0.525335107419         1.20322453955    
+    0.529439287946         1.20302498016    
+    0.533543468473         1.20282940608    
+    0.537647648999         1.20263786564    
+    0.541751829526         1.20245039761    
+    0.545856010053         1.20226703014    
+    0.549960190580         1.20208777952    
+    0.554064371106         1.20191264906    
+    0.558168551633         1.20174162784    
+    0.562272732160         1.20157468947    
+    0.566376912686         1.20141179091    
+    0.570481093213         1.20125287118    
+    0.574585273740         1.20109785021    
+    0.578689454267         1.20094662759    
+    0.582793634793         1.20079908147    
+    0.586897815320         1.20065506734    
+    0.591001995847         1.20051441705    
+    0.595106176373         1.20037693774    
+    0.599210356900         1.20024241086    
+    0.603314537427         1.20011059134    
+    0.607418717954         1.19998120671    
+    0.611522898480         1.19985395648    
+    0.615627079007         1.19972851139    
+    0.619731259534         1.19960451282    
+    0.623835440060         1.19948157284    
+    0.627939620587         1.19935927410    
+    0.632043801114         1.19923716667    
+    0.636147981641         1.19911476895    
+    0.640252162167         1.19899157914    
+    0.644356342694         1.19886706568    
+    0.648460523221         1.19874064580    
+    0.652564703747         1.19861178919    
+    0.656668884274         1.19847958944    
+    0.660773064801         1.19834322609    
+    0.664877245328         1.19820343875    
+    0.668981425854         1.19805906875    
+    0.673085606381         1.19790776732    
+    0.677189786908         1.19774631018    
+    0.681293967434         1.19757845543    
+    0.685398147961         1.19740954565    
+    0.689502328488         1.19723427346    
+    0.693606509015         1.19704113619    
+    0.697710689541         1.19681302616    
+    0.701814870068         1.19652854725    
+    0.705919050595         1.19618732045    
+    0.710023231121         1.19580768389    
+    0.714127411648         1.19540069686    
+    0.718231592175         1.19497330474    
+    0.722335772702         1.19452863107    
+    0.726439953228         1.19406032204    
+    0.730544133755         1.19356488974    
+    0.734648314282         1.19304488820    
+    0.738752494808         1.19250123761    
+    0.742856675335         1.19193458322    
+    0.746960855862         1.19134354066    
+    0.751065036389         1.19072816222    
+    0.755169216915         1.19008858350    
+    0.759273397442         1.18942467954    
+    0.763377577969         1.18873636876    
+    0.767481758495         1.18802356539    
+    0.771585939022         1.18728615836    
+    0.775690119549         1.18652400230    
+    0.779794300076         1.18573695486    
+    0.783898480602         1.18492486546    
+    0.788002661129         1.18408756118    
+    0.792106841656         1.18322485239    
+    0.796211022182         1.18233653497    
+    0.800315202709         1.18142238881    
+    0.804419383236         1.18048217853    
+    0.808523563763         1.17951565296    
+    0.812627744289         1.17852254574    
+    0.816731924816         1.17750257566    
+    0.820836105343         1.17645544700    
+    0.824940285869         1.17538085002    
+    0.829044466396         1.17427846139    
+    0.833148646923         1.17314794470    
+    0.837252827450         1.17198895104    
+    0.841357007976         1.17080111952    
+    0.845461188503         1.16958407788    
+    0.849565369030         1.16833744304    
+    0.853669549556         1.16706082176    
+    0.857773730083         1.16575381119    
+    0.861877910610         1.16441599950    
+    0.865982091137         1.16304696651    
+    0.870086271663         1.16164628429    
+    0.874190452190         1.16021351773    
+    0.878294632717         1.15874822521    
+    0.882398813243         1.15724995916    
+    0.886502993770         1.15571826663    
+    0.890607174297         1.15415268991    
+    0.894711354824         1.15255276711    
+    0.898815535350         1.15091803267    
+    0.902919715877         1.14924801798    
+    0.907023896404         1.14754225187    
+    0.911128076930         1.14580026120    
+    0.915232257457         1.14402157133    
+    0.919336437984         1.14220570668    
+    0.923440618511         1.14035219119    
+    0.927544799037         1.13846054886    
+    0.931648979564         1.13653030420    
+    0.935753160091         1.13456098270    
+    0.939857340617         1.13255211130    
+    0.943961521144         1.13050321887    
+    0.948065701671         1.12841383658    
+    0.952169882198         1.12628349842    
+    0.956274062724         1.12411174152    
+    0.960378243251         1.12189810666    
+    0.964482423778         1.11964213861    
+    0.968586604304         1.11734338655    
+    0.972690784831         1.11500140442    
+    0.976794965358         1.11261575136    
+    0.980899145885         1.11018599199    
+    0.985003326411         1.10771169685    
+    0.989107506938         1.10519244270    
+    0.993211687465         1.10262781291    
+    0.997315867991         1.10001739774    
+     1.00142004852         1.09736079470    
+     1.00552422904         1.09465760887    
+     1.00962840957         1.09190745318    
+     1.01373259010         1.08910994876    
+     1.01783677062         1.08626472522    
+     1.02194095115         1.08337142096    
+     1.02604513168         1.08042968345    
+     1.03014931221         1.07743916953    
+     1.03425349273         1.07439954566    
+     1.03835767326         1.07131048817    
+     1.04246185379         1.06817168358    
+     1.04656603431         1.06498282879    
+     1.05067021484         1.06174363140    
+     1.05477439537         1.05845380992    
+     1.05887857589         1.05511309403    
+     1.06298275642         1.05172122481    
+     1.06708693695         1.04827795498    
+     1.07119111747         1.04478304912    
+     1.07529529800         1.04123628392    
+     1.07939947853         1.03763744836    
+     1.08350365905         1.03398634392    
+     1.08760783958         1.03028278484    
+     1.09171202011         1.02652659830    
+     1.09581620063         1.02271762460    
+     1.09992038116         1.01885571740    
+     1.10402456169         1.01494074386    
+     1.10812874221         1.01097258490    
+     1.11223292274         1.00695113531    
+     1.11633710327         1.00287630398    
+     1.12044128379        0.998748014070    
+     1.12454546432        0.994566203162    
+     1.12864964485        0.990330823458    
+     1.13275382537        0.986041841932    
+     1.13685800590        0.981699240493    
+     1.14096218643        0.977303016148    
+     1.14506636695        0.972853181156    
+     1.14917054748        0.968349763181    
+     1.15327472801        0.963792805441    
+     1.15737890853        0.959182366855    
+     1.16148308906        0.954518522183    
+     1.16558726959        0.949801362171    
+     1.16969145011        0.945030993682    
+     1.17379563064        0.940207539828    
+     1.17789981117        0.935331140107    
+     1.18200399169        0.930401950519    
+     1.18610817222        0.925420143707    
+     1.19021235275        0.920385909062    
+     1.19431653327        0.915299452863    
+     1.19842071380        0.910160998362    
+     1.20252489433        0.904970785916    
+     1.20662907485        0.899729073086    
+     1.21073325538        0.894436134749    
+     1.21483743591        0.889092263201    
+     1.21894161643        0.883697768258    
+     1.22304579696        0.878252977360    
+     1.22714997749        0.872758235646    
+     1.23125415801        0.867213906083    
+     1.23535833854        0.861620369523    
+     1.23946251907        0.855978024833    
+     1.24356669959        0.850287288913    
+     1.24767088012        0.844548596813    
+     1.25177506065        0.838762401804    
+     1.25587924117        0.832929175428    
+     1.25998342170        0.827049407607    
+     1.26408760223        0.821123606688    
+     1.26819178275        0.815152299512    
+     1.27229596328        0.809136031472    
+     1.27640014381        0.803075366570    
+     1.28050432433        0.796970887470    
+     1.28460850486        0.790823195538    
+     1.28871268539        0.784632910903    
+     1.29281686591        0.778400672473    
+     1.29692104644        0.772127137982    
+     1.30102522697        0.765812984019    
+     1.30512940749        0.759458906046    
+     1.30923358802        0.753065618431    
+     1.31333776855        0.746633854455    
+     1.31744194908        0.740164366327    
+     1.32154612960        0.733657925182    
+     1.32565031013        0.727115321086    
+     1.32975449066        0.720537363026    
+     1.33385867118        0.713924878898    
+     1.33796285171        0.707278715486    
+     1.34206703224        0.700599738434    
+     1.34617121276        0.693888832216    
+     1.35027539329        0.687146900094    
+     1.35437957382        0.680374864072    
+     1.35848375434        0.673573664836    
+     1.36258793487        0.666744261699    
+     1.36669211540        0.659887632524    
+     1.37079629592        0.653004773643    
+     1.37490047645        0.646096699779    
+     1.37900465698        0.639164443942    
+     1.38310883750        0.632209057323    
+     1.38721301803        0.625231609189    
+     1.39131719856        0.618233186739    
+     1.39542137908        0.611214894984    
+     1.39952555961        0.604177856598    
+     1.40362974014        0.597123211750    
+     1.40773392066        0.590052117960    
+     1.41183810119        0.582965749903    
+     1.41594228172        0.575865299227    
+     1.42004646224        0.568751974345    
+     1.42415064277        0.561627000236    
+     1.42825482330        0.554491618192    
+     1.43235900382        0.547347085598    
+     1.43646318435        0.540194675670    
+     1.44056736488        0.533035677183    
+     1.44467154540        0.525871394201    
+     1.44877572593        0.518703145772    
+     1.45287990646        0.511532265617    
+     1.45698408698        0.504360101802    
+     1.46108826751        0.497188016395    
+     1.46519244804        0.490017385105    
+     1.46929662856        0.482849596901    
+     1.47340080909        0.475686053622    
+     1.47750498962        0.468528169554    
+     1.48160917014        0.461377371009    
+     1.48571335067        0.454235095865    
+     1.48981753120        0.447102793101    
+     1.49392171172        0.439981922295    
+     1.49802589225        0.432873953121    
+     1.50213007278        0.425780364811    
+     1.50623425330        0.418702645601    
+     1.51033843383        0.411642292154    
+     1.51444261436        0.404600808938    
+     1.51854679488        0.397579707636    
+     1.52265097541        0.390580506479    
+     1.52675515594        0.383604729572    
+     1.53085933646        0.376653906191    
+     1.53496351699        0.369729570074    
+     1.53906769752        0.362833258663    
+     1.54317187804        0.355966512330    
+     1.54727605857        0.349130873584    
+     1.55138023910        0.342327886209    
+     1.55548441962        0.335559094463    
+     1.55958860015        0.328826042166    
+     1.56369278068        0.322130271798    
+     1.56779696120        0.315473323571    
+     1.57190114173        0.308856734450    
+     1.57600532226        0.302282037194    
+     1.58010950278        0.295750759325    
+     1.58421368331        0.289264422097    
+     1.58831786384        0.282824539435    
+     1.59242204436        0.276432616832    
+     1.59652622489        0.270090150269    
+     1.60063040542        0.263798625064    
+     1.60473458594        0.257559514722    
+     1.60883876647        0.251374279754    
+     1.61294294700        0.245244366515    
+     1.61704712753        0.239171205942    
+     1.62115130805        0.233156212364    
+     1.62525548858        0.227200782238    
+     1.62935966911        0.221306292941    
+     1.63346384963        0.215474101438    
+     1.63756803016        0.209705543045    
+     1.64167221069        0.204001930141    
+     1.64577639121        0.198364550857    
+     1.64988057174        0.192794667886    
+     1.65398475227        0.187293517044    
+     1.65808893279        0.181862306068    
+     1.66219311332        0.176502213317    
+     1.66629729385        0.171214386460    
+     1.67040147437        0.165999941334    
+     1.67450565490        0.160859960499    
+     1.67860983543        0.155795492105    
+     1.68271401595        0.150807548642    
+     1.68681819648        0.145897105727    
+     1.69092237701        0.141065100893    
+     1.69502655753        0.136312432542    
+     1.69913073806        0.131639958607    
+     1.70323491859        0.127048495572    
+     1.70733909911        0.122538817360    
+     1.71144327964        0.118111654254    
+     1.71554746017        0.113767691982    
+     1.71965164069        0.109507570577    
+     1.72375582122        0.105331883530    
+     1.72786000175        0.101241176861    
+     1.73196418227        0.972359482450E-01
+     1.73606836280        0.933166462011E-01
+     1.74017254333        0.894836692754E-01
+     1.74427672385        0.857373653151E-01
+     1.74838090438        0.820780307611E-01
+     1.75248508491        0.785059099859E-01
+     1.75658926543        0.750211946853E-01
+     1.76069344596        0.716240232921E-01
+     1.76479762649        0.683144804542E-01
+     1.76890180701        0.650925965453E-01
+     1.77300598754        0.619583472204E-01
+     1.77711016807        0.589116531686E-01
+     1.78121434859        0.559523790651E-01
+     1.78531852912        0.530803343451E-01
+     1.78942270965        0.502952721990E-01
+     1.79352689017        0.475968894947E-01
+     1.79763107070        0.449848257553E-01
+     1.80173525123        0.424586664302E-01
+     1.80583943175        0.400179374587E-01
+     1.80994361228        0.376621085263E-01
+     1.81404779281        0.353905922310E-01
+     1.81815197333        0.332027440608E-01
+     1.82225615386        0.310978663878E-01
+     1.82636033439        0.290751908869E-01
+     1.83046451491        0.271339067658E-01
+     1.83456869544        0.252731421406E-01
+     1.83867287597        0.234919684827E-01
+     1.84277705649        0.217893831884E-01
+     1.84688123702        0.201643830658E-01
+     1.85098541755        0.186158523225E-01
+     1.85508959807        0.171426334770E-01
+     1.85919377860        0.157435114063E-01
+     1.86329795913        0.144172138144E-01
+     1.86740213965        0.131624642367E-01
+     1.87150632018        0.119777561236E-01
+     1.87561050071        0.108617082450E-01
+     1.87971468123        0.981283401168E-02
+     1.88381886176        0.882959570283E-02
+     1.88792304229        0.791040376531E-02
+     1.89202722281        0.705349830038E-02
+     1.89613140334        0.625746606505E-02
+     1.90023558387        0.552041014009E-02
+     1.90433976440        0.484050164037E-02
+     1.90844394492        0.421584783754E-02
+     1.91254812545        0.364482104782E-02
+     1.91665230598        0.312469814252E-02
+     1.92075648650        0.265371471598E-02
+     1.92486066703        0.222977988232E-02
+     1.92896484756        0.185077049552E-02
+     1.93306902808        0.151452942722E-02
+     1.93717320861        0.121855043901E-02
+     1.94127738914        0.961279974636E-03
+     1.94538156966        0.740124055711E-03
+     1.94948575019        0.552704842350E-03
+     1.95358993072        0.396565030713E-03
+     1.95769411124        0.269166721025E-03
+     1.96179829177        0.167958735434E-03
+     1.96590247230        0.901101379875E-04
+     1.97000665282        0.329382139110E-04
+     1.97411083335       -0.634181950380E-05
+     1.97821501388       -0.305334213304E-04
+     1.98231919440       -0.424315783813E-04
+     1.98642337493       -0.444547235565E-04
+     1.99052755546       -0.400006061296E-04
+     1.99463173598       -0.313062531296E-04
+     1.99873591651       -0.207126289139E-04
+     2.00284009704       -0.102966529433E-04
+     2.00694427756       -0.180228573367E-05
+     2.01104845809        0.129502154033E-05
+     2.01515263862        0.260233453506E-05
+     2.01925681914        0.177617829786E-06
+     2.02336099967       -0.555333667616E-05
+     2.02746518020       -0.135383310149E-04
+     2.03156936072       -0.220463917330E-04
+     2.03567354125       -0.158151730674E-04
+     2.03977772178       -0.161707519898E-04
+     2.04388190230       -0.117073035786E-04
+     2.04798608283         0.00000000000    
+</data>
+</radfunc>
+</projector>
+<projector 
+ l="                        1" 
+ n="                        1" 
+ ref_energy="     2.85078476638" 
+ >
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.410418052671E-02 </delta> 
+<cutoff>      2.04798608283 </cutoff> 
+<data>
+     0.00000000000       -0.276741973137E-01
+    0.410418052671E-02   -0.278299032875E-01
+    0.820836105343E-02   -0.280185839801E-01
+    0.123125415801E-01   -0.283325378521E-01
+    0.164167221069E-01   -0.287712462120E-01
+    0.205209026336E-01   -0.293340982759E-01
+    0.246250831603E-01   -0.300203933324E-01
+    0.287292636870E-01   -0.308293406464E-01
+    0.328334442137E-01   -0.317600599280E-01
+    0.369376247404E-01   -0.328115815329E-01
+    0.410418052671E-01   -0.339828468487E-01
+    0.451459857938E-01   -0.352727086218E-01
+    0.492501663206E-01   -0.366799312542E-01
+    0.533543468473E-01   -0.382031913196E-01
+    0.574585273740E-01   -0.398410780649E-01
+    0.615627079007E-01   -0.415920937710E-01
+    0.656668884274E-01   -0.434546544987E-01
+    0.697710689541E-01   -0.454270906142E-01
+    0.738752494808E-01   -0.475076474639E-01
+    0.779794300076E-01   -0.496944861138E-01
+    0.820836105343E-01   -0.519856843438E-01
+    0.861877910610E-01   -0.543792372714E-01
+    0.902919715877E-01   -0.568730584514E-01
+    0.943961521144E-01   -0.594649808912E-01
+    0.985003326411E-01   -0.621527580605E-01
+    0.102604513168       -0.649340653530E-01
+    0.106708693695       -0.678065010304E-01
+    0.110812874221       -0.707675878376E-01
+    0.114917054748       -0.738147743649E-01
+    0.119021235275       -0.769454365519E-01
+    0.123125415801       -0.801568793534E-01
+    0.127229596328       -0.834463386259E-01
+    0.131333776855       -0.868109824587E-01
+    0.135437957382       -0.902479137829E-01
+    0.139542137908       -0.937541715686E-01
+    0.143646318435       -0.973267336203E-01
+    0.147750498962       -0.100962518279    
+    0.151854679488       -0.104658386707    
+    0.155958860015       -0.108411145402    
+    0.160063040542       -0.112217548401    
+    0.164167221069       -0.116074299751    
+    0.168271401595       -0.119978056148    
+    0.172375582122       -0.123925429312    
+    0.176479762649       -0.127912988835    
+    0.180583943175       -0.131937264812    
+    0.184688123702       -0.135994750425    
+    0.188792304229       -0.140081904987    
+    0.192896484756       -0.144195156415    
+    0.197000665282       -0.148330904380    
+    0.201104845809       -0.152485522962    
+    0.205209026336       -0.156655363571    
+    0.209313206862       -0.160836757926    
+    0.213417387389       -0.165026020759    
+    0.217521567916       -0.169219452939    
+    0.221625748443       -0.173413344125    
+    0.225729928969       -0.177603975831    
+    0.229834109496       -0.181787624151    
+    0.233938290023       -0.185960562730    
+    0.238042470549       -0.190119065433    
+    0.242146651076       -0.194259409262    
+    0.246250831603       -0.198377877137    
+    0.250355012130       -0.202470760519    
+    0.254459192656       -0.206534362075    
+    0.258563373183       -0.210564998576    
+    0.262667553710       -0.214559003185    
+    0.266771734236       -0.218512728288    
+    0.270875914763       -0.222422547878    
+    0.274980095290       -0.226284860092    
+    0.279084275817       -0.230096089592    
+    0.283188456343       -0.233852689973    
+    0.287292636870       -0.237551146054    
+    0.291396817397       -0.241187976273    
+    0.295500997923       -0.244759734740    
+    0.299605178450       -0.248263013574    
+    0.303709358977       -0.251694444802    
+    0.307813539504       -0.255050702671    
+    0.311917720030       -0.258328505500    
+    0.316021900557       -0.261524617570    
+    0.320126081084       -0.264635851197    
+    0.324230261610       -0.267659068404    
+    0.328334442137       -0.270591182711    
+    0.332438622664       -0.273429160874    
+    0.336542803191       -0.276170024539    
+    0.340646983717       -0.278810851704    
+    0.344751164244       -0.281348778341    
+    0.348855344771       -0.283780999833    
+    0.352959525297       -0.286104772261    
+    0.357063705824       -0.288317413800    
+    0.361167886351       -0.290416305916    
+    0.365272066877       -0.292398894541    
+    0.369376247404       -0.294262691175    
+    0.373480427931       -0.296005273898    
+    0.377584608458       -0.297624288392    
+    0.381688788984       -0.299117448790    
+    0.385792969511       -0.300482538528    
+    0.389897150038       -0.301717411131    
+    0.394001330564       -0.302819990929    
+    0.398105511091       -0.303788273702    
+    0.402209691618       -0.304620327325    
+    0.406313872145       -0.305314292310    
+    0.410418052671       -0.305868382320    
+    0.414522233198       -0.306280884692    
+    0.418626413725       -0.306550160886    
+    0.422730594251       -0.306674646901    
+    0.426834774778       -0.306652853718    
+    0.430938955305       -0.306483367700    
+    0.435043135832       -0.306164851028    
+    0.439147316358       -0.305696042116    
+    0.443251496885       -0.305075755985    
+    0.447355677412       -0.304302884810    
+    0.451459857938       -0.303376398354    
+    0.455564038465       -0.302295344488    
+    0.459668218992       -0.301058849801    
+    0.463772399519       -0.299666120190    
+    0.467876580045       -0.298116441546    
+    0.471980760572       -0.296409180511    
+    0.476084941099       -0.294543785285    
+    0.480189121625       -0.292519786511    
+    0.484293302152       -0.290336798240    
+    0.488397482679       -0.287994518954    
+    0.492501663206       -0.285492732717    
+    0.496605843732       -0.282831310363    
+    0.500710024259       -0.280010210711    
+    0.504814204786       -0.277029481951    
+    0.508918385312       -0.273889263057    
+    0.513022565839       -0.270589785202    
+    0.517126746366       -0.267131373290    
+    0.521230926893       -0.263514447506    
+    0.525335107419       -0.259739524892    
+    0.529439287946       -0.255807220923    
+    0.533543468473       -0.251718251087    
+    0.537647648999       -0.247473432472    
+    0.541751829526       -0.243073685297    
+    0.545856010053       -0.238520034376    
+    0.549960190580       -0.233813610532    
+    0.554064371106       -0.228955651908    
+    0.558168551633       -0.223947505171    
+    0.562272732160       -0.218790626577    
+    0.566376912686       -0.213486582853    
+    0.570481093213       -0.208037051940    
+    0.574585273740       -0.202443823517    
+    0.578689454267       -0.196708799323    
+    0.582793634793       -0.190833993228    
+    0.586897815320       -0.184821531030    
+    0.591001995847       -0.178673650000    
+    0.595106176373       -0.172392698146    
+    0.599210356900       -0.165981133192    
+    0.603314537427       -0.159441521253    
+    0.607418717954       -0.152776535095    
+    0.611522898480       -0.145988952075    
+    0.615627079007       -0.139081652057    
+    0.619731259534       -0.132057615070    
+    0.623835440060       -0.124919916946    
+    0.627939620587       -0.117671725516    
+    0.632043801114       -0.110316304676    
+    0.636147981641       -0.102857007765    
+    0.640252162167       -0.952972447690E-01
+    0.644356342694       -0.876405018519E-01
+    0.648460523221       -0.798903917038E-01
+    0.652564703747       -0.720504010025E-01
+    0.656668884274       -0.641248983374E-01
+    0.660773064801       -0.561180325035E-01
+    0.664877245328       -0.480302499026E-01
+    0.668981425854       -0.398664671874E-01
+    0.673085606381       -0.316344042440E-01
+    0.677189786908       -0.233438473505E-01
+    0.681293967434       -0.149880634986E-01
+    0.685398147961       -0.655643676279E-02
+    0.689502328488        0.193635898469E-02
+    0.693606509015        0.104611121649E-01
+    0.697710689541        0.189770983811E-01
+    0.701814870068        0.274346363719E-01
+    0.705919050595        0.358323612294E-01
+    0.710023231121        0.442121724995E-01
+    0.714127411648        0.525983848603E-01
+    0.718231592175        0.610047158945E-01
+    0.722335772702        0.694366806600E-01
+    0.726439953228        0.778787005311E-01
+    0.730544133755        0.863214355404E-01
+    0.734648314282        0.947691179964E-01
+    0.738752494808        0.103222329578    
+    0.742856675335        0.111681041590    
+    0.746960855862        0.120140674129    
+    0.751065036389        0.128599877996    
+    0.755169216915        0.137057492670    
+    0.759273397442        0.145511778351    
+    0.763377577969        0.153961095688    
+    0.767481758495        0.162403809826    
+    0.771585939022        0.170838243407    
+    0.775690119549        0.179262660607    
+    0.779794300076        0.187675347454    
+    0.783898480602        0.196074590470    
+    0.788002661129        0.204458649085    
+    0.792106841656        0.212825769481    
+    0.796211022182        0.221174191275    
+    0.800315202709        0.229502146269    
+    0.804419383236        0.237807861811    
+    0.808523563763        0.246089561455    
+    0.812627744289        0.254345467917    
+    0.816731924816        0.262573805378    
+    0.820836105343        0.270772801699    
+    0.824940285869        0.278940690752    
+    0.829044466396        0.287075714674    
+    0.833148646923        0.295176126130    
+    0.837252827450        0.303240190510    
+    0.841357007976        0.311266188068    
+    0.845461188503        0.319252415994    
+    0.849565369030        0.327197190388    
+    0.853669549556        0.335098848173    
+    0.857773730083        0.342955748917    
+    0.861877910610        0.350766276546    
+    0.865982091137        0.358528840980    
+    0.870086271663        0.366241879649    
+    0.874190452190        0.373903858931    
+    0.878294632717        0.381513275461    
+    0.882398813243        0.389068657356    
+    0.886502993770        0.396568565333    
+    0.890607174297        0.404011593736    
+    0.894711354824        0.411396371459    
+    0.898815535350        0.418721562767    
+    0.902919715877        0.425985868012    
+    0.907023896404        0.433188024266    
+    0.911128076930        0.440326805860    
+    0.915232257457        0.447401024845    
+    0.919336437984        0.454409531350    
+    0.923440618511        0.461351213855    
+    0.927544799037        0.468224999392    
+    0.931648979564        0.475029853657    
+    0.935753160091        0.481764781059    
+    0.939857340617        0.488428824679    
+    0.943961521144        0.495021066177    
+    0.948065701671        0.501540625608    
+    0.952169882198        0.507986661196    
+    0.956274062724        0.514358369026    
+    0.960378243251        0.520654982704    
+    0.964482423778        0.526875772928    
+    0.968586604304        0.533020047039    
+    0.972690784831        0.539087148477    
+    0.976794965358        0.545076456233    
+    0.980899145885        0.550987384218    
+    0.985003326411        0.556819380649    
+    0.989107506938        0.562571927326    
+    0.993211687465        0.568244538920    
+    0.997315867991        0.573836762175    
+     1.00142004852        0.579348175122    
+     1.00552422904        0.584778386247    
+     1.00962840957        0.590127033623    
+     1.01373259010        0.595393784040    
+     1.01783677062        0.600578332066    
+     1.02194095115        0.605680399177    
+     1.02604513168        0.610699732766    
+     1.03014931221        0.615636105219    
+     1.03425349273        0.620489312857    
+     1.03835767326        0.625259174985    
+     1.04246185379        0.629945532848    
+     1.04656603431        0.634548248653    
+     1.05067021484        0.639067204522    
+     1.05477439537        0.643502301461    
+     1.05887857589        0.647853458329    
+     1.06298275642        0.652120610794    
+     1.06708693695        0.656303710303    
+     1.07119111747        0.660402723015    
+     1.07529529800        0.664417628775    
+     1.07939947853        0.668348420071    
+     1.08350365905        0.672195100995    
+     1.08760783958        0.675957686236    
+     1.09171202011        0.679636200043    
+     1.09581620063        0.683230675226    
+     1.09992038116        0.686741152143    
+     1.10402456169        0.690167677717    
+     1.10812874221        0.693510304451    
+     1.11223292274        0.696769089473    
+     1.11633710327        0.699944093580    
+     1.12044128379        0.703035380310    
+     1.12454546432        0.706043015018    
+     1.12864964485        0.708967063986    
+     1.13275382537        0.711807593535    
+     1.13685800590        0.714564669173    
+     1.14096218643        0.717238354749    
+     1.14506636695        0.719828711641    
+     1.14917054748        0.722335797961    
+     1.15327472801        0.724759667782    
+     1.15737890853        0.727100370399    
+     1.16148308906        0.729357949607    
+     1.16558726959        0.731532443011    
+     1.16969145011        0.733623881352    
+     1.17379563064        0.735632287879    
+     1.17789981117        0.737557677734    
+     1.18200399169        0.739400057370    
+     1.18610817222        0.741159424020    
+     1.19021235275        0.742835765164    
+     1.19431653327        0.744429058065    
+     1.19842071380        0.745939269284    
+     1.20252489433        0.747366354274    
+     1.20662907485        0.748710256998    
+     1.21073325538        0.749970909563    
+     1.21483743591        0.751148231927    
+     1.21894161643        0.752242131608    
+     1.22304579696        0.753252503441    
+     1.22714997749        0.754179229372    
+     1.23125415801        0.755022178298    
+     1.23535833854        0.755781205919    
+     1.23946251907        0.756456154679    
+     1.24356669959        0.757046853667    
+     1.24767088012        0.757553118621    
+     1.25177506065        0.757974751962    
+     1.25587924117        0.758311542832    
+     1.25998342170        0.758563267238    
+     1.26408760223        0.758729688181    
+     1.26819178275        0.758810555852    
+     1.27229596328        0.758805607862    
+     1.27640014381        0.758714569521    
+     1.28050432433        0.758537154154    
+     1.28460850486        0.758273063456    
+     1.28871268539        0.757921987912    
+     1.29281686591        0.757483607220    
+     1.29692104644        0.756957590794    
+     1.30102522697        0.756343598300    
+     1.30512940749        0.755641280223    
+     1.30923358802        0.754850278508    
+     1.31333776855        0.753970227218    
+     1.31744194908        0.753000753243    
+     1.32154612960        0.751941477066    
+     1.32565031013        0.750792013551    
+     1.32975449066        0.749551972793    
+     1.33385867118        0.748220961007    
+     1.33796285171        0.746798581461    
+     1.34206703224        0.745284435451    
+     1.34617121276        0.743678123321    
+     1.35027539329        0.741979245528    
+     1.35437957382        0.740187403753    
+     1.35848375434        0.738302202040    
+     1.36258793487        0.736323247993    
+     1.36669211540        0.734250154011    
+     1.37079629592        0.732082538559    
+     1.37490047645        0.729820027483    
+     1.37900465698        0.727462255366    
+     1.38310883750        0.725008866918    
+     1.38721301803        0.722459518415    
+     1.39131719856        0.719813879156    
+     1.39542137908        0.717071632972    
+     1.39952555961        0.714232479768    
+     1.40362974014        0.711296137094    
+     1.40773392066        0.708262341752    
+     1.41183810119        0.705130851427    
+     1.41594228172        0.701901446364    
+     1.42004646224        0.698573931050    
+     1.42415064277        0.695148135951    
+     1.42825482330        0.691623919239    
+     1.43235900382        0.688001168572    
+     1.43646318435        0.684279802879    
+     1.44056736488        0.680459774170    
+     1.44467154540        0.676541069357    
+     1.44877572593        0.672523712092    
+     1.45287990646        0.668407764619    
+     1.45698408698        0.664193329633    
+     1.46108826751        0.659880552138    
+     1.46519244804        0.655469621324    
+     1.46929662856        0.650960772429    
+     1.47340080909        0.646354288610    
+     1.47750498962        0.641650502797    
+     1.48160917014        0.636849799551    
+     1.48571335067        0.631952616903    
+     1.48981753120        0.626959448178    
+     1.49392171172        0.621870843781    
+     1.49802589225        0.616687413006    
+     1.50213007278        0.611409825773    
+     1.50623425330        0.606038814349    
+     1.51033843383        0.600575175048    
+     1.51444261436        0.595019769844    
+     1.51854679488        0.589373528023    
+     1.52265097541        0.583637447708    
+     1.52675515594        0.577812597381    
+     1.53085933646        0.571900117286    
+     1.53496351699        0.565901220876    
+     1.53906769752        0.559817196102    
+     1.54317187804        0.553649406661    
+     1.54727605857        0.547399293191    
+     1.55138023910        0.541068374303    
+     1.55548441962        0.534658247682    
+     1.55958860015        0.528170590954    
+     1.56369278068        0.521607162525    
+     1.56779696120        0.514969802325    
+     1.57190114173        0.508260432363    
+     1.57600532226        0.501481057362    
+     1.58010950278        0.494633765092    
+     1.58421368331        0.487720726679    
+     1.58831786384        0.480744196789    
+     1.59242204436        0.473706513604    
+     1.59652622489        0.466610098856    
+     1.60063040542        0.459457457537    
+     1.60473458594        0.452251177563    
+     1.60883876647        0.444993929298    
+     1.61294294700        0.437688464853    
+     1.61704712753        0.430337617411    
+     1.62115130805        0.422944300226    
+     1.62525548858        0.415511505571    
+     1.62935966911        0.408042303432    
+     1.63346384963        0.400539840206    
+     1.63756803016        0.393007337089    
+     1.64167221069        0.385448088368    
+     1.64577639121        0.377865459542    
+     1.64988057174        0.370262885249    
+     1.65398475227        0.362643867088    
+     1.65808893279        0.355011971219    
+     1.66219311332        0.347370825808    
+     1.66629729385        0.339724118319    
+     1.67040147437        0.332075592617    
+     1.67450565490        0.324429045919    
+     1.67860983543        0.316788325566    
+     1.68271401595        0.309157325632    
+     1.68681819648        0.301539983370    
+     1.69092237701        0.293940275476    
+     1.69502655753        0.286362214245    
+     1.69913073806        0.278809843457    
+     1.70323491859        0.271287234216    
+     1.70733909911        0.263798480568    
+     1.71144327964        0.256347694969    
+     1.71554746017        0.248939003694    
+     1.71965164069        0.241576541882    
+     1.72375582122        0.234264448658    
+     1.72786000175        0.227006862006    
+     1.73196418227        0.219807913490    
+     1.73606836280        0.212671723007    
+     1.74017254333        0.205602393073    
+     1.74427672385        0.198604003317    
+     1.74838090438        0.191680604695    
+     1.75248508491        0.184836213561    
+     1.75658926543        0.178074805924    
+     1.76069344596        0.171400310995    
+     1.76479762649        0.164816605224    
+     1.76890180701        0.158327505963    
+     1.77300598754        0.151936765094    
+     1.77711016807        0.145648062593    
+     1.78121434859        0.139464999892    
+     1.78531852912        0.133391093431    
+     1.78942270965        0.127429767878    
+     1.79352689017        0.121584349415    
+     1.79763107070        0.115858058283    
+     1.80173525123        0.110254004755    
+     1.80583943175        0.104775177935    
+     1.80994361228        0.994244415813E-01
+     1.81404779281        0.942045265423E-01
+     1.81815197333        0.891180237975E-01
+     1.82225615386        0.841673800091E-01
+     1.82636033439        0.793548793948E-01
+     1.83046451491        0.746826545553E-01
+     1.83456869544        0.701526676487E-01
+     1.83867287597        0.657667061473E-01
+     1.84277705649        0.615263640572E-01
+     1.84688123702        0.574330842806E-01
+     1.85098541755        0.534880762417E-01
+     1.85508959807        0.496923565386E-01
+     1.85919377860        0.460467311988E-01
+     1.86329795913        0.425517890012E-01
+     1.86740213965        0.392079295358E-01
+     1.87150632018        0.360152070262E-01
+     1.87561050071        0.329735582420E-01
+     1.87971468123        0.300826432531E-01
+     1.88381886176        0.273418744505E-01
+     1.88792304229        0.247504093246E-01
+     1.89202722281        0.223070652855E-01
+     1.89613140334        0.200106553151E-01
+     1.90023558387        0.178594315823E-01
+     1.90433976440        0.158514441767E-01
+     1.90844394492        0.139844472807E-01
+     1.91254812545        0.122564110143E-01
+     1.91665230598        0.106633610461E-01
+     1.92075648650        0.920261680900E-02
+     1.92486066703        0.787074878455E-02
+     1.92896484756        0.666403290978E-02
+     1.93306902808        0.557843703144E-02
+     1.93717320861        0.460917866644E-02
+     1.94127738914        0.375249442821E-02
+     1.94538156966        0.300290451485E-02
+     1.94948575019        0.235492307241E-02
+     1.95358993072        0.180264844083E-02
+     1.95769411124        0.133975957853E-02
+     1.96179829177        0.959444392053E-03
+     1.96590247230        0.654743876545E-03
+     1.97000665282        0.418084118000E-03
+     1.97411083335        0.241641415514E-03
+     1.97821501388        0.117332090193E-03
+     1.98231919440        0.368961383393E-04
+     1.98642337493       -0.659725751177E-05
+     1.99052755546       -0.244576086282E-04
+     1.99463173598       -0.234651859046E-04
+     1.99873591651       -0.112052762116E-04
+     2.00284009704        0.542128265051E-05
+     2.00694427756        0.204329708175E-04
+     2.01104845809        0.214629836119E-04
+     2.01515263862        0.208999348128E-04
+     2.01925681914        0.112380664694E-04
+     2.02336099967       -0.695239450152E-05
+     2.02746518020       -0.311882319644E-04
+     2.03156936072       -0.568968417028E-04
+     2.03567354125       -0.341241043427E-04
+     2.03977772178       -0.363557189534E-04
+     2.04388190230       -0.270216422831E-04
+     2.04798608283         0.00000000000    
+</data>
+</radfunc>
+</projector>
+<projector 
+ l="                        2" 
+ n="                        1" 
+ ref_energy="    -12.5673336002" 
+ >
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.405319520407E-02 </delta> 
+<cutoff>      2.02254440683 </cutoff> 
+<data>
+     0.00000000000        -14.6354839121    
+    0.405319520407E-02    -14.6352985551    
+    0.810639040814E-02    -14.6342660581    
+    0.121595856122E-01    -14.6325443190    
+    0.162127808163E-01    -14.6301324625    
+    0.202659760203E-01    -14.6270294320    
+    0.243191712244E-01    -14.6232339970    
+    0.283723664285E-01    -14.6187447584    
+    0.324255616325E-01    -14.6135601505    
+    0.364787568366E-01    -14.6076784422    
+    0.405319520407E-01    -14.6010977404    
+    0.445851472447E-01    -14.5938159923    
+    0.486383424488E-01    -14.5858309878    
+    0.526915376529E-01    -14.5771403633    
+    0.567447328570E-01    -14.5677416047    
+    0.607979280610E-01    -14.5576320518    
+    0.648511232651E-01    -14.5468089006    
+    0.689043184692E-01    -14.5352692095    
+    0.729575136732E-01    -14.5230099023    
+    0.770107088773E-01    -14.5100277743    
+    0.810639040814E-01    -14.4963194962    
+    0.851170992854E-01    -14.4818816202    
+    0.891702944895E-01    -14.4667105857    
+    0.932234896936E-01    -14.4508027247    
+    0.972766848976E-01    -14.4341542688    
+    0.101329880102        -14.4167613548    
+    0.105383075306        -14.3986200328    
+    0.109436270510        -14.3797262721    
+    0.113489465714        -14.3600759695    
+    0.117542660918        -14.3396649557    
+    0.121595856122        -14.3184890039    
+    0.125649051326        -14.2965438400    
+    0.129702246530        -14.2738251467    
+    0.133755441734        -14.2503285767    
+    0.137808636938        -14.2260497571    
+    0.141861832142        -14.2009843030    
+    0.145915027346        -14.1751278230    
+    0.149968222551        -14.1484759314    
+    0.154021417755        -14.1210242569    
+    0.158074612959        -14.0927684515    
+    0.162127808163        -14.0637042025    
+    0.166181003367        -14.0338272406    
+    0.170234198571        -14.0031333522    
+    0.174287393775        -13.9716183875    
+    0.178340588979        -13.9392782736    
+    0.182393784183        -13.9061090220    
+    0.186446979387        -13.8721067422    
+    0.190500174591        -13.8372676502    
+    0.194553369795        -13.8015880800    
+    0.198606564999        -13.7650644936    
+    0.202659760203        -13.7276934930    
+    0.206712955407        -13.6894718289    
+    0.210766150612        -13.6503964125    
+    0.214819345816        -13.6104643253    
+    0.218872541020        -13.5696728304    
+    0.222925736224        -13.5280193807    
+    0.226978931428        -13.4855016317    
+    0.231032126632        -13.4421174487    
+    0.235085321836        -13.3978649189    
+    0.239138517040        -13.3527423594    
+    0.243191712244        -13.3067483275    
+    0.247244907448        -13.2598816297    
+    0.251298102652        -13.2121413307    
+    0.255351297856        -13.1635267619    
+    0.259404493060        -13.1140375307    
+    0.263457688264        -13.0636735274    
+    0.267510883468        -13.0124349350    
+    0.271564078673        -12.9603222358    
+    0.275617273877        -12.9073362188    
+    0.279670469081        -12.8534779877    
+    0.283723664285        -12.7987489667    
+    0.287776859489        -12.7431509079    
+    0.291830054693        -12.6866858975    
+    0.295883249897        -12.6293563615    
+    0.299936445101        -12.5711650708    
+    0.303989640305        -12.5121151471    
+    0.308042835509        -12.4522100681    
+    0.312096030713        -12.3914536713    
+    0.316149225917        -12.3298501584    
+    0.320202421121        -12.2674040991    
+    0.324255616325        -12.2041204348    
+    0.328308811530        -12.1400044817    
+    0.332362006734        -12.0750619332    
+    0.336415201938        -12.0092988619    
+    0.340468397142        -11.9427217225    
+    0.344521592346        -11.8753373524    
+    0.348574787550        -11.8071529730    
+    0.352627982754        -11.7381761911    
+    0.356681177958        -11.6684149983    
+    0.360734373162        -11.5978777710    
+    0.364787568366        -11.5265732711    
+    0.368840763570        -11.4545106433    
+    0.372893958774        -11.3816994149    
+    0.376947153978        -11.3081494940    
+    0.381000349182        -11.2338711672    
+    0.385053544386        -11.1588750969    
+    0.389106739591        -11.0831723189    
+    0.393159934795        -11.0067742388    
+    0.397213129999        -10.9296926283    
+    0.401266325203        -10.8519396211    
+    0.405319520407        -10.7735277089    
+    0.409372715611        -10.6944697361    
+    0.413425910815        -10.6147788951    
+    0.417479106019        -10.5344687210    
+    0.421532301223        -10.4535530849    
+    0.425585496427        -10.3720461890    
+    0.429638691631        -10.2899625597    
+    0.433691886835        -10.2073170410    
+    0.437745082039        -10.1241247876    
+    0.441798277243        -10.0404012575    
+    0.445851472447        -9.95616220515    
+    0.449904667652        -9.87142367342    
+    0.453957862856        -9.78620198571    
+    0.458011058060        -9.70051373815    
+    0.462064253264        -9.61437579126    
+    0.466117448468        -9.52780526133    
+    0.470170643672        -9.44081951227    
+    0.474223838876        -9.35343614667    
+    0.478277034080        -9.26567299689    
+    0.482330229284        -9.17754811608    
+    0.486383424488        -9.08907976910    
+    0.490436619692        -9.00028642330    
+    0.494489814896        -8.91118673914    
+    0.498543010100        -8.82179956072    
+    0.502596205304        -8.73214390621    
+    0.506649400509        -8.64223895816    
+    0.510702595713        -8.55210405365    
+    0.514755790917        -8.46175867442    
+    0.518808986121        -8.37122243692    
+    0.522862181325        -8.28051508220    
+    0.526915376529        -8.18965646563    
+    0.530968571733        -8.09866654632    
+    0.535021766937        -8.00756537672    
+    0.539074962141        -7.91637309221    
+    0.543128157345        -7.82510990006    
+    0.547181352549        -7.73379606844    
+    0.551234547753        -7.64245191536    
+    0.555287742957        -7.55109779732    
+    0.559340938161        -7.45975409798    
+    0.563394133365        -7.36844121637    
+    0.567447328570        -7.27717955502    
+    0.571500523774        -7.18598950795    
+    0.575553718978        -7.09489144841    
+    0.579606914182        -7.00390571649    
+    0.583660109386        -6.91305260651    
+    0.587713304590        -6.82235235404    
+    0.591766499794        -6.73182512297    
+    0.595819694998        -6.64149099243    
+    0.599872890202        -6.55136994329    
+    0.603926085406        -6.46148184468    
+    0.607979280610        -6.37184644044    
+    0.612032475814        -6.28248333534    
+    0.616085671018        -6.19341198122    
+    0.620138866222        -6.10465166331    
+    0.624192061426        -6.01622148509    
+    0.628245256631        -5.92814035435    
+    0.632298451835        -5.84042697623    
+    0.636351647039        -5.75309983508    
+    0.640404842243        -5.66617715457    
+    0.644458037447        -5.57967692743    
+    0.648511232651        -5.49361686088    
+    0.652564427855        -5.40801431231    
+    0.656617623059        -5.32288704376    
+    0.660670818263        -5.23825152502    
+    0.664724013467        -5.15412346122    
+    0.668777208671        -5.07051762063    
+    0.672830403875        -4.98745387711    
+    0.676883599079        -4.90495390859    
+    0.680936794283        -4.82302382538    
+    0.684989989488        -4.74166379893    
+    0.689043184692        -4.66089659939    
+    0.693096379896        -4.58075763400    
+    0.697149575100        -4.50129115556    
+    0.701202770304        -4.42255282293    
+    0.705255965508        -4.34455729876    
+    0.709309160712        -4.26727658064    
+    0.713362355916        -4.19069537646    
+    0.717415551120        -4.11480774431    
+    0.721468746324        -4.03961402785    
+    0.725521941528        -3.96513301874    
+    0.729575136732        -3.89137898277    
+    0.733628331936        -3.81836216602    
+    0.737681527140        -3.74608184978    
+    0.741734722344        -3.67454478163    
+    0.745787917549        -3.60376013507    
+    0.749841112753        -3.53373411289    
+    0.753894307957        -3.46447229157    
+    0.757947503161        -3.39598029509    
+    0.762000698365        -3.32826328890    
+    0.766053893569        -3.26132612574    
+    0.770107088773        -3.19517328791    
+    0.774160283977        -3.12980896613    
+    0.778213479181        -3.06523697902    
+    0.782266674385        -3.00146078737    
+    0.786319869589        -2.93848351826    
+    0.790373064793        -2.87630795575    
+    0.794426259997        -2.81493654788    
+    0.798479455201        -2.75437140062    
+    0.802532650405        -2.69461428204    
+    0.806585845610        -2.63566662713    
+    0.810639040814        -2.57752953803    
+    0.814692236018        -2.52020378785    
+    0.818745431222        -2.46368981934    
+    0.822798626426        -2.40798774783    
+    0.826851821630        -2.35309736889    
+    0.830905016834        -2.29901815983    
+    0.834958212038        -2.24574928495    
+    0.839011407242        -2.19328959672    
+    0.843064602446        -2.14163764086    
+    0.847117797650        -2.09079166150    
+    0.851170992854        -2.04074960550    
+    0.855224188058        -1.99150912755    
+    0.859277383262        -1.94306759534    
+    0.863330578467        -1.89542209500    
+    0.867383773671        -1.84856943681    
+    0.871436968875        -1.80250616107    
+    0.875490164079        -1.75722854414    
+    0.879543359283        -1.71273260469    
+    0.883596554487        -1.66901411011    
+    0.887649749691        -1.62606858308    
+    0.891702944895        -1.58389130828    
+    0.895756140099        -1.54247733923    
+    0.899809335303        -1.50182150525    
+    0.903862530507        -1.46191841851    
+    0.907915725711        -1.42276248120    
+    0.911968920915        -1.38434789277    
+    0.916022116119        -1.34666865721    
+    0.920075311323        -1.30971859045    
+    0.924128506528        -1.27349132773    
+    0.928181701732        -1.23798033106    
+    0.932234896936        -1.20317889667    
+    0.936288092140        -1.16908016248    
+    0.940341287344        -1.13567711561    
+    0.944394482548        -1.10296259976    
+    0.948447677752        -1.07092932275    
+    0.952500872956        -1.03956986389    
+    0.956554068160        -1.00887668133    
+    0.960607263364       -0.978842119452    
+    0.964660458568       -0.949458416098    
+    0.968713653772       -0.920717709795    
+    0.972766848976       -0.892612046907    
+    0.976820044180       -0.865133388682    
+    0.980873239384       -0.838273618244    
+    0.984926434589       -0.812024547456    
+    0.988979629793       -0.786377923719    
+    0.993032824997       -0.761325436644    
+    0.997086020201       -0.736858724647    
+     1.00113921540       -0.712969381395    
+     1.00519241061       -0.689648962153    
+     1.00924560581       -0.666888989984    
+     1.01329880102       -0.644680961844    
+     1.01735199622       -0.623016354534    
+     1.02140519143       -0.601886630520    
+     1.02545838663       -0.581283243611    
+     1.02951158183       -0.561197644500    
+     1.03356477704       -0.541621286168    
+     1.03761797224       -0.522545629126    
+     1.04167116745       -0.503962146527    
+     1.04572436265       -0.485862329113    
+     1.04977755785       -0.468237690017    
+     1.05383075306       -0.451079769423    
+     1.05788394826       -0.434380139050    
+     1.06193714347       -0.418130406505    
+     1.06599033867       -0.402322219471    
+     1.07004353387       -0.386947269741    
+     1.07409672908       -0.371997297115    
+     1.07814992428       -0.357464093119    
+     1.08220311949       -0.343339504598    
+     1.08625631469       -0.329615437125    
+     1.09030950989       -0.316283858286    
+     1.09436270510       -0.303336800802    
+     1.09841590030       -0.290766365511    
+     1.10246909551       -0.278564724194    
+     1.10652229071       -0.266724122266    
+     1.11057548591       -0.255236881314    
+     1.11462868112       -0.244095401492    
+     1.11868187632       -0.233292163783    
+     1.12273507153       -0.222819732120    
+     1.12678826673       -0.212670755376    
+     1.13084146194       -0.202837969212    
+     1.13489465714       -0.193314197802    
+     1.13894785234       -0.184092355430    
+     1.14300104755       -0.175165447951    
+     1.14705424275       -0.166526574139    
+     1.15110743796       -0.158168926913    
+     1.15516063316       -0.150085794446    
+     1.15921382836       -0.142270561159    
+     1.16326702357       -0.134716708602    
+     1.16732021877       -0.127417816231    
+     1.17137341398       -0.120367562066    
+     1.17542660918       -0.113559723261    
+     1.17947980438       -0.106988176577    
+     1.18353299959       -0.100646898734    
+     1.18758619479       -0.945299666980E-01
+     1.19163939000       -0.886315578630E-01
+     1.19569258520       -0.829459501428E-01
+     1.19974578040       -0.774675219941E-01
+     1.20379897561       -0.721907523418E-01
+     1.20785217081       -0.671102204317E-01
+     1.21190536602       -0.622206056169E-01
+     1.21595856122       -0.575166870462E-01
+     1.22001175642       -0.529933433113E-01
+     1.22406495163       -0.486455520123E-01
+     1.22811814683       -0.444683892660E-01
+     1.23217134204       -0.404570291504E-01
+     1.23622453724       -0.366067430936E-01
+     1.24027773244       -0.329128992047E-01
+     1.24433092765       -0.293709615579E-01
+     1.24838412285       -0.259764894217E-01
+     1.25243731806       -0.227251364429E-01
+     1.25649051326       -0.196126497919E-01
+     1.26054370847       -0.166348692517E-01
+     1.26459690367       -0.137877262828E-01
+     1.26865009887       -0.110672430450E-01
+     1.27270329408       -0.846953138413E-02
+     1.27675648928       -0.599079179075E-02
+     1.28080968449       -0.362731232545E-02
+     1.28486287969       -0.137546751870E-02
+     1.28891607489        0.768282755057E-03
+     1.29296927010        0.280739442635E-02
+     1.29702246530        0.474524040070E-02
+     1.30107566051        0.658511174796E-02
+     1.30512885571        0.833021890791E-02
+     1.30918205091        0.998369291297E-02
+     1.31323524612        0.115485866225E-01
+     1.31728844132        0.130278759697E-01
+     1.32134163653        0.144244612187E-01
+     1.32539483173        0.157411682291E-01
+     1.32944802693        0.169807497281E-01
+     1.33350122214        0.181458865875E-01
+     1.33755441734        0.192391891066E-01
+     1.34160761255        0.202631982927E-01
+     1.34566080775        0.212203871477E-01
+     1.34971400295        0.221131619521E-01
+     1.35376719816        0.229438635489E-01
+     1.35782039336        0.237147686228E-01
+     1.36187358857        0.244280909777E-01
+     1.36592678377        0.250859828083E-01
+     1.36997997898        0.256905359693E-01
+     1.37403317418        0.262437832298E-01
+     1.37808636938        0.267476995287E-01
+     1.38213956459        0.272042032164E-01
+     1.38619275979        0.276151572908E-01
+     1.39024595500        0.279823706190E-01
+     1.39429915020        0.283075991510E-01
+     1.39835234540        0.285925471216E-01
+     1.40240554061        0.288388682386E-01
+     1.40645873581        0.290481668627E-01
+     1.41051193102        0.292219991650E-01
+     1.41456512622        0.293618742800E-01
+     1.41861832142        0.294692554386E-01
+     1.42267151663        0.295455610911E-01
+     1.42672471183        0.295921660078E-01
+     1.43077790704        0.296104023705E-01
+     1.43483110224        0.296015608441E-01
+     1.43888429744        0.295668916374E-01
+     1.44293749265        0.295076055375E-01
+     1.44699068785        0.294248749367E-01
+     1.45104388306        0.293198348378E-01
+     1.45509707826        0.291935838424E-01
+     1.45915027346        0.290471851255E-01
+     1.46320346867        0.288816673846E-01
+     1.46725666387        0.286980257784E-01
+     1.47130985908        0.284972228444E-01
+     1.47536305428        0.282801894014E-01
+     1.47941624948        0.280478254276E-01
+     1.48346944469        0.278010009273E-01
+     1.48752263989        0.275405567764E-01
+     1.49157583510        0.272673055499E-01
+     1.49562903030        0.269820323346E-01
+     1.49968222551        0.266854955163E-01
+     1.50373542071        0.263784275568E-01
+     1.50778861591        0.260615357481E-01
+     1.51184181112        0.257355029536E-01
+     1.51589500632        0.254009883241E-01
+     1.51994820153        0.250586280030E-01
+     1.52400139673        0.247090358107E-01
+     1.52805459193        0.243528039118E-01
+     1.53210778714        0.239905034678E-01
+     1.53616098234        0.236226852669E-01
+     1.54021417755        0.232498803424E-01
+     1.54426737275        0.228726005720E-01
+     1.54832056795        0.224913392601E-01
+     1.55237376316        0.221065717069E-01
+     1.55642695836        0.217187557551E-01
+     1.56048015357        0.213283323269E-01
+     1.56453334877        0.209357259424E-01
+     1.56858654397        0.205413452219E-01
+     1.57263973918        0.201455833770E-01
+     1.57669293438        0.197488186795E-01
+     1.58074612959        0.193514149220E-01
+     1.58479932479        0.189537218619E-01
+     1.58885251999        0.185560756496E-01
+     1.59290571520        0.181587992480E-01
+     1.59695891040        0.177622028289E-01
+     1.60101210561        0.173665841655E-01
+     1.60506530081        0.169722290063E-01
+     1.60911849602        0.165794114412E-01
+     1.61317169122        0.161883942470E-01
+     1.61722488642        0.157994292280E-01
+     1.62127808163        0.154127575421E-01
+     1.62533127683        0.150286100142E-01
+     1.62938447204        0.146472074438E-01
+     1.63343766724        0.142687608906E-01
+     1.63749086244        0.138934719605E-01
+     1.64154405765        0.135215330752E-01
+     1.64559725285        0.131531277332E-01
+     1.64965044806        0.127884307642E-01
+     1.65370364326        0.124276085655E-01
+     1.65775683846        0.120708193381E-01
+     1.66181003367        0.117182133092E-01
+     1.66586322887        0.113699329477E-01
+     1.66991642408        0.110261131696E-01
+     1.67396961928        0.106868815405E-01
+     1.67802281448        0.103523584605E-01
+     1.68207600969        0.100226573515E-01
+     1.68612920489        0.969788483225E-02
+     1.69018240010        0.937814088699E-02
+     1.69423559530        0.906351902943E-02
+     1.69828879050        0.875410645613E-02
+     1.70234198571        0.844998419773E-02
+     1.70639518091        0.815122726219E-02
+     1.71044837612        0.785790477278E-02
+     1.71450157132        0.757008009997E-02
+     1.71855476652        0.728781098909E-02
+     1.72260796173        0.701114968178E-02
+     1.72666115693        0.674014303313E-02
+     1.73071435214        0.647483262453E-02
+     1.73476754734        0.621525486906E-02
+     1.73882074255        0.596144111862E-02
+     1.74287393775        0.571341776099E-02
+     1.74692713295        0.547120631579E-02
+     1.75098032816        0.523482352604E-02
+     1.75503352336        0.500428144639E-02
+     1.75908671857        0.477958752677E-02
+     1.76313991377        0.456074469507E-02
+     1.76719310897        0.434775143437E-02
+     1.77124630418        0.414060185819E-02
+     1.77529949938        0.393928578764E-02
+     1.77935269459        0.374378880066E-02
+     1.78340588979        0.355409233014E-02
+     1.78745908499        0.337017370869E-02
+     1.79151228020        0.319200623533E-02
+     1.79556547540        0.301955923539E-02
+     1.79961867061        0.285279809558E-02
+     1.80367186581        0.269168442047E-02
+     1.80772506101        0.253617592570E-02
+     1.81177825622        0.238622659711E-02
+     1.81583145142        0.224178671671E-02
+     1.81988464663        0.210280303568E-02
+     1.82393784183        0.196921830385E-02
+     1.82799103703        0.184097210818E-02
+     1.83204423224        0.171800041807E-02
+     1.83609742744        0.160023574316E-02
+     1.84015062265        0.148760717423E-02
+     1.84420381785        0.138003996845E-02
+     1.84825701306        0.127745755012E-02
+     1.85231020826        0.117977847562E-02
+     1.85636340346        0.108691847451E-02
+     1.86041659867        0.998790022300E-03
+     1.86446979387        0.915302388538E-03
+     1.86852298908        0.836362980345E-03
+     1.87257618428        0.761871687392E-03
+     1.87662937948        0.691730059634E-03
+     1.88068257469        0.625835267654E-03
+     1.88473576989        0.564081588499E-03
+     1.88878896510        0.506357009405E-03
+     1.89284216030        0.452557442443E-03
+     1.89689535550        0.402565341726E-03
+     1.90094855071        0.356263133874E-03
+     1.90500174591        0.313530184590E-03
+     1.90905494112        0.274242852745E-03
+     1.91310813632        0.238286327933E-03
+     1.91716133152        0.205505324347E-03
+     1.92121452673        0.175779236469E-03
+     1.92526772193        0.148974490894E-03
+     1.92932091714        0.124955553329E-03
+     1.93337411234        0.103584843916E-03
+     1.93742730754        0.847123703564E-04
+     1.94148050275        0.682185656044E-04
+     1.94553369795        0.539484108601E-04
+     1.94958689316        0.417532502493E-04
+     1.95364008836        0.314809474317E-04
+     1.95769328356        0.229759291157E-04
+     1.96174647877        0.161004002058E-04
+     1.96579967397        0.106471550595E-04
+     1.96985286918        0.647154133802E-05
+     1.97390606438        0.340954967313E-05
+     1.97795925959        0.129813235709E-05
+     1.98201245479       -0.234676799584E-07
+     1.98606564999       -0.767536168649E-06
+     1.99011884520       -0.970494404109E-06
+     1.99417204040       -0.819884164462E-06
+     1.99822523561       -0.450164299318E-06
+     2.00227843081        0.118203097346E-07
+     2.00633162601        0.447740041637E-06
+     2.01038482122        0.968978092690E-06
+     2.01443801642        0.105405166638E-05
+     2.01849121163        0.741638688150E-06
+     2.02254440683         0.00000000000    
+</data>
+</radfunc>
+</projector>
+<projector 
+ l="                        3" 
+ n="                        1" 
+ ref_energy="    -1.64999657007" 
+ >
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.410418052671E-02 </delta> 
+<cutoff>      2.04798608283 </cutoff> 
+<data>
+     0.00000000000        -2.34574468901    
+    0.410418052671E-02    -2.34617902780    
+    0.820836105343E-02    -2.34642056042    
+    0.123125415801E-01    -2.34682231847    
+    0.164167221069E-01    -2.34738360839    
+    0.205209026336E-01    -2.34810363690    
+    0.246250831603E-01    -2.34898152042    
+    0.287292636870E-01    -2.35001628588    
+    0.328334442137E-01    -2.35120687141    
+    0.369376247404E-01    -2.35255212660    
+    0.410418052671E-01    -2.35405081254    
+    0.451459857938E-01    -2.35570160224    
+    0.492501663206E-01    -2.35750308012    
+    0.533543468473E-01    -2.35945374267    
+    0.574585273740E-01    -2.36155199853    
+    0.615627079007E-01    -2.36379616811    
+    0.656668884274E-01    -2.36618448438    
+    0.697710689541E-01    -2.36871509255    
+    0.738752494808E-01    -2.37138605076    
+    0.779794300076E-01    -2.37419533030    
+    0.820836105343E-01    -2.37714081553    
+    0.861877910610E-01    -2.38022030495    
+    0.902919715877E-01    -2.38343151105    
+    0.943961521144E-01    -2.38677206162    
+    0.985003326411E-01    -2.39023949962    
+    0.102604513168        -2.39383128445    
+    0.106708693695        -2.39754479272    
+    0.110812874221        -2.40137731872    
+    0.114917054748        -2.40532607636    
+    0.119021235275        -2.40938819932    
+    0.123125415801        -2.41356074263    
+    0.127229596328        -2.41784068483    
+    0.131333776855        -2.42222492746    
+    0.135437957382        -2.42671029923    
+    0.139542137908        -2.43129355498    
+    0.143646318435        -2.43597137956    
+    0.147750498962        -2.44074038880    
+    0.151854679488        -2.44559713102    
+    0.155958860015        -2.45053809026    
+    0.160063040542        -2.45555968733    
+    0.164167221069        -2.46065828273    
+    0.168271401595        -2.46583017851    
+    0.172375582122        -2.47107162091    
+    0.176479762649        -2.47637880271    
+    0.180583943175        -2.48174786598    
+    0.184688123702        -2.48717490417    
+    0.188792304229        -2.49265596539    
+    0.192896484756        -2.49818705397    
+    0.197000665282        -2.50376413452    
+    0.201104845809        -2.50938313369    
+    0.205209026336        -2.51503994287    
+    0.209313206862        -2.52073042153    
+    0.213417387389        -2.52645039936    
+    0.217521567916        -2.53219567939    
+    0.221625748443        -2.53796204027    
+    0.225729928969        -2.54374523946    
+    0.229834109496        -2.54954101527    
+    0.233938290023        -2.55534509026    
+    0.238042470549        -2.56115317296    
+    0.242146651076        -2.56696096109    
+    0.246250831603        -2.57276414390    
+    0.250355012130        -2.57855840449    
+    0.254459192656        -2.58433942205    
+    0.258563373183        -2.59010287494    
+    0.262667553710        -2.59584444190    
+    0.266771734236        -2.60155980536    
+    0.270875914763        -2.60724465295    
+    0.274980095290        -2.61289467985    
+    0.279084275817        -2.61850559084    
+    0.283188456343        -2.62407310220    
+    0.287292636870        -2.62959294375    
+    0.291396817397        -2.63506086101    
+    0.295500997923        -2.64047261637    
+    0.299605178450        -2.64582399159    
+    0.303709358977        -2.65111078875    
+    0.307813539504        -2.65632883277    
+    0.311917720030        -2.66147397234    
+    0.316021900557        -2.66654208150    
+    0.320126081084        -2.67152906164    
+    0.324230261610        -2.67643084237    
+    0.328334442137        -2.68124338309    
+    0.332438622664        -2.68596267432    
+    0.336542803191        -2.69058473899    
+    0.340646983717        -2.69510563339    
+    0.344751164244        -2.69952144852    
+    0.348855344771        -2.70382831122    
+    0.352959525297        -2.70802238495    
+    0.357063705824        -2.71209987083    
+    0.361167886351        -2.71605700862    
+    0.365272066877        -2.71989007747    
+    0.369376247404        -2.72359539678    
+    0.373480427931        -2.72716932673    
+    0.377584608458        -2.73060826923    
+    0.381688788984        -2.73390866838    
+    0.385792969511        -2.73706701104    
+    0.389897150038        -2.74007982753    
+    0.394001330564        -2.74294369202    
+    0.398105511091        -2.74565522299    
+    0.402209691618        -2.74821108388    
+    0.406313872145        -2.75060798347    
+    0.410418052671        -2.75284267624    
+    0.414522233198        -2.75491196300    
+    0.418626413725        -2.75681269138    
+    0.422730594251        -2.75854175627    
+    0.426834774778        -2.76009610056    
+    0.430938955305        -2.76147271559    
+    0.435043135832        -2.76266864208    
+    0.439147316358        -2.76368097095    
+    0.443251496885        -2.76450684396    
+    0.447355677412        -2.76514345505    
+    0.451459857938        -2.76558805138    
+    0.455564038465        -2.76583793459    
+    0.459668218992        -2.76589046245    
+    0.463772399519        -2.76574305036    
+    0.467876580045        -2.76539317317    
+    0.471980760572        -2.76483836733    
+    0.476084941099        -2.76407623302    
+    0.480189121625        -2.76310443661    
+    0.484293302152        -2.76192071331    
+    0.488397482679        -2.76052287000    
+    0.492501663206        -2.75890878837    
+    0.496605843732        -2.75707642829    
+    0.500710024259        -2.75502383137    
+    0.504814204786        -2.75274912447    
+    0.508918385312        -2.75025052371    
+    0.513022565839        -2.74752633879    
+    0.517126746366        -2.74457497720    
+    0.521230926893        -2.74139494855    
+    0.525335107419        -2.73798486926    
+    0.529439287946        -2.73434346726    
+    0.533543468473        -2.73046958674    
+    0.537647648999        -2.72636219300    
+    0.541751829526        -2.72202037730    
+    0.545856010053        -2.71744336178    
+    0.549960190580        -2.71263050416    
+    0.554064371106        -2.70758130240    
+    0.558168551633        -2.70229539939    
+    0.562272732160        -2.69677258735    
+    0.566376912686        -2.69101281206    
+    0.570481093213        -2.68501617676    
+    0.574585273740        -2.67878294576    
+    0.578689454267        -2.67231354796    
+    0.582793634793        -2.66560857981    
+    0.586897815320        -2.65866880771    
+    0.591001995847        -2.65149517028    
+    0.595106176373        -2.64408878009    
+    0.599210356900        -2.63645092477    
+    0.603314537427        -2.62858306760    
+    0.607418717954        -2.62048684777    
+    0.611522898480        -2.61216407979    
+    0.615627079007        -2.60361675270    
+    0.619731259534        -2.59484702900    
+    0.623835440060        -2.58585724021    
+    0.627939620587        -2.57664988316    
+    0.632043801114        -2.56722763021    
+    0.636147981641        -2.55759332053    
+    0.640252162167        -2.54774990477    
+    0.644356342694        -2.53770048289    
+    0.648460523221        -2.52744839688    
+    0.652564703747        -2.51699678023    
+    0.656668884274        -2.50635037441    
+    0.660773064801        -2.49551355104    
+    0.664877245328        -2.48448404876    
+    0.668981425854        -2.47326767703    
+    0.673085606381        -2.46187531772    
+    0.677189786908        -2.45032160009    
+    0.681293967434        -2.43859147126    
+    0.685398147961        -2.42666295630    
+    0.689502328488        -2.41455958550    
+    0.693606509015        -2.40233109976    
+    0.697710689541        -2.39004836101    
+    0.701814870068        -2.37779863523    
+    0.705919050595        -2.36558200478    
+    0.710023231121        -2.35332054110    
+    0.714127411648        -2.34096791660    
+    0.718231592175        -2.32849672959    
+    0.722335772702        -2.31589455245    
+    0.726439953228        -2.30318722708    
+    0.730544133755        -2.29038930752    
+    0.734648314282        -2.27749083146    
+    0.738752494808        -2.26448849917    
+    0.742856675335        -2.25138016926    
+    0.746960855862        -2.23817199297    
+    0.751065036389        -2.22486432946    
+    0.755169216915        -2.21145725248    
+    0.759273397442        -2.19795194271    
+    0.763377577969        -2.18434945781    
+    0.767481758495        -2.17065090931    
+    0.771585939022        -2.15685754875    
+    0.775690119549        -2.14297079823    
+    0.779794300076        -2.12899210526    
+    0.783898480602        -2.11492298287    
+    0.788002661129        -2.10076506097    
+    0.792106841656        -2.08652006209    
+    0.796211022182        -2.07218979014    
+    0.800315202709        -2.05777613356    
+    0.804419383236        -2.04328105987    
+    0.808523563763        -2.02870661514    
+    0.812627744289        -2.01405491912    
+    0.816731924816        -1.99932816154    
+    0.820836105343        -1.98452859832    
+    0.824940285869        -1.96965854771    
+    0.829044466396        -1.95472038626    
+    0.833148646923        -1.93971654478    
+    0.837252827450        -1.92464950436    
+    0.841357007976        -1.90952179235    
+    0.845461188503        -1.89433597834    
+    0.849565369030        -1.87909467031    
+    0.853669549556        -1.86380051078    
+    0.857773730083        -1.84845617300    
+    0.861877910610        -1.83306435732    
+    0.865982091137        -1.81762778760    
+    0.870086271663        -1.80214920773    
+    0.874190452190        -1.78663137825    
+    0.878294632717        -1.77107707314    
+    0.882398813243        -1.75548907663    
+    0.886502993770        -1.73987018023    
+    0.890607174297        -1.72422317977    
+    0.894711354824        -1.70855087265    
+    0.898815535350        -1.69285605514    
+    0.902919715877        -1.67714151986    
+    0.907023896404        -1.66141005328    
+    0.911128076930        -1.64566443346    
+    0.915232257457        -1.62990742779    
+    0.919336437984        -1.61414179096    
+    0.923440618511        -1.59837026288    
+    0.927544799037        -1.58259556683    
+    0.931648979564        -1.56682040763    
+    0.935753160091        -1.55104747002    
+    0.939857340617        -1.53527941699    
+    0.943961521144        -1.51951888834    
+    0.948065701671        -1.50376849926    
+    0.952169882198        -1.48803083897    
+    0.956274062724        -1.47230846952    
+    0.960378243251        -1.45660392465    
+    0.964482423778        -1.44091970866    
+    0.968586604304        -1.42525829545    
+    0.972690784831        -1.40962212763    
+    0.976794965358        -1.39401361563    
+    0.980899145885        -1.37843513692    
+    0.985003326411        -1.36288903529    
+    0.989107506938        -1.34737762019    
+    0.993211687465        -1.33190316613    
+    0.997315867991        -1.31646791218    
+     1.00142004852        -1.30107406147    
+     1.00552422904        -1.28572378076    
+     1.00962840957        -1.27041920009    
+     1.01373259010        -1.25516241246    
+     1.01783677062        -1.23995547356    
+     1.02194095115        -1.22480040142    
+     1.02604513168        -1.20969917634    
+     1.03014931221        -1.19465374061    
+     1.03425349273        -1.17966599856    
+     1.03835767326        -1.16473781642    
+     1.04246185379        -1.14987102235    
+     1.04656603431        -1.13506740631    
+     1.05067021484        -1.12032872017    
+     1.05477439537        -1.10565667774    
+     1.05887857589        -1.09105295488    
+     1.06298275642        -1.07651918957    
+     1.06708693695        -1.06205698208    
+     1.07119111747        -1.04766789514    
+     1.07529529800        -1.03335345412    
+     1.07939947853        -1.01911514724    
+     1.08350365905        -1.00495442580    
+     1.08760783958       -0.990872704443    
+     1.09171202011       -0.976871361398    
+     1.09581620063       -0.962951738795    
+     1.09992038116       -0.949115142925    
+     1.10402456169       -0.935362844575    
+     1.10812874221       -0.921696079338    
+     1.11223292274       -0.908116047974    
+     1.11633710327       -0.894623916753    
+     1.12044128379       -0.881220817809    
+     1.12454546432       -0.867907849527    
+     1.12864964485       -0.854686076894    
+     1.13275382537       -0.841556531900    
+     1.13685800590       -0.828520213922    
+     1.14096218643       -0.815578090126    
+     1.14506636695       -0.802731095862    
+     1.14917054748       -0.789980135078    
+     1.15327472801       -0.777326080717    
+     1.15737890853       -0.764769775140    
+     1.16148308906       -0.752312030533    
+     1.16558726959       -0.739953629319    
+     1.16969145011       -0.727695324576    
+     1.17379563064       -0.715537840443    
+     1.17789981117       -0.703481872538    
+     1.18200399169       -0.691528088371    
+     1.18610817222       -0.679677127742    
+     1.19021235275       -0.667929603159    
+     1.19431653327       -0.656286100223    
+     1.19842071380       -0.644747178057    
+     1.20252489433       -0.633313369680    
+     1.20662907485       -0.621985182406    
+     1.21073325538       -0.610763098231    
+     1.21483743591       -0.599647574204    
+     1.21894161643       -0.588639042807    
+     1.22304579696       -0.577737912309    
+     1.22714997749       -0.566944567162    
+     1.23125415801       -0.556259368294    
+     1.23535833854       -0.545682653513    
+     1.23946251907       -0.535214737772    
+     1.24356669959       -0.524855913605    
+     1.24767088012       -0.514606451396    
+     1.25177506065       -0.504466599700    
+     1.25587924117       -0.494436585593    
+     1.25998342170       -0.484516614905    
+     1.26408760223       -0.474706872550    
+     1.26819178275       -0.465007522802    
+     1.27229596328       -0.455418709561    
+     1.27640014381       -0.445940556631    
+     1.28050432433       -0.436573167965    
+     1.28460850486       -0.427316627925    
+     1.28871268539       -0.418171001501    
+     1.29281686591       -0.409136334573    
+     1.29692104644       -0.400212654113    
+     1.30102522697       -0.391399968404    
+     1.30512940749       -0.382698267250    
+     1.30923358802       -0.374107522157    
+     1.31333776855       -0.365627686527    
+     1.31744194908       -0.357258695840    
+     1.32154612960       -0.349000467813    
+     1.32565031013       -0.340852902573    
+     1.32975449066       -0.332815882801    
+     1.33385867118       -0.324889273879    
+     1.33796285171       -0.317072924028    
+     1.34206703224       -0.309366664431    
+     1.34617121276       -0.301770309362    
+     1.35027539329       -0.294283656290    
+     1.35437957382       -0.286906485989    
+     1.35848375434       -0.279638562636    
+     1.36258793487       -0.272479633903    
+     1.36669211540       -0.265429431039    
+     1.37079629592       -0.258487668949    
+     1.37490047645       -0.251654046262    
+     1.37900465698       -0.244928245393    
+     1.38310883750       -0.238309932607    
+     1.38721301803       -0.231798758067    
+     1.39131719856       -0.225394355881    
+     1.39542137908       -0.219096344147    
+     1.39952555961       -0.212904324987    
+     1.40362974014       -0.206817884577    
+     1.40773392066       -0.200836593179    
+     1.41183810119       -0.194960005166    
+     1.41594228172       -0.189187659036    
+     1.42004646224       -0.183519077432    
+     1.42415064277       -0.177953767162    
+     1.42825482330       -0.172491219197    
+     1.43235900382       -0.167130908691    
+     1.43646318435       -0.161872294984    
+     1.44056736488       -0.156714821609    
+     1.44467154540       -0.151657916301    
+     1.44877572593       -0.146700990999    
+     1.45287990646       -0.141843441856    
+     1.45698408698       -0.137084649243    
+     1.46108826751       -0.132423977760    
+     1.46519244804       -0.127860776247    
+     1.46929662856       -0.123394377795    
+     1.47340080909       -0.119024099762    
+     1.47750498962       -0.114749243807    
+     1.48160917014       -0.110569095891    
+     1.48571335067       -0.106482926324    
+     1.48981753120       -0.102489989794    
+     1.49392171172       -0.985895254169E-01
+     1.49802589225       -0.947807567779E-01
+     1.50213007278       -0.910628919952E-01
+     1.50623425330       -0.874351237846E-01
+     1.51033843383       -0.838966295301E-01
+     1.51444261436       -0.804465713929E-01
+     1.51854679488       -0.770840963710E-01
+     1.52265097541       -0.738083364297E-01
+     1.52675515594       -0.706184086143E-01
+     1.53085933646       -0.675134151926E-01
+     1.53496351699       -0.644924437846E-01
+     1.53906769752       -0.615545675317E-01
+     1.54317187804       -0.586988452680E-01
+     1.54727605857       -0.559243217039E-01
+     1.55138023910       -0.532300276536E-01
+     1.55548441962       -0.506149802184E-01
+     1.55958860015       -0.480781830448E-01
+     1.56369278068       -0.456186265722E-01
+     1.56779696120       -0.432352882996E-01
+     1.57190114173       -0.409271330832E-01
+     1.57600532226       -0.386931134218E-01
+     1.58010950278       -0.365321697885E-01
+     1.58421368331       -0.344432309668E-01
+     1.58831786384       -0.324252144063E-01
+     1.59242204436       -0.304770265905E-01
+     1.59652622489       -0.285975634335E-01
+     1.60063040542       -0.267857106807E-01
+     1.60473458594       -0.250403443321E-01
+     1.60883876647       -0.233603310830E-01
+     1.61294294700       -0.217445287629E-01
+     1.61704712753       -0.201917868269E-01
+     1.62115130805       -0.187009468222E-01
+     1.62525548858       -0.172708428999E-01
+     1.62935966911       -0.159003022693E-01
+     1.63346384963       -0.145881457985E-01
+     1.63756803016       -0.133331884969E-01
+     1.64167221069       -0.121342400670E-01
+     1.64577639121       -0.109901054708E-01
+     1.64988057174       -0.989958541883E-02
+     1.65398475227       -0.886147703913E-02
+     1.65808893279       -0.787457438613E-02
+     1.66219311332       -0.693766903072E-02
+     1.66629729385       -0.604955065954E-02
+     1.67040147437       -0.520900757997E-02
+     1.67450565490       -0.441482742226E-02
+     1.67860983543       -0.366579765576E-02
+     1.68271401595       -0.296070619089E-02
+     1.68681819648       -0.229834196484E-02
+     1.69092237701       -0.167749554089E-02
+     1.69502655753       -0.109695962183E-02
+     1.69913073806       -0.555529739697E-03
+     1.70323491859       -0.520047572453E-04
+     1.70733909911        0.414812544041E-03
+     1.71144327964        0.846114892343E-03
+     1.71554746017        0.124308999024E-02
+     1.71965164069        0.160691991864E-02
+     1.72375582122        0.193878061325E-02
+     1.72786000175        0.223984131394E-02
+     1.73196418227        0.251126403248E-02
+     1.73606836280        0.275420298971E-02
+     1.74017254333        0.296980413210E-02
+     1.74427672385        0.315920457872E-02
+     1.74838090438        0.332353210779E-02
+     1.75248508491        0.346390464807E-02
+     1.75658926543        0.358142973137E-02
+     1.76069344596        0.367720403188E-02
+     1.76479762649        0.375231282400E-02
+     1.76890180701        0.380782947927E-02
+     1.77300598754        0.384481495536E-02
+     1.77711016807        0.386431741481E-02
+     1.78121434859        0.386737112698E-02
+     1.78531852912        0.385499687659E-02
+     1.78942270965        0.382820082409E-02
+     1.79352689017        0.378797411408E-02
+     1.79763107070        0.373529165874E-02
+     1.80173525123        0.367111443812E-02
+     1.80583943175        0.359638454861E-02
+     1.80994361228        0.351202741298E-02
+     1.81404779281        0.341895056251E-02
+     1.81815197333        0.331804305139E-02
+     1.82225615386        0.321017809895E-02
+     1.82636033439        0.309619814971E-02
+     1.83046451491        0.297693714341E-02
+     1.83456869544        0.285320465009E-02
+     1.83867287597        0.272578872562E-02
+     1.84277705649        0.259544098498E-02
+     1.84688123702        0.246293533143E-02
+     1.85098541755        0.232897629075E-02
+     1.85508959807        0.219425557821E-02
+     1.85919377860        0.205943822109E-02
+     1.86329795913        0.192516195501E-02
+     1.86740213965        0.179207881516E-02
+     1.87150632018        0.166067249579E-02
+     1.87561050071        0.153154294417E-02
+     1.87971468123        0.140521982629E-02
+     1.88381886176        0.128220496796E-02
+     1.88792304229        0.116297061274E-02
+     1.89202722281        0.104786333466E-02
+     1.89613140334        0.937516659823E-03
+     1.90023558387        0.832185089078E-03
+     1.90433976440        0.732184440702E-03
+     1.90844394492        0.637784936923E-03
+     1.91254812545        0.549426566401E-03
+     1.91665230598        0.466822664286E-03
+     1.92075648650        0.390311031557E-03
+     1.92486066703        0.320007238607E-03
+     1.92896484756        0.255997494943E-03
+     1.93306902808        0.198336719053E-03
+     1.93717320861        0.146871648937E-03
+     1.94127738914        0.101964681073E-03
+     1.94538156966        0.633811653108E-04
+     1.94948575019        0.309872633901E-04
+     1.95358993072        0.458240607435E-05
+     1.95769411124       -0.161045760647E-04
+     1.96179829177       -0.313930596886E-04
+     1.96590247230       -0.417549598357E-04
+     1.97000665282       -0.476543477363E-04
+     1.97411083335       -0.496446883077E-04
+     1.97821501388       -0.483384664627E-04
+     1.98231919440       -0.443974981868E-04
+     1.98642337493       -0.383206444327E-04
+     1.99052755546       -0.312589850896E-04
+     1.99463173598       -0.237489685616E-04
+     1.99873591651       -0.164742462672E-04
+     2.00284009704       -0.100554357330E-04
+     2.00694427756       -0.501853685853E-05
+     2.01104845809       -0.285822859771E-05
+     2.01515263862       -0.151814671852E-05
+     2.01925681914       -0.187744042748E-05
+     2.02336099967       -0.369144717864E-05
+     2.02746518020       -0.648920542217E-05
+     2.03156936072       -0.955036187011E-05
+     2.03567354125       -0.623771098613E-05
+     2.03977772178       -0.609793953392E-05
+     2.04388190230       -0.429424725625E-05
+     2.04798608283         0.00000000000    
+</data>
+</radfunc>
+</projector>
+</kbs>
+<vna>
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.120255885413E-01 </delta> 
+<cutoff>      6.00076868209 </cutoff> 
+<data>
+     0.00000000000        -4.50780512073    
+    0.120255885413E-01    -4.50685303869    
+    0.240511770825E-01    -4.50400713993    
+    0.360767656238E-01    -4.49928340387    
+    0.481023541650E-01    -4.49269844704    
+    0.601279427063E-01    -4.48426957873    
+    0.721535312475E-01    -4.47401488359    
+    0.841791197888E-01    -4.46195332930    
+    0.962047083301E-01    -4.44810489722    
+    0.108230296871        -4.43249073353    
+    0.120255885413        -4.41513331758    
+    0.132281473954        -4.39605664445    
+    0.144307062495        -4.37528641783    
+    0.156332651036        -4.35285024951    
+    0.168358239578        -4.32877786139    
+    0.180383828119        -4.30310128576    
+    0.192409416660        -4.27585505972    
+    0.204435005201        -4.24707640940    
+    0.216460593743        -4.21680541991    
+    0.228486182284        -4.18508518688    
+    0.240511770825        -4.15196194587    
+    0.252537359366        -4.11748517595    
+    0.264562947908        -4.08170767430    
+    0.276588536449        -4.04468559893    
+    0.288614124990        -4.00647847700    
+    0.300639713531        -3.96714917684    
+    0.312665302073        -3.92676384222    
+    0.324690890614        -3.88539178778    
+    0.336716479155        -3.84310535547    
+    0.348742067696        -3.79997973204    
+    0.360767656238        -3.75609272840    
+    0.372793244779        -3.71152452229    
+    0.384818833320        -3.66635736607    
+    0.396844421861        -3.62067526209    
+    0.408870010403        -3.57456360872    
+    0.420895598944        -3.52810882030    
+    0.432921187485        -3.48139792495    
+    0.444946776026        -3.43451814433    
+    0.456972364568        -3.38755645998    
+    0.468997953109        -3.34059917079    
+    0.481023541650        -3.29373144647    
+    0.493049130192        -3.24703688213    
+    0.505074718733        -3.20059705865    
+    0.517100307274        -3.15449111397    
+    0.529125895815        -3.10879532973    
+    0.541151484357        -3.06358273810    
+    0.553177072898        -3.01892275271    
+    0.565202661439        -2.97488082773    
+    0.577228249980        -2.93151814861    
+    0.589253838522        -2.88889135729    
+    0.601279427063        -2.84705231471    
+    0.613305015604        -2.80604790246    
+    0.625330604145        -2.76591986513    
+    0.637356192687        -2.72670469434    
+    0.649381781228        -2.68843355481    
+    0.661407369769        -2.65113225244    
+    0.673432958310        -2.61482124364    
+    0.685458546852        -2.57951568487    
+    0.697484135393        -2.54522552078    
+    0.709509723934        -2.51195560889    
+    0.721535312475        -2.47970587846    
+    0.733560901017        -2.44847152091    
+    0.745586489558        -2.41824320863    
+    0.757612078099        -2.38900733916    
+    0.769637666640        -2.36074630126    
+    0.781663255182        -2.33343875949    
+    0.793688843723        -2.30705995371    
+    0.805714432264        -2.28158201005    
+    0.817740020805        -2.25697425980    
+    0.829765609347        -2.23320356303    
+    0.841791197888        -2.21023463350    
+    0.853816786429        -2.18803036189    
+    0.865842374970        -2.16655213462    
+    0.877867963512        -2.14576014544    
+    0.889893552053        -2.12561369758    
+    0.901919140594        -2.10607149434    
+    0.913944729135        -2.08709191620    
+    0.925970317677        -2.06863328298    
+    0.937995906218        -2.05065409979    
+    0.950021494759        -2.03311328569    
+    0.962047083301        -2.01597038439    
+    0.974072671842        -1.99918575650    
+    0.986098260383        -1.98272075298    
+    0.998123848924        -1.96653786994    
+     1.01014943747        -1.95060088468    
+     1.02217502601        -1.93487497377    
+     1.03420061455        -1.91932681305    
+     1.04622620309        -1.90392466050    
+     1.05825179163        -1.88863842334    
+     1.07027738017        -1.87343970876    
+     1.08230296871        -1.85830186068    
+     1.09432855725        -1.84319998256    
+     1.10635414580        -1.82811094798    
+     1.11837973434        -1.81301339914    
+     1.13040532288        -1.79788773540    
+     1.14243091142        -1.78271609201    
+     1.15445649996        -1.76748231046    
+     1.16648208850        -1.75217190167    
+     1.17850767704        -1.73677200208    
+     1.19053326558        -1.72127132489    
+     1.20255885413        -1.70566010640    
+     1.21458444267        -1.68993004815    
+     1.22661003121        -1.67407425633    
+     1.23863561975        -1.65808717903    
+     1.25066120829        -1.64196454100    
+     1.26268679683        -1.62570327803    
+     1.27471238537        -1.60930147054    
+     1.28673797391        -1.59275827698    
+     1.29876356246        -1.57607386737    
+     1.31078915100        -1.55924935798    
+     1.32281473954        -1.54228674688    
+     1.33484032808        -1.52518885062    
+     1.34686591662        -1.50795924273    
+     1.35889150516        -1.49060219380    
+     1.37091709370        -1.47312261365    
+     1.38294268224        -1.45552599552    
+     1.39496827079        -1.43781836230    
+     1.40699385933        -1.42000621513    
+     1.41901944787        -1.40209648437    
+     1.43104503641        -1.38409648256    
+     1.44307062495        -1.36601386011    
+     1.45509621349        -1.34785656310    
+     1.46712180203        -1.32963279336    
+     1.47914739057        -1.31135097089    
+     1.49117297912        -1.29301969850    
+     1.50319856766        -1.27464772848    
+     1.51522415620        -1.25624393168    
+     1.52724974474        -1.23781726853    
+     1.53927533328        -1.21937676164    
+     1.55130092182        -1.20093147090    
+     1.56332651036        -1.18249047024    
+     1.57535209890        -1.16406282586    
+     1.58737768745        -1.14565757643    
+     1.59940327599        -1.12728371493    
+     1.61142886453        -1.10895017186    
+     1.62345445307        -1.09066579993    
+     1.63548004161        -1.07243936033    
+     1.64750563015        -1.05427951013    
+     1.65953121869        -1.03619479094    
+     1.67155680723        -1.01819361888    
+     1.68358239578        -1.00028427560    
+     1.69560798432       -0.982474900368    
+     1.70763357286       -0.964773483189    
+     1.71965916140       -0.947187858764    
+     1.73168474994       -0.929725701459    
+     1.74371033848       -0.912394521119    
+     1.75573592702       -0.895201659604    
+     1.76776151556       -0.878154288090    
+     1.77978710411       -0.861259405018    
+     1.79181269265       -0.844523834726    
+     1.80383828119       -0.827954226705    
+     1.81586386973       -0.811557055395    
+     1.82788945827       -0.795338620520    
+     1.83991504681       -0.779305047876    
+     1.85194063535       -0.763462290529    
+     1.86396622389       -0.747816130472    
+     1.87599181244       -0.732372180699    
+     1.88801740098       -0.717135887525    
+     1.90004298952       -0.702112533162    
+     1.91206857806       -0.687307238664    
+     1.92409416660       -0.672724967256    
+     1.93611975514       -0.658370527528    
+     1.94814534368       -0.644248576937    
+     1.96017093222       -0.630363625574    
+     1.97219652077       -0.616720039209    
+     1.98422210931       -0.603322064904    
+     1.99624769785       -0.590173746859    
+     2.00827328639       -0.577278989685    
+     2.02029887493       -0.564641843139    
+     2.03232446347       -0.552266107509    
+     2.04435005201       -0.540154913156    
+     2.05637564055       -0.528309907243    
+     2.06840122910       -0.516730691943    
+     2.08042681764       -0.505415627022    
+     2.09245240618       -0.494357458466    
+     2.10447799472       -0.483542463820    
+     2.11650358326       -0.472962351681    
+     2.12852917180       -0.462616247747    
+     2.14055476034       -0.452500390688    
+     2.15258034888       -0.442607305039    
+     2.16460593743       -0.432930941435    
+     2.17663152597       -0.423465700561    
+     2.18865711451       -0.414207605805    
+     2.20068270305       -0.405151710079    
+     2.21270829159       -0.396292934371    
+     2.22473388013       -0.387626645793    
+     2.23675946867       -0.379148404913    
+     2.24878505721       -0.370853834707    
+     2.26081064576       -0.362738686389    
+     2.27283623430       -0.354798807724    
+     2.28486182284       -0.347030176518    
+     2.29688741138       -0.339428879071    
+     2.30891299992       -0.331991104305    
+     2.32093858846       -0.324713142931    
+     2.33296417700       -0.317591384141    
+     2.34498976554       -0.310622312017    
+     2.35701535409       -0.303802502484    
+     2.36904094263       -0.297128620178    
+     2.38106653117       -0.290597415571    
+     2.39309211971       -0.284205722291    
+     2.40511770825       -0.277950454406    
+     2.41714329679       -0.271828603918    
+     2.42916888533       -0.265837199808    
+     2.44119447388       -0.259973505046    
+     2.45322006242       -0.254234648739    
+     2.46524565096       -0.248618016947    
+     2.47727123950       -0.243120158800    
+     2.48929682804       -0.237738347650    
+     2.50132241658       -0.232473901015    
+     2.51334800512       -0.227322359758    
+     2.52537359366       -0.222279410968    
+     2.53739918221       -0.217332898934    
+     2.54942477075       -0.212480097867    
+     2.56145035929       -0.207729320175    
+     2.57347594783       -0.203082244692    
+     2.58550153637       -0.198540666522    
+     2.59752712491       -0.194097135088    
+     2.60955271345       -0.189749475214    
+     2.62157830199       -0.185494327149    
+     2.63360389054       -0.181331351320    
+     2.64562947908       -0.177257970873    
+     2.65765506762       -0.173272260101    
+     2.66968065616       -0.169371965761    
+     2.68170624470       -0.165555276897    
+     2.69373183324       -0.161820335031    
+     2.70575742178       -0.158165336068    
+     2.71778301032       -0.154588527414    
+     2.72980859887       -0.151088205365    
+     2.74183418741       -0.147662712657    
+     2.75385977595       -0.144310436271    
+     2.76588536449       -0.141029805418    
+     2.77791095303       -0.137819289639    
+     2.78993654157       -0.134677397100    
+     2.80196213011       -0.131602673003    
+     2.81398771865       -0.128593698094    
+     2.82601330720       -0.125649087309    
+     2.83803889574       -0.122767488498    
+     2.85006448428       -0.119947581237    
+     2.86209007282       -0.117188075718    
+     2.87411566136       -0.114487711725    
+     2.88614124990       -0.111845257632    
+     2.89816683844       -0.109259509505    
+     2.91019242698       -0.106729290235    
+     2.92221801553       -0.104253448727    
+     2.93424360407       -0.101830859125    
+     2.94626919261       -0.994604200888E-01
+     2.95829478115       -0.971410541025E-01
+     2.97032036969       -0.948717068102E-01
+     2.98234595823       -0.926513464084E-01
+     2.99437154677       -0.904789630055E-01
+     3.00639713531       -0.883535680777E-01
+     3.01842272386       -0.862741938955E-01
+     3.03044831240       -0.842398930398E-01
+     3.04247390094       -0.822497378710E-01
+     3.05449948948       -0.803028200697E-01
+     3.06652507802       -0.783982501330E-01
+     3.07855066656       -0.765351569449E-01
+     3.09057625510       -0.747126873341E-01
+     3.10260184364       -0.729300056617E-01
+     3.11462743219       -0.711862934147E-01
+     3.12665302073       -0.694807488105E-01
+     3.13867860927       -0.678125864282E-01
+     3.15070419781       -0.661810368372E-01
+     3.16272978635       -0.645853462415E-01
+     3.17475537489       -0.630247761412E-01
+     3.18678096343       -0.614986029826E-01
+     3.19880655197       -0.600061178412E-01
+     3.21083214052       -0.585466261018E-01
+     3.22285772906       -0.571194471524E-01
+     3.23488331760       -0.557239140840E-01
+     3.24690890614       -0.543593733967E-01
+     3.25893449468       -0.530251847210E-01
+     3.27096008322       -0.517207205391E-01
+     3.28298567176       -0.504453659144E-01
+     3.29501126030       -0.491985182337E-01
+     3.30703684885       -0.479795869416E-01
+     3.31906243739       -0.467879932971E-01
+     3.33108802593       -0.456231701248E-01
+     3.34311361447       -0.444845615817E-01
+     3.35513920301       -0.433716229226E-01
+     3.36716479155       -0.422838202729E-01
+     3.37919038009       -0.412206304080E-01
+     3.39121596863       -0.401815405343E-01
+     3.40324155718       -0.391660480789E-01
+     3.41526714572       -0.381736604832E-01
+     3.42729273426       -0.372038949985E-01
+     3.43931832280       -0.362562784894E-01
+     3.45134391134       -0.353303472413E-01
+     3.46336949988       -0.344256467677E-01
+     3.47539508842       -0.335417316318E-01
+     3.48742067696       -0.326781652604E-01
+     3.49944626551       -0.318345197743E-01
+     3.51147185405       -0.310103758039E-01
+     3.52349744259       -0.302053223263E-01
+     3.53552303113       -0.294189564989E-01
+     3.54754861967       -0.286508834922E-01
+     3.55957420821       -0.279007163401E-01
+     3.57159979675       -0.271680757795E-01
+     3.58362538529       -0.264525900989E-01
+     3.59565097384       -0.257538949906E-01
+     3.60767656238       -0.250716334029E-01
+     3.61970215092       -0.244054553968E-01
+     3.63172773946       -0.237550180110E-01
+     3.64375332800       -0.231199851171E-01
+     3.65577891654       -0.225000272895E-01
+     3.66780450508       -0.218948216749E-01
+     3.67983009362       -0.213040518561E-01
+     3.69185568217       -0.207274077383E-01
+     3.70388127071       -0.201645854189E-01
+     3.71590685925       -0.196152870661E-01
+     3.72793244779       -0.190792208078E-01
+     3.73995803633       -0.185561006032E-01
+     3.75198362487       -0.180456461365E-01
+     3.76400921341       -0.175475827048E-01
+     3.77603480195       -0.170616411029E-01
+     3.78806039050       -0.165875575269E-01
+     3.80008597904       -0.161250734626E-01
+     3.81211156758       -0.156739355826E-01
+     3.82413715612       -0.152338956523E-01
+     3.83616274466       -0.148047104196E-01
+     3.84818833320       -0.143861415252E-01
+     3.86021392174       -0.139779554075E-01
+     3.87223951028       -0.135799232040E-01
+     3.88426509883       -0.131918206699E-01
+     3.89629068737       -0.128134280828E-01
+     3.90831627591       -0.124445301561E-01
+     3.92034186445       -0.120849159552E-01
+     3.93236745299       -0.117343788102E-01
+     3.94439304153       -0.113927162353E-01
+     3.95641863007       -0.110597298463E-01
+     3.96844421861       -0.107352252857E-01
+     3.98046980716       -0.104190121377E-01
+     3.99249539570       -0.101109038567E-01
+     4.00452098424       -0.981071769327E-02
+     4.01654657278       -0.951827461230E-02
+     4.02857216132       -0.923339923603E-02
+     4.04059774986       -0.895591976454E-02
+     4.05262333840       -0.868566790598E-02
+     4.06464892694       -0.842247882122E-02
+     4.07667451549       -0.816619103766E-02
+     4.08870010403       -0.791664639603E-02
+     4.10072569257       -0.767368998711E-02
+     4.11275128111       -0.743717007561E-02
+     4.12477686965       -0.720693805992E-02
+     4.13680245819       -0.698284839980E-02
+     4.14882804673       -0.676475856020E-02
+     4.16085363527       -0.655252895085E-02
+     4.17287922382       -0.634602288122E-02
+     4.18490481236       -0.614510648481E-02
+     4.19693040090       -0.594964867764E-02
+     4.20895598944       -0.575952110388E-02
+     4.22098157798       -0.557459807365E-02
+     4.23300716652       -0.539475652763E-02
+     4.24503275506       -0.521987597686E-02
+     4.25705834360       -0.504983845419E-02
+     4.26908393215       -0.488452847202E-02
+     4.28110952069       -0.472383296539E-02
+     4.29313510923       -0.456764125088E-02
+     4.30516069777       -0.441584497976E-02
+     4.31718628631       -0.426833809379E-02
+     4.32921187485       -0.412501677833E-02
+     4.34123746339       -0.398577942418E-02
+     4.35326305193       -0.385052658220E-02
+     4.36528864048       -0.371916092233E-02
+     4.37731422902       -0.359158719448E-02
+     4.38933981756       -0.346771218635E-02
+     4.40136540610       -0.334744468579E-02
+     4.41339099464       -0.323069544218E-02
+     4.42541658318       -0.311737712917E-02
+     4.43744217172       -0.300740430675E-02
+     4.44946776026       -0.290069338692E-02
+     4.46149334881       -0.279716259719E-02
+     4.47351893735       -0.269673194527E-02
+     4.48554452589       -0.259932318871E-02
+     4.49757011443       -0.250485979612E-02
+     4.50959570297       -0.241326691764E-02
+     4.52162129151       -0.232447135230E-02
+     4.53364688005       -0.223840151899E-02
+     4.54567246859       -0.215498741553E-02
+     4.55769805714       -0.207416060435E-02
+     4.56972364568       -0.199585417315E-02
+     4.58174923422       -0.192000270808E-02
+     4.59377482276       -0.184654225930E-02
+     4.60580041130       -0.177541033896E-02
+     4.61782599984       -0.170654585231E-02
+     4.62985158838       -0.163988909724E-02
+     4.64187717692       -0.157538173203E-02
+     4.65390276547       -0.151296673852E-02
+     4.66592835401       -0.145258844811E-02
+     4.67795394255       -0.139419243474E-02
+     4.68997953109       -0.133772554550E-02
+     4.70200511963       -0.128313586512E-02
+     4.71403070817       -0.123037275522E-02
+     4.72605629671       -0.117938654970E-02
+     4.73808188525       -0.113012899771E-02
+     4.75010747380       -0.108255292946E-02
+     4.76213306234       -0.103661223447E-02
+     4.77415865088       -0.992262116584E-03
+     4.78618423942       -0.949458638724E-03
+     4.79820982796       -0.908158945226E-03
+     4.81023541650       -0.868321174067E-03
+     4.82226100504       -0.829904377431E-03
+     4.83428659359       -0.792868689954E-03
+     4.84631218213       -0.757175001819E-03
+     4.85833777067       -0.722785111068E-03
+     4.87036335921       -0.689661659755E-03
+     4.88238894775       -0.657768205517E-03
+     4.89441453629       -0.627068814669E-03
+     4.90644012483       -0.597528623671E-03
+     4.91846571337       -0.569113477076E-03
+     4.93049130192       -0.541789990100E-03
+     4.94251689046       -0.515525535536E-03
+     4.95454247900       -0.490288203274E-03
+     4.96656806754       -0.466046910258E-03
+     4.97859365608       -0.442771187162E-03
+     4.99061924462       -0.420431297524E-03
+     5.00264483316       -0.398998193467E-03
+     5.01467042170       -0.378443501698E-03
+     5.02669601025       -0.358739516844E-03
+     5.03872159879       -0.339859179963E-03
+     5.05074718733       -0.321776072501E-03
+     5.06277277587       -0.304464403044E-03
+     5.07479836441       -0.287898994740E-03
+     5.08682395295       -0.272055277862E-03
+     5.09884954149       -0.256909272322E-03
+     5.11087513003       -0.242437580590E-03
+     5.12290071858       -0.228617375927E-03
+     5.13492630712       -0.215426391121E-03
+     5.14695189566       -0.202842910579E-03
+     5.15897748420       -0.190845756226E-03
+     5.17100307274       -0.179414279829E-03
+     5.18302866128       -0.168528352611E-03
+     5.19505424982       -0.158168355586E-03
+     5.20707983836       -0.148315171702E-03
+     5.21910542691       -0.138950169450E-03
+     5.23113101545       -0.130055205120E-03
+     5.24315660399       -0.121612606383E-03
+     5.25518219253       -0.113605165266E-03
+     5.26720778107       -0.106016127092E-03
+     5.27923336961       -0.988291922482E-04
+     5.29125895815       -0.920284920590E-04
+     5.30328454669       -0.855985906015E-04
+     5.31531013524       -0.795244743841E-04
+     5.32733572378       -0.737915444991E-04
+     5.33936131232       -0.683856111699E-04
+     5.35138690086       -0.632928763964E-04
+     5.36341248940       -0.584999423340E-04
+     5.37543807794       -0.539937936506E-04
+     5.38746366648       -0.497617929061E-04
+     5.39948925502       -0.457916716495E-04
+     5.41151484357       -0.420715316466E-04
+     5.42354043211       -0.385898257978E-04
+     5.43556602065       -0.353353593085E-04
+     5.44759160919       -0.322972814109E-04
+     5.45961719773       -0.294650790050E-04
+     5.47164278627       -0.268285715307E-04
+     5.48366837481       -0.243779001212E-04
+     5.49569396335       -0.221035290670E-04
+     5.50771955190       -0.199962351205E-04
+     5.51974514044       -0.180471028934E-04
+     5.53177072898       -0.162475192210E-04
+     5.54379631752       -0.145891670730E-04
+     5.55582190606       -0.130640226012E-04
+     5.56784749460       -0.116643458623E-04
+     5.57987308314       -0.103826782363E-04
+     5.59189867168       -0.921183668246E-05
+     5.60392426023       -0.814490905122E-05
+     5.61594984877       -0.717524784947E-05
+     5.62797543731       -0.629646743456E-05
+     5.64000102585       -0.550243804989E-05
+     5.65202661439       -0.478728149602E-05
+     5.66405220293       -0.414536660707E-05
+     5.67607779147       -0.357130475009E-05
+     5.68810338001       -0.305994575923E-05
+     5.70012896856       -0.260637325057E-05
+     5.71215455710       -0.220590071817E-05
+     5.72418014564       -0.185406738104E-05
+     5.73620573418       -0.154663417486E-05
+     5.74823132272       -0.127957973927E-05
+     5.76025691126       -0.104909693213E-05
+     5.77228249980       -0.851588509707E-06
+     5.78430808834       -0.683663788629E-06
+     5.79633367689       -0.542134950064E-06
+     5.80835926543       -0.424013501434E-06
+     5.82038485397       -0.326505973629E-06
+     5.83241044251       -0.247014028143E-06
+     5.84443603105       -0.183125893821E-06
+     5.85646161959       -0.132616424910E-06
+     5.86848720813       -0.934431580100E-07
+     5.88051279667       -0.637432082347E-07
+     5.89253838522       -0.418037357604E-07
+     5.90456397376       -0.261671806521E-07
+     5.91658956230       -0.154708216233E-07
+     5.92861515084       -0.854089327514E-08
+     5.94064073938       -0.436705629637E-08
+     5.95266632792       -0.209908865268E-08
+     5.96469191646       -0.234970044412E-09
+     5.97671750500        0.213006242980E-09
+     5.98874309355        0.972163470027E-10
+     6.00076868209         0.00000000000    
+</data>
+</radfunc>
+</vna>
+<chlocal>
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.612281183908E-02 </delta> 
+<cutoff>      3.05528310770 </cutoff> 
+<data>
+     0.00000000000        -1.57620815071    
+    0.612281183908E-02    -1.57478908686    
+    0.122456236782E-01    -1.57046027230    
+    0.183684355172E-01    -1.56606139091    
+    0.244912473563E-01    -1.56159331844    
+    0.306140591954E-01    -1.55705693498    
+    0.367368710345E-01    -1.55245312474    
+    0.428596828735E-01    -1.54778277583    
+    0.489824947126E-01    -1.54304678006    
+    0.551053065517E-01    -1.53824603271    
+    0.612281183908E-01    -1.53338143233    
+    0.673509302299E-01    -1.52845388052    
+    0.734737420689E-01    -1.52346428174    
+    0.795965539080E-01    -1.51841354307    
+    0.857193657471E-01    -1.51330257401    
+    0.918421775862E-01    -1.50813228632    
+    0.979649894253E-01    -1.50290359375    
+    0.104087801264        -1.49761741188    
+    0.110210613103        -1.49227465790    
+    0.116333424942        -1.48687625043    
+    0.122456236782        -1.48142310930    
+    0.128579048621        -1.47591615537    
+    0.134701860460        -1.47035631032    
+    0.140824672299        -1.46474449649    
+    0.146947484138        -1.45908163665    
+    0.153070295977        -1.45336865384    
+    0.159193107816        -1.44760647116    
+    0.165315919655        -1.44179601161    
+    0.171438731494        -1.43593819790    
+    0.177561543333        -1.43003395224    
+    0.183684355172        -1.42408419622    
+    0.189807167011        -1.41808985057    
+    0.195929978851        -1.41205183503    
+    0.202052790690        -1.40597106817    
+    0.208175602529        -1.39984846719    
+    0.214298414368        -1.39368494779    
+    0.220421226207        -1.38748142398    
+    0.226544038046        -1.38123880792    
+    0.232666849885        -1.37495800978    
+    0.238789661724        -1.36863993756    
+    0.244912473563        -1.36228549691    
+    0.251035285402        -1.35589559103    
+    0.257158097241        -1.34947112047    
+    0.263280909080        -1.34301298302    
+    0.269403720919        -1.33652207353    
+    0.275526532759        -1.32999928376    
+    0.281649344598        -1.32344550227    
+    0.287772156437        -1.31686161426    
+    0.293894968276        -1.31024850144    
+    0.300017780115        -1.30360704186    
+    0.306140591954        -1.29693810984    
+    0.312263403793        -1.29024257579    
+    0.318386215632        -1.28352130607    
+    0.324509027471        -1.27677516292    
+    0.330631839310        -1.27000500429    
+    0.336754651149        -1.26321168375    
+    0.342877462988        -1.25639605031    
+    0.349000274827        -1.24955894841    
+    0.355123086667        -1.24270121768    
+    0.361245898506        -1.23582369295    
+    0.367368710345        -1.22892720403    
+    0.373491522184        -1.22201257571    
+    0.379614334023        -1.21508062755    
+    0.385737145862        -1.20813217387    
+    0.391859957701        -1.20116802359    
+    0.397982769540        -1.19418898016    
+    0.404105581379        -1.18719584147    
+    0.410228393218        -1.18018939972    
+    0.416351205057        -1.17317044139    
+    0.422474016896        -1.16613974711    
+    0.428596828735        -1.15909809158    
+    0.434719640575        -1.15204624350    
+    0.440842452414        -1.14498496548    
+    0.446965264253        -1.13791501398    
+    0.453088076092        -1.13083713921    
+    0.459210887931        -1.12375208507    
+    0.465333699770        -1.11666058909    
+    0.471456511609        -1.10956338233    
+    0.477579323448        -1.10246118936    
+    0.483702135287        -1.09535472815    
+    0.489824947126        -1.08824471005    
+    0.495947758965        -1.08113183970    
+    0.502070570804        -1.07401681498    
+    0.508193382643        -1.06690032698    
+    0.514316194483        -1.05978305991    
+    0.520439006322        -1.05266569109    
+    0.526561818161        -1.04554889087    
+    0.532684630000        -1.03843332259    
+    0.538807441839        -1.03131964256    
+    0.544930253678        -1.02420849999    
+    0.551053065517        -1.01710053697    
+    0.557175877356        -1.00999638843    
+    0.563298689195        -1.00289668210    
+    0.569421501034       -0.995802038474    
+    0.575544312873       -0.988713070796    
+    0.581667124712       -0.981630385016    
+    0.587789936552       -0.974554579770    
+    0.593912748391       -0.967486246355    
+    0.600035560230       -0.960425968706    
+    0.606158372069       -0.953374323377    
+    0.612281183908       -0.946331879521    
+    0.618403995747       -0.939299198872    
+    0.624526807586       -0.932276835737    
+    0.630649619425       -0.925265336973    
+    0.636772431264       -0.918265241986    
+    0.642895243103       -0.911277082715    
+    0.649018054942       -0.904301383629    
+    0.655140866781       -0.897338661717    
+    0.661263678620       -0.890389426488    
+    0.667386490460       -0.883454179970    
+    0.673509302299       -0.876533416705    
+    0.679632114138       -0.869627623752    
+    0.685754925977       -0.862737280692    
+    0.691877737816       -0.855862859631    
+    0.698000549655       -0.849004825208    
+    0.704123361494       -0.842163634599    
+    0.710246173333       -0.835339737529    
+    0.716368985172       -0.828533576283    
+    0.722491797011       -0.821745585718    
+    0.728614608850       -0.814976193277    
+    0.734737420689       -0.808225819003    
+    0.740860232528       -0.801494875556    
+    0.746983044368       -0.794783768235    
+    0.753105856207       -0.788092894990    
+    0.759228668046       -0.781422646451    
+    0.765351479885       -0.774773405945    
+    0.771474291724       -0.768145549519    
+    0.777597103563       -0.761539445969    
+    0.783719915402       -0.754955456863    
+    0.789842727241       -0.748393936567    
+    0.795965539080       -0.741855232277    
+    0.802088350919       -0.735339684047    
+    0.808211162758       -0.728847624817    
+    0.814333974597       -0.722379380449    
+    0.820456786436       -0.715935269759    
+    0.826579598276       -0.709515604546    
+    0.832702410115       -0.703120689637    
+    0.838825221954       -0.696750822913    
+    0.844948033793       -0.690406295350    
+    0.851070845632       -0.684087391060    
+    0.857193657471       -0.677794387326    
+    0.863316469310       -0.671527554641    
+    0.869439281149       -0.665287156754    
+    0.875562092988       -0.659073450705    
+    0.881684904827       -0.652886686874    
+    0.887807716666       -0.646727109019    
+    0.893930528505       -0.640594954322    
+    0.900053340344       -0.634490453435    
+    0.906176152184       -0.628413830524    
+    0.912298964023       -0.622365303316    
+    0.918421775862       -0.616345083146    
+    0.924544587701       -0.610353375005    
+    0.930667399540       -0.604390377586    
+    0.936790211379       -0.598456283336    
+    0.942913023218       -0.592551278506    
+    0.949035835057       -0.586675543196    
+    0.955158646896       -0.580829251413    
+    0.961281458735       -0.575012571115    
+    0.967404270574       -0.569225664270    
+    0.973527082413       -0.563468686902    
+    0.979649894253       -0.557741789146    
+    0.985772706092       -0.552045115304    
+    0.991895517931       -0.546378803893    
+    0.998018329770       -0.540742987705    
+     1.00414114161       -0.535137793857    
+     1.01026395345       -0.529563343849    
+     1.01638676529       -0.524019753615    
+     1.02250957713       -0.518507133583    
+     1.02863238897       -0.513025588729    
+     1.03475520080       -0.507575218632    
+     1.04087801264       -0.502156117532    
+     1.04700082448       -0.496768374386    
+     1.05312363632       -0.491412072924    
+     1.05924644816       -0.486087291708    
+     1.06536926000       -0.480794104188    
+     1.07149207184       -0.475532578759    
+     1.07761488368       -0.470302778820    
+     1.08373769552       -0.465104762829    
+     1.08986050736       -0.459938584366    
+     1.09598331919       -0.454804292186    
+     1.10210613103       -0.449701930279    
+     1.10822894287       -0.444631537929    
+     1.11435175471       -0.439593149770    
+     1.12047456655       -0.434586795847    
+     1.12659737839       -0.429612501672    
+     1.13272019023       -0.424670288284    
+     1.13884300207       -0.419760172306    
+     1.14496581391       -0.414882166006    
+     1.15108862575       -0.410036277350    
+     1.15721143759       -0.405222510066    
+     1.16333424942       -0.400440863699    
+     1.16945706126       -0.395691333669    
+     1.17557987310       -0.390973911330    
+     1.18170268494       -0.386288584030    
+     1.18782549678       -0.381635335163    
+     1.19394830862       -0.377014144234    
+     1.20007112046       -0.372424986909    
+     1.20619393230       -0.367867835079    
+     1.21231674414       -0.363342656915    
+     1.21843955598       -0.358849416922    
+     1.22456236782       -0.354388076001    
+     1.23068517965       -0.349958591502    
+     1.23680799149       -0.345560917282    
+     1.24293080333       -0.341195003761    
+     1.24905361517       -0.336860797979    
+     1.25517642701       -0.332558243649    
+     1.26129923885       -0.328287281217    
+     1.26742205069       -0.324047847913    
+     1.27354486253       -0.319839877809    
+     1.27966767437       -0.315663301872    
+     1.28579048621       -0.311518048019    
+     1.29191329805       -0.307404041172    
+     1.29803610988       -0.303321203312    
+     1.30415892172       -0.299269453531    
+     1.31028173356       -0.295248708087    
+     1.31640454540       -0.291258880455    
+     1.32252735724       -0.287299881382    
+     1.32865016908       -0.283371618937    
+     1.33477298092       -0.279473998566    
+     1.34089579276       -0.275606923140    
+     1.34701860460       -0.271770293008    
+     1.35314141644       -0.267964006049    
+     1.35926422828       -0.264187957720    
+     1.36538704011       -0.260442041107    
+     1.37150985195       -0.256726146977    
+     1.37763266379       -0.253040163825    
+     1.38375547563       -0.249383977921    
+     1.38987828747       -0.245757473364    
+     1.39600109931       -0.242160532125    
+     1.40212391115       -0.238593034099    
+     1.40824672299       -0.235054857148    
+     1.41436953483       -0.231545877150    
+     1.42049234667       -0.228065968048    
+     1.42661515851       -0.224615001890    
+     1.43273797034       -0.221192848881    
+     1.43886078218       -0.217799377424    
+     1.44498359402       -0.214434454167    
+     1.45110640586       -0.211097944044    
+     1.45722921770       -0.207789710324    
+     1.46335202954       -0.204509614651    
+     1.46947484138       -0.201257517085    
+     1.47559765322       -0.198033276151    
+     1.48172046506       -0.194836748875    
+     1.48784327690       -0.191667790827    
+     1.49396608874       -0.188526256164    
+     1.50008890057       -0.185411997668    
+     1.50621171241       -0.182324866791    
+     1.51233452425       -0.179264713687    
+     1.51845733609       -0.176231387259    
+     1.52458014793       -0.173224735192    
+     1.53070295977       -0.170244603997    
+     1.53682577161       -0.167290839042    
+     1.54294858345       -0.164363284595    
+     1.54907139529       -0.161461783858    
+     1.55519420713       -0.158586179006    
+     1.56131701896       -0.155736311220    
+     1.56743983080       -0.152912020724    
+     1.57356264264       -0.150113146820    
+     1.57968545448       -0.147339527922    
+     1.58580826632       -0.144591001591    
+     1.59193107816       -0.141867404567    
+     1.59805389000       -0.139168572805    
+     1.60417670184       -0.136494341505    
+     1.61029951368       -0.133844545143    
+     1.61642232552       -0.131219017508    
+     1.62254513736       -0.128617591727    
+     1.62866794919       -0.126040100300    
+     1.63479076103       -0.123486375130    
+     1.64091357287       -0.120956247549    
+     1.64703638471       -0.118449548352    
+     1.65315919655       -0.115966107823    
+     1.65928200839       -0.113505755766    
+     1.66540482023       -0.111068321529    
+     1.67152763207       -0.108653634035    
+     1.67765044391       -0.106261521807    
+     1.68377325575       -0.103891812996    
+     1.68989606759       -0.101544335407    
+     1.69601887942       -0.992189165225E-01
+     1.70214169126       -0.969153835299E-01
+     1.70826450310       -0.946335633456E-01
+     1.71438731494       -0.923732826390E-01
+     1.72051012678       -0.901343678565E-01
+     1.72663293862       -0.879166452449E-01
+     1.73275575046       -0.857199408741E-01
+     1.73887856230       -0.835440806601E-01
+     1.74500137414       -0.813888903862E-01
+     1.75112418598       -0.792541957253E-01
+     1.75724699782       -0.771398222610E-01
+     1.76336980965       -0.750455955076E-01
+     1.76949262149       -0.729713409313E-01
+     1.77561543333       -0.709168839695E-01
+     1.78173824517       -0.688820500504E-01
+     1.78786105701       -0.668666646120E-01
+     1.79398386885       -0.648705531204E-01
+     1.80010668069       -0.628935410884E-01
+     1.80622949253       -0.609354540930E-01
+     1.81235230437       -0.589961177925E-01
+     1.81847511621       -0.570753579439E-01
+     1.82459792805       -0.551730004188E-01
+     1.83072073988       -0.532888712200E-01
+     1.83684355172       -0.514227964968E-01
+     1.84296636356       -0.495746025606E-01
+     1.84908917540       -0.477441158995E-01
+     1.85521198724       -0.459311631928E-01
+     1.86133479908       -0.441355713252E-01
+     1.86745761092       -0.423571674006E-01
+     1.87358042276       -0.405957787550E-01
+     1.87970323460       -0.388512329698E-01
+     1.88582604644       -0.371233578842E-01
+     1.89194885828       -0.354119816073E-01
+     1.89807167011       -0.337169325300E-01
+     1.90419448195       -0.320380393362E-01
+     1.91031729379       -0.303751310140E-01
+     1.91644010563       -0.287280368664E-01
+     1.92256291747       -0.270965865215E-01
+     1.92868572931       -0.254806099425E-01
+     1.93480854115       -0.238799374369E-01
+     1.94093135299       -0.222943996666E-01
+     1.94705416483       -0.207238276558E-01
+     1.95317697667       -0.191680528000E-01
+     1.95929978851       -0.176269068744E-01
+     1.96542260034       -0.161032160693E-01
+     1.97154541218       -0.145883668784E-01
+     1.97766822402       -0.130869644160E-01
+     1.98379103586       -0.116004517760E-01
+     1.98991384770       -0.101099830358E-01
+     1.99603665954       -0.867216145896E-02
+     2.00215947138       -0.725510691129E-02
+     2.00828228322       -0.584597333631E-02
+     2.01440509506       -0.448371496459E-02
+     2.02052790690       -0.301536893223E-02
+     2.02665071873       -0.151719150054E-02
+     2.03277353057       -0.309058642183E-04
+     2.03889634241        0.143085220434E-02
+     2.04501915425        0.265383132524E-02
+     2.05114196609        0.361991155844E-02
+     2.05726477793        0.427414083459E-02
+     2.06338758977        0.463563139565E-02
+     2.06951040161        0.458769088542E-02
+     2.07563321345        0.422152745566E-02
+     2.08175602529        0.362426989695E-02
+     2.08787883713        0.271598930681E-02
+     2.09400164896        0.209548283350E-02
+     2.10012446080        0.170480036859E-02
+     2.10624727264        0.159152768019E-02
+     2.11237008448        0.173840283408E-02
+     2.11849289632        0.227813734671E-02
+     2.12461570816        0.251593574734E-02
+     2.13073852000        0.263114848442E-02
+     2.13686133184        0.258593432319E-02
+     2.14298414368        0.220582800474E-02
+     2.14910695552        0.199533524478E-02
+     2.15522976736        0.181495631266E-02
+     2.16135257919        0.169660614904E-02
+     2.16747539103        0.175173989785E-02
+     2.17359820287        0.174440381036E-02
+     2.17972101471        0.173964810353E-02
+     2.18584382655        0.172288748817E-02
+     2.19196663839        0.168507084139E-02
+     2.19808945023        0.159112425354E-02
+     2.20421226207        0.153155753669E-02
+     2.21033507391        0.147452179025E-02
+     2.21645788575        0.142353158228E-02
+     2.22258069759        0.139132886305E-02
+     2.22870350942        0.135248477930E-02
+     2.23482632126        0.131530023347E-02
+     2.24094913310        0.127877187876E-02
+     2.24707194494        0.124218068017E-02
+     2.25319475678        0.120279527200E-02
+     2.25931756862        0.116685212308E-02
+     2.26544038046        0.113194185457E-02
+     2.27156319230        0.109819678434E-02
+     2.27768600414        0.106620976009E-02
+     2.28380881598        0.103482716410E-02
+     2.28993162782        0.100440350368E-02
+     2.29605443965        0.974883250714E-03
+     2.30217725149        0.946216726057E-03
+     2.30830006333        0.918283882149E-03
+     2.31442287517        0.891247886630E-03
+     2.32054568701        0.865012393829E-03
+     2.32666849885        0.839556462116E-03
+     2.33279131069        0.814859172817E-03
+     2.33891412253        0.790909128302E-03
+     2.34503693437        0.767659601233E-03
+     2.35115974621        0.745099449091E-03
+     2.35728255805        0.723207861755E-03
+     2.36340536988        0.701964766258E-03
+     2.36952818172        0.681478800498E-03
+     2.37565099356        0.661407188550E-03
+     2.38177380540        0.641896923535E-03
+     2.38789661724        0.622963854548E-03
+     2.39401942908        0.604628722101E-03
+     2.40014224092        0.584023888595E-03
+     2.40626505276        0.568635098285E-03
+     2.41238786460        0.554474745972E-03
+     2.41851067644        0.540702440463E-03
+     2.42463348827        0.552515963449E-03
+     2.43075630011        0.531893413047E-03
+     2.43687911195        0.501012307931E-03
+     2.44300192379        0.464054823536E-03
+     2.44912473563        0.427873875965E-03
+     2.45524754747        0.296944750166E-03
+     2.46137035931        0.306580275168E-03
+     2.46749317115        0.371538554207E-03
+     2.47361598299        0.477649687573E-03
+     2.47973879483        0.597104942437E-03
+     2.48586160667        0.945301554960E-03
+     2.49198441850        0.928686392749E-03
+     2.49810723034        0.723250564306E-03
+     2.50423004218        0.331908292642E-03
+     2.51035285402       -0.207287899165E-03
+     2.51647566586       -0.824218675120E-03
+     2.52259847770       -0.177974538964E-02
+     2.52872128954       -0.207449376137E-02
+     2.53484410138       -0.206103015491E-02
+     2.54096691322       -0.173078372296E-02
+     2.54708972506       -0.112377153344E-02
+     2.55321253690        0.872603849974E-04
+     2.55933534873        0.787502557525E-03
+     2.56545816057        0.132681612362E-02
+     2.57158097241        0.164482078808E-02
+     2.57770378425        0.171888998835E-02
+     2.58382659609        0.124330586191E-02
+     2.58994940793        0.101873017119E-02
+     2.59607221977        0.781738516691E-03
+     2.60219503161        0.578515665811E-03
+     2.60831784345        0.441417735685E-03
+     2.61444065529        0.548959390675E-03
+     2.62056346713        0.536988152759E-03
+     2.62668627896        0.539412148398E-03
+     2.63280909080        0.544498329992E-03
+     2.63893190264        0.542158407106E-03
+     2.64505471448        0.525557024856E-03
+     2.65117752632        0.447742782889E-03
+     2.65730033816        0.418146414280E-03
+     2.66342315000        0.389216334126E-03
+     2.66954596184        0.362237930941E-03
+     2.67566877368        0.338241959347E-03
+     2.68179158552        0.325213981240E-03
+     2.68791439736        0.306407564444E-03
+     2.69403720919        0.288765874899E-03
+     2.70016002103        0.272168859176E-03
+     2.70628283287        0.256504446957E-03
+     2.71240564471        0.241678077412E-03
+     2.71852845655        0.227320215627E-03
+     2.72465126839        0.214112975684E-03
+     2.73077408023        0.201674674054E-03
+     2.73689689207        0.189960389873E-03
+     2.74301970391        0.178927849017E-03
+     2.74914251575        0.168537039717E-03
+     2.75526532759        0.158751051586E-03
+     2.76138813942        0.149534438073E-03
+     2.76751095126        0.140854032342E-03
+     2.77363376310        0.132678605915E-03
+     2.77975657494        0.124978752025E-03
+     2.78587938678        0.117726792751E-03
+     2.79200219862        0.110896605560E-03
+     2.79812501046        0.104463639129E-03
+     2.80424782230        0.984047514778E-04
+     2.81037063414        0.926981436257E-04
+     2.81649344598        0.873232816765E-04
+     2.82261625782        0.822608879234E-04
+     2.82873906965        0.774925906440E-04
+     2.83486188149        0.730013114159E-04
+     2.84098469333        0.687709042719E-04
+     2.84710750517        0.647861705321E-04
+     2.85323031701        0.610327060805E-04
+     2.85935312885        0.574972586427E-04
+     2.86547594069        0.541670627418E-04
+     2.87159875253        0.510301794959E-04
+     2.87772156437        0.480753646751E-04
+     2.88384437621        0.452920277862E-04
+     2.88996718804        0.426630739300E-04
+     2.89608999988        0.401947922585E-04
+     2.90221281172        0.378713865627E-04
+     2.90833562356        0.356838847631E-04
+     2.91445843540        0.336235365570E-04
+     2.92058124724        0.316819295629E-04
+     2.92670405908        0.298590074138E-04
+     2.93282687092        0.281300970227E-04
+     2.93894968276        0.264966244127E-04
+     2.94507249460        0.249538754808E-04
+     2.95119530644        0.234984985812E-04
+     2.95731811827        0.221283543960E-04
+     2.96344093011        0.208226313243E-04
+     2.96956374195        0.196228916751E-04
+     2.97568655379        0.185100196769E-04
+     2.98180936563        0.174803124936E-04
+     2.98793217747        0.165263574827E-04
+     2.99405498931        0.156355738032E-04
+     3.00017780115        0.148466578087E-04
+     3.00630061299        0.140107671081E-04
+     3.01242342483        0.131347738670E-04
+     3.01854623667        0.121668017212E-04
+     3.02466904850        0.110439016096E-04
+     3.03079186034        0.969104244408E-05
+     3.03691467218        0.777342052720E-05
+     3.04303748402        0.566234671042E-05
+     3.04916029586        0.309934149065E-05
+     3.05528310770        0.169406589451E-20
+</data>
+</radfunc>
+</chlocal>
+<reduced_vlocal>
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.560981974770E-02 </delta> 
+<cutoff>      2.79930005410 </cutoff> 
+<data>
+     0.00000000000         16.0000000000    
+    0.560981974770E-02     15.8980448757    
+    0.112196394954E-01     15.7960967367    
+    0.168294592431E-01     15.6941625360    
+    0.224392789908E-01     15.5922491909    
+    0.280490987385E-01     15.4903635818    
+    0.336589184862E-01     15.3885125517    
+    0.392687382339E-01     15.2867029055    
+    0.448785579816E-01     15.1849414091    
+    0.504883777293E-01     15.0832347888    
+    0.560981974770E-01     14.9815897305    
+    0.617080172246E-01     14.8800128791    
+    0.673178369723E-01     14.7785108378    
+    0.729276567200E-01     14.6770901672    
+    0.785374764677E-01     14.5757573850    
+    0.841472962154E-01     14.4745189650    
+    0.897571159631E-01     14.3733813368    
+    0.953669357108E-01     14.2723508850    
+    0.100976755459         14.1714339484    
+    0.106586575206         14.0706368198    
+    0.112196394954         13.9699657451    
+    0.117806214702         13.8694269228    
+    0.123416034449         13.7690265037    
+    0.129025854197         13.6687705898    
+    0.134635673945         13.5686652344    
+    0.140245493692         13.4687164409    
+    0.145855313440         13.3689301629    
+    0.151465133188         13.2693123035    
+    0.157074952935         13.1698687145    
+    0.162684772683         13.0706051965    
+    0.168294592431         12.9715274979    
+    0.173904412179         12.8726413147    
+    0.179514231926         12.7739522902    
+    0.185124051674         12.6754660143    
+    0.190733871422         12.5771880232    
+    0.196343691169         12.4791237990    
+    0.201953510917         12.3812787694    
+    0.207563330665         12.2836583073    
+    0.213173150412         12.1862677302    
+    0.218782970160         12.0891123002    
+    0.224392789908         11.9921972235    
+    0.230002609656         11.8955276500    
+    0.235612429403         11.7991086730    
+    0.241222249151         11.7029453292    
+    0.246832068899         11.6070425980    
+    0.252441888646         11.5114054015    
+    0.258051708394         11.4160386041    
+    0.263661528142         11.3209470123    
+    0.269271347889         11.2261353744    
+    0.274881167637         11.1316083804    
+    0.280490987385         11.0373706616    
+    0.286100807132         10.9434267907    
+    0.291710626880         10.8497812812    
+    0.297320446628         10.7564385874    
+    0.302930266376         10.6634031046    
+    0.308540086123         10.5706791681    
+    0.314149905871         10.4782710540    
+    0.319759725619         10.3861829783    
+    0.325369545366         10.2944190972    
+    0.330979365114         10.2029835070    
+    0.336589184862         10.1118802436    
+    0.342199004609         10.0211132829    
+    0.347808824357         9.93068654047    
+    0.353418644105         9.84060387135    
+    0.359028463853         9.75086907030    
+    0.364638283600         9.66148587154    
+    0.370248103348         9.57245794877    
+    0.375857923096         9.48378891515    
+    0.381467742843         9.39548232326    
+    0.387077562591         9.30754166508    
+    0.392687382339         9.21997037204    
+    0.398297202086         9.13277181500    
+    0.403907021834         9.04594930424    
+    0.409516841582         8.95950608956    
+    0.415126661329         8.87344536027    
+    0.420736481077         8.78777024526    
+    0.426346300825         8.70248381303    
+    0.431956120573         8.61758907182    
+    0.437565940320         8.53308896961    
+    0.443175760068         8.44898639427    
+    0.448785579816         8.36528417362    
+    0.454395399563         8.28198507555    
+    0.460005219311         8.19909180814    
+    0.465615039059         8.11660701973    
+    0.471224858806         8.03453329915    
+    0.476834678554         7.95287317574    
+    0.482444498302         7.87162911959    
+    0.488054318049         7.79080354166    
+    0.493664137797         7.71039879392    
+    0.499273957545         7.63041716957    
+    0.504883777293         7.55086090317    
+    0.510493597040         7.47173217086    
+    0.516103416788         7.39303309055    
+    0.521713236536         7.31476572209    
+    0.527323056283         7.23693206752    
+    0.532932876031         7.15953407127    
+    0.538542695779         7.08257362036    
+    0.544152515526         7.00605254465    
+    0.549762335274         6.92997261711    
+    0.555372155022         6.85433555398    
+    0.560981974770         6.77914301510    
+    0.566591794517         6.70439660412    
+    0.572201614265         6.63009786878    
+    0.577811434013         6.55624830117    
+    0.583421253760         6.48284933802    
+    0.589031073508         6.40990236096    
+    0.594640893256         6.33740869681    
+    0.600250713003         6.26536961788    
+    0.605860532751         6.19378634229    
+    0.611470352499         6.12266003420    
+    0.617080172246         6.05199180421    
+    0.622689991994         5.98178270961    
+    0.628299811742         5.91203375471    
+    0.633909631490         5.84274589121    
+    0.639519451237         5.77392001844    
+    0.645129270985         5.70555698378    
+    0.650739090733         5.63765758295    
+    0.656348910480         5.57022256036    
+    0.661958730228         5.50325260948    
+    0.667568549976         5.43674837314    
+    0.673178369723         5.37071044395    
+    0.678788189471         5.30513936461    
+    0.684398009219         5.24003562829    
+    0.690007828967         5.17539967900    
+    0.695617648714         5.11123191195    
+    0.701227468462         5.04753267394    
+    0.706837288210         4.98430226372    
+    0.712447107957         4.92154093240    
+    0.718056927705         4.85924888379    
+    0.723666747453         4.79742627482    
+    0.729276567200         4.73607321592    
+    0.734886386948         4.67518977143    
+    0.740496206696         4.61477595995    
+    0.746106026443         4.55483175480    
+    0.751715846191         4.49535708436    
+    0.757325665939         4.43635183255    
+    0.762935485687         4.37781583914    
+    0.768545305434         4.31974890023    
+    0.774155125182         4.26215076865    
+    0.779764944930         4.20502115434    
+    0.785374764677         4.14835972480    
+    0.790984584425         4.09216610548    
+    0.796594404173         4.03643988023    
+    0.802204223920         3.98118059168    
+    0.807814043668         3.92638774169    
+    0.813423863416         3.87206079175    
+    0.819033683164         3.81819916343    
+    0.824643502911         3.76480223878    
+    0.830253322659         3.71186936079    
+    0.835863142407         3.65939983377    
+    0.841472962154         3.60739292380    
+    0.847082781902         3.55584785920    
+    0.852692601650         3.50476383088    
+    0.858302421397         3.45413999283    
+    0.863912241145         3.40397546254    
+    0.869522060893         3.35426932141    
+    0.875131880640         3.30502061520    
+    0.880741700388         3.25622835448    
+    0.886351520136         3.20789151501    
+    0.891961339884         3.16000903822    
+    0.897571159631         3.11257983163    
+    0.903180979379         3.06560276927    
+    0.908790799127         3.01907669214    
+    0.914400618874         2.97300040860    
+    0.920010438622         2.92737269484    
+    0.925620258370         2.88219229531    
+    0.931230078117         2.83745792312    
+    0.936839897865         2.79316826049    
+    0.942449717613         2.74932195920    
+    0.948059537361         2.70591764099    
+    0.953669357108         2.66295389800    
+    0.959279176856         2.62042929320    
+    0.964888996604         2.57834236082    
+    0.970498816351         2.53669160675    
+    0.976108636099         2.49547550902    
+    0.981718455847         2.45469251816    
+    0.987328275594         2.41434105769    
+    0.992938095342         2.37441952448    
+    0.998547915090         2.33492628921    
+     1.00415773484         2.29585969676    
+     1.00976755459         2.25721806668    
+     1.01537737433         2.21899969353    
+     1.02098719408         2.18120284738    
+     1.02659701383         2.14382577416    
+     1.03220683358         2.10686669608    
+     1.03781665332         2.07032381208    
+     1.04342647307         2.03419529820    
+     1.04903629282         1.99847930799    
+     1.05464611257         1.96317397296    
+     1.06025593231         1.92827740290    
+     1.06586575206         1.89378768637    
+     1.07147557181         1.85970289102    
+     1.07708539156         1.82602106407    
+     1.08269521131         1.79274023262    
+     1.08830503105         1.75985840411    
+     1.09391485080         1.72737356668    
+     1.09952467055         1.69528368955    
+     1.10513449030         1.66358672343    
+     1.11074431004         1.63228060091    
+     1.11635412979         1.60136323680    
+     1.12196394954         1.57083252854    
+     1.12757376929         1.54068635660    
+     1.13318358903         1.51092258479    
+     1.13879340878         1.48153906069    
+     1.14440322853         1.45253361600    
+     1.15001304828         1.42390406690    
+     1.15562286803         1.39564821442    
+     1.16123268777         1.36776384481    
+     1.16684250752         1.34024872988    
+     1.17245232727         1.31310062739    
+     1.17806214702         1.28631728135    
+     1.18367196676         1.25989642244    
+     1.18928178651         1.23383576828    
+     1.19489160626         1.20813302386    
+     1.20050142601         1.18278588180    
+     1.20611124575         1.15779202276    
+     1.21172106550         1.13314911574    
+     1.21733088525         1.10885481840    
+     1.22294070500         1.08490677743    
+     1.22855052475         1.06130262886    
+     1.23416034449         1.03803999838    
+     1.23977016424         1.01511650167    
+     1.24537998399        0.992529744709    
+     1.25098980374        0.970277324102    
+     1.25659962348        0.948356827394    
+     1.26220944323        0.926765833372    
+     1.26781926298        0.905501912374    
+     1.27342908273        0.884562626600    
+     1.27903890247        0.863945530401    
+     1.28464872222        0.843648170589    
+     1.29025854197        0.823668086721    
+     1.29586836172        0.804002811399    
+     1.30147818147        0.784649870552    
+     1.30708800121        0.765606783724    
+     1.31269782096        0.746871064358    
+     1.31830764071        0.728440220068    
+     1.32391746046        0.710311752924    
+     1.32952728020        0.692483159717    
+     1.33513709995        0.674951932229    
+     1.34074691970        0.657715557504    
+     1.34635673945        0.640771518104    
+     1.35196655919        0.624117292377    
+     1.35757637894        0.607750354702    
+     1.36318619869        0.591668175753    
+     1.36879601844        0.575868222744    
+     1.37440583819        0.560347959673    
+     1.38001565793        0.545104847572    
+     1.38562547768        0.530136344741    
+     1.39123529743        0.515439906988    
+     1.39684511718        0.501012987865    
+     1.40245493692        0.486853038891    
+     1.40806475667        0.472957509787    
+     1.41367457642        0.459323848697    
+     1.41928439617        0.445949502408    
+     1.42489421591        0.432831916567    
+     1.43050403566        0.419968535900    
+     1.43611385541        0.407356804416    
+     1.44172367516        0.394994165621    
+     1.44733349491        0.382878062718    
+     1.45294331465        0.371005938815    
+     1.45855313440        0.359375237113    
+     1.46416295415        0.347983401112    
+     1.46977277390        0.336827874795    
+     1.47538259364        0.325906102822    
+     1.48099241339        0.315215530711    
+     1.48660223314        0.304753605024    
+     1.49221205289        0.294517773543    
+     1.49782187263        0.284505485449    
+     1.50343169238        0.274714191494    
+     1.50904151213        0.265141344170    
+     1.51465133188        0.255784397875    
+     1.52026115163        0.246640809079    
+     1.52587097137        0.237708036483    
+     1.53148079112        0.228983541176    
+     1.53709061087        0.220464786789    
+     1.54270043062        0.212149239647    
+     1.54831025036        0.204034368920    
+     1.55392007011        0.196117646760    
+     1.55952988986        0.188396548453    
+     1.56513970961        0.180868552550    
+     1.57074952935        0.173531141008    
+     1.57635934910        0.166381799320    
+     1.58196916885        0.159418016648    
+     1.58757898860        0.152637285947    
+     1.59318880835        0.146037104092    
+     1.59879862809        0.139614971997    
+     1.60440844784        0.133368394735    
+     1.61001826759        0.127294881650    
+     1.61562808734        0.121391946475    
+     1.62123790708        0.115657107438    
+     1.62684772683        0.110087887368    
+     1.63245754658        0.104681813801    
+     1.63806736633        0.994364190805E-01
+     1.64367718607        0.943492404554E-01
+     1.64928700582        0.894178201753E-01
+     1.65489682557        0.846397055835E-01
+     1.66050664532        0.800124492066E-01
+     1.66611646507        0.755336088419E-01
+     1.67172628481        0.712007476415E-01
+     1.67733610456        0.670114341941E-01
+     1.68294592431        0.629632426040E-01
+     1.68855574406        0.590537525672E-01
+     1.69416556380        0.552805494450E-01
+     1.69977538355        0.516412243349E-01
+     1.70538520330        0.481333741392E-01
+     1.71099502305        0.447546016302E-01
+     1.71660484279        0.415025155136E-01
+     1.72221466254        0.383747304888E-01
+     1.72782448229        0.353688673069E-01
+     1.73343430204        0.324825528258E-01
+     1.73904412179        0.297134200635E-01
+     1.74465394153        0.270591082478E-01
+     1.75026376128        0.245172628645E-01
+     1.75587358103        0.220855357027E-01
+     1.76148340078        0.197615848973E-01
+     1.76709322052        0.175430749696E-01
+     1.77270304027        0.154276768653E-01
+     1.77831286002        0.134130679900E-01
+     1.78392267977        0.114969322423E-01
+     1.78953249951        0.967696004425E-02
+     1.79514231926        0.795084837042E-02
+     1.80075213901        0.631630077332E-02
+     1.80636195876        0.477102740741E-02
+     1.81197177851        0.331274505036E-02
+     1.81758159825        0.193917712225E-02
+     1.82319141800        0.648053702301E-03
+     1.82880123775       -0.562888456512E-03
+     1.83441105750       -0.169590591518E-02
+     1.84002087724       -0.275324853857E-02
+     1.84563069699       -0.373715948757E-02
+     1.85124051674       -0.464987521339E-02
+     1.85685033649       -0.549362545410E-02
+     1.86246015623       -0.627063323326E-02
+     1.86806997598       -0.698311486079E-02
+     1.87367979573       -0.763327993587E-02
+     1.87928961548       -0.822333135202E-02
+     1.88489943523       -0.875546530426E-02
+     1.89050925497       -0.923187129834E-02
+     1.89611907472       -0.965473216204E-02
+     1.90172889447       -0.100262240586E-01
+     1.90733871422       -0.103485165019E-01
+     1.91294853396       -0.106237723742E-01
+     1.91855835371       -0.108541479454E-01
+     1.92416817346       -0.110417928941E-01
+     1.92977799321       -0.111888503318E-01
+     1.93538781295       -0.112974568273E-01
+     1.94099763270       -0.113697424348E-01
+     1.94660745245       -0.114078307224E-01
+     1.95221727220       -0.114138388039E-01
+     1.95782709195       -0.113898773713E-01
+     1.96343691169       -0.113380246348E-01
+     1.96904673144       -0.112604439240E-01
+     1.97465655119       -0.111591954484E-01
+     1.98026637094       -0.110363560626E-01
+     1.98587619068       -0.108940633502E-01
+     1.99148601043       -0.107342261483E-01
+     1.99709583018       -0.105589727258E-01
+     2.00270564993       -0.103703871394E-01
+     2.00831546967       -0.101705626486E-01
+     2.01392528942       -0.996159373859E-02
+     2.01953510917       -0.974556234050E-02
+     2.02514492892       -0.952452017759E-02
+     2.03075474867       -0.930046474322E-02
+     2.03636456841       -0.907543289012E-02
+     2.04197438816       -0.885094634504E-02
+     2.04758420791       -0.862877360638E-02
+     2.05319402766       -0.841040983159E-02
+     2.05880384740       -0.819713666529E-02
+     2.06441366715       -0.798901633728E-02
+     2.07002348690       -0.778916432547E-02
+     2.07563330665       -0.759677981367E-02
+     2.08124312639       -0.741159073304E-02
+     2.08685294614       -0.723509312941E-02
+     2.09246276589       -0.706143226723E-02
+     2.09807258564       -0.689129209168E-02
+     2.10368240539       -0.672391565174E-02
+     2.10929222513       -0.655892174555E-02
+     2.11490204488       -0.639411965352E-02
+     2.12051186463       -0.623506795476E-02
+     2.12612168438       -0.608015705357E-02
+     2.13173150412       -0.592969147363E-02
+     2.13734132387       -0.578378745934E-02
+     2.14295114362       -0.564362831517E-02
+     2.14856096337       -0.550576860320E-02
+     2.15417078312       -0.537124256623E-02
+     2.15978060286       -0.523980621762E-02
+     2.16539042261       -0.511129007596E-02
+     2.17100024236       -0.498510879600E-02
+     2.17661006211       -0.486253709045E-02
+     2.18221988185       -0.474299521836E-02
+     2.18782970160       -0.462645793605E-02
+     2.19343952135       -0.451288044986E-02
+     2.19904934110       -0.440234913057E-02
+     2.20465916084       -0.429437021166E-02
+     2.21026898059       -0.418904648132E-02
+     2.21587880034       -0.408630050971E-02
+     2.22148862009       -0.398601396629E-02
+     2.22709843984       -0.388822748955E-02
+     2.23270825958       -0.379284433201E-02
+     2.23831807933       -0.369980800174E-02
+     2.24392789908       -0.360906297973E-02
+     2.24953771883       -0.352056399917E-02
+     2.25514753857       -0.343423499363E-02
+     2.26075735832       -0.335002993620E-02
+     2.26636717807       -0.326789606012E-02
+     2.27197699782       -0.318778195280E-02
+     2.27758681756       -0.310963599996E-02
+     2.28319663731       -0.303341303274E-02
+     2.28880645706       -0.295906443907E-02
+     2.29441627681       -0.288654407852E-02
+     2.30002609656       -0.281580694547E-02
+     2.30563591630       -0.274680913211E-02
+     2.31124573605       -0.267950797232E-02
+     2.31685555580       -0.261386121534E-02
+     2.32246537555       -0.254982829422E-02
+     2.32807519529       -0.248736944494E-02
+     2.33368501504       -0.242644588543E-02
+     2.33929483479       -0.236701977263E-02
+     2.34490465454       -0.230905426417E-02
+     2.35051447428       -0.225251336009E-02
+     2.35612429403       -0.219736196849E-02
+     2.36173411378       -0.214356586302E-02
+     2.36734393353       -0.209109166924E-02
+     2.37295375328       -0.203990681089E-02
+     2.37856357302       -0.198997954102E-02
+     2.38417339277       -0.194127888954E-02
+     2.38978321252       -0.189377465135E-02
+     2.39539303227       -0.184743735540E-02
+     2.40100285201       -0.180223829656E-02
+     2.40661267176       -0.175814944107E-02
+     2.41222249151       -0.171514345619E-02
+     2.41783231126       -0.167319368233E-02
+     2.42344213100       -0.163227411637E-02
+     2.42905195075       -0.159226036770E-02
+     2.43466177050       -0.155336801367E-02
+     2.44027159025       -0.151545356641E-02
+     2.44588141000       -0.147847671203E-02
+     2.45149122974       -0.144239432288E-02
+     2.45710104949       -0.140801050833E-02
+     2.46271086924       -0.137337531164E-02
+     2.46832068899       -0.133932066487E-02
+     2.47393050873       -0.130594266924E-02
+     2.47954032848       -0.127339161321E-02
+     2.48515014823       -0.124184452229E-02
+     2.49075996798       -0.120887276728E-02
+     2.49636978772       -0.118088905207E-02
+     2.50197960747       -0.115474542963E-02
+     2.50758942722       -0.112988686513E-02
+     2.51319924697       -0.110548174192E-02
+     2.51880906672       -0.108589543154E-02
+     2.52441888646       -0.105792557455E-02
+     2.53002870621       -0.102572246913E-02
+     2.53563852596       -0.988869207320E-03
+     2.54124834571       -0.947476545221E-03
+     2.54685816545       -0.902184150051E-03
+     2.55246798520       -0.848271768215E-03
+     2.55807780495       -0.800838621700E-03
+     2.56368762470       -0.755133017400E-03
+     2.56929744444       -0.712198476171E-03
+     2.57490726419       -0.672728814280E-03
+     2.58051708394       -0.637026340850E-03
+     2.58612690369       -0.608729344705E-03
+     2.59173672344       -0.578368425170E-03
+     2.59734654318       -0.549770280589E-03
+     2.60295636293       -0.522567215127E-03
+     2.60856618268       -0.496456197703E-03
+     2.61417600243       -0.469627060612E-03
+     2.61978582217       -0.445459770295E-03
+     2.62539564192       -0.422477578955E-03
+     2.63100546167       -0.400652406193E-03
+     2.63661528142       -0.379959296749E-03
+     2.64222510116       -0.360370101523E-03
+     2.64783492091       -0.342109621601E-03
+     2.65344474066       -0.324555659494E-03
+     2.65905456041       -0.307903734886E-03
+     2.66466438016       -0.292107446818E-03
+     2.67027419990       -0.277122782734E-03
+     2.67588401965       -0.262907995490E-03
+     2.68149383940       -0.249423459807E-03
+     2.68710365915       -0.236631675290E-03
+     2.69271347889       -0.224496988405E-03
+     2.69832329864       -0.212985604024E-03
+     2.70393311839       -0.202065465706E-03
+     2.70954293814       -0.191706166720E-03
+     2.71515275788       -0.181878650270E-03
+     2.72076257763       -0.172556028017E-03
+     2.72637239738       -0.163712157071E-03
+     2.73198221713       -0.155322417080E-03
+     2.73759203688       -0.147363445123E-03
+     2.74320185662       -0.139813071743E-03
+     2.74881167637       -0.132648571110E-03
+     2.75442149612       -0.125853507726E-03
+     2.76003131587       -0.119407636153E-03
+     2.76564113561       -0.113293038702E-03
+     2.77125095536       -0.107492630916E-03
+     2.77686077511       -0.101990084528E-03
+     2.78247059486       -0.967509211571E-04
+     2.78808041460       -0.917962388489E-04
+     2.79369023435       -0.871007418401E-04
+     2.79930005410       -0.826541000016E-04
+</data>
+</radfunc>
+</reduced_vlocal>
+<core>
+<radfunc>
+<npts>                       500 </npts> 
+<delta>     0.757253143774E-02 </delta> 
+<cutoff>      3.77869318743 </cutoff> 
+<data>
+     0.00000000000         4.03133966476    
+    0.757253143774E-02     4.03110318342    
+    0.151450628755E-01     4.03038180371    
+    0.227175943132E-01     4.02917920477    
+    0.302901257509E-01     4.02749493816    
+    0.378626571887E-01     4.02532837813    
+    0.454351886264E-01     4.02267872327    
+    0.530077200641E-01     4.01954499880    
+    0.605802515019E-01     4.01592605974    
+    0.681527829396E-01     4.01182059403    
+    0.757253143774E-01     4.00722712672    
+    0.832978458151E-01     4.00214402436    
+    0.908703772528E-01     3.99656950007    
+    0.984429086906E-01     3.99050161902    
+    0.106015440128         3.98393830459    
+    0.113587971566         3.97687734501    
+    0.121160503004         3.96931640026    
+    0.128733034442         3.96125301019    
+    0.136305565879         3.95268460234    
+    0.143878097317         3.94360850078    
+    0.151450628755         3.93402193556    
+    0.159023160192         3.92392205221    
+    0.166595691630         3.91330592242    
+    0.174168223068         3.90217055441    
+    0.181740754506         3.89051290481    
+    0.189313285943         3.87832989018    
+    0.196885817381         3.86561839954    
+    0.204458348819         3.85237530724    
+    0.212030880257         3.83859748637    
+    0.219603411694         3.82428182261    
+    0.227175943132         3.80942522864    
+    0.234748474570         3.79402465892    
+    0.242321006008         3.77807712500    
+    0.249893537445         3.76157971135    
+    0.257466068883         3.74452959139    
+    0.265038600321         3.72692404415    
+    0.272611131758         3.70876047131    
+    0.280183663196         3.69003641451    
+    0.287756194634         3.67074957305    
+    0.295328726072         3.65089782205    
+    0.302901257509         3.63047923076    
+    0.310473788947         3.60949208123    
+    0.318046320385         3.58793488723    
+    0.325618851823         3.56580641343    
+    0.333191383260         3.54310569467    
+    0.340763914698         3.51983205551    
+    0.348336446136         3.49598512976    
+    0.355908977574         3.47156488024    
+    0.363481509011         3.44657161844    
+    0.371054040449         3.42100602429    
+    0.378626571887         3.39486916573    
+    0.386199103325         3.36816251832    
+    0.393771634762         3.34088798458    
+    0.401344166200         3.31304791315    
+    0.408916697638         3.28464511777    
+    0.416489229075         3.25568289569    
+    0.424061760513         3.22616504603    
+    0.431634291951         3.19609588731    
+    0.439206823389         3.16548027482    
+    0.446779354826         3.13432361712    
+    0.454351886264         3.10263189205    
+    0.461924417702         3.07041166192    
+    0.469496949140         3.03767008798    
+    0.477069480577         3.00441494399    
+    0.484642012015         2.97065462878    
+    0.492214543453         2.93639817790    
+    0.499787074891         2.90165527413    
+    0.507359606328         2.86643625676    
+    0.514932137766         2.83075212977    
+    0.522504669204         2.79461456851    
+    0.530077200641         2.75803592521    
+    0.537649732079         2.72102923274    
+    0.545222263517         2.68360820715    
+    0.552794794955         2.64578724839    
+    0.560367326392         2.60758143937    
+    0.567939857830         2.56900654349    
+    0.575512389268         2.53007900002    
+    0.583084920706         2.49081591809    
+    0.590657452143         2.45123506827    
+    0.598229983581         2.41135487267    
+    0.605802515019         2.37119439268    
+    0.613375046457         2.33077331486    
+    0.620947577894         2.29011193482    
+    0.628520109332         2.24923113880    
+    0.636092640770         2.20815238333    
+    0.643665172208         2.16689767272    
+    0.651237703645         2.12548953436    
+    0.658810235083         2.08395099204    
+    0.666382766521         2.04230553699    
+    0.673955297958         2.00057709476    
+    0.681527829396         1.95879000248    
+    0.689100360834         1.91696894747    
+    0.696672892272         1.87513906709    
+    0.704245423709         1.83332710305    
+    0.711817955147         1.79157762136    
+    0.719390486585         1.74994441530    
+    0.726963018023         1.70848015515    
+    0.734535549460         1.66723589377    
+    0.742108080898         1.62626070764    
+    0.749680612336         1.58560132469    
+    0.757253143774         1.54530194342    
+    0.764825675211         1.50540407194    
+    0.772398206649         1.46594642331    
+    0.779970738087         1.42696485541    
+    0.787543269524         1.38849234820    
+    0.795115800962         1.35055901271    
+    0.802688332400         1.31319212606    
+    0.810260863838         1.27641618822    
+    0.817833395275         1.24025299615    
+    0.825405926713         1.20472173191    
+    0.832978458151         1.16983906175    
+    0.840550989589         1.13561924331    
+    0.848123521026         1.10207423889    
+    0.855696052464         1.06921383268    
+    0.863268583902         1.03704575032    
+    0.870841115340         1.00557577936    
+    0.878413646777        0.974807889521    
+    0.885986178215        0.944744351659    
+    0.893558709653        0.915385854684    
+    0.901131241091        0.886731619741    
+    0.908703772528        0.858779511136    
+    0.916276303966        0.831526143576    
+    0.923848835404        0.804966985400    
+    0.931421366841        0.779096457581    
+    0.938993898279        0.753908028328    
+    0.946566429717        0.729394303167    
+    0.954138961155        0.705547110497    
+    0.961711492592        0.682357582573    
+    0.969284024030        0.659816231974    
+    0.976856555468        0.637913023615    
+    0.984429086906        0.616637442398    
+    0.992001618343        0.595978556594    
+    0.999574149781        0.575925077103    
+     1.00714668122        0.556465412741    
+     1.01471921266        0.537587721634    
+     1.02229174409        0.519279958962    
+     1.02986427553        0.501529921198    
+     1.03743680697        0.484325286951    
+     1.04500933841        0.467653654556    
+     1.05258186985        0.451502576719    
+     1.06015440128        0.435859592232    
+     1.06772693272        0.420712254966    
+     1.07529946416        0.406048160295    
+     1.08287199560        0.391854969120    
+     1.09044452703        0.378120429610    
+     1.09801705847        0.364832396794    
+     1.10558958991        0.351978850191    
+     1.11316212135        0.339547909561    
+     1.12073465278        0.327527848904    
+     1.12830718422        0.315907108839    
+     1.13587971566        0.304674307496    
+     1.14345224710        0.293818249986    
+     1.15102477854        0.283327936573    
+     1.15859730997        0.273192569646    
+     1.16616984141        0.263401559596    
+     1.17374237285        0.253944529651    
+     1.18131490429        0.244811319769    
+     1.18888743572        0.235991989671    
+     1.19645996716        0.227476821076    
+     1.20403249860        0.219256319213    
+     1.21160503004        0.211321213681    
+     1.21917756148        0.203662458677    
+     1.22675009291        0.196271232690    
+     1.23432262435        0.189138937709    
+     1.24189515579        0.182257197976    
+     1.24946768723        0.175617858329    
+     1.25704021866        0.169212982179    
+     1.26461275010        0.163034849175    
+     1.27218528154        0.157075952580    
+     1.27975781298        0.151328996392    
+     1.28733034442        0.145786892244    
+     1.29490287585        0.140442756105    
+     1.30247540729        0.135289904813    
+     1.31004793873        0.130321852471    
+     1.31762047017        0.125532306711    
+     1.32519300160        0.120915164873    
+     1.33276553304        0.116464510081    
+     1.34033806448        0.112174607274    
+     1.34791059592        0.108039899177    
+     1.35548312735        0.104055002237    
+     1.36305565879        0.100214702542    
+     1.37062819023        0.965139517269E-01
+     1.37820072167        0.929478628824E-01
+     1.38577325311        0.895117064740E-01
+     1.39334578454        0.862009062819E-01
+     1.40091831598        0.830110353643E-01
+     1.40849084742        0.799378120580E-01
+     1.41606337886        0.769770960217E-01
+     1.42363591029        0.741248843233E-01
+     1.43120844173        0.713773075795E-01
+     1.43878097317        0.687306261485E-01
+     1.44635350461        0.661812263852E-01
+     1.45392603605        0.637256169591E-01
+     1.46149856748        0.613604252373E-01
+     1.46907109892        0.590823937337E-01
+     1.47664363036        0.568883766307E-01
+     1.48421616180        0.547753363698E-01
+     1.49178869323        0.527403403185E-01
+     1.49936122467        0.507805575080E-01
+     1.50693375611        0.488932554454E-01
+     1.51450628755        0.470757970024E-01
+     1.52207881898        0.453256373776E-01
+     1.52965135042        0.436403211366E-01
+     1.53722388186        0.420174793256E-01
+     1.54479641330        0.404548266572E-01
+     1.55236894474        0.389501587738E-01
+     1.55994147617        0.375013495825E-01
+     1.56751400761        0.361063486652E-01
+     1.57508653905        0.347631787589E-01
+     1.58265907049        0.334699333064E-01
+     1.59023160192        0.322247740784E-01
+     1.59780413336        0.310259288633E-01
+     1.60537666480        0.298716892267E-01
+     1.61294919624        0.287604083361E-01
+     1.62052172768        0.276904988504E-01
+     1.62809425911        0.266604308744E-01
+     1.63566679055        0.256687299752E-01
+     1.64323932199        0.247139752615E-01
+     1.65081185343        0.237947975210E-01
+     1.65838438486        0.229098774175E-01
+     1.66595691630        0.220579437449E-01
+     1.67352944774        0.212377717370E-01
+     1.68110197918        0.204481814316E-01
+     1.68867451062        0.196880360884E-01
+     1.69624704205        0.189562406575E-01
+     1.70381957349        0.182517402990E-01
+     1.71139210493        0.175735189514E-01
+     1.71896463637        0.169205979476E-01
+     1.72653716780        0.162920346766E-01
+     1.73410969924        0.156869212905E-01
+     1.74168223068        0.151043834559E-01
+     1.74925476212        0.145435791465E-01
+     1.75682729355        0.140036974773E-01
+     1.76439982499        0.134839575794E-01
+     1.77197235643        0.129836075120E-01
+     1.77954488787        0.125019232138E-01
+     1.78711741931        0.120382074889E-01
+     1.79468995074        0.115917890289E-01
+     1.80226248218        0.111620214695E-01
+     1.80983501362        0.107482824789E-01
+     1.81740754506        0.103499728794E-01
+     1.82498007649        0.996651579936E-02
+     1.83255260793        0.959735585491E-02
+     1.84012513937        0.924195836148E-02
+     1.84769767081        0.889980857247E-02
+     1.85527020225        0.857041094549E-02
+     1.86284273368        0.825328843458E-02
+     1.87041526512        0.794798180792E-02
+     1.87798779656        0.765404898975E-02
+     1.88556032800        0.737106442651E-02
+     1.89313285943        0.709861847521E-02
+     1.90070539087        0.683631681422E-02
+     1.90827792231        0.658377987508E-02
+     1.91585045375        0.634064229515E-02
+     1.92342298518        0.610655238989E-02
+     1.93099551662        0.588117164484E-02
+     1.93856804806        0.566417422548E-02
+     1.94614057950        0.545524650547E-02
+     1.95371311094        0.525408661162E-02
+     1.96128564237        0.506040398594E-02
+     1.96885817381        0.487391896343E-02
+     1.97643070525        0.469436236571E-02
+     1.98400323669        0.452147510928E-02
+     1.99157576812        0.435500782832E-02
+     1.99914829956        0.419472051137E-02
+     2.00672083100        0.404038215139E-02
+     2.01429336244        0.389177040879E-02
+     2.02186589388        0.374867128679E-02
+     2.02943842531        0.361087881900E-02
+     2.03701095675        0.347819476838E-02
+     2.04458348819        0.335042833746E-02
+     2.05215601963        0.322739588931E-02
+     2.05972855106        0.310892067888E-02
+     2.06730108250        0.299483259429E-02
+     2.07487361394        0.288496790777E-02
+     2.08244614538        0.277916903593E-02
+     2.09001867681        0.267728430891E-02
+     2.09759120825        0.257916774810E-02
+     2.10516373969        0.248467885232E-02
+     2.11273627113        0.239368239181E-02
+     2.12030880257        0.230604821002E-02
+     2.12788133400        0.222165103283E-02
+     2.13545386544        0.214037028483E-02
+     2.14302639688        0.206208991259E-02
+     2.15059892832        0.198669821446E-02
+     2.15817145975        0.191408767681E-02
+     2.16574399119        0.184415481644E-02
+     2.17331652263        0.177680002882E-02
+     2.18088905407        0.171192744212E-02
+     2.18846158551        0.164944477668E-02
+     2.19603411694        0.158926320976E-02
+     2.20360664838        0.153129724542E-02
+     2.21117917982        0.147546458926E-02
+     2.21875171126        0.142168602788E-02
+     2.22632424269        0.136988531290E-02
+     2.23389677413        0.131998904932E-02
+     2.24146930557        0.127192658813E-02
+     2.24904183701        0.122562992292E-02
+     2.25661436845        0.118103359043E-02
+     2.26418689988        0.113807457479E-02
+     2.27175943132        0.109669221548E-02
+     2.27933196276        0.105682811867E-02
+     2.28690449420        0.101842607193E-02
+     2.29447702563        0.981431962174E-03
+     2.30204955707        0.945793696675E-03
+     2.30962208851        0.911461127102E-03
+     2.31719461995        0.878385976386E-03
+     2.32476715138        0.846521768380E-03
+     2.33233968282        0.815823760151E-03
+     2.33991221426        0.786248876848E-03
+     2.34748474570        0.757755649003E-03
+     2.35505727714        0.730304152250E-03
+     2.36262980857        0.703855949269E-03
+     2.37020234001        0.678374033947E-03
+     2.37777487145        0.653822777659E-03
+     2.38534740289        0.630167877541E-03
+     2.39291993432        0.607376306751E-03
+     2.40049246576        0.585416266602E-03
+     2.40806499720        0.564257140480E-03
+     2.41563752864        0.543869449547E-03
+     2.42321006008        0.524224810073E-03
+     2.43078259151        0.505295892398E-03
+     2.43835512295        0.487056381450E-03
+     2.44592765439        0.469480938723E-03
+     2.45350018583        0.452545165725E-03
+     2.46107271726        0.436225568786E-03
+     2.46864524870        0.420499525192E-03
+     2.47621778014        0.405345250616E-03
+     2.48379031158        0.390741767754E-03
+     2.49136284301        0.376668876152E-03
+     2.49893537445        0.363107123183E-03
+     2.50650790589        0.350037776086E-03
+     2.51408043733        0.337442795092E-03
+     2.52165296877        0.325304807544E-03
+     2.52922550020        0.313607082992E-03
+     2.53679803164        0.302333509238E-03
+     2.54437056308        0.291468569271E-03
+     2.55194309452        0.280997319070E-03
+     2.55951562595        0.270905366252E-03
+     2.56708815739        0.261178849509E-03
+     2.57466068883        0.251804418829E-03
+     2.58223322027        0.242769216454E-03
+     2.58980575171        0.234060858563E-03
+     2.59737828314        0.225667417626E-03
+     2.60495081458        0.217577405441E-03
+     2.61252334602        0.209779756792E-03
+     2.62009587746        0.202263813726E-03
+     2.62766840889        0.195019310429E-03
+     2.63524094033        0.188036358645E-03
+     2.64281347177        0.181305433668E-03
+     2.65038600321        0.174817360845E-03
+     2.65795853465        0.168563302591E-03
+     2.66553106608        0.162534745879E-03
+     2.67310359752        0.156723490213E-03
+     2.68067612896        0.151121636043E-03
+     2.68824866040        0.145721573619E-03
+     2.69582119183        0.140515972250E-03
+     2.70339372327        0.135497769978E-03
+     2.71096625471        0.130660163634E-03
+     2.71853878615        0.125996599259E-03
+     2.72611131758        0.121500762896E-03
+     2.73368384902        0.117166571710E-03
+     2.74125638046        0.112988165451E-03
+     2.74882891190        0.108959898228E-03
+     2.75640144334        0.105076330603E-03
+     2.76397397477        0.101332221961E-03
+     2.77154650621        0.977225231773E-04
+     2.77911903765        0.942423695539E-04
+     2.78669156909        0.908870740199E-04
+     2.79426410052        0.876521205884E-04
+     2.80183663196        0.845331580460E-04
+     2.80940916340        0.815259938886E-04
+     2.81698169484        0.786265884768E-04
+     2.82455422628        0.758310494152E-04
+     2.83212675771        0.731356261275E-04
+     2.83969928915        0.705367046461E-04
+     2.84727182059        0.680308025889E-04
+     2.85484435203        0.656145643231E-04
+     2.86241688346        0.632847563138E-04
+     2.86998941490        0.610382626332E-04
+     2.87756194634        0.588720806486E-04
+     2.88513447778        0.567833168636E-04
+     2.89270700921        0.547691829143E-04
+     2.90027954065        0.528269917196E-04
+     2.90785207209        0.509541537608E-04
+     2.91542460353        0.491481735117E-04
+     2.92299713497        0.474066459957E-04
+     2.93056966640        0.457272534686E-04
+     2.93814219784        0.441077622316E-04
+     2.94571472928        0.425460195479E-04
+     2.95328726072        0.410399506874E-04
+     2.96085979215        0.395875560731E-04
+     2.96843232359        0.381869085343E-04
+     2.97600485503        0.368361506647E-04
+     2.98357738647        0.355334922687E-04
+     2.99114991791        0.342772079116E-04
+     2.99872244934        0.330656345541E-04
+     3.00629498078        0.318971692814E-04
+     3.01386751222        0.307702671029E-04
+     3.02144004366        0.296834388450E-04
+     3.02901257509        0.286352491162E-04
+     3.03658510653        0.276243143468E-04
+     3.04415763797        0.266493009060E-04
+     3.05173016941        0.257089232776E-04
+     3.05930270085        0.248019423131E-04
+     3.06687523228        0.239271635440E-04
+     3.07444776372        0.230834355557E-04
+     3.08202029516        0.222696484273E-04
+     3.08959282660        0.214847322170E-04
+     3.09716535803        0.207276555133E-04
+     3.10473788947        0.199974240354E-04
+     3.11231042091        0.192930792852E-04
+     3.11988295235        0.186136972478E-04
+     3.12745548378        0.179583871443E-04
+     3.13502801522        0.173262902204E-04
+     3.14260054666        0.167165785896E-04
+     3.15017307810        0.161284541134E-04
+     3.15774560954        0.155611473228E-04
+     3.16531814097        0.150139163840E-04
+     3.17289067241        0.144860460913E-04
+     3.18046320385        0.139768469080E-04
+     3.18803573529        0.134856540362E-04
+     3.19560826672        0.130118265217E-04
+     3.20318079816        0.125547463951E-04
+     3.21075332960        0.121138178357E-04
+     3.21832586104        0.116884663749E-04
+     3.22589839248        0.112781381236E-04
+     3.23347092391        0.108822990290E-04
+     3.24104345535        0.105004341616E-04
+     3.24861598679        0.101320470200E-04
+     3.25618851823        0.977665886936E-05
+     3.26376104966        0.943380809995E-05
+     3.27133358110        0.910304960993E-05
+     3.27890611254        0.878395420960E-05
+     3.28647864398        0.847610805128E-05
+     3.29405117541        0.817911207184E-05
+     3.30162370685        0.789258146356E-05
+     3.30919623829        0.761614516035E-05
+     3.31676876973        0.734944534250E-05
+     3.32434130117        0.709213696342E-05
+     3.33191383260        0.684388728545E-05
+     3.33948636404        0.660437544046E-05
+     3.34705889548        0.637329200255E-05
+     3.35463142692        0.615033857705E-05
+     3.36220395835        0.593522740363E-05
+     3.36977648979        0.572768097732E-05
+     3.37734902123        0.552743167597E-05
+     3.38492155267        0.533422140856E-05
+     3.39249408411        0.514780127258E-05
+     3.40006661554        0.496793122389E-05
+     3.40763914698        0.479437976194E-05
+     3.41521167842        0.462692361935E-05
+     3.42278420986        0.446534746957E-05
+     3.43035674129        0.430944364186E-05
+     3.43792927273        0.415901184716E-05
+     3.44550180417        0.401385891325E-05
+     3.45307433561        0.387379853259E-05
+     3.46064686705        0.373865101283E-05
+     3.46821939848        0.360824304271E-05
+     3.47579192992        0.348240746337E-05
+     3.48336446136        0.336098304836E-05
+     3.49093699280        0.324381429118E-05
+     3.49850952423        0.313075120318E-05
+     3.50608205567        0.302164911290E-05
+     3.51365458711        0.291636847863E-05
+     3.52122711855        0.281477470469E-05
+     3.52879964998        0.271673796444E-05
+     3.53637218142        0.262213303231E-05
+     3.54394471286        0.253083911647E-05
+     3.55151724430        0.244273970275E-05
+     3.55908977574        0.235772240173E-05
+     3.56666230717        0.227567880173E-05
+     3.57423483861        0.219650432664E-05
+     3.58180737005        0.212009810129E-05
+     3.58937990149        0.204636281670E-05
+     3.59695243292        0.197520460499E-05
+     3.60452496436        0.190653291653E-05
+     3.61209749580        0.184026040183E-05
+     3.61967002724        0.177630279509E-05
+     3.62724255868        0.171457881578E-05
+     3.63481509011        0.165501004546E-05
+     3.64238762155        0.159752083690E-05
+     3.64996015299        0.154203821318E-05
+     3.65753268443        0.148849177283E-05
+     3.66510521586        0.143681356529E-05
+     3.67267774730        0.138693814115E-05
+     3.68025027874        0.133880225936E-05
+     3.68782281018        0.129234493644E-05
+     3.69539534161        0.124750733712E-05
+     3.70296787305        0.120423269829E-05
+     3.71054040449        0.116246576939E-05
+     3.71811293593        0.112215473039E-05
+     3.72568546737        0.108324822468E-05
+     3.73325799880        0.104569708061E-05
+     3.74083053024        0.100945383001E-05
+     3.74840306168        0.974472637742E-06
+     3.75597559312        0.940699493965E-06
+     3.76354812455        0.908110361762E-06
+     3.77112065599        0.876658261990E-06
+     3.77869318743        0.846305090294E-06
+</data>
+</radfunc>
+</core>
+</ion>
diff --git a/tests/data/parsers/siesta/Fe/Fe.psf b/tests/data/parsers/siesta/Fe/Fe.psf
new file mode 100644
index 0000000000000000000000000000000000000000..e0db5468fc8b121e5fb2bb85a98d36e1b69a1bcf
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.psf
@@ -0,0 +1,2831 @@
+ Fe pb rel pcec
+ ATM3       8-OCT-07 Troullier-Martins                       
+ 4s 2.00r r= 2.00/4p 0.00r r= 2.00/3d 6.00r r= 2.00/4f 0.00r r= 2.00/  
+   4  3 1123  0.953366221795E-04  0.125000000000E-01   8.00000000000    
+ Radial grid follows
+  0.119918708213E-05  0.241345808087E-05  0.364300272851E-05  0.488801314393E-05
+  0.614868386252E-05  0.742521186666E-05  0.871779661643E-05  0.100266400808E-04
+  0.113519467694E-04  0.126939237638E-04  0.140527807509E-04  0.154287300547E-04
+  0.168219866701E-04  0.182327682964E-04  0.196612953710E-04  0.211077911042E-04
+  0.225724815139E-04  0.240555954609E-04  0.255573646848E-04  0.270780238401E-04
+  0.286178105329E-04  0.301769653581E-04  0.317557319366E-04  0.333543569540E-04
+  0.349730901988E-04  0.366121846012E-04  0.382718962731E-04  0.399524845479E-04
+  0.416542120209E-04  0.433773445904E-04  0.451221514994E-04  0.468889053776E-04
+  0.486778822838E-04  0.504893617493E-04  0.523236268215E-04  0.541809641081E-04
+  0.560616638217E-04  0.579660198255E-04  0.598943296790E-04  0.618468946845E-04
+  0.638240199344E-04  0.658260143584E-04  0.678531907722E-04  0.699058659264E-04
+  0.719843605555E-04  0.740889994285E-04  0.762201113997E-04  0.783780294595E-04
+  0.805630907870E-04  0.827756368026E-04  0.850160132210E-04  0.872845701056E-04
+  0.895816619230E-04  0.919076475986E-04  0.942628905723E-04  0.966477588555E-04
+  0.990626250889E-04  0.101507866600E-03  0.103983865463E-03  0.106491008558E-03
+  0.109029687631E-03  0.111600299356E-03  0.114203245395E-03  0.116838932465E-03
+  0.119507772397E-03  0.122210182203E-03  0.124946584140E-03  0.127717405776E-03
+  0.130523080058E-03  0.133364045377E-03  0.136240745641E-03  0.139153630340E-03
+  0.142103154618E-03  0.145089779345E-03  0.148113971185E-03  0.151176202677E-03
+  0.154276952298E-03  0.157416704549E-03  0.160595950021E-03  0.163815185478E-03
+  0.167074913932E-03  0.170375644723E-03  0.173717893596E-03  0.177102182784E-03
+  0.180529041090E-03  0.183999003967E-03  0.187512613604E-03  0.191070419010E-03
+  0.194672976098E-03  0.198320847777E-03  0.202014604032E-03  0.205754822022E-03
+  0.209542086162E-03  0.213376988220E-03  0.217260127409E-03  0.221192110475E-03
+  0.225173551800E-03  0.229205073492E-03  0.233287305484E-03  0.237420885633E-03
+  0.241606459820E-03  0.245844682049E-03  0.250136214550E-03  0.254481727886E-03
+  0.258881901050E-03  0.263337421579E-03  0.267848985658E-03  0.272417298226E-03
+  0.277043073093E-03  0.281727033044E-03  0.286469909959E-03  0.291272444922E-03
+  0.296135388338E-03  0.301059500051E-03  0.306045549466E-03  0.311094315661E-03
+  0.316206587517E-03  0.321383163837E-03  0.326624853472E-03  0.331932475445E-03
+  0.337306859085E-03  0.342748844148E-03  0.348259280957E-03  0.353839030528E-03
+  0.359488964709E-03  0.365209966313E-03  0.371002929259E-03  0.376868758708E-03
+  0.382808371208E-03  0.388822694837E-03  0.394912669344E-03  0.401079246301E-03
+  0.407323389246E-03  0.413646073841E-03  0.420048288018E-03  0.426531032136E-03
+  0.433095319136E-03  0.439742174703E-03  0.446472637420E-03  0.453287758936E-03
+  0.460188604128E-03  0.467176251266E-03  0.474251792186E-03  0.481416332454E-03
+  0.488670991545E-03  0.496016903014E-03  0.503455214674E-03  0.510987088776E-03
+  0.518613702193E-03  0.526336246596E-03  0.534155928650E-03  0.542073970196E-03
+  0.550091608444E-03  0.558210096165E-03  0.566430701892E-03  0.574754710109E-03
+  0.583183421460E-03  0.591718152948E-03  0.600360238143E-03  0.609111027387E-03
+  0.617971888010E-03  0.626944204539E-03  0.636029378917E-03  0.645228830720E-03
+  0.654543997382E-03  0.663976334416E-03  0.673527315645E-03  0.683198433428E-03
+  0.692991198898E-03  0.702907142194E-03  0.712947812701E-03  0.723114779297E-03
+  0.733409630588E-03  0.743833975168E-03  0.754389441861E-03  0.765077679981E-03
+  0.775900359585E-03  0.786859171741E-03  0.797955828784E-03  0.809192064590E-03
+  0.820569634844E-03  0.832090317313E-03  0.843755912129E-03  0.855568242064E-03
+  0.867529152819E-03  0.879640513310E-03  0.891904215962E-03  0.904322177003E-03
+  0.916896336766E-03  0.929628659988E-03  0.942521136121E-03  0.955575779639E-03
+  0.968794630359E-03  0.982179753752E-03  0.995733241271E-03  0.100945721068E-02
+  0.102335380636E-02  0.103742519971E-02  0.105167358939E-02  0.106610120176E-02
+  0.108071029114E-02  0.109550314025E-02  0.111048206049E-02  0.112564939236E-02
+  0.114100750578E-02  0.115655880048E-02  0.117230570639E-02  0.118825068399E-02
+  0.120439622472E-02  0.122074485135E-02  0.123729911838E-02  0.125406161247E-02
+  0.127103495277E-02  0.128822179141E-02  0.130562481387E-02  0.132324673941E-02
+  0.134109032148E-02  0.135915834818E-02  0.137745364268E-02  0.139597906366E-02
+  0.141473750574E-02  0.143373189998E-02  0.145296521429E-02  0.147244045391E-02
+  0.149216066189E-02  0.151212891955E-02  0.153234834697E-02  0.155282210348E-02
+  0.157355338814E-02  0.159454544026E-02  0.161580153989E-02  0.163732500834E-02
+  0.165911920870E-02  0.168118754635E-02  0.170353346951E-02  0.172616046979E-02
+  0.174907208269E-02  0.177227188821E-02  0.179576351135E-02  0.181955062274E-02
+  0.184363693915E-02  0.186802622413E-02  0.189272228855E-02  0.191772899122E-02
+  0.194305023949E-02  0.196868998985E-02  0.199465224857E-02  0.202094107230E-02
+  0.204756056872E-02  0.207451489720E-02  0.210180826938E-02  0.212944494993E-02
+  0.215742925712E-02  0.218576556357E-02  0.221445829687E-02  0.224351194033E-02
+  0.227293103363E-02  0.230272017358E-02  0.233288401477E-02  0.236342727039E-02
+  0.239435471286E-02  0.242567117467E-02  0.245738154907E-02  0.248949079089E-02
+  0.252200391724E-02  0.255492600838E-02  0.258826220845E-02  0.262201772630E-02
+  0.265619783629E-02  0.269080787914E-02  0.272585326273E-02  0.276133946299E-02
+  0.279727202469E-02  0.283365656238E-02  0.287049876122E-02  0.290780437786E-02
+  0.294557924140E-02  0.298382925423E-02  0.302256039299E-02  0.306177870951E-02
+  0.310149033172E-02  0.314170146464E-02  0.318241839135E-02  0.322364747395E-02
+  0.326539515457E-02  0.330766795636E-02  0.335047248455E-02  0.339381542741E-02
+  0.343770355739E-02  0.348214373208E-02  0.352714289535E-02  0.357270807842E-02
+  0.361884640093E-02  0.366556507210E-02  0.371287139181E-02  0.376077275177E-02
+  0.380927663667E-02  0.385839062533E-02  0.390812239192E-02  0.395847970712E-02
+  0.400947043938E-02  0.406110255608E-02  0.411338412487E-02  0.416632331483E-02
+  0.421992839783E-02  0.427420774977E-02  0.432916985191E-02  0.438482329219E-02
+  0.444117676656E-02  0.449823908039E-02  0.455601914976E-02  0.461452600294E-02
+  0.467376878173E-02  0.473375674294E-02  0.479449925982E-02  0.485600582351E-02
+  0.491828604452E-02  0.498134965428E-02  0.504520650659E-02  0.510986657923E-02
+  0.517533997546E-02  0.524163692563E-02  0.530876778877E-02  0.537674305422E-02
+  0.544557334326E-02  0.551526941075E-02  0.558584214685E-02  0.565730257869E-02
+  0.572966187211E-02  0.580293133339E-02  0.587712241105E-02  0.595224669758E-02
+  0.602831593130E-02  0.610534199820E-02  0.618333693374E-02  0.626231292480E-02
+  0.634228231154E-02  0.642325758934E-02  0.650525141074E-02  0.658827658745E-02
+  0.667234609233E-02  0.675747306139E-02  0.684367079592E-02  0.693095276446E-02
+  0.701933260502E-02  0.710882412713E-02  0.719944131400E-02  0.729119832477E-02
+  0.738410949666E-02  0.747818934721E-02  0.757345257661E-02  0.766991406992E-02
+  0.776758889945E-02  0.786649232710E-02  0.796663980671E-02  0.806804698654E-02
+  0.817072971167E-02  0.827470402648E-02  0.837998617718E-02  0.848659261430E-02
+  0.859453999532E-02  0.870384518725E-02  0.881452526924E-02  0.892659753527E-02
+  0.904007949688E-02  0.915498888583E-02  0.927134365697E-02  0.938916199096E-02
+  0.950846229715E-02  0.962926321646E-02  0.975158362429E-02  0.987544263343E-02
+  0.100008595971E-01  0.101278541120E-01  0.102564460213E-01  0.103866554176E-01
+  0.105185026465E-01  0.106520083094E-01  0.107871932668E-01  0.109240786417E-01
+  0.110626858226E-01  0.112030364672E-01  0.113451525056E-01  0.114890561437E-01
+  0.116347698667E-01  0.117823164427E-01  0.119317189262E-01  0.120830006616E-01
+  0.122361852870E-01  0.123912967378E-01  0.125483592504E-01  0.127073973662E-01
+  0.128684359353E-01  0.130315001202E-01  0.131966154000E-01  0.133638075744E-01
+  0.135331027675E-01  0.137045274319E-01  0.138781083532E-01  0.140538726536E-01
+  0.142318477969E-01  0.144120615918E-01  0.145945421972E-01  0.147793181261E-01
+  0.149664182500E-01  0.151558718038E-01  0.153477083899E-01  0.155419579832E-01
+  0.157386509356E-01  0.159378179808E-01  0.161394902391E-01  0.163436992220E-01
+  0.165504768377E-01  0.167598553957E-01  0.169718676117E-01  0.171865466131E-01
+  0.174039259439E-01  0.176240395701E-01  0.178469218849E-01  0.180726077140E-01
+  0.183011323214E-01  0.185325314146E-01  0.187668411500E-01  0.190040981390E-01
+  0.192443394536E-01  0.194876026320E-01  0.197339256844E-01  0.199833470994E-01
+  0.202359058496E-01  0.204916413978E-01  0.207505937032E-01  0.210128032276E-01
+  0.212783109418E-01  0.215471583319E-01  0.218193874059E-01  0.220950407001E-01
+  0.223741612860E-01  0.226567927765E-01  0.229429793336E-01  0.232327656745E-01
+  0.235261970787E-01  0.238233193957E-01  0.241241790513E-01  0.244288230556E-01
+  0.247372990097E-01  0.250496551136E-01  0.253659401736E-01  0.256862036100E-01
+  0.260104954644E-01  0.263388664082E-01  0.266713677501E-01  0.270080514439E-01
+  0.273489700973E-01  0.276941769794E-01  0.280437260296E-01  0.283976718656E-01
+  0.287560697921E-01  0.291189758096E-01  0.294864466228E-01  0.298585396498E-01
+  0.302353130309E-01  0.306168256378E-01  0.310031370825E-01  0.313943077270E-01
+  0.317903986925E-01  0.321914718689E-01  0.325975899250E-01  0.330088163172E-01
+  0.334252153008E-01  0.338468519388E-01  0.342737921128E-01  0.347061025330E-01
+  0.351438507490E-01  0.355871051597E-01  0.360359350245E-01  0.364904104740E-01
+  0.369506025209E-01  0.374165830712E-01  0.378884249353E-01  0.383662018394E-01
+  0.388499884371E-01  0.393398603211E-01  0.398358940348E-01  0.403381670846E-01
+  0.408467579516E-01  0.413617461042E-01  0.418832120102E-01  0.424112371500E-01
+  0.429459040283E-01  0.434872961881E-01  0.440354982229E-01  0.445905957904E-01
+  0.451526756258E-01  0.457218255552E-01  0.462981345094E-01  0.468816925378E-01
+  0.474725908226E-01  0.480709216929E-01  0.486767786390E-01  0.492902563273E-01
+  0.499114506151E-01  0.505404585650E-01  0.511773784610E-01  0.518223098231E-01
+  0.524753534230E-01  0.531366113002E-01  0.538061867775E-01  0.544841844776E-01
+  0.551707103388E-01  0.558658716324E-01  0.565697769786E-01  0.572825363640E-01
+  0.580042611589E-01  0.587350641341E-01  0.594750594791E-01  0.602243628198E-01
+  0.609830912361E-01  0.617513632811E-01  0.625292989988E-01  0.633170199432E-01
+  0.641146491973E-01  0.649223113924E-01  0.657401327272E-01  0.665682409881E-01
+  0.674067655686E-01  0.682558374899E-01  0.691155894212E-01  0.699861557005E-01
+  0.708676723556E-01  0.717602771252E-01  0.726641094807E-01  0.735793106476E-01
+  0.745060236280E-01  0.754443932228E-01  0.763945660541E-01  0.773566905882E-01
+  0.783309171592E-01  0.793173979919E-01  0.803162872260E-01  0.813277409398E-01
+  0.823519171752E-01  0.833889759618E-01  0.844390793420E-01  0.855023913968E-01
+  0.865790782706E-01  0.876693081982E-01  0.887732515300E-01  0.898910807596E-01
+  0.910229705499E-01  0.921690977612E-01  0.933296414780E-01  0.945047830377E-01
+  0.956947060586E-01  0.968995964685E-01  0.981196425341E-01  0.993550348900E-01
+  0.100605966569      0.101872633031      0.103155232196      0.104453964472    
+  0.105769032790      0.107100642630      0.108449002061      0.109814321765    
+  0.111196815077      0.112596698014      0.114014189310      0.115449510453    
+  0.116902885712      0.118374542182      0.119864709812      0.121373621443    
+  0.122901512846      0.124448622756      0.126015192914      0.127601468098    
+  0.129207696169      0.130834128101      0.132481018028      0.134148623280    
+  0.135837204424      0.137547025305      0.139278353084      0.141031458286    
+  0.142806614837      0.144604100109      0.146424194961      0.148267183789    
+  0.150133354563      0.152022998875      0.153936411986      0.155873892872    
+  0.157835744267      0.159822272715      0.161833788614      0.163870606269    
+  0.165933043936      0.168021423875      0.170136072400      0.172277319929    
+  0.174445501037      0.176640954505      0.178864023378      0.181115055016    
+  0.183394401146      0.185702417921      0.188039465972      0.190405910470    
+  0.192802121175      0.195228472500      0.197685343568      0.200173118269    
+  0.202692185324      0.205242938342      0.207825775883      0.210441101521    
+  0.213089323906      0.215770856828      0.218486119281      0.221235535532    
+  0.224019535182      0.226838553236      0.229693030173      0.232583412009    
+  0.235510150373      0.238473702574      0.241474531673      0.244513106555    
+  0.247589902004      0.250705398775      0.253860083672      0.257054449619    
+  0.260288995744      0.263564227451      0.266880656501      0.270238801093    
+  0.273639185944      0.277082342371      0.280568808374      0.284099128721    
+  0.287673855032      0.291293545864      0.294958766802      0.298670090543    
+  0.302428096991      0.306233373341      0.310086514174      0.313988121553    
+  0.317938805112      0.321939182152      0.325989877741      0.330091524808    
+  0.334244764244      0.338450245000      0.342708624193      0.347020567202    
+  0.351386747777      0.355807848143      0.360284559106      0.364817580161    
+  0.369407619601      0.374055394630      0.378761631472      0.383527065486    
+  0.388352441281      0.393238512831      0.398186043596      0.403195806637    
+  0.408268584739      0.413405170535      0.418606366626      0.423872985710    
+  0.429205850707      0.434605794889      0.440073662006      0.445610306425    
+  0.451216593257      0.456893398497      0.462641609156      0.468462123405    
+  0.474355850710      0.480323711978      0.486366639700      0.492485578096    
+  0.498681483261      0.504955323320      0.511308078571      0.517740741647    
+  0.524254317664      0.530849824380      0.537528292359      0.544290765123    
+  0.551138299323      0.558071964901      0.565092845254      0.572202037411    
+  0.579400652198      0.586689814411      0.594070662998      0.601544351231    
+  0.609112046890      0.616774932442      0.624534205228      0.632391077651    
+  0.640346777363      0.648402547458      0.656559646667      0.664819349553    
+  0.673182946712      0.681651744972      0.690227067601      0.698910254510    
+  0.707702662465      0.716605665297      0.725620654119      0.734749037541    
+  0.743992241891      0.753351711439      0.762828908622      0.772425314270    
+  0.782142427841      0.791981767655      0.801944871127      0.812033295014    
+  0.822248615652      0.832592429205      0.843066351916      0.853672020356    
+  0.864411091683      0.875285243898      0.886296176110      0.897445608799    
+  0.908735284086      0.920166966008      0.931742440786      0.943463517113    
+  0.955332026430      0.967349823217      0.979518785278      0.991840814039    
+   1.00431783484       1.01695179725       1.02974467533       1.04269846802    
+   1.05581519936       1.06909691887       1.08254570184       1.09616364968    
+   1.10995289021       1.12391557804       1.13805389486       1.15237004982    
+   1.16686627983       1.18154484997       1.19640805380       1.21145821371    
+   1.22669768134       1.24212883786       1.25775409444       1.27357589256    
+   1.28959670439       1.30581903323       1.32224541385       1.33887841290    
+   1.35572062932       1.37277469475       1.39004327391       1.40752906506    
+   1.42523480038       1.44316324644       1.46131720459       1.47969951142    
+   1.49831303920       1.51716069635       1.53624542783       1.55557021569    
+   1.57513807945       1.59495207664       1.61501530323       1.63533089415    
+   1.65590202374       1.67673190629       1.69782379651       1.71918099004    
+   1.74080682400       1.76270467747       1.78487797202       1.80733017228    
+   1.83006478646       1.85308536688       1.87639551056       1.89999885974    
+   1.92389910252       1.94809997333       1.97260525363       1.99741877241    
+   2.02254440683       2.04798608283       2.07374777572       2.09983351081    
+   2.12624736405       2.15299346267       2.18007598580       2.20749916513    
+   2.23526728559       2.26338468601       2.29185575978       2.32068495558    
+   2.34987677803       2.37943578839       2.40936660534       2.43967390561    
+   2.47036242480       2.50143695803       2.53290236078       2.56476354957    
+   2.59702550278       2.62969326140       2.66277192984       2.69626667671    
+   2.73018273563       2.76452540606       2.79930005410       2.83451211336    
+   2.87016708581       2.90627054260       2.94282812497       2.97984554512    
+   3.01732858709       3.05528310770       3.09371503740       3.13263038126    
+   3.17203521989       3.21193571038       3.25233808725       3.29324866346    
+   3.33467383137       3.37662006375       3.41909391478       3.46210202109    
+   3.50565110278       3.54974796448       3.59439949642       3.63961267549    
+   3.68539456634       3.73175232249       3.77869318743       3.82622449576    
+   3.87435367435       3.92308824348       3.97243581803       4.02240410865    
+   4.07300092300       4.12423416692       4.17611184572       4.22864206538    
+   4.28183303387       4.33569306238       4.39023056665       4.44545406827    
+   4.50137219603       4.55799368725       4.61532738916       4.67338226025    
+   4.73216737173       4.79169190889       4.85196517255       4.91299658053    
+   4.97479566913       5.03737209456       5.10073563453       5.16489618972    
+   5.22986378534       5.29564857272       5.36226083085       5.42971096805    
+   5.49800952353       5.56716716908       5.63719471072       5.70810309040    
+   5.77990338770       5.85260682156       5.92622475204       6.00076868209    
+   6.07625025935       6.15268127797       6.23007368046       6.30843955953    
+   6.38779116001       6.46814088076       6.54950127657       6.63188506018    
+   6.71530510422       6.79977444324       6.88530627575       6.97191396627    
+   7.05961104743       7.14841122207       7.23832836540       7.32937652717    
+   7.42156993383       7.51492299078       7.60945028464       7.70516658549    
+   7.80208684918       7.90022621972       7.99960003157       8.10022381210    
+   8.20211328397       8.30528436763       8.40975318377       8.51553605585    
+   8.62264951265       8.73111029089       8.84093533777       8.95214181367    
+   9.06474709485       9.17876877610       9.29422467354       9.41113282739    
+   9.52951150479       9.64937920264       9.77075465053       9.89365681360    
+   10.0181048956       10.1441183417       10.2717168419       10.4009203336    
+   10.5317490052       10.6642232989       10.7983639141       10.9341918105    
+   11.0717282115       11.2109946074       11.3520127590       11.4948047006    
+   11.6393927437       11.7857994804       11.9340477872       12.0841608282    
+   12.2361620588       12.3900752295       12.5459243895       12.7037338907    
+   12.8635283910       13.0253328587       13.1891725760       13.3550731433    
+   13.5230604829       13.6931608430       13.8654008023       14.0398072736    
+   14.2164075082       14.3952291003       14.5762999912       14.7596484734    
+   14.9453031957       15.1332931669       15.3236477608       15.5163967208    
+   15.7115701642       15.9091985873       16.1093128700       16.3119442805    
+   16.5171244803       16.7248855294       16.9352598907       17.1482804358    
+   17.3639804494       17.5823936353       17.8035541208       18.0274964627    
+   18.2542556525       18.4838671219       18.7163667479       18.9517908593    
+   19.1901762414       19.4315601425       19.6759802793       19.9234748429    
+   20.1740825049       20.4278424233       20.6847942485       20.9449781298    
+   21.2084347214       21.4752051890       21.7453312159       22.0188550101    
+   22.2958193100       22.5762673919       22.8602430764       23.1477907354    
+   23.4389552986       23.7337822612       24.0323176904       24.3346082331    
+   24.6407011227       24.9506441869       25.2644858549       25.5822751651    
+   25.9040617727       26.2298959576       26.5598286320       26.8939113486    
+   27.2321963084       27.5747363692       27.9215850536       28.2727965573    
+   28.6284257579       28.9885282232       29.3531602198       29.7223787224    
+   30.0962414220       30.4748067355       30.8581338144       31.2462825544    
+   31.6393136046       32.0372883767       32.4402690552       32.8483186067    
+   33.2615007897       33.6798801647       34.1035221044       34.5324928038    
+   34.9668592903       35.4066894346       35.8520519610       36.3030164584    
+   36.7596533909       37.2220341089       37.6902308604       38.1643168020    
+   38.6443660107       39.1304534951       39.6226552073       40.1210480549    
+   40.6257099128       41.1367196355       41.6541570691       42.1781030645    
+   42.7086394891       43.2458492405       43.7898162587       44.3406255397    
+   44.8983631485       45.4631162328       46.0349730364       46.6140229131    
+   47.2003563406       47.7940649347       48.3952414636       49.0039798624    
+   49.6203752475       50.2445239322       50.8765234409       51.5164725247    
+   52.1644711771       52.8206206491       53.4850234655       54.1577834405    
+   54.8390056942       55.5287966691       56.2272641463       56.9345172628    
+   57.6506665283       58.3758238427       59.1101025133       59.8536172725    
+   60.6064842961       61.3688212210       62.1407471641       62.9223827401    
+   63.7138500814       64.5152728564       65.3267762888       66.1484871778    
+   66.9805339175       67.8230465167       68.6761566198       69.5399975271    
+   70.4147042153       71.3004133592       72.1972633527       73.1053943303    
+   74.0249481894       74.9560686122       75.8989010881       76.8535929366    
+   77.8202933303       78.7991533180       79.7903258486       80.7939657949    
+   81.8102299776       82.8392771901       83.8812682231       84.9363658898    
+   86.0047350514       87.0865426427       88.1819576983       89.2911513792    
+   90.4142969990       91.5515700516       92.7031482381       93.8692114951    
+   95.0499420222       96.2455243111       97.4561451738       98.6819937724    
+   99.9232616482       101.180142752       102.452833473       103.741532674    
+   105.046441714       106.367764490       107.705707460       109.060479682    
+   110.432292839       111.821361283       113.227902056       114.652134934    
+   116.094282457       117.554569962       119.033225623    
+ Down Pseudopotential follows (l on next line)
+  0
+ -0.882284152134E-05 -0.177570938533E-04 -0.268029711113E-04 -0.359633947205E-04
+ -0.452385483052E-04 -0.546305932035E-04 -0.641406739489E-04 -0.737704300054E-04
+ -0.835212902935E-04 -0.933948065586E-04 -0.103392515374E-03 -0.113515979525E-03
+ -0.123766780761E-03 -0.134146520896E-03 -0.144656821940E-03 -0.155299325903E-03
+ -0.166075695862E-03 -0.176987615802E-03 -0.188036790572E-03 -0.199224946779E-03
+ -0.210553832582E-03 -0.222025218241E-03 -0.233640896207E-03 -0.245402681545E-03
+ -0.257312411995E-03 -0.269371948543E-03 -0.281583175872E-03 -0.293948001762E-03
+ -0.306468358297E-03 -0.319146202107E-03 -0.331983514124E-03 -0.344982300181E-03
+ -0.358144591604E-03 -0.371472445053E-03 -0.384967943007E-03 -0.398633194552E-03
+ -0.412470334771E-03 -0.426481525927E-03 -0.440668957539E-03 -0.455034846219E-03
+ -0.469581437080E-03 -0.484311003181E-03 -0.499225846022E-03 -0.514328296215E-03
+ -0.529620713670E-03 -0.545105488315E-03 -0.560785039451E-03 -0.576661816985E-03
+ -0.592738302454E-03 -0.609017007644E-03 -0.625500476112E-03 -0.642191283852E-03
+ -0.659092038793E-03 -0.676205381945E-03 -0.693533987304E-03 -0.711080562805E-03
+ -0.728847850057E-03 -0.746838625398E-03 -0.765055700260E-03 -0.783501920839E-03
+ -0.802180169700E-03 -0.821093365288E-03 -0.840244463156E-03 -0.859636455607E-03
+ -0.879272372525E-03 -0.899155282567E-03 -0.919288292273E-03 -0.939674547250E-03
+ -0.960317233277E-03 -0.981219575795E-03 -0.100238484054E-02 -0.102381633488E-02
+ -0.104551740739E-02 -0.106749144887E-02 -0.108974189277E-02 -0.111227221581E-02
+ -0.113508593826E-02 -0.115818662451E-02 -0.118157788439E-02 -0.120526337263E-02
+ -0.122924678973E-02 -0.125353188347E-02 -0.127812244819E-02 -0.130302232595E-02
+ -0.132823540756E-02 -0.135376563225E-02 -0.137961698919E-02 -0.140579351748E-02
+ -0.143229930727E-02 -0.145913850003E-02 -0.148631528907E-02 -0.151383392089E-02
+ -0.154169869523E-02 -0.156991396580E-02 -0.159848414131E-02 -0.162741368555E-02
+ -0.165670711884E-02 -0.168636901852E-02 -0.171640401859E-02 -0.174681681248E-02
+ -0.177761215212E-02 -0.180879484879E-02 -0.184036977535E-02 -0.187234186505E-02
+ -0.190471611345E-02 -0.193749757926E-02 -0.197069138433E-02 -0.200430271534E-02
+ -0.203833682401E-02 -0.207279902814E-02 -0.210769471253E-02 -0.214302932965E-02
+ -0.217880840048E-02 -0.221503751554E-02 -0.225172233579E-02 -0.228886859303E-02
+ -0.232648209157E-02 -0.236456870865E-02 -0.240313439511E-02 -0.244218517697E-02
+ -0.248172715611E-02 -0.252176651096E-02 -0.256230949754E-02 -0.260336245101E-02
+ -0.264493178589E-02 -0.268702399735E-02 -0.272964566249E-02 -0.277280344103E-02
+ -0.281650407646E-02 -0.286075439690E-02 -0.290556131680E-02 -0.295093183730E-02
+ -0.299687304743E-02 -0.304339212576E-02 -0.309049634104E-02 -0.313819305330E-02
+ -0.318648971526E-02 -0.323539387344E-02 -0.328491316922E-02 -0.333505533999E-02
+ -0.338582822069E-02 -0.343723974473E-02 -0.348929794512E-02 -0.354201095618E-02
+ -0.359538701445E-02 -0.364943446001E-02 -0.370416173792E-02 -0.375957739942E-02
+ -0.381569010343E-02 -0.387250861754E-02 -0.393004181984E-02 -0.398829870019E-02
+ -0.404728836106E-02 -0.410702001987E-02 -0.416750300998E-02 -0.422874678176E-02
+ -0.429076090483E-02 -0.435355506902E-02 -0.441713908599E-02 -0.448152289101E-02
+ -0.454671654418E-02 -0.461273023210E-02 -0.467957426964E-02 -0.474725910127E-02
+ -0.481579530293E-02 -0.488519358365E-02 -0.495546478695E-02 -0.502661989292E-02
+ -0.509867001979E-02 -0.517162642554E-02 -0.524550050963E-02 -0.532030381527E-02
+ -0.539604803061E-02 -0.547274499080E-02 -0.555040667997E-02 -0.562904523293E-02
+ -0.570867293723E-02 -0.578930223478E-02 -0.587094572421E-02 -0.595361616243E-02
+ -0.603732646692E-02 -0.612208971775E-02 -0.620791915918E-02 -0.629482820244E-02
+ -0.638283042729E-02 -0.647193958412E-02 -0.656216959669E-02 -0.665353456360E-02
+ -0.674604876073E-02 -0.683972664383E-02 -0.693458285025E-02 -0.703063220150E-02
+ -0.712788970560E-02 -0.722637055923E-02 -0.732609015030E-02 -0.742706406028E-02
+ -0.752930806662E-02 -0.763283814523E-02 -0.773767047288E-02 -0.784382142998E-02
+ -0.795130760297E-02 -0.806014578670E-02 -0.817035298754E-02 -0.828194642571E-02
+ -0.839494353789E-02 -0.850936198029E-02 -0.862521963106E-02 -0.874253459329E-02
+ -0.886132519785E-02 -0.898161000603E-02 -0.910340781275E-02 -0.922673764922E-02
+ -0.935161878611E-02 -0.947807073654E-02 -0.960611325888E-02 -0.973576636027E-02
+ -0.986705029938E-02 -0.999998558966E-02 -0.101345930028E-01 -0.102708935715E-01
+ -0.104089085932E-01 -0.105486596332E-01 -0.106901685281E-01 -0.108334573891E-01
+ -0.109785486054E-01 -0.111254648482E-01 -0.112742290736E-01 -0.114248645264E-01
+ -0.115773947440E-01 -0.117318435598E-01 -0.118882351069E-01 -0.120465938221E-01
+ -0.122069444495E-01 -0.123693120444E-01 -0.125337219773E-01 -0.127001999380E-01
+ -0.128687719392E-01 -0.130394643210E-01 -0.132123037546E-01 -0.133873172469E-01
+ -0.135645321445E-01 -0.137439761378E-01 -0.139256772658E-01 -0.141096639199E-01
+ -0.142959648488E-01 -0.144846091629E-01 -0.146756263385E-01 -0.148690462230E-01
+ -0.150648990391E-01 -0.152632153895E-01 -0.154640262621E-01 -0.156673630345E-01
+ -0.158732574791E-01 -0.160817417677E-01 -0.162928484770E-01 -0.165066105935E-01
+ -0.167230615185E-01 -0.169422350736E-01 -0.171641655056E-01 -0.173888874925E-01
+ -0.176164361480E-01 -0.178468470279E-01 -0.180801561352E-01 -0.183163999255E-01
+ -0.185556153134E-01 -0.187978396774E-01 -0.190431108667E-01 -0.192914672061E-01
+ -0.195429475029E-01 -0.197975910522E-01 -0.200554376438E-01 -0.203165275677E-01
+ -0.205809016208E-01 -0.208486011133E-01 -0.211196678749E-01 -0.213941442617E-01
+ -0.216720731623E-01 -0.219534980050E-01 -0.222384627646E-01 -0.225270119686E-01
+ -0.228191907050E-01 -0.231150446289E-01 -0.234146199696E-01 -0.237179635381E-01
+ -0.240251227341E-01 -0.243361455537E-01 -0.246510805966E-01 -0.249699770742E-01
+ -0.252928848165E-01 -0.256198542808E-01 -0.259509365587E-01 -0.262861833849E-01
+ -0.266256471446E-01 -0.269693808823E-01 -0.273174383094E-01 -0.276698738134E-01
+ -0.280267424657E-01 -0.283881000305E-01 -0.287540029737E-01 -0.291245084715E-01
+ -0.294996744191E-01 -0.298795594403E-01 -0.302642228963E-01 -0.306537248952E-01
+ -0.310481263011E-01 -0.314474887438E-01 -0.318518746284E-01 -0.322613471454E-01
+ -0.326759702797E-01 -0.330958088215E-01 -0.335209283762E-01 -0.339513953742E-01
+ -0.343872770820E-01 -0.348286416119E-01 -0.352755579337E-01 -0.357280958843E-01
+ -0.361863261795E-01 -0.366503204248E-01 -0.371201511264E-01 -0.375958917029E-01
+ -0.380776164963E-01 -0.385654007841E-01 -0.390593207909E-01 -0.395594537001E-01
+ -0.400658776665E-01 -0.405786718278E-01 -0.410979163177E-01 -0.416236922778E-01
+ -0.421560818709E-01 -0.426951682933E-01 -0.432410357881E-01 -0.437937696585E-01
+ -0.443534562808E-01 -0.449201831181E-01 -0.454940387341E-01 -0.460751128066E-01
+ -0.466634961420E-01 -0.472592806890E-01 -0.478625595536E-01 -0.484734270129E-01
+ -0.490919785305E-01 -0.497183107712E-01 -0.503525216160E-01 -0.509947101777E-01
+ -0.516449768161E-01 -0.523034231539E-01 -0.529701520926E-01 -0.536452678284E-01
+ -0.543288758690E-01 -0.550210830493E-01 -0.557219975491E-01 -0.564317289093E-01
+ -0.571503880491E-01 -0.578780872838E-01 -0.586149403420E-01 -0.593610623837E-01
+ -0.601165700180E-01 -0.608815813215E-01 -0.616562158568E-01 -0.624405946914E-01
+ -0.632348404162E-01 -0.640390771653E-01 -0.648534306349E-01 -0.656780281033E-01
+ -0.665129984507E-01 -0.673584721794E-01 -0.682145814343E-01 -0.690814600237E-01
+ -0.699592434400E-01 -0.708480688810E-01 -0.717480752717E-01 -0.726594032856E-01
+ -0.735821953671E-01 -0.745165957537E-01 -0.754627504985E-01 -0.764208074934E-01
+ -0.773909164919E-01 -0.783732291329E-01 -0.793678989643E-01 -0.803750814670E-01
+ -0.813949340795E-01 -0.824276162225E-01 -0.834732893238E-01 -0.845321168439E-01
+ -0.856042643013E-01 -0.866898992985E-01 -0.877891915487E-01 -0.889023129019E-01
+ -0.900294373724E-01 -0.911707411655E-01 -0.923264027057E-01 -0.934966026644E-01
+ -0.946815239885E-01 -0.958813519288E-01 -0.970962740695E-01 -0.983264803572E-01
+ -0.995721631312E-01 -0.100833517154     -0.102110739639     -0.103404030288    
+ -0.104713591315     -0.106039627483     -0.107382346134     -0.108741957223    
+ -0.110118673350     -0.111512709794     -0.112924284545     -0.114353618343    
+ -0.115800934706     -0.117266459971     -0.118750423328     -0.120253056854    
+ -0.121774595552     -0.123315277387     -0.124875343322     -0.126455037361    
+ -0.128054606580     -0.129674301174     -0.131314374490     -0.132975083069    
+ -0.134656686688     -0.136359448401     -0.138083634576     -0.139829514944    
+ -0.141597362635     -0.143387454228     -0.145200069787     -0.147035492911    
+ -0.148894010777     -0.150775914185     -0.152681497604     -0.154611059221    
+ -0.156564900983     -0.158543328652     -0.160546651845     -0.162575184091    
+ -0.164629242875     -0.166709149692     -0.168815230097     -0.170947813753    
+ -0.173107234490     -0.175293830353     -0.177507943658     -0.179749921043    
+ -0.182020113529     -0.184318876572     -0.186646570118     -0.189003558664    
+ -0.191390211314     -0.193806901840     -0.196254008737     -0.198731915288    
+ -0.201241009623     -0.203781684781     -0.206354338775     -0.208959374650    
+ -0.211597200555     -0.214268229802     -0.216972880937     -0.219711577802    
+ -0.222484749607     -0.225292830999     -0.228136262128     -0.231015488721    
+ -0.233930962152     -0.236883139515     -0.239872483699     -0.242899463460    
+ -0.245964553498     -0.249068234534     -0.252210993387     -0.255393323050    
+ -0.258615722776     -0.261878698153     -0.265182761187     -0.268528430387    
+ -0.271916230848     -0.275346694336     -0.278820359374     -0.282337771331    
+ -0.285899482508     -0.289506052232     -0.293158046944     -0.296856040292    
+ -0.300600613227     -0.304392354094     -0.308231858731     -0.312119730569    
+ -0.316056580724     -0.320043028106     -0.324079699513     -0.328167229740    
+ -0.332306261680     -0.336497446432     -0.340741443408     -0.345038920442    
+ -0.349390553902     -0.353797028799     -0.358259038905     -0.362777286865    
+ -0.367352484316     -0.371985352003     -0.376676619905     -0.381427027351    
+ -0.386237323147     -0.391108265701     -0.396040623152     -0.401035173494    
+ -0.406092704716     -0.411214014927     -0.416399912494     -0.421651216181    
+ -0.426968755282     -0.432353369771     -0.437805910437     -0.443327239031    
+ -0.448918228417     -0.454579762717     -0.460312737464     -0.466118059759    
+ -0.471996648420     -0.477949434149     -0.483977359686     -0.490081379975    
+ -0.496262462332     -0.502521586607     -0.508859745360     -0.515277944033    
+ -0.521777201125     -0.528358548368     -0.535023030915     -0.541771707516    
+ -0.548605650710     -0.555525947012     -0.562533697106     -0.569630016040    
+ -0.576816033423     -0.584092893630     -0.591461756002     -0.598923795053    
+ -0.606480200685     -0.614132178398     -0.621880949506     -0.629727751360    
+ -0.637673837571     -0.645720478233     -0.653868960158     -0.662120587108    
+ -0.670476680030     -0.678938577299     -0.687507634962     -0.696185226986    
+ -0.704972745508     -0.713871601091     -0.722883222984     -0.732009059383    
+ -0.741250577700     -0.750609264830     -0.760086627429     -0.769684192188    
+ -0.779403506119     -0.789246136838     -0.799213672856     -0.809307723874    
+ -0.819529921078     -0.829881917444     -0.840365388042     -0.850982030344    
+ -0.861733564541     -0.872621733858     -0.883648304877     -0.894815067862    
+ -0.906123837085     -0.917576451163     -0.929174773394     -0.940920692093    
+ -0.952816120939     -0.964862999324     -0.977063292696     -0.989418992923    
+  -1.00193211864      -1.01460471561      -1.02743885710      -1.04043664423    
+  -1.05360020633      -1.06693170135      -1.08043331620      -1.09410726711    
+  -1.10795580006      -1.12198119110      -1.13618574675      -1.15057180438    
+  -1.16514173259      -1.17989793157      -1.19484283351      -1.20997890294    
+  -1.22530863713      -1.24083456646      -1.25655925478      -1.27248529979    
+  -1.28861533341      -1.30495202212      -1.32149806734      -1.33825620577    
+  -1.35522920975      -1.37241988757      -1.38983108385      -1.40746567982    
+  -1.42532659367      -1.44341678082      -1.46173923428      -1.48029698487    
+  -1.49909310154      -1.51813069161      -1.53741290102      -1.55694291459    
+  -1.57672395620      -1.59675928903      -1.61705221570      -1.63760607850    
+  -1.65842425948      -1.67951018058      -1.70086730377      -1.72249913110    
+  -1.74440920477      -1.76660110713      -1.78907846073      -1.81184492825    
+  -1.83490421244      -1.85826005609      -1.88191624181      -1.90587659194    
+  -1.93014496835      -1.95472527215      -1.97962144347      -2.00483746108    
+  -2.03037734206      -2.05624514136      -2.08244495133      -2.10898090119    
+  -2.13585715642      -2.16307791813      -2.19064742233      -2.21856993913    
+  -2.24684977187      -2.27549125617      -2.30449875887      -2.33387667687    
+  -2.36362943593      -2.39376148922      -2.42427731590      -2.45518141943    
+  -2.48647832580      -2.51817258157      -2.55026875171      -2.58277141723    
+  -2.61568517260      -2.64901462289      -2.68276438062      -2.71693906228    
+  -2.75154328448      -2.78658165973      -2.82205879170      -2.85797927004    
+  -2.89434766458      -2.93116851894      -2.96844634345      -3.00618560734    
+  -3.04439073004      -3.08306607174      -3.12221592287      -3.16184449276    
+  -3.20195589717      -3.24255414486      -3.28364312317      -3.32522658264    
+  -3.36730812082      -3.40989116532      -3.45297895654      -3.49657453017    
+  -3.54068070001      -3.58530004165      -3.63043487767      -3.67608726511    
+  -3.72225898640      -3.76895154469      -3.81616616513      -3.86390380364    
+  -3.91216516480      -3.96095073093      -4.01026080443      -4.06009556548    
+  -4.11045514746      -4.16133973234      -4.21274966818      -4.26468561069    
+  -4.31714869062      -4.37014070803      -4.42366435433      -4.47772346183    
+  -4.53232328010      -4.58747077736      -4.64317496417      -4.69944723327    
+  -4.75630174071      -4.81375561053      -4.87183002112      -4.93054891856    
+  -4.98993558729      -5.05006021542      -5.11083998246      -5.17266853838    
+  -5.23622273250      -5.30117327979      -5.36720884487      -5.43446731169    
+  -5.50294683628      -5.57267736457      -5.64368857016      -5.71600954898    
+  -5.78967228533      -5.86471127453      -5.94116421780      -6.01907241722    
+  -6.09848113229      -6.17943986585      -6.26200258611      -6.34622788789    
+  -6.43217909644      -6.51992431616      -6.60953642640      -6.70109302562    
+  -6.79467632489      -6.89037299098      -6.98827393892      -7.08847407357    
+  -7.19107197911      -7.29616955562      -7.40387160080      -7.51428533641    
+  -7.62751987503      -7.74368563004      -7.86289366298      -7.98525496411    
+  -8.11087967438      -8.23987623683      -8.37235047803      -8.50840462158    
+  -8.64813622704      -8.79163705419      -8.93899184898      -9.09027704774    
+  -9.24555939511      -9.40489447000      -9.56832511242      -9.73587974177    
+  -9.90757055973      -10.0833916187      -10.2633167446      -10.4472973069    
+  -10.6352598053      -10.8271032639      -11.0226964178      -11.2218746730    
+  -11.4244368292      -11.6301415584      -11.8387036368      -12.0497899386    
+  -12.2630152154      -12.4779377013      -12.6940546171      -12.9107976821    
+  -13.1275288011      -13.3435361657      -13.5580311020      -13.7701461090    
+  -13.9789346529      -14.1833734021      -14.3823676835      -14.5747609783    
+  -14.7593492416      -14.9349006853      -15.1001814286      -15.2539871119    
+  -15.3951802571      -15.5227329256      -15.6357741648      -15.7336419062    
+  -15.8159393848      -15.8825968805      -15.9339393653      -15.9707670503    
+  -15.9944286812      -16.0069725710      -16.0111534112      -16.0107295274    
+  -16.0096593894      -16.0086129873      -16.0076606168      -16.0068384809    
+  -16.0060767366      -16.0053992119      -16.0047883239      -16.0042407226    
+  -16.0037501163      -16.0033113083      -16.0029194210      -16.0025699784    
+  -16.0022588700      -16.0019823278      -16.0017369036      -16.0015194477    
+  -16.0013270872      -16.0011572071      -16.0010074308      -16.0007466571    
+  -16.0005513660      -16.0004056552      -16.0002973434      -16.0002171355    
+  -16.0001579656      -16.0001144836      -16.0000826541      -16.0000594455    
+  -16.0000425896      -16.0000303961      -16.0000216105      -16.0000153056    
+  -16.0000107992      -16.0000075911      -16.0000053164      -16.0000037100    
+  -16.0000025799      -16.0000017881      -16.0000012354      -16.0000008510    
+  -16.0000005846      -16.0000004006      -16.0000002739      -16.0000001870    
+  -16.0000001275      -16.0000000869      -16.0000000592      -16.0000000403    
+  -16.0000000275      -16.0000000188      -16.0000000129      -16.0000000088    
+  -16.0000000061      -16.0000000042      -16.0000000029      -16.0000000020    
+  -16.0000000014      -16.0000000010      -16.0000000007      -16.0000000005    
+  -16.0000000004      -16.0000000003      -16.0000000002      -16.0000000001    
+  -16.0000000001      -16.0000000001      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000    
+ Down Pseudopotential follows (l on next line)
+  1
+ -0.218624054105E-04 -0.440002391542E-04 -0.664157784329E-04 -0.891140337085E-04
+ -0.112097303919E-03 -0.135369892324E-03 -0.158935112320E-03 -0.182796799515E-03
+ -0.206958606598E-03 -0.231424337054E-03 -0.256197807519E-03 -0.281282889522E-03
+ -0.306683502595E-03 -0.332403615741E-03 -0.358447247933E-03 -0.384818468298E-03
+ -0.411521397557E-03 -0.438560208251E-03 -0.465939125089E-03 -0.493662426233E-03
+ -0.521734443492E-03 -0.550159563275E-03 -0.578942227088E-03 -0.608086932373E-03
+ -0.637598232985E-03 -0.667480740194E-03 -0.697739123555E-03 -0.728378110756E-03
+ -0.759402489254E-03 -0.790817106971E-03 -0.822626872497E-03 -0.854836756150E-03
+ -0.887451791029E-03 -0.920477073325E-03 -0.953917763281E-03 -0.987779086459E-03
+ -0.102206633362E-02 -0.105678486239E-02 -0.109194009787E-02 -0.112753753292E-02
+ -0.116358273012E-02 -0.120008132175E-02 -0.123703901074E-02 -0.127446157196E-02
+ -0.131235485288E-02 -0.135072477486E-02 -0.138957733304E-02 -0.142891859816E-02
+ -0.146875471814E-02 -0.150909191725E-02 -0.154993649824E-02 -0.159129484358E-02
+ -0.163317341554E-02 -0.167557875798E-02 -0.171851749681E-02 -0.176199634160E-02
+ -0.180602208594E-02 -0.185060160910E-02 -0.189574187705E-02 -0.194144994280E-02
+ -0.198773294864E-02 -0.203459812629E-02 -0.208205279888E-02 -0.213010438119E-02
+ -0.217876038124E-02 -0.222802840211E-02 -0.227791614184E-02 -0.232843139528E-02
+ -0.237958205591E-02 -0.243137611611E-02 -0.248382166852E-02 -0.253692690809E-02
+ -0.259070013251E-02 -0.264514974392E-02 -0.270028425012E-02 -0.275611226604E-02
+ -0.281264251479E-02 -0.286988382904E-02 -0.292784515314E-02 -0.298653554349E-02
+ -0.304596417016E-02 -0.310614031932E-02 -0.316707339337E-02 -0.322877291294E-02
+ -0.329124851887E-02 -0.335450997275E-02 -0.341856715931E-02 -0.348343008740E-02
+ -0.354910889200E-02 -0.361561383542E-02 -0.368295530886E-02 -0.375114383461E-02
+ -0.382019006717E-02 -0.389010479494E-02 -0.396089894225E-02 -0.403258357047E-02
+ -0.410516988050E-02 -0.417866921426E-02 -0.425309305546E-02 -0.432845303336E-02
+ -0.440476092298E-02 -0.448202864705E-02 -0.456026827928E-02 -0.463949204440E-02
+ -0.471971232113E-02 -0.480094164422E-02 -0.488319270559E-02 -0.496647835721E-02
+ -0.505081161254E-02 -0.513620564870E-02 -0.522267380871E-02 -0.531022960333E-02
+ -0.539888671321E-02 -0.548865899117E-02 -0.557956046440E-02 -0.567160533618E-02
+ -0.576480798880E-02 -0.585918298545E-02 -0.595474507213E-02 -0.605150918067E-02
+ -0.614949043078E-02 -0.624870413212E-02 -0.634916578686E-02 -0.645089109254E-02
+ -0.655389594388E-02 -0.665819643547E-02 -0.676380886457E-02 -0.687074973335E-02
+ -0.697903575152E-02 -0.708868383881E-02 -0.719971112820E-02 -0.731213496790E-02
+ -0.742597292416E-02 -0.754124278454E-02 -0.765796256026E-02 -0.777615048891E-02
+ -0.789582503761E-02 -0.801700490582E-02 -0.813970902815E-02 -0.826395657726E-02
+ -0.838976696720E-02 -0.851715985617E-02 -0.864615514940E-02 -0.877677300280E-02
+ -0.890903382569E-02 -0.904295828406E-02 -0.917856730391E-02 -0.931588207442E-02
+ -0.945492405143E-02 -0.959571496037E-02 -0.973827680019E-02 -0.988263184667E-02
+ -0.100288026553E-01 -0.101768120657E-01 -0.103266832048E-01 -0.104784394901E-01
+ -0.106321046339E-01 -0.107877026468E-01 -0.109452578411E-01 -0.111047948355E-01
+ -0.112663385577E-01 -0.114299142494E-01 -0.115955474696E-01 -0.117632640989E-01
+ -0.119330903433E-01 -0.121050527387E-01 -0.122791781544E-01 -0.124554937979E-01
+ -0.126340272191E-01 -0.128148063141E-01 -0.129978593300E-01 -0.131832148692E-01
+ -0.133709018941E-01 -0.135609497311E-01 -0.137533880755E-01 -0.139482469963E-01
+ -0.141455569407E-01 -0.143453487388E-01 -0.145476536084E-01 -0.147525031602E-01
+ -0.149599294023E-01 -0.151699647456E-01 -0.153826420085E-01 -0.155979944225E-01
+ -0.158160556367E-01 -0.160368597235E-01 -0.162604411845E-01 -0.164868349545E-01
+ -0.167160764079E-01 -0.169482013645E-01 -0.171832460943E-01 -0.174212473234E-01
+ -0.176622422402E-01 -0.179062685005E-01 -0.181533642342E-01 -0.184035680505E-01
+ -0.186569190442E-01 -0.189134568022E-01 -0.191732214088E-01 -0.194362534531E-01
+ -0.197025940344E-01 -0.199722847690E-01 -0.202453677966E-01 -0.205218857873E-01
+ -0.208018819475E-01 -0.210854000273E-01 -0.213724843271E-01 -0.216631797045E-01
+ -0.219575315814E-01 -0.222555859508E-01 -0.225573893846E-01 -0.228629890402E-01
+ -0.231724326682E-01 -0.234857686202E-01 -0.238030458555E-01 -0.241243139495E-01
+ -0.244496231010E-01 -0.247790241405E-01 -0.251125685378E-01 -0.254503084098E-01
+ -0.257922965294E-01 -0.261385863329E-01 -0.264892319292E-01 -0.268442881074E-01
+ -0.272038103460E-01 -0.275678548212E-01 -0.279364784159E-01 -0.283097387285E-01
+ -0.286876940820E-01 -0.290704035327E-01 -0.294579268801E-01 -0.298503246757E-01
+ -0.302476582328E-01 -0.306499896356E-01 -0.310573817497E-01 -0.314698982310E-01
+ -0.318876035365E-01 -0.323105629337E-01 -0.327388425113E-01 -0.331725091890E-01
+ -0.336116307285E-01 -0.340562757437E-01 -0.345065137119E-01 -0.349624149837E-01
+ -0.354240507953E-01 -0.358914932784E-01 -0.363648154724E-01 -0.368440913352E-01
+ -0.373293957552E-01 -0.378208045625E-01 -0.383183945412E-01 -0.388222434414E-01
+ -0.393324299909E-01 -0.398490339080E-01 -0.403721359136E-01 -0.409018177441E-01
+ -0.414381621639E-01 -0.419812529786E-01 -0.425311750478E-01 -0.430880142987E-01
+ -0.436518577393E-01 -0.442227934718E-01 -0.448009107070E-01 -0.453862997777E-01
+ -0.459790521529E-01 -0.465792604521E-01 -0.471870184601E-01 -0.478024211411E-01
+ -0.484255646541E-01 -0.490565463674E-01 -0.496954648743E-01 -0.503424200081E-01
+ -0.509975128580E-01 -0.516608457847E-01 -0.523325224365E-01 -0.530126477655E-01
+ -0.537013280439E-01 -0.543986708808E-01 -0.551047852387E-01 -0.558197814509E-01
+ -0.565437712386E-01 -0.572768677280E-01 -0.580191854687E-01 -0.587708404510E-01
+ -0.595319501242E-01 -0.603026334150E-01 -0.610830107461E-01 -0.618732040551E-01
+ -0.626733368132E-01 -0.634835340449E-01 -0.643039223473E-01 -0.651346299100E-01
+ -0.659757865351E-01 -0.668275236575E-01 -0.676899743653E-01 -0.685632734209E-01
+ -0.694475572817E-01 -0.703429641216E-01 -0.712496338527E-01 -0.721677081472E-01
+ -0.730973304591E-01 -0.740386460470E-01 -0.749918019969E-01 -0.759569472448E-01
+ -0.769342326003E-01 -0.779238107701E-01 -0.789258363818E-01 -0.799404660079E-01
+ -0.809678581907E-01 -0.820081734667E-01 -0.830615743920E-01 -0.841282255673E-01
+ -0.852082936640E-01 -0.863019474501E-01 -0.874093578166E-01 -0.885306978042E-01
+ -0.896661426303E-01 -0.908158697165E-01 -0.919800587160E-01 -0.931588915425E-01
+ -0.943525523975E-01 -0.955612277999E-01 -0.967851066150E-01 -0.980243800839E-01
+ -0.992792418533E-01 -0.100549888006     -0.101836517092     -0.103139330157    
+ -0.104458530779     -0.105794325094     -0.107146921832     -0.108516532351    
+ -0.109903370664     -0.111307653480     -0.112729600231     -0.114169433111    
+ -0.115627377109     -0.117103660045     -0.118598512605     -0.120112168375    
+ -0.121644863882     -0.123196838627     -0.124768335124     -0.126359598940    
+ -0.127970878729     -0.129602426273     -0.131254496524     -0.132927347638    
+ -0.134621241023     -0.136336441371     -0.138073216707     -0.139831838428    
+ -0.141612581343     -0.143415723721     -0.145241547330     -0.147090337484    
+ -0.148962383086     -0.150857976674     -0.152777414467     -0.154720996408    
+ -0.156689026217     -0.158681811434     -0.160699663469     -0.162742897647    
+ -0.164811833264     -0.166906793631     -0.169028106128     -0.171176102253    
+ -0.173351117676     -0.175553492289     -0.177783570262     -0.180041700094    
+ -0.182328234670     -0.184643531314     -0.186987951847     -0.189361862642    
+ -0.191765634683     -0.194199643620     -0.196664269831     -0.199159898480    
+ -0.201686919578     -0.204245728043     -0.206836723763     -0.209460311656    
+ -0.212116901738     -0.214806909183     -0.217530754389     -0.220288863045    
+ -0.223081666197     -0.225909600315     -0.228773107362     -0.231672634861    
+ -0.234608635971     -0.237581569549     -0.240591900229     -0.243640098494    
+ -0.246726640745     -0.249852009381     -0.253016692871     -0.256221185832    
+ -0.259465989106     -0.262751609839     -0.266078561561     -0.269447364263    
+ -0.272858544483     -0.276312635386     -0.279810176847     -0.283351715538    
+ -0.286937805011     -0.290569005786     -0.294245885440     -0.297969018694    
+ -0.301738987503     -0.305556381148     -0.309421796330     -0.313335837261    
+ -0.317299115759     -0.321312251344     -0.325375871338     -0.329490610960    
+ -0.333657113425     -0.337876030049     -0.342148020346     -0.346473752138    
+ -0.350853901652     -0.355289153632     -0.359780201444     -0.364327747185    
+ -0.368932501794     -0.373595185162     -0.378316526248     -0.383097263188    
+ -0.387938143418     -0.392839923784     -0.397803370668     -0.402829260103    
+ -0.407918377896     -0.413071519754     -0.418289491405     -0.423573108730    
+ -0.428923197884     -0.434340595433     -0.439826148480     -0.445380714801    
+ -0.451005162981     -0.456700372546     -0.462467234106     -0.468306649493    
+ -0.474219531902     -0.480206806037     -0.486269408254     -0.492408286711    
+ -0.498624401514     -0.504918724870     -0.511292241241     -0.517745947498    
+ -0.524280853076     -0.530897980137     -0.537598363726     -0.544383051940    
+ -0.551253106089     -0.558209600861     -0.565253624500     -0.572386278968    
+ -0.579608680125     -0.586921957901     -0.594327256477     -0.601825734464    
+ -0.609418565086     -0.617106936367     -0.624892051314     -0.632775128111    
+ -0.640757400309     -0.648840117022     -0.657024543123     -0.665311959446    
+ -0.673703662985     -0.682200967101     -0.690805201729     -0.699517713587    
+ -0.708339866392     -0.717273041070     -0.726318635981     -0.735478067134    
+ -0.744752768414     -0.754144191807     -0.763653807632     -0.773283104771    
+ -0.783033590904     -0.792906792751     -0.802904256308     -0.813027547097    
+ -0.823278250409     -0.833657971558     -0.844168336132     -0.854810990251    
+ -0.865587600830     -0.876499855836     -0.887549464562     -0.898738157892    
+ -0.910067688578     -0.921539831514     -0.933156384018     -0.944919166114    
+ -0.956830020823     -0.968890814449     -0.981103436879     -0.993469801875    
+  -1.00599184738      -1.01867153582      -1.03151085442      -1.04451181551    
+  -1.05767645684      -1.07100684190      -1.08450506026      -1.09817322787    
+  -1.11201348742      -1.12602800867      -1.14021898876      -1.15458865258    
+  -1.16913925314      -1.18387307186      -1.19879241899      -1.21389963391    
+  -1.22919708555      -1.24468717271      -1.26037232446      -1.27625500050    
+  -1.29233769155      -1.30862291972      -1.32511323891      -1.34181123521    
+  -1.35871952724      -1.37584076661      -1.39317763832      -1.41073286110    
+  -1.42850918790      -1.44650940625      -1.46473633869      -1.48319284321    
+  -1.50188181363      -1.52080618008      -1.53996890937      -1.55937300547    
+  -1.57902150993      -1.59891750230      -1.61906410059      -1.63946446171    
+  -1.66012178190      -1.68103929719      -1.70222028384      -1.72366805879    
+  -1.74538598010      -1.76737744743      -1.78964590244      -1.81219482929    
+  -1.83502775506      -1.85814825020      -1.88155992898      -1.90526644994    
+  -1.92927151633      -1.95357887654      -1.97819232455      -2.00311570034    
+  -2.02835289032      -2.05390782777      -2.07978449323      -2.10598691492    
+  -2.13251916909      -2.15938538049      -2.18658972266      -2.21413641834    
+  -2.24202973980      -2.27027400918      -2.29887359881      -2.32783293150    
+  -2.35715648083      -2.38684877141      -2.41691437908      -2.44735793120    
+  -2.47818410673      -2.50939763647      -2.54100330313      -2.57300594146    
+  -2.60541043823      -2.63822173232      -2.67144481462      -2.70508472800    
+  -2.73914656715      -2.77363547839      -2.80855665944      -2.84391535913    
+  -2.87971687701      -2.91596656289      -2.95266981636      -2.98983208620    
+  -3.02745886964      -3.06555571163      -3.10412820393      -3.14318198418    
+  -3.18272273475      -3.22275618155      -3.26328809271      -3.30432427708    
+  -3.34587058260      -3.38793289457      -3.43051713367      -3.47362925390    
+  -3.51727524024      -3.56146110619      -3.60619289110      -3.65147665720    
+  -3.69731848653      -3.74372447751      -3.79070074130      -3.83825339786    
+  -3.88638857179      -3.93511238775      -3.98443096566      -4.03435041545    
+  -4.08487683157      -4.13601628703      -4.18777482702      -4.24015846218    
+  -4.29317316138      -4.34682484397      -4.40111937165      -4.45606253970    
+  -4.51166006769      -4.56791758964      -4.62484064349      -4.68243466002    
+  -4.74070495098      -4.79965669661      -4.85929493227      -4.91962453445    
+  -4.98065020582      -5.04237645944      -5.10480760207      -5.16794771654    
+  -5.23180064305      -5.29636995950      -5.36165896065      -5.42767063618    
+  -5.49440764749      -5.56187230327      -5.63006653378      -5.69899186371    
+  -5.76864938358      -5.83903971975      -5.91016300271      -5.98201883388    
+  -6.05460625063      -6.12792368955      -6.20196894785      -6.27673914291    
+  -6.35223066973      -6.42843915640      -6.50535941734      -6.58298540431    
+  -6.66131015509      -6.74032573976      -6.82002320445      -6.90039251246    
+  -6.98142248274      -7.06310072556      -7.14541357535      -7.22834602053    
+  -7.31188163038      -7.39600247884      -7.48068906515      -7.56592023137    
+  -7.65167307674      -7.73792286897      -7.82464295244      -7.91180465356    
+  -7.99937718343      -8.08732753804      -8.17562039644      -8.26421801737    
+  -8.35308013483      -8.44216385355      -8.53142354508      -8.62081074567    
+  -8.71027405736      -8.79975905353      -8.88920819093      -8.97856073003    
+  -9.06775266586      -9.15671667190      -9.24538205957      -9.33367475605    
+  -9.42151730351      -9.50882888251      -9.59552536260      -9.68151938284    
+  -9.76672046471      -9.85103515971      -9.93436723295      -10.0166178840    
+  -10.0976860053      -10.1774684765      -10.2558604953      -10.3327559370    
+  -10.4080477720      -10.4816283222      -10.5533904181      -10.6232262011    
+  -10.6910238043      -10.7567150502      -10.8200756932      -10.8813550795    
+  -10.9410830815      -10.9987809987      -11.0539859040      -11.1066822063    
+  -11.1567130282      -11.2039520809      -11.2482719933      -11.2895444337    
+  -11.3276440390      -11.3624485380      -11.3938399868      -11.4217057432    
+  -11.4459394450      -11.4664419601      -11.4831223172      -11.4958986217    
+  -11.5046989627      -11.5094623151      -11.5101394422      -11.5066938040    
+  -11.4991024750      -11.4873570785      -11.4714647414      -11.4514490771    
+  -11.4273512034      -11.3992308041      -11.3671672435      -11.3312607460    
+  -11.2916336508      -11.2484317605      -11.2018257953      -11.1520129666    
+  -11.0992186997      -11.0436985115      -10.9857400661      -10.9256654273    
+  -10.8638335189      -10.8006428044      -10.7365341892      -10.6719941390    
+  -10.6075579981      -10.5438134714      -10.4814042185      -10.4210334786    
+  -10.3634676228      -10.3095394825      -10.2601512714      -10.2162768789    
+  -10.1789632373      -10.1493304283      -10.1285701328      -10.1179419531    
+  -10.1187670869      -10.1324187677      -10.1603088383      -10.2038697865    
+  -10.2645315614      -10.3436925019      -10.4426837736      -10.5627268251    
+  -10.7048835675      -10.8699992574      -11.0586384466      -11.2710148609    
+  -11.5069166864      -11.7656294819      -12.0458597719      -12.3456632961    
+  -12.6623828530      -12.9926016567      -13.3321191079      -13.6759568629    
+  -14.0184041102      -14.3531120851      -14.6732491416      -14.9717292286    
+  -15.2415284348      -15.4761065797      -15.6699525852      -15.8192814796    
+  -15.9228876468      -15.9832697780      -16.0078441250      -16.0107301134    
+  -16.0096593894      -16.0086129873      -16.0076606168      -16.0068384809    
+  -16.0060767366      -16.0053992119      -16.0047883239      -16.0042407226    
+  -16.0037501163      -16.0033113083      -16.0029194210      -16.0025699784    
+  -16.0022588700      -16.0019823278      -16.0017369036      -16.0015194477    
+  -16.0013270872      -16.0011572071      -16.0010074308      -16.0007466571    
+  -16.0005513660      -16.0004056552      -16.0002973434      -16.0002171355    
+  -16.0001579656      -16.0001144836      -16.0000826541      -16.0000594455    
+  -16.0000425896      -16.0000303961      -16.0000216105      -16.0000153056    
+  -16.0000107992      -16.0000075911      -16.0000053164      -16.0000037100    
+  -16.0000025799      -16.0000017881      -16.0000012354      -16.0000008510    
+  -16.0000005846      -16.0000004006      -16.0000002739      -16.0000001870    
+  -16.0000001275      -16.0000000869      -16.0000000592      -16.0000000403    
+  -16.0000000275      -16.0000000188      -16.0000000129      -16.0000000088    
+  -16.0000000061      -16.0000000042      -16.0000000029      -16.0000000020    
+  -16.0000000014      -16.0000000010      -16.0000000007      -16.0000000005    
+  -16.0000000004      -16.0000000003      -16.0000000002      -16.0000000001    
+  -16.0000000001      -16.0000000001      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000    
+ Down Pseudopotential follows (l on next line)
+  2
+ -0.438500100305E-04 -0.882520184134E-04 -0.133211781173E-03 -0.178737831352E-03
+ -0.224836034779E-03 -0.271514306466E-03 -0.318779616998E-03 -0.366639505169E-03
+ -0.415101373436E-03 -0.464172822218E-03 -0.513861512845E-03 -0.564175209899E-03
+ -0.615121774935E-03 -0.666709168563E-03 -0.718945451571E-03 -0.771838785742E-03
+ -0.825397435928E-03 -0.879629770935E-03 -0.934544264513E-03 -0.990149497315E-03
+ -0.104645415776E-02 -0.110346704366E-02 -0.116119706342E-02 -0.121965323757E-02
+ -0.127884469994E-02 -0.133878069937E-02 -0.139947060136E-02 -0.146092388857E-02
+ -0.152315016326E-02 -0.158615914870E-02 -0.164996069018E-02 -0.171456475678E-02
+ -0.177998144328E-02 -0.184622097117E-02 -0.191329369050E-02 -0.198121008191E-02
+ -0.204998075733E-02 -0.211961646249E-02 -0.219012807836E-02 -0.226152662232E-02
+ -0.233382325096E-02 -0.240702926089E-02 -0.248115609067E-02 -0.255621532291E-02
+ -0.263221868589E-02 -0.270917805575E-02 -0.278710545731E-02 -0.286601306684E-02
+ -0.294591321458E-02 -0.302681838488E-02 -0.310874121931E-02 -0.319169451891E-02
+ -0.327569124526E-02 -0.336074452324E-02 -0.344686764261E-02 -0.353407406057E-02
+ -0.362237740325E-02 -0.371179146836E-02 -0.380233022739E-02 -0.389400782693E-02
+ -0.398683859211E-02 -0.408083702785E-02 -0.417601782192E-02 -0.427239584642E-02
+ -0.436998616047E-02 -0.446880401324E-02 -0.456886484503E-02 -0.467018429033E-02
+ -0.477277818089E-02 -0.487666254720E-02 -0.498185362110E-02 -0.508836783916E-02
+ -0.519622184431E-02 -0.530543248893E-02 -0.541601683733E-02 -0.552799216862E-02
+ -0.564137597902E-02 -0.575618598469E-02 -0.587244012521E-02 -0.599015656534E-02
+ -0.610935369811E-02 -0.623005014861E-02 -0.635226477569E-02 -0.647601667533E-02
+ -0.660132518419E-02 -0.672820988162E-02 -0.685669059361E-02 -0.698678739533E-02
+ -0.711852061468E-02 -0.725191083510E-02 -0.738697889876E-02 -0.752374591036E-02
+ -0.766223323993E-02 -0.780246252619E-02 -0.794445568025E-02 -0.808823488848E-02
+ -0.823382261669E-02 -0.838124161345E-02 -0.853051491253E-02 -0.868166583860E-02
+ -0.883471800916E-02 -0.898969533838E-02 -0.914662204228E-02 -0.930552264057E-02
+ -0.946642196166E-02 -0.962934514656E-02 -0.979431765202E-02 -0.996136525541E-02
+ -0.101305140582E-01 -0.103017904900E-01 -0.104752213132E-01 -0.106508336267E-01
+ -0.108286548701E-01 -0.110087128283E-01 -0.111910356359E-01 -0.113756517808E-01
+ -0.115625901098E-01 -0.117518798326E-01 -0.119435505256E-01 -0.121376321379E-01
+ -0.123341549954E-01 -0.125331498048E-01 -0.127346476595E-01 -0.129386800442E-01
+ -0.131452788390E-01 -0.133544763256E-01 -0.135663051914E-01 -0.137807985352E-01
+ -0.139979898720E-01 -0.142179131382E-01 -0.144406026974E-01 -0.146660933455E-01
+ -0.148944203154E-01 -0.151256192840E-01 -0.153597263766E-01 -0.155967781729E-01
+ -0.158368117125E-01 -0.160798645014E-01 -0.163259745171E-01 -0.165751802146E-01
+ -0.168275205329E-01 -0.170830349008E-01 -0.173417632428E-01 -0.176037459859E-01
+ -0.178690240653E-01 -0.181376389313E-01 -0.184096325556E-01 -0.186850474376E-01
+ -0.189639266118E-01 -0.192463136532E-01 -0.195322526857E-01 -0.198217883878E-01
+ -0.201149660000E-01 -0.204118313318E-01 -0.207124307694E-01 -0.210168112818E-01
+ -0.213250204291E-01 -0.216371063698E-01 -0.219531178678E-01 -0.222731043006E-01
+ -0.225971156669E-01 -0.229252025940E-01 -0.232574163462E-01 -0.235938088326E-01
+ -0.239344326153E-01 -0.242793409175E-01 -0.246285876317E-01 -0.249822273285E-01
+ -0.253403152650E-01 -0.257029073931E-01 -0.260700603684E-01 -0.264418315596E-01
+ -0.268182790566E-01 -0.271994616802E-01 -0.275854389909E-01 -0.279762712985E-01
+ -0.283720196714E-01 -0.287727459461E-01 -0.291785127370E-01 -0.295893834459E-01
+ -0.300054222723E-01 -0.304266942233E-01 -0.308532651232E-01 -0.312852016249E-01
+ -0.317225712193E-01 -0.321654422463E-01 -0.326138839055E-01 -0.330679662669E-01
+ -0.335277602817E-01 -0.339933377938E-01 -0.344647715508E-01 -0.349421352150E-01
+ -0.354255033757E-01 -0.359149515601E-01 -0.364105562456E-01 -0.369123948714E-01
+ -0.374205458510E-01 -0.379350885841E-01 -0.384561034690E-01 -0.389836719154E-01
+ -0.395178763572E-01 -0.400588002649E-01 -0.406065281589E-01 -0.411611456231E-01
+ -0.417227393176E-01 -0.422913969927E-01 -0.428672075023E-01 -0.434502608182E-01
+ -0.440406480436E-01 -0.446384614280E-01 -0.452437943809E-01 -0.458567414870E-01
+ -0.464773985206E-01 -0.471058624608E-01 -0.477422315064E-01 -0.483866050916E-01
+ -0.490390839012E-01 -0.496997698864E-01 -0.503687662810E-01 -0.510461776171E-01
+ -0.517321097417E-01 -0.524266698333E-01 -0.531299664186E-01 -0.538421093893E-01
+ -0.545632100191E-01 -0.552933809819E-01 -0.560327363685E-01 -0.567813917048E-01
+ -0.575394639701E-01 -0.583070716149E-01 -0.590843345796E-01 -0.598713743133E-01
+ -0.606683137931E-01 -0.614752775423E-01 -0.622923916511E-01 -0.631197837955E-01
+ -0.639575832574E-01 -0.648059209451E-01 -0.656649294132E-01 -0.665347428841E-01
+ -0.674154972680E-01 -0.683073301850E-01 -0.692103809862E-01 -0.701247907755E-01
+ -0.710507024315E-01 -0.719882606304E-01 -0.729376118679E-01 -0.738989044825E-01
+ -0.748722886785E-01 -0.758579165497E-01 -0.768559421029E-01 -0.778665212822E-01
+ -0.788898119930E-01 -0.799259741272E-01 -0.809751695879E-01 -0.820375623144E-01
+ -0.831133183084E-01 -0.842026056596E-01 -0.853055945721E-01 -0.864224573907E-01
+ -0.875533686282E-01 -0.886985049926E-01 -0.898580454144E-01 -0.910321710751E-01
+ -0.922210654349E-01 -0.934249142618E-01 -0.946439056606E-01 -0.958782301020E-01
+ -0.971280804527E-01 -0.983936520054E-01 -0.996751425091E-01 -0.100972752201    
+ -0.102286683835     -0.103617142718     -0.104964336737     -0.106328476396    
+ -0.107709774846     -0.109108447918     -0.110524714159     -0.111958794866    
+ -0.113410914118     -0.114881298812     -0.116370178702     -0.117877786430    
+ -0.119404357563     -0.120950130633     -0.122515347173     -0.124100251753    
+ -0.125705092019     -0.127330118733     -0.128975585811     -0.130641750363    
+ -0.132328872732     -0.134037216538     -0.135767048714     -0.137518639554    
+ -0.139292262750     -0.141088195437     -0.142906718235     -0.144748115297    
+ -0.146612674346     -0.148500686728     -0.150412447451     -0.152348255237    
+ -0.154308412561     -0.156293225707     -0.158303004809     -0.160338063905    
+ -0.162398720979     -0.164485298019     -0.166598121061     -0.168737520243    
+ -0.170903829855     -0.173097388392     -0.175318538608     -0.177567627568    
+ -0.179845006702     -0.182151031860     -0.184486063372     -0.186850466096    
+ -0.189244609481     -0.191668867626     -0.194123619331     -0.196609248164    
+ -0.199126142519     -0.201674695672     -0.204255305849     -0.206868376283    
+ -0.209514315282     -0.212193536289     -0.214906457946     -0.217653504164    
+ -0.220435104184     -0.223251692648     -0.226103709666     -0.228991600881    
+ -0.231915817545     -0.234876816587     -0.237875060680     -0.240911018320    
+ -0.243985163897     -0.247097977765     -0.250249946325     -0.253441562093    
+ -0.256673323782     -0.259945736379     -0.263259311222     -0.266614566083    
+ -0.270012025246     -0.273452219590     -0.276935686675     -0.280462970819    
+ -0.284034623191     -0.287651201891     -0.291313272041     -0.295021405872    
+ -0.298776182813     -0.302578189581     -0.306428020277     -0.310326276473    
+ -0.314273567308     -0.318270509587     -0.322317727872     -0.326415854582    
+ -0.330565530093     -0.334767402835     -0.339022129398     -0.343330374629    
+ -0.347692811742     -0.352110122416     -0.356582996911     -0.361112134165    
+ -0.365698241913     -0.370342036791     -0.375044244453     -0.379805599680    
+ -0.384626846498     -0.389508738291     -0.394452037925     -0.399457517860    
+ -0.404525960275     -0.409658157190     -0.414854910588     -0.420117032543    
+ -0.425445345345     -0.430840681629     -0.436303884505     -0.441835807692    
+ -0.447437315647     -0.453109283705     -0.458852598214     -0.464668156671    
+ -0.470556867868     -0.476519652029     -0.482557440956     -0.488671178174    
+ -0.494861819082     -0.501130331095     -0.507477693803     -0.513904899122    
+ -0.520412951445     -0.527002867804     -0.533675678029     -0.540432424906    
+ -0.547274164340     -0.554201965526     -0.561216911108     -0.568320097355    
+ -0.575512634329     -0.582795646061     -0.590170270724     -0.597637660813    
+ -0.605198983325     -0.612855419943     -0.620608167218     -0.628458436756    
+ -0.636407455414     -0.644456465483     -0.652606724889     -0.660859507386    
+ -0.669216102759     -0.677677817021     -0.686245972624     -0.694921908659    
+ -0.703706981069     -0.712602562863     -0.721610044327     -0.730730833245    
+ -0.739966355118     -0.749318053385     -0.758787389654     -0.768375843927    
+ -0.778084914831     -0.787916119856     -0.797870995591     -0.807951097965    
+ -0.818158002487     -0.828493304501     -0.838958619426     -0.849555583017    
+ -0.860285851616     -0.871151102413     -0.882153033711     -0.893293365188    
+ -0.904573838171     -0.915996215902     -0.927562283821     -0.939273849843    
+ -0.951132744641     -0.963140821931     -0.975299958768     -0.987612055832    
+  -1.00007903773      -1.01270285331      -1.02548547594      -1.03842890383    
+  -1.05153516036      -1.06480629436      -1.07824438049      -1.09185151949    
+  -1.10562983858      -1.11958149175      -1.13370866009      -1.14801355219    
+  -1.16249840442      -1.17716548131      -1.19201707592      -1.20705551014    
+  -1.22228313515      -1.23770233170      -1.25331551051      -1.26912511269    
+  -1.28513361005      -1.30134350553      -1.31775733362      -1.33437766067    
+  -1.35120708539      -1.36824823918      -1.38550378659      -1.40297642572    
+  -1.42066888864      -1.43858394182      -1.45672438657      -1.47509305945    
+  -1.49369283276      -1.51252661496      -1.53159735112      -1.55090802340    
+  -1.57046165149      -1.59026129312      -1.61031004450      -1.63061104083    
+  -1.65116745676      -1.67198250693      -1.69305944641      -1.71440157128    
+  -1.73601221909      -1.75789476938      -1.78005264426      -1.80248930886    
+  -1.82520827196      -1.84821308645      -1.87150734994      -1.89509470531    
+  -1.91897884125      -1.94316349283      -1.96765244214      -1.99244951878    
+  -2.01755860054      -2.04298361395      -2.06872853487      -2.09479738917    
+  -2.12119425329      -2.14792325487      -2.17498857341      -2.20239444092    
+  -2.23014514250      -2.25824501708      -2.28669845802      -2.31550991382    
+  -2.34468388874      -2.37422494356      -2.40413769620      -2.43442682245    
+  -2.46509705669      -2.49615319254      -2.52760008365      -2.55944264436    
+  -2.59168585050      -2.62433474006      -2.65739441396      -2.69087003681    
+  -2.72476683768      -2.75909011080      -2.79384521642      -2.82903758149    
+  -2.86467270052      -2.90075613632      -2.93729352080      -2.97429055578    
+  -3.01175301378      -3.04968673881      -3.08809764720      -3.12699172842    
+  -3.16637504588      -3.20625373773      -3.24663401772      -3.28752217600    
+  -3.32892457997      -3.37084767504      -3.41329798554      -3.45628211549    
+  -3.49980674943      -3.54387865325      -3.58850467501      -3.63369174573    
+  -3.67944688026      -3.72577717798      -3.77268982371      -3.82019208841    
+  -3.86829133000      -3.91699499412      -3.96631061486      -4.01624581555    
+  -4.06680830942      -4.11800590037      -4.16984648360      -4.22233804630    
+  -4.27548866830      -4.32930652266      -4.38379987627      -4.43897709039    
+  -4.49484662117      -4.55141702016      -4.60869693468      -4.66669510828    
+  -4.72542038106      -4.78488168996      -4.84508806898      -4.90604864939    
+  -4.96777265982      -5.03026942629      -5.09354837216      -5.15761901806    
+  -5.22249098162      -5.28817397718      -5.35467781539      -5.42201240272    
+  -5.49018774075      -5.55921392547      -5.62910114637      -5.69985968539    
+  -5.77149991574      -5.84403230051      -5.91746739119      -5.99181582590    
+  -6.06708832748      -6.14329570138      -6.22044883328      -6.29855868648    
+  -6.37763629904      -6.45769278067      -6.53873930927      -6.62078712720    
+  -6.70384753723      -6.78793189812      -6.87305161978      -6.95921815815    
+  -7.04644300955      -7.13473770464      -7.22411380187      -7.31458288050    
+  -7.40615653299      -7.49884635689      -7.59266394611      -7.68762088159    
+  -7.78372872124      -7.88099898920      -7.97944316441      -8.07907266824    
+  -8.17989885143      -8.28193298009      -8.38518622070      -8.48966962420    
+  -8.59539410902      -8.70237044298      -8.81060922402      -8.92012085973    
+  -9.03091554559      -9.14300324179      -9.25639364867      -9.37109618062    
+  -9.48711993834      -9.60447367955      -9.72316578774      -9.84320423927    
+  -9.96459656834      -10.0873498300      -10.2114705612      -10.3369647388    
+  -10.4638377365      -10.5920942781      -10.7217383889      -10.8527733437    
+  -10.9852016128      -11.1190248044      -11.2542436038      -11.3908577101    
+  -11.5288657685      -11.6682652996      -11.8090526253      -11.9512227902    
+  -12.0947694792      -12.2396849311      -12.3859598481      -12.5335832998    
+  -12.6825426238      -12.8328233207      -12.9844089440      -13.1372809857    
+  -13.2914187553      -13.4467992543      -13.6033970447      -13.7611841114    
+  -13.9201297191      -14.0802002629      -14.2413591123      -14.4035664492    
+  -14.5667790997      -14.7309503586      -14.8960298083      -15.0619631301    
+  -15.2286919101      -15.3961534381      -15.5642805001      -15.7330011656    
+  -15.9022385689      -16.0719106853      -16.2419301030      -16.4122037912    
+  -16.5826328658      -16.7531123532      -16.9235309539      -17.0937708078    
+  -17.2637072626      -17.4332086482      -17.6021360582      -17.7703431432    
+  -17.9376759179      -18.1039725855      -18.2690633832      -18.4327704539    
+  -18.5949077469      -18.7552809527      -18.9136874772      -19.0699164588    
+  -19.2237488331      -19.3749574505      -19.5233072489      -19.6685554865    
+  -19.8104520364      -19.9487397463      -20.0831548628      -20.2134275212    
+  -20.3392823280      -20.4604388238      -20.5766128911      -20.6875158546    
+  -20.7928515120      -20.8923642365      -20.9856396839      -21.0727349804    
+  -21.1539862513      -21.2287201880      -21.2962791335      -21.3564534637    
+  -21.4088938624      -21.4532841791      -21.4893108251      -21.5166640494    
+  -21.5350431103      -21.5441577283      -21.5437307365      -21.5335005547    
+  -21.5132237462      -21.4826776206      -21.4416628836      -21.3900063292    
+  -21.3275635673      -21.2542217777      -21.1699024787      -21.0745642938    
+  -20.9682056995      -20.8508677320      -20.7226366298      -20.5836463830    
+  -20.4340811609      -20.2741775847      -20.1042268106      -19.9245763866    
+  -19.7356318427      -19.5378579805      -19.3317798166      -19.1179831404    
+  -18.8971146564      -18.6698816647      -18.4370512499      -18.1994489503    
+  -17.9579568794      -17.7135112810      -17.4670995040      -17.2197563895    
+  -16.9725600702      -16.7266271900      -16.4831075573      -16.2431782526    
+  -16.0080372203      -15.7788963666      -15.5569742007      -15.3434880552    
+  -15.1396458994      -14.9466377701      -14.7656268250      -14.5977399995    
+  -14.4440582299      -14.3056061737      -14.1833413221      -14.0781423646    
+  -13.9907966244      -13.9219863518      -13.8722736368      -13.8420836975    
+  -13.8316863226      -13.8411753096      -13.8704458528      -13.9191700117    
+  -13.9867706320      -14.0723944031      -14.1748851060      -14.2927585252    
+  -14.4241809457      -14.5669536302      -14.7185061673      -14.8759021408    
+  -15.0358612387      -15.1948027754      -15.3489167131      -15.4942696743    
+  -15.6269551287      -15.7432990050      -15.8401331741      -15.9151572598    
+  -15.9673839943      -15.9977709683      -16.0098380337      -16.0107307781    
+  -16.0096593894      -16.0086129873      -16.0076606168      -16.0068384809    
+  -16.0060767366      -16.0053992119      -16.0047883239      -16.0042407226    
+  -16.0037501163      -16.0033113083      -16.0029194210      -16.0025699784    
+  -16.0022588700      -16.0019823278      -16.0017369036      -16.0015194477    
+  -16.0013270872      -16.0011572071      -16.0010074308      -16.0007466571    
+  -16.0005513660      -16.0004056552      -16.0002973434      -16.0002171355    
+  -16.0001579656      -16.0001144836      -16.0000826541      -16.0000594455    
+  -16.0000425896      -16.0000303961      -16.0000216105      -16.0000153056    
+  -16.0000107992      -16.0000075911      -16.0000053164      -16.0000037100    
+  -16.0000025799      -16.0000017881      -16.0000012354      -16.0000008510    
+  -16.0000005846      -16.0000004006      -16.0000002739      -16.0000001870    
+  -16.0000001275      -16.0000000869      -16.0000000592      -16.0000000403    
+  -16.0000000275      -16.0000000188      -16.0000000129      -16.0000000088    
+  -16.0000000061      -16.0000000042      -16.0000000029      -16.0000000020    
+  -16.0000000014      -16.0000000010      -16.0000000007      -16.0000000005    
+  -16.0000000004      -16.0000000003      -16.0000000002      -16.0000000001    
+  -16.0000000001      -16.0000000001      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000    
+ Down Pseudopotential follows (l on next line)
+  3
+ -0.252643790140E-04 -0.508469779213E-04 -0.767506121753E-04 -0.102980837260E-03
+ -0.129540503991E-03 -0.156434474446E-03 -0.183666627871E-03 -0.211241372839E-03
+ -0.239162942213E-03 -0.267435726947E-03 -0.296064138538E-03 -0.325052650857E-03
+ -0.354405793356E-03 -0.384128152627E-03 -0.414224373004E-03 -0.444699156837E-03
+ -0.475557266038E-03 -0.506803522404E-03 -0.538442808066E-03 -0.570480066876E-03
+ -0.602920304709E-03 -0.635768590517E-03 -0.669030056934E-03 -0.702709901224E-03
+ -0.736813385869E-03 -0.771345839673E-03 -0.806312658759E-03 -0.841719306514E-03
+ -0.877571315354E-03 -0.913874287527E-03 -0.950633895439E-03 -0.987855882831E-03
+ -0.102554606595E-02 -0.106371033400E-02 -0.110235465018E-02 -0.114148505315E-02
+ -0.118110765697E-02 -0.122122865293E-02 -0.126185431026E-02 -0.130299097660E-02
+ -0.134464508004E-02 -0.138682312927E-02 -0.142953171464E-02 -0.147277750962E-02
+ -0.151656727155E-02 -0.156090784314E-02 -0.160580615246E-02 -0.165126921492E-02
+ -0.169730413496E-02 -0.174391810544E-02 -0.179111840986E-02 -0.183891242379E-02
+ -0.188730761509E-02 -0.193631154584E-02 -0.198593187301E-02 -0.203617635018E-02
+ -0.208705282807E-02 -0.213856925641E-02 -0.219073368506E-02 -0.224355426458E-02
+ -0.229703924858E-02 -0.235119699415E-02 -0.240603596386E-02 -0.246156472631E-02
+ -0.251779195785E-02 -0.257472644459E-02 -0.263237708245E-02 -0.269075287925E-02
+ -0.274986295671E-02 -0.280971655089E-02 -0.287032301372E-02 -0.293169181534E-02
+ -0.299383254462E-02 -0.305675491114E-02 -0.312046874659E-02 -0.318498400644E-02
+ -0.325031077120E-02 -0.331645924800E-02 -0.338343977298E-02 -0.345126281178E-02
+ -0.351993896148E-02 -0.358947895319E-02 -0.365989365242E-02 -0.373119406134E-02
+ -0.380339132095E-02 -0.387649671185E-02 -0.395052165692E-02 -0.402547772248E-02
+ -0.410137662059E-02 -0.417823021048E-02 -0.425605050033E-02 -0.433484964978E-02
+ -0.441463997125E-02 -0.449543393194E-02 -0.457724415606E-02 -0.466008342629E-02
+ -0.474396468645E-02 -0.482890104333E-02 -0.491490576768E-02 -0.500199229832E-02
+ -0.509017424255E-02 -0.517946537844E-02 -0.526987965841E-02 -0.536143120948E-02
+ -0.545413433661E-02 -0.554800352503E-02 -0.564305344167E-02 -0.573929893835E-02
+ -0.583675505351E-02 -0.593543701476E-02 -0.603536024138E-02 -0.613654034651E-02
+ -0.623899313964E-02 -0.634273462918E-02 -0.644778102504E-02 -0.655414874066E-02
+ -0.666185439633E-02 -0.677091482135E-02 -0.688134705635E-02 -0.699316835666E-02
+ -0.710639619468E-02 -0.722104826241E-02 -0.733714247427E-02 -0.745469697045E-02
+ -0.757373011898E-02 -0.769426051892E-02 -0.781630700349E-02 -0.793988864271E-02
+ -0.806502474644E-02 -0.819173486728E-02 -0.832003880419E-02 -0.844995660487E-02
+ -0.858150856906E-02 -0.871471525216E-02 -0.884959746805E-02 -0.898617629224E-02
+ -0.912447306548E-02 -0.926450939697E-02 -0.940630716769E-02 -0.954988853373E-02
+ -0.969527593007E-02 -0.984249207387E-02 -0.999155996778E-02 -0.101425029041E-01
+ -0.102953444680E-01 -0.104501085412E-01 -0.106068193059E-01 -0.107655012487E-01
+ -0.109261791638E-01 -0.110888781575E-01 -0.112536236518E-01 -0.114204413888E-01
+ -0.115893574339E-01 -0.117603981805E-01 -0.119335903544E-01 -0.121089610170E-01
+ -0.122865375705E-01 -0.124663477615E-01 -0.126484196857E-01 -0.128327817923E-01
+ -0.130194628884E-01 -0.132084921431E-01 -0.133998990928E-01 -0.135937136451E-01
+ -0.137899660841E-01 -0.139886870746E-01 -0.141899076671E-01 -0.143936593028E-01
+ -0.145999738185E-01 -0.148088834511E-01 -0.150204208432E-01 -0.152346190480E-01
+ -0.154515115346E-01 -0.156711321927E-01 -0.158935153386E-01 -0.161186957201E-01
+ -0.163467085222E-01 -0.165775893723E-01 -0.168113743462E-01 -0.170480999732E-01
+ -0.172878032421E-01 -0.175305216074E-01 -0.177762929940E-01 -0.180251558044E-01
+ -0.182771489241E-01 -0.185323117272E-01 -0.187906840838E-01 -0.190523063651E-01
+ -0.193172194500E-01 -0.195854647319E-01 -0.198570841247E-01 -0.201321200695E-01
+ -0.204106155414E-01 -0.206926140558E-01 -0.209781596756E-01 -0.212672970180E-01
+ -0.215600712614E-01 -0.218565281524E-01 -0.221567140131E-01 -0.224606757481E-01
+ -0.227684608523E-01 -0.230801174176E-01 -0.233956941413E-01 -0.237152403328E-01
+ -0.240388059220E-01 -0.243664414668E-01 -0.246981981610E-01 -0.250341278422E-01
+ -0.253742830005E-01 -0.257187167857E-01 -0.260674830164E-01 -0.264206361883E-01
+ -0.267782314822E-01 -0.271403247735E-01 -0.275069726398E-01 -0.278782323709E-01
+ -0.282541619771E-01 -0.286348201981E-01 -0.290202665128E-01 -0.294105611480E-01
+ -0.298057650883E-01 -0.302059400853E-01 -0.306111486673E-01 -0.310214541490E-01
+ -0.314369206418E-01 -0.318576130634E-01 -0.322835971479E-01 -0.327149394564E-01
+ -0.331517073873E-01 -0.335939691867E-01 -0.340417939591E-01 -0.344952516782E-01
+ -0.349544131981E-01 -0.354193502638E-01 -0.358901355230E-01 -0.363668425371E-01
+ -0.368495457929E-01 -0.373383207139E-01 -0.378332436727E-01 -0.383343920021E-01
+ -0.388418440081E-01 -0.393556789812E-01 -0.398759772098E-01 -0.404028199917E-01
+ -0.409362896476E-01 -0.414764695336E-01 -0.420234440544E-01 -0.425772986763E-01
+ -0.431381199405E-01 -0.437059954771E-01 -0.442810140182E-01 -0.448632654122E-01
+ -0.454528406374E-01 -0.460498318169E-01 -0.466543322321E-01 -0.472664363382E-01
+ -0.478862397782E-01 -0.485138393984E-01 -0.491493332629E-01 -0.497928206699E-01
+ -0.504444021661E-01 -0.511041795632E-01 -0.517722559535E-01 -0.524487357262E-01
+ -0.531337245833E-01 -0.538273295567E-01 -0.545296590243E-01 -0.552408227275E-01
+ -0.559609317880E-01 -0.566900987254E-01 -0.574284374743E-01 -0.581760634029E-01
+ -0.589330933303E-01 -0.596996455451E-01 -0.604758398239E-01 -0.612617974497E-01
+ -0.620576412314E-01 -0.628634955224E-01 -0.636794862407E-01 -0.645057408876E-01
+ -0.653423885689E-01 -0.661895600138E-01 -0.670473875963E-01 -0.679160053553E-01
+ -0.687955490158E-01 -0.696861560101E-01 -0.705879654993E-01 -0.715011183948E-01
+ -0.724257573807E-01 -0.733620269357E-01 -0.743100733561E-01 -0.752700447783E-01
+ -0.762420912021E-01 -0.772263645141E-01 -0.782230185117E-01 -0.792322089265E-01
+ -0.802540934495E-01 -0.812888317549E-01 -0.823365855257E-01 -0.833975184786E-01
+ -0.844717963896E-01 -0.855595871201E-01 -0.866610606431E-01 -0.877763890696E-01
+ -0.889057466756E-01 -0.900493099293E-01 -0.912072575188E-01 -0.923797703799E-01
+ -0.935670317243E-01 -0.947692270685E-01 -0.959865442626E-01 -0.972191735196E-01
+ -0.984673074454E-01 -0.997311410685E-01 -0.101010871871     -0.102306699819    
+ -0.103618827394     -0.104947459624     -0.106292804117     -0.107655071093    
+ -0.109034473416     -0.110431226626     -0.111845548976     -0.113277661465    
+ -0.114727787871     -0.116196154787     -0.117682991657     -0.119188530811    
+ -0.120713007502     -0.122256659941     -0.123819729338     -0.125402459934    
+ -0.127005099047     -0.128627897101     -0.130271107675     -0.131934987534    
+ -0.133619796676     -0.135325798369     -0.137053259191     -0.138802449076    
+ -0.140573641352     -0.142367112787     -0.144183143630     -0.146022017654    
+ -0.147884022205     -0.149769448242     -0.151678590383     -0.153611746956    
+ -0.155569220038     -0.157551315509     -0.159558343097     -0.161590616424    
+ -0.163648453060     -0.165732174569     -0.167842106562     -0.169978578744    
+ -0.172141924970     -0.174332483294     -0.176550596022     -0.178796609769    
+ -0.181070875509     -0.183373748632     -0.185705588999     -0.188066760999    
+ -0.190457633604     -0.192878580431     -0.195329979794     -0.197812214769    
+ -0.200325673251     -0.202870748015     -0.205447836778     -0.208057342262    
+ -0.210699672253     -0.213375239672     -0.216084462630     -0.218827764504    
+ -0.221605573995     -0.224418325197     -0.227266457669     -0.230150416499    
+ -0.233070652374     -0.236027621653     -0.239021786439     -0.242053614647    
+ -0.245123580081     -0.248232162505     -0.251379847722     -0.254567127647    
+ -0.257794500386     -0.261062470311     -0.264371548142     -0.267722251026    
+ -0.271115102616     -0.274550633158     -0.278029379566     -0.281551885515    
+ -0.285118701518     -0.288730385020     -0.292387500478     -0.296090619453    
+ -0.299840320700     -0.303637190259     -0.307481821542     -0.311374815432    
+ -0.315316780374     -0.319308332470     -0.323350095578     -0.327442701405    
+ -0.331586789612     -0.335783007909     -0.340032012161     -0.344334466485    
+ -0.348691043360     -0.353102423729     -0.357569297106     -0.362092361685    
+ -0.366672324448     -0.371309901279     -0.376005817072     -0.380760805846    
+ -0.385575610863     -0.390450984740     -0.395387689569     -0.400386497040    
+ -0.405448188554     -0.410573555353     -0.415763398641     -0.421018529710    
+ -0.426339770066     -0.431727951561     -0.437183916520     -0.442708517876    
+ -0.448302619302     -0.453967095347     -0.459702831574     -0.465510724698    
+ -0.471391682728     -0.477346625108     -0.483376482864     -0.489482198745    
+ -0.495664727378     -0.501925035413     -0.508264101676     -0.514682917323    
+ -0.521182485997     -0.527763823984     -0.534427960374     -0.541175937220    
+ -0.548008809707     -0.554927646313     -0.561933528979     -0.569027553281    
+ -0.576210828597     -0.583484478290     -0.590849639874     -0.598307465204    
+ -0.605859120649     -0.613505787281     -0.621248661058     -0.629088953012    
+ -0.637027889443     -0.645066712108     -0.653206678421     -0.661449061648    
+ -0.669795151109     -0.678246252380     -0.686803687503     -0.695468795186    
+ -0.704242931026     -0.713127467711     -0.722123795246     -0.731233321167    
+ -0.740457470765     -0.749797687310     -0.759255432282     -0.768832185598    
+ -0.778529445848     -0.788348730531     -0.798291576298     -0.808359539188    
+ -0.818554194882     -0.828877138947     -0.839329987091     -0.849914375417    
+ -0.860631960684     -0.871484420566     -0.882473453924     -0.893600781066    
+ -0.904868144029     -0.916277306847     -0.927830055837     -0.939528199879    
+ -0.951373570702     -0.963368023176     -0.975513435609     -0.987811710040    
+  -1.00026477254      -1.01287457353      -1.02564308808      -1.03857231621    
+  -1.05166428324      -1.06492104008      -1.07834466359      -1.09193725687    
+  -1.10570094962      -1.11963789847      -1.13375028734      -1.14804032776    
+  -1.16251025924      -1.17716234962      -1.19199889543      -1.20702222226    
+  -1.22223468513      -1.23763866887      -1.25323658846      -1.26903088949    
+  -1.28502404848      -1.30121857330      -1.31761700358      -1.33422191108    
+  -1.35103590016      -1.36806160813      -1.38530170569      -1.40275889737    
+  -1.42043592197      -1.43833555294      -1.45646059888      -1.47481390396    
+  -1.49339834836      -1.51221684875      -1.53127235875      -1.55056786938    
+  -1.57010640956      -1.58989104654      -1.60992488645      -1.63021107476    
+  -1.65075279676      -1.67155327807      -1.69261578519      -1.71394362593    
+  -1.73554015003      -1.75740874959      -1.77955285966      -1.80197595877    
+  -1.82468156944      -1.84767325876      -1.87095463894      -1.89452936784    
+  -1.91840114960      -1.94257373511      -1.96705092269      -1.99183655859    
+  -2.01693453763      -2.04234880377      -2.06808335069      -2.09414222243    
+  -2.12052951395      -2.14724937179      -2.17430599464      -2.20170363400    
+  -2.22944659475      -2.25753923584      -2.28598597088      -2.31479126877    
+  -2.34395965436      -2.37349570908      -2.40340407156      -2.43368943832    
+  -2.46435656435      -2.49541026381      -2.52685541064      -2.55869693924    
+  -2.59093984505      -2.62358918527      -2.65665007943      -2.69012771007    
+  -2.72402732335      -2.75835422970      -2.79311380440      -2.82831148823    
+  -2.86395278807      -2.90004327748      -2.93658859730      -2.97359445624    
+  -3.01106663140      -3.04901096885      -3.08743338415      -3.12633986287    
+  -3.16573646107      -3.20562930577      -3.24602459541      -3.28692860025    
+  -3.32834766280      -3.37028819811      -3.41275669418      -3.45575971217    
+  -3.49930388672      -3.54339592609      -3.58804261237      -3.63325080157    
+  -3.67902742366      -3.72537948260      -3.77231405624      -3.81983829621    
+  -3.86795942771      -3.91668474922      -3.96602163214      -4.01597752034    
+  -4.06655992962      -4.11777644704      -4.16963473019      -4.22214250630    
+  -4.27530757126      -4.32913778847      -4.38364108763      -4.43882546329    
+  -4.49469897329      -4.55126973703      -4.60854593357      -4.66653579950    
+  -4.72524762669      -4.78468975973      -4.84487059320      -4.90579856874    
+  -4.96748217175      -5.02992992795      -5.09315039956      -5.15715218125    
+  -5.22194389568      -5.28753418885      -5.35393172488      -5.42114518066    
+  -5.48918323986      -5.55805458672      -5.62776789923      -5.69833184195    
+  -5.76975505828      -5.84204616220      -5.91521372945      -5.98926628815    
+  -6.06421230877      -6.14006019346      -6.21681826461      -6.29449475283    
+  -6.37309778398      -6.45263536550      -6.53311537184      -6.61454552893    
+  -6.69693339779      -6.78028635701      -6.86461158419      -6.94991603630    
+  -7.03620642877      -7.12348921329      -7.21177055437      -7.30105630434    
+  -7.39135197699      -7.48266271947      -7.57499328263      -7.66834798948    
+  -7.76273070184      -7.85814478489      -7.95459306971      -8.05207781346    
+  -8.15060065725      -8.25016258151      -8.35076385863      -8.45240400289    
+  -8.55508171737      -8.65879483784      -8.76354027337      -8.86931394364    
+  -8.97611071277      -9.08392431951      -9.19274730398      -9.30257093056    
+  -9.41338510729      -9.52517830166      -9.63793745301      -9.75164788184    
+  -9.86629319623      -9.98185519606      -10.0983137755      -10.2156468244    
+  -10.3338301301      -10.4528372804      -10.5726395682      -10.6932059018    
+  -10.8145027196      -10.9364939133      -11.0591407611      -11.1824018726    
+  -11.3062331489      -11.4305877588      -11.5554161347      -11.6806659900    
+  -11.8062823588      -11.9322076612      -12.0583817934      -12.1847422441    
+  -12.3112242357      -12.4377608899      -12.5642834146      -12.6907213070    
+  -12.8170025984      -12.9430539235      -13.0688014731      -13.1941695761    
+  -13.3190771429      -13.4434851063      -13.5671963917      -13.6904852837    
+  -13.8139040509      -13.9369935164      -14.0593070571      -14.1808417995    
+  -14.3014496130      -14.4210085833      -14.5393909225      -14.6564626560    
+  -14.7720871019      -14.8861245314      -14.9984329269      -15.1088684699    
+  -15.2172860225      -15.3235395727      -15.4274826544      -15.5289687479    
+  -15.6278516681      -15.7239859466      -15.8172272137      -15.9074325861    
+  -15.9944610648      -16.0781739487      -16.1584352693      -16.2351122491    
+  -16.3080757898      -16.3772009933      -16.4423677202      -16.5034611908    
+  -16.5603726298      -16.6129999637      -16.6612485712      -16.7050320890    
+  -16.7442732860      -16.7789050009      -16.8088711491      -16.8341278058    
+  -16.8546443643      -16.8704047716      -16.8814088427      -16.8876736500    
+  -16.8892349832      -16.8861488729      -16.8784931635      -16.8663691199    
+  -16.8499030461      -16.8292478808      -16.8045847351      -16.7761243338    
+  -16.7441082921      -16.7088101691      -16.6705362246      -16.6296257878    
+  -16.5864511407      -16.5414168066      -16.4949581231      -16.4475389674    
+  -16.3996484989      -16.3517967812      -16.3045091512      -16.2583192253    
+  -16.2137604668      -16.1713562939      -16.1316087928      -16.0949862006    
+  -16.0619094542      -16.0327382302      -16.0077570304      -15.9871619566    
+  -15.9710488508      -15.9594034426      -15.9520940363      -15.9488671373    
+  -15.9493463214      -15.9530346805      -15.9593214401      -15.9674938940    
+  -15.9767566580      -15.9862614968      -15.9951513702      -16.0026294686    
+  -16.0080376933      -16.0110351739      -16.0116616696      -16.0107288103    
+  -16.0096593894      -16.0086129873      -16.0076606168      -16.0068384809    
+  -16.0060767366      -16.0053992119      -16.0047883239      -16.0042407226    
+  -16.0037501163      -16.0033113083      -16.0029194210      -16.0025699784    
+  -16.0022588700      -16.0019823278      -16.0017369036      -16.0015194477    
+  -16.0013270872      -16.0011572071      -16.0010074308      -16.0007466571    
+  -16.0005513660      -16.0004056552      -16.0002973434      -16.0002171355    
+  -16.0001579656      -16.0001144836      -16.0000826541      -16.0000594455    
+  -16.0000425896      -16.0000303961      -16.0000216105      -16.0000153056    
+  -16.0000107992      -16.0000075911      -16.0000053164      -16.0000037100    
+  -16.0000025799      -16.0000017881      -16.0000012354      -16.0000008510    
+  -16.0000005846      -16.0000004006      -16.0000002739      -16.0000001870    
+  -16.0000001275      -16.0000000869      -16.0000000592      -16.0000000403    
+  -16.0000000275      -16.0000000188      -16.0000000129      -16.0000000088    
+  -16.0000000061      -16.0000000042      -16.0000000029      -16.0000000020    
+  -16.0000000014      -16.0000000010      -16.0000000007      -16.0000000005    
+  -16.0000000004      -16.0000000003      -16.0000000002      -16.0000000001    
+  -16.0000000001      -16.0000000001      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000      -16.0000000000    
+  -16.0000000000      -16.0000000000      -16.0000000000    
+ Up Pseudopotential follows (l on next line)
+  1
+ -0.607755169301E-06 -0.122315495755E-05 -0.184629552221E-05 -0.247727423026E-05
+ -0.311618967342E-05 -0.376314168352E-05 -0.441823134813E-05 -0.508156102634E-05
+ -0.575323436476E-05 -0.643335631372E-05 -0.712203314365E-05 -0.781937246172E-05
+ -0.852548322861E-05 -0.924047577556E-05 -0.996446182162E-05 -0.106975544911E-04
+ -0.114398683311E-04 -0.121915193299E-04 -0.129526249343E-04 -0.137233040686E-04
+ -0.145036771531E-04 -0.152938661227E-04 -0.160939944459E-04 -0.169041871444E-04
+ -0.177245708125E-04 -0.185552736369E-04 -0.193964254164E-04 -0.202481575829E-04
+ -0.211106032211E-04 -0.219838970901E-04 -0.228681756436E-04 -0.237635770520E-04
+ -0.246702412237E-04 -0.255883098267E-04 -0.265179263112E-04 -0.274592359316E-04
+ -0.284123857694E-04 -0.293775247562E-04 -0.303548036971E-04 -0.313443752937E-04
+ -0.323463941687E-04 -0.333610168896E-04 -0.343884019932E-04 -0.354287100105E-04
+ -0.364821034918E-04 -0.375487470320E-04 -0.386288072962E-04 -0.397224530462E-04
+ -0.408298551662E-04 -0.419511866901E-04 -0.430866228283E-04 -0.442363409949E-04
+ -0.454005208357E-04 -0.465793442563E-04 -0.477729954501E-04 -0.489816609276E-04
+ -0.502055295453E-04 -0.514447925350E-04 -0.526996435342E-04 -0.539702786159E-04
+ -0.552568963195E-04 -0.565596976814E-04 -0.578788862671E-04 -0.592146682026E-04
+ -0.605672522064E-04 -0.619368496225E-04 -0.633236744533E-04 -0.647279433931E-04
+ -0.661498758617E-04 -0.675896940390E-04 -0.690476228994E-04 -0.705238902473E-04
+ -0.720187267525E-04 -0.735323659863E-04 -0.750650444579E-04 -0.766170016513E-04
+ -0.781884800630E-04 -0.797797252398E-04 -0.813909858170E-04 -0.830225135572E-04
+ -0.846745633901E-04 -0.863473934517E-04 -0.880412651252E-04 -0.897564430815E-04
+ -0.914931953205E-04 -0.932517932135E-04 -0.950325115448E-04 -0.968356285553E-04
+ -0.986614259858E-04 -0.100510189121E-03 -0.102382206833E-03 -0.104277771630E-03
+ -0.106197179696E-03 -0.108140730944E-03 -0.110108729057E-03 -0.112101481539E-03
+ -0.114119299762E-03 -0.116162499013E-03 -0.118231398547E-03 -0.120326321633E-03
+ -0.122447595608E-03 -0.124595551925E-03 -0.126770526207E-03 -0.128972858297E-03
+ -0.131202892314E-03 -0.133460976706E-03 -0.135747464304E-03 -0.138062712375E-03
+ -0.140407082681E-03 -0.142780941536E-03 -0.145184659859E-03 -0.147618613237E-03
+ -0.150083181979E-03 -0.152578751180E-03 -0.155105710777E-03 -0.157664455613E-03
+ -0.160255385497E-03 -0.162878905267E-03 -0.165535424853E-03 -0.168225359343E-03
+ -0.170949129042E-03 -0.173707159547E-03 -0.176499881805E-03 -0.179327732185E-03
+ -0.182191152543E-03 -0.185090590296E-03 -0.188026498486E-03 -0.190999335855E-03
+ -0.194009566914E-03 -0.197057662019E-03 -0.200144097441E-03 -0.203269355441E-03
+ -0.206433924348E-03 -0.209638298631E-03 -0.212882978980E-03 -0.216168472385E-03
+ -0.219495292208E-03 -0.222863958274E-03 -0.226274996943E-03 -0.229728941196E-03
+ -0.233226330720E-03 -0.236767711988E-03 -0.240353638349E-03 -0.243984670111E-03
+ -0.247661374630E-03 -0.251384326398E-03 -0.255154107135E-03 -0.258971305876E-03
+ -0.262836519067E-03 -0.266750350655E-03 -0.270713412183E-03 -0.274726322889E-03
+ -0.278789709798E-03 -0.282904207822E-03 -0.287070459860E-03 -0.291289116897E-03
+ -0.295560838108E-03 -0.299886290956E-03 -0.304266151304E-03 -0.308701103513E-03
+ -0.313191840553E-03 -0.317739064112E-03 -0.322343484702E-03 -0.327005821773E-03
+ -0.331726803825E-03 -0.336507168521E-03 -0.341347662802E-03 -0.346249043007E-03
+ -0.351212074985E-03 -0.356237534220E-03 -0.361326205950E-03 -0.366478885291E-03
+ -0.371696377360E-03 -0.376979497400E-03 -0.382329070909E-03 -0.387745933769E-03
+ -0.393230932376E-03 -0.398784923773E-03 -0.404408775781E-03 -0.410103367139E-03
+ -0.415869587638E-03 -0.421708338263E-03 -0.427620531330E-03 -0.433607090630E-03
+ -0.439668951576E-03 -0.445807061347E-03 -0.452022379034E-03 -0.458315875793E-03
+ -0.464688534996E-03 -0.471141352385E-03 -0.477675336224E-03 -0.484291507462E-03
+ -0.490990899889E-03 -0.497774560300E-03 -0.504643548654E-03 -0.511598938245E-03
+ -0.518641815867E-03 -0.525773281984E-03 -0.532994450902E-03 -0.540306450944E-03
+ -0.547710424623E-03 -0.555207528827E-03 -0.562798934993E-03 -0.570485829293E-03
+ -0.578269412820E-03 -0.586150901776E-03 -0.594131527659E-03 -0.602212537457E-03
+ -0.610395193846E-03 -0.618680775382E-03 -0.627070576703E-03 -0.635565908734E-03
+ -0.644168098887E-03 -0.652878491272E-03 -0.661698446905E-03 -0.670629343923E-03
+ -0.679672577797E-03 -0.688829561549E-03 -0.698101725978E-03 -0.707490519878E-03
+ -0.716997410266E-03 -0.726623882615E-03 -0.736371441080E-03 -0.746241608736E-03
+ -0.756235927818E-03 -0.766355959958E-03 -0.776603286433E-03 -0.786979508406E-03
+ -0.797486247185E-03 -0.808125144468E-03 -0.818897862605E-03 -0.829806084855E-03
+ -0.840851515650E-03 -0.852035880861E-03 -0.863360928068E-03 -0.874828426832E-03
+ -0.886440168974E-03 -0.898197968851E-03 -0.910103663644E-03 -0.922159113643E-03
+ -0.934366202534E-03 -0.946726837702E-03 -0.959242950520E-03 -0.971916496657E-03
+ -0.984749456379E-03 -0.997743834863E-03 -0.101090166251E-02 -0.102422499525E-02
+ -0.103771591489E-02 -0.105137652940E-02 -0.106520897329E-02 -0.107921540791E-02
+ -0.109339802179E-02 -0.110775903099E-02 -0.112230067944E-02 -0.113702523932E-02
+ -0.115193501136E-02 -0.116703232524E-02 -0.118231953995E-02 -0.119779904416E-02
+ -0.121347325655E-02 -0.122934462627E-02 -0.124541563324E-02 -0.126168878860E-02
+ -0.127816663505E-02 -0.129485174729E-02 -0.131174673240E-02 -0.132885423027E-02
+ -0.134617691397E-02 -0.136371749021E-02 -0.138147869974E-02 -0.139946331777E-02
+ -0.141767415446E-02 -0.143611405527E-02 -0.145478590148E-02 -0.147369261059E-02
+ -0.149283713684E-02 -0.151222247157E-02 -0.153185164380E-02 -0.155172772062E-02
+ -0.157185380771E-02 -0.159223304981E-02 -0.161286863122E-02 -0.163376377628E-02
+ -0.165492174992E-02 -0.167634585809E-02 -0.169803944838E-02 -0.172000591043E-02
+ -0.174224867656E-02 -0.176477122225E-02 -0.178757706668E-02 -0.181066977332E-02
+ -0.183405295044E-02 -0.185773025173E-02 -0.188170537680E-02 -0.190598207181E-02
+ -0.193056413005E-02 -0.195545539252E-02 -0.198065974852E-02 -0.200618113629E-02
+ -0.203202354360E-02 -0.205819100836E-02 -0.208468761931E-02 -0.211151751659E-02
+ -0.213868489243E-02 -0.216619399178E-02 -0.219404911300E-02 -0.222225460851E-02
+ -0.225081488546E-02 -0.227973440647E-02 -0.230901769027E-02 -0.233866931242E-02
+ -0.236869390605E-02 -0.239909616257E-02 -0.242988083239E-02 -0.246105272567E-02
+ -0.249261671310E-02 -0.252457772659E-02 -0.255694076013E-02 -0.258971087051E-02
+ -0.262289317811E-02 -0.265649286775E-02 -0.269051518943E-02 -0.272496545923E-02
+ -0.275984906005E-02 -0.279517144253E-02 -0.283093812587E-02 -0.286715469867E-02
+ -0.290382681985E-02 -0.294096021951E-02 -0.297856069980E-02 -0.301663413588E-02
+ -0.305518647680E-02 -0.309422374644E-02 -0.313375204444E-02 -0.317377754718E-02
+ -0.321430650873E-02 -0.325534526181E-02 -0.329690021880E-02 -0.333897787276E-02
+ -0.338158479839E-02 -0.342472765311E-02 -0.346841317808E-02 -0.351264819924E-02
+ -0.355743962839E-02 -0.360279446429E-02 -0.364871979372E-02 -0.369522279259E-02
+ -0.374231072708E-02 -0.378999095478E-02 -0.383827092581E-02 -0.388715818400E-02
+ -0.393666036808E-02 -0.398678521286E-02 -0.403754055043E-02 -0.408893431141E-02
+ -0.414097452618E-02 -0.419366932610E-02 -0.424702694483E-02 -0.430105571960E-02
+ -0.435576409250E-02 -0.441116061181E-02 -0.446725393333E-02 -0.452405282173E-02
+ -0.458156615195E-02 -0.463980291054E-02 -0.469877219708E-02 -0.475848322563E-02
+ -0.481894532614E-02 -0.488016794589E-02 -0.494216065104E-02 -0.500493312803E-02
+ -0.506849518516E-02 -0.513285675410E-02 -0.519802789144E-02 -0.526401878027E-02
+ -0.533083973175E-02 -0.539850118676E-02 -0.546701371749E-02 -0.553638802912E-02
+ -0.560663496148E-02 -0.567776549073E-02 -0.574979073111E-02 -0.582272193664E-02
+ -0.589657050292E-02 -0.597134796887E-02 -0.604706601853E-02 -0.612373648294E-02
+ -0.620137134192E-02 -0.627998272599E-02 -0.635958291825E-02 -0.644018435628E-02
+ -0.652179963413E-02 -0.660444150422E-02 -0.668812287940E-02 -0.677285683492E-02
+ -0.685865661050E-02 -0.694553561238E-02 -0.703350741543E-02 -0.712258576525E-02
+ -0.721278458034E-02 -0.730411795426E-02 -0.739660015785E-02 -0.749024564140E-02
+ -0.758506903700E-02 -0.768108516076E-02 -0.777830901512E-02 -0.787675579124E-02
+ -0.797644087135E-02 -0.807737983112E-02 -0.817958844213E-02 -0.828308267435E-02
+ -0.838787869859E-02 -0.849399288903E-02 -0.860144182580E-02 -0.871024229758E-02
+ -0.882041130417E-02 -0.893196605919E-02 -0.904492399276E-02 -0.915930275419E-02
+ -0.927512021479E-02 -0.939239447062E-02 -0.951114384529E-02 -0.963138689292E-02
+ -0.975314240091E-02 -0.987642939297E-02 -0.100012671320E-01 -0.101276751233E-01
+ -0.102556731173E-01 -0.103852811128E-01 -0.105165193602E-01 -0.106494083645E-01
+ -0.107839688886E-01 -0.109202219564E-01 -0.110581888563E-01 -0.111978911442E-01
+ -0.113393506474E-01 -0.114825894672E-01 -0.116276299832E-01 -0.117744948562E-01
+ -0.119232070320E-01 -0.120737897448E-01 -0.122262665211E-01 -0.123806611830E-01
+ -0.125369978522E-01 -0.126953009537E-01 -0.128555952195E-01 -0.130179056926E-01
+ -0.131822577307E-01 -0.133486770104E-01 -0.135171895310E-01 -0.136878216186E-01
+ -0.138605999302E-01 -0.140355514578E-01 -0.142127035329E-01 -0.143920838302E-01
+ -0.145737203724E-01 -0.147576415343E-01 -0.149438760473E-01 -0.151324530037E-01
+ -0.153234018616E-01 -0.155167524490E-01 -0.157125349688E-01 -0.159107800032E-01
+ -0.161115185188E-01 -0.163147818709E-01 -0.165206018089E-01 -0.167290104808E-01
+ -0.169400404384E-01 -0.171537246423E-01 -0.173700964670E-01 -0.175891897058E-01
+ -0.178110385765E-01 -0.180356777265E-01 -0.182631422378E-01 -0.184934676330E-01
+ -0.187266898802E-01 -0.189628453989E-01 -0.192019710657E-01 -0.194441042195E-01
+ -0.196892826678E-01 -0.199375446920E-01 -0.201889290536E-01 -0.204434750001E-01
+ -0.207012222708E-01 -0.209622111032E-01 -0.212264822389E-01 -0.214940769297E-01
+ -0.217650369444E-01 -0.220394045747E-01 -0.223172226416E-01 -0.225985345024E-01
+ -0.228833840565E-01 -0.231718157528E-01 -0.234638745960E-01 -0.237596061533E-01
+ -0.240590565618E-01 -0.243622725347E-01 -0.246693013687E-01 -0.249801909512E-01
+ -0.252949897672E-01 -0.256137469065E-01 -0.259365120713E-01 -0.262633355831E-01
+ -0.265942683904E-01 -0.269293620764E-01 -0.272686688662E-01 -0.276122416345E-01
+ -0.279601339135E-01 -0.283123999006E-01 -0.286690944661E-01 -0.290302731613E-01
+ -0.293959922263E-01 -0.297663085983E-01 -0.301412799194E-01 -0.305209645447E-01
+ -0.309054215510E-01 -0.312947107444E-01 -0.316888926693E-01 -0.320880286161E-01
+ -0.324921806301E-01 -0.329014115197E-01 -0.333157848651E-01 -0.337353650264E-01
+ -0.341602171528E-01 -0.345904071908E-01 -0.350260018926E-01 -0.354670688252E-01
+ -0.359136763790E-01 -0.363658937760E-01 -0.368237910788E-01 -0.372874391994E-01
+ -0.377569099073E-01 -0.382322758387E-01 -0.387136105045E-01 -0.392009882995E-01
+ -0.396944845103E-01 -0.401941753238E-01 -0.407001378361E-01 -0.412124500600E-01
+ -0.417311909338E-01 -0.422564403289E-01 -0.427882790581E-01 -0.433267888832E-01
+ -0.438720525227E-01 -0.444241536592E-01 -0.449831769467E-01 -0.455492080178E-01
+ -0.461223334902E-01 -0.467026409735E-01 -0.472902190754E-01 -0.478851574076E-01
+ -0.484875465916E-01 -0.490974782634E-01 -0.497150450791E-01 -0.503403407188E-01
+ -0.509734598903E-01 -0.516144983333E-01 -0.522635528213E-01 -0.529207211645E-01
+ -0.535861022112E-01 -0.542597958485E-01 -0.549419030028E-01 -0.556325256387E-01
+ -0.563317667579E-01 -0.570397303963E-01 -0.577565216211E-01 -0.584822465254E-01
+ -0.592170122234E-01 -0.599609268429E-01 -0.607140995172E-01 -0.614766403754E-01
+ -0.622486605314E-01 -0.630302720709E-01 -0.638215880370E-01 -0.646227224138E-01
+ -0.654337901081E-01 -0.662549069291E-01 -0.670861895653E-01 -0.679277555604E-01
+ -0.687797232845E-01 -0.696422119049E-01 -0.705153413523E-01 -0.713992322849E-01
+ -0.722940060486E-01 -0.731997846343E-01 -0.741166906311E-01 -0.750448471755E-01
+ -0.759843778972E-01 -0.769354068591E-01 -0.778980584940E-01 -0.788724575351E-01
+ -0.798587289423E-01 -0.808569978215E-01 -0.818673893393E-01 -0.828900286303E-01
+ -0.839250406984E-01 -0.849725503101E-01 -0.860326818808E-01 -0.871055593532E-01
+ -0.881913060665E-01 -0.892900446172E-01 -0.904018967098E-01 -0.915269829981E-01
+ -0.926654229147E-01 -0.938173344902E-01 -0.949828341597E-01 -0.961620365569E-01
+ -0.973550542949E-01 -0.985619977320E-01 -0.997829747239E-01 -0.101018090359    
+ -0.102267446676     -0.103531142367     -0.104809272459     -0.106101927978    
+ -0.107409195587     -0.108731157212     -0.110067889636     -0.111419464070    
+ -0.112785945707     -0.114167393233     -0.115563858330     -0.116975385128    
+ -0.118402009645     -0.119843759179     -0.121300651675     -0.122772695053    
+ -0.124259886496     -0.125762211701     -0.127279644087     -0.128812143958    
+ -0.130359657627     -0.131922116480     -0.133499436004     -0.135091514750    
+ -0.136698233254     -0.138319452891     -0.139955014673     -0.141604737993    
+ -0.143268419292     -0.144945830672     -0.146636718429     -0.148340801528    
+ -0.150057769992     -0.151787283219     -0.153528968225     -0.155282417801    
+ -0.157047188584     -0.158822799051     -0.160608727418     -0.162404409452    
+ -0.164209236190     -0.166022551567     -0.167843649946     -0.169671773555    
+ -0.171506109825     -0.173345788631     -0.175189879435     -0.177037388335    
+ -0.178887255008     -0.180738349568     -0.182589469324     -0.184439335452    
+ -0.186286589569     -0.188129790239     -0.189967409386     -0.191797828641    
+ -0.193619335627     -0.195430120181     -0.197228270531     -0.199011769440    
+ -0.200778490325     -0.202526193366     -0.204252521621     -0.205954997175    
+ -0.207631017325     -0.209277850836     -0.210892634294     -0.212472368572    
+ -0.214013915449     -0.215513994411     -0.216969179667     -0.218375897420    
+ -0.219730423435     -0.221028880946     -0.222267238951     -0.223441310943    
+ -0.224546754131     -0.225579069217     -0.226533600768     -0.227405538271    
+ -0.228189917912     -0.228881625172     -0.229475398286     -0.229965832658    
+ -0.230347386288     -0.230614386303     -0.230761036647     -0.230781427029    
+ -0.230669543175     -0.230419278472     -0.230024447070     -0.229478798491    
+ -0.228776033819     -0.227909823498     -0.226873826795     -0.225661712938    
+ -0.224267183957     -0.222683999205     -0.220906001558     -0.218927145238    
+ -0.216741525194     -0.214343407961     -0.211727263867     -0.208887800441    
+ -0.205819996847     -0.202519139122     -0.198980855970     -0.195201154817    
+ -0.191176457818     -0.186903637435     -0.182380051198     -0.177603575230    
+ -0.172572636058     -0.167286240254     -0.161744001394     -0.155946163854    
+ -0.149893622948     -0.143587940938     -0.137031358515     -0.130226801371    
+ -0.123177881615     -0.115888893867     -0.108364806053     -0.100611245063    
+ -0.926344777043E-01 -0.844413876187E-01 -0.760394491419E-01 -0.674366994520E-01
+ -0.586417107261E-01 -0.496635644705E-01 -0.405118306512E-01 -0.311965547465E-01
+ -0.217282563510E-01 -0.121179434654E-01 -0.237714709106E-02  0.748201881874E-02
+  0.174467666455E-01  0.275035079959E-01  0.376376844980E-01  0.478335509701E-01
+  0.580739058724E-01  0.683397647572E-01  0.786099736624E-01  0.888607611323E-01
+  0.990652298788E-01  0.109192792091      0.119208556127      0.129072676853    
+  0.138739687232      0.148157834941      0.157268454734      0.166005414908    
+  0.174294684300      0.182054074599      0.189193220856      0.195613870560    
+  0.201210557682      0.205871742014      0.209481494817      0.211921808170    
+  0.213075596155      0.212830439717      0.211083102231      0.207744808082    
+  0.202747230647      0.196049077947      0.187643093456      0.177563206255    
+  0.165891469995      0.152764326030      0.138377616047      0.122989657750    
+  0.106921589280      0.905540894018E-01  0.743194961635E-01  0.586882789970E-01
+  0.441487657283E-01  0.311789763784E-01  0.202093481524E-01  0.115750140291E-01
+  0.545606776932E-02  0.180384414139E-02  0.250596587766E-03 -0.973410540913E-06
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000    
+ Up Pseudopotential follows (l on next line)
+  2
+  0.343111441523E-07  0.690538693671E-07  0.104233604269E-06  0.139855845763E-06
+  0.175926159890E-06  0.212450182720E-06  0.249433621199E-06  0.286882254068E-06
+  0.324801932750E-06  0.363198582273E-06  0.402078202192E-06  0.441446867526E-06
+  0.481310729708E-06  0.521676017550E-06  0.562549038208E-06  0.603936178176E-06
+  0.645843904279E-06  0.688278764683E-06  0.731247389923E-06  0.774756493933E-06
+  0.818812875099E-06  0.863423417321E-06  0.908595091087E-06  0.954334954562E-06
+  0.100065015469E-05  0.104754792832E-05  0.109503560333E-05  0.114312059975E-05
+  0.119181043097E-05  0.124111270488E-05  0.129103512504E-05  0.134158549195E-05
+  0.139277170420E-05  0.144460175974E-05  0.149708375712E-05  0.155022589677E-05
+  0.160403648224E-05  0.165852392155E-05  0.171369672848E-05  0.176956352389E-05
+  0.182613303707E-05  0.188341410714E-05  0.194141568437E-05  0.200014683162E-05
+  0.205961672577E-05  0.211983465910E-05  0.218081004079E-05  0.224255239836E-05
+  0.230507137918E-05  0.236837675197E-05  0.243247840833E-05  0.249738636426E-05
+  0.256311076177E-05  0.262966187043E-05  0.269705008899E-05  0.276528594699E-05
+  0.283438010642E-05  0.290434336339E-05  0.297518664980E-05  0.304692103505E-05
+  0.311955772778E-05  0.319310807764E-05  0.326758357701E-05  0.334299586285E-05
+  0.341935671846E-05  0.349667807539E-05  0.357497201527E-05  0.365425077167E-05
+  0.373452673208E-05  0.381581243975E-05  0.389812059577E-05  0.398146406093E-05
+  0.406585585783E-05  0.415130917287E-05  0.423783735828E-05  0.432545393428E-05
+  0.441417259113E-05  0.450400719131E-05  0.459497177166E-05  0.468708054557E-05
+  0.478034790523E-05  0.487478842386E-05  0.497041685797E-05  0.506724814971E-05
+  0.516529742915E-05  0.526458001671E-05  0.536511142549E-05  0.546690736371E-05
+  0.556998373722E-05  0.567435665189E-05  0.578004241621E-05  0.588705754380E-05
+  0.599541875598E-05  0.610514298442E-05  0.621624737375E-05  0.632874928426E-05
+  0.644266629459E-05  0.655801620452E-05  0.667481703771E-05  0.679308704451E-05
+  0.691284470486E-05  0.703410873114E-05  0.715689807110E-05  0.728123191082E-05
+  0.740712967772E-05  0.753461104358E-05  0.766369592762E-05  0.779440449962E-05
+  0.792675718306E-05  0.806077465831E-05  0.819647786588E-05  0.833388800967E-05
+  0.847302656030E-05  0.861391525844E-05  0.875657611825E-05  0.890103143076E-05
+  0.904730376743E-05  0.919541598359E-05  0.934539122209E-05  0.949725291686E-05
+  0.965102479659E-05  0.980673088847E-05  0.996439552187E-05  0.101240433322E-04
+  0.102856992648E-04  0.104493885787E-04  0.106151368508E-04  0.107829699794E-04
+  0.109529141889E-04  0.111249960334E-04  0.112992424010E-04  0.114756805182E-04
+  0.116543379536E-04  0.118352426230E-04  0.120184227929E-04  0.122039070858E-04
+  0.123917244838E-04  0.125819043339E-04  0.127744763520E-04  0.129694706279E-04
+  0.131669176298E-04  0.133668482093E-04  0.135692936059E-04  0.137742854522E-04
+  0.139818557784E-04  0.141920370179E-04  0.144048620119E-04  0.146203640148E-04
+  0.148385766993E-04  0.150595341614E-04  0.152832709262E-04  0.155098219531E-04
+  0.157392226411E-04  0.159715088345E-04  0.162067168285E-04  0.164448833750E-04
+  0.166860456877E-04  0.169302414490E-04  0.171775088148E-04  0.174278864211E-04
+  0.176814133901E-04  0.179381293357E-04  0.181980743705E-04  0.184612891112E-04
+  0.187278146858E-04  0.189976927395E-04  0.192709654411E-04  0.195476754902E-04
+  0.198278661233E-04  0.201115811206E-04  0.203988648133E-04  0.206897620900E-04
+  0.209843184039E-04  0.212825797803E-04  0.215845928228E-04  0.218904047218E-04
+  0.222000632610E-04  0.225136168251E-04  0.228311144074E-04  0.231526056178E-04
+  0.234781406897E-04  0.238077704888E-04  0.241415465204E-04  0.244795209375E-04
+  0.248217465495E-04  0.251682768298E-04  0.255191659244E-04  0.258744686605E-04
+  0.262342405548E-04  0.265985378225E-04  0.269674173857E-04  0.273409368826E-04
+  0.277191546764E-04  0.281021298644E-04  0.284899222873E-04  0.288825925383E-04
+  0.292802019730E-04  0.296828127188E-04  0.300904876843E-04  0.305032905697E-04
+  0.309212858761E-04  0.313445389162E-04  0.317731158241E-04  0.322070835660E-04
+  0.326465099500E-04  0.330914636375E-04  0.335420141535E-04  0.339982318972E-04
+  0.344601881537E-04  0.349279551047E-04  0.354016058395E-04  0.358812143671E-04
+  0.363668556274E-04  0.368586055028E-04  0.373565408301E-04  0.378607394128E-04
+  0.383712800329E-04  0.388882424635E-04  0.394117074809E-04  0.399417568777E-04
+  0.404784734752E-04  0.410219411364E-04  0.415722447792E-04  0.421294703897E-04
+  0.426937050356E-04  0.432650368796E-04  0.438435551935E-04  0.444293503720E-04
+  0.450225139467E-04  0.456231386007E-04  0.462313181829E-04  0.468471477224E-04
+  0.474707234440E-04  0.481021427825E-04  0.487415043986E-04  0.493889081938E-04
+  0.500444553262E-04  0.507082482265E-04  0.513803906136E-04  0.520609875112E-04
+  0.527501452638E-04  0.534479715539E-04  0.541545754180E-04  0.548700672647E-04
+  0.555945588909E-04  0.563281634999E-04  0.570709957188E-04  0.578231716169E-04
+  0.585848087230E-04  0.593560260446E-04  0.601369440858E-04  0.609276848668E-04
+  0.617283719424E-04  0.625391304215E-04  0.633600869869E-04  0.641913699146E-04
+  0.650331090943E-04  0.658854360495E-04  0.667484839580E-04  0.676223876727E-04
+  0.685072837430E-04  0.694033104356E-04  0.703106077565E-04  0.712293174727E-04
+  0.721595831346E-04  0.731015500980E-04  0.740553655472E-04  0.750211785177E-04
+  0.759991399199E-04  0.769894025622E-04  0.779921211751E-04  0.790074524354E-04
+  0.800355549907E-04  0.810765894842E-04  0.821307185795E-04  0.831981069866E-04
+  0.842789214869E-04  0.853733309600E-04  0.864815064096E-04  0.876036209903E-04
+  0.887398500348E-04  0.898903710813E-04  0.910553639009E-04  0.922350105261E-04
+  0.934294952792E-04  0.946390048007E-04  0.958637280791E-04  0.971038564797E-04
+  0.983595837753E-04  0.996311061756E-04  0.100918622359E-03  0.102222333502E-03
+  0.103542443312E-03  0.104879158059E-03  0.106232686608E-03  0.107603240450E-03
+  0.108991033737E-03  0.110396283314E-03  0.111819208755E-03  0.113260032394E-03
+  0.114718979364E-03  0.116196277627E-03  0.117692158014E-03  0.119206854260E-03
+  0.120740603039E-03  0.122293644002E-03  0.123866219815E-03  0.125458576197E-03
+  0.127070961956E-03  0.128703629031E-03  0.130356832529E-03  0.132030830766E-03
+  0.133725885309E-03  0.135442261013E-03  0.137180226065E-03  0.138940052025E-03
+  0.140722013870E-03  0.142526390035E-03  0.144353462458E-03  0.146203516622E-03
+  0.148076841602E-03  0.149973730108E-03  0.151894478533E-03  0.153839386999E-03
+  0.155808759400E-03  0.157802903456E-03  0.159822130755E-03  0.161866756805E-03
+  0.163937101083E-03  0.166033487085E-03  0.168156242376E-03  0.170305698639E-03
+  0.172482191732E-03  0.174686061736E-03  0.176917653010E-03  0.179177314245E-03
+  0.181465398517E-03  0.183782263343E-03  0.186128270739E-03  0.188503787273E-03
+  0.190909184123E-03  0.193344837138E-03  0.195811126893E-03  0.198308438750E-03
+  0.200837162920E-03  0.203397694521E-03  0.205990433640E-03  0.208615785398E-03
+  0.211274160010E-03  0.213965972854E-03  0.216691644530E-03  0.219451600930E-03
+  0.222246273300E-03  0.225076098316E-03  0.227941518141E-03  0.230842980503E-03
+  0.233780938760E-03  0.236755851975E-03  0.239768184983E-03  0.242818408466E-03
+  0.245906999026E-03  0.249034439263E-03  0.252201217843E-03  0.255407829582E-03
+  0.258654775518E-03  0.261942562993E-03  0.265271705727E-03  0.268642723907E-03
+  0.272056144258E-03  0.275512500134E-03  0.279012331595E-03  0.282556185497E-03
+  0.286144615571E-03  0.289778182516E-03  0.293457454082E-03  0.297183005161E-03
+  0.300955417875E-03  0.304775281670E-03  0.308643193405E-03  0.312559757447E-03
+  0.316525585763E-03  0.320541298021E-03  0.324607521680E-03  0.328724892092E-03
+  0.332894052603E-03  0.337115654648E-03  0.341390357857E-03  0.345718830157E-03
+  0.350101747877E-03  0.354539795852E-03  0.359033667530E-03  0.363584065084E-03
+  0.368191699517E-03  0.372857290775E-03  0.377581567859E-03  0.382365268942E-03
+  0.387209141478E-03  0.392113942326E-03  0.397080437862E-03  0.402109404103E-03
+  0.407201626826E-03  0.412357901691E-03  0.417579034367E-03  0.422865840654E-03
+  0.428219146615E-03  0.433639788704E-03  0.439128613892E-03  0.444686479805E-03
+  0.450314254857E-03  0.456012818383E-03  0.461783060777E-03  0.467625883633E-03
+  0.473542199886E-03  0.479532933950E-03  0.485599021868E-03  0.491741411456E-03
+  0.497961062448E-03  0.504258946653E-03  0.510636048098E-03  0.517093363188E-03
+  0.523631900861E-03  0.530252682741E-03  0.536956743303E-03  0.543745130032E-03
+  0.550618903585E-03  0.557579137959E-03  0.564626920659E-03  0.571763352866E-03
+  0.578989549608E-03  0.586306639937E-03  0.593715767104E-03  0.601218088735E-03
+  0.608814777015E-03  0.616507018871E-03  0.624296016153E-03  0.632182985827E-03
+  0.640169160159E-03  0.648255786912E-03  0.656444129541E-03  0.664735467383E-03
+  0.673131095866E-03  0.681632326704E-03  0.690240488105E-03  0.698956924975E-03
+  0.707782999132E-03  0.716720089513E-03  0.725769592395E-03  0.734932921607E-03
+  0.744211508751E-03  0.753606803429E-03  0.763120273466E-03  0.772753405136E-03
+  0.782507703398E-03  0.792384692129E-03  0.802385914357E-03  0.812512932507E-03
+  0.822767328641E-03  0.833150704705E-03  0.843664682774E-03  0.854310905311E-03
+  0.865091035419E-03  0.876006757095E-03  0.887059775500E-03  0.898251817216E-03
+  0.909584630519E-03  0.921059985647E-03  0.932679675078E-03  0.944445513802E-03
+  0.956359339609E-03  0.968423013371E-03  0.980638419326E-03  0.993007465377E-03
+  0.100553208338E-02  0.101821422945E-02  0.103105588425E-02  0.104405905332E-02
+  0.105722576736E-02  0.107055808256E-02  0.108405808092E-02  0.109772787054E-02
+  0.111156958599E-02  0.112558538861E-02  0.113977746685E-02  0.115414803658E-02
+  0.116869934148E-02  0.118343365336E-02  0.119835327247E-02  0.121346052793E-02
+  0.122875777800E-02  0.124424741052E-02  0.125993184321E-02  0.127581352407E-02
+  0.129189493175E-02  0.130817857590E-02  0.132466699759E-02  0.134136276969E-02
+  0.135826849720E-02  0.137538681773E-02  0.139272040183E-02  0.141027195340E-02
+  0.142804421015E-02  0.144603994393E-02  0.146426196120E-02  0.148271310341E-02
+  0.150139624747E-02  0.152031430612E-02  0.153947022840E-02  0.155886700005E-02
+  0.157850764400E-02  0.159839522074E-02  0.161853282882E-02  0.163892360531E-02
+  0.165957072618E-02  0.168047740683E-02  0.170164690253E-02  0.172308250887E-02
+  0.174478756222E-02  0.176676544025E-02  0.178901956235E-02  0.181155339012E-02
+  0.183437042789E-02  0.185747422314E-02  0.188086836704E-02  0.190455649490E-02
+  0.192854228668E-02  0.195282946747E-02  0.197742180802E-02  0.200232312517E-02
+  0.202753728241E-02  0.205306819034E-02  0.207891980718E-02  0.210509613927E-02
+  0.213160124156E-02  0.215843921813E-02  0.218561422264E-02  0.221313045889E-02
+  0.224099218126E-02  0.226920369521E-02  0.229776935780E-02  0.232669357814E-02
+  0.235598081786E-02  0.238563559164E-02  0.241566246761E-02  0.244606606785E-02
+  0.247685106885E-02  0.250802220194E-02  0.253958425370E-02  0.257154206645E-02
+  0.260390053859E-02  0.263666462507E-02  0.266983933770E-02  0.270342974560E-02
+  0.273744097549E-02  0.277187821204E-02  0.280674669820E-02  0.284205173548E-02
+  0.287779868421E-02  0.291399296378E-02  0.295064005285E-02  0.298774548956E-02
+  0.302531487162E-02  0.306335385647E-02  0.310186816133E-02  0.314086356322E-02
+  0.318034589895E-02  0.322032106510E-02  0.326079501780E-02  0.330177377269E-02
+  0.334326340455E-02  0.338527004710E-02  0.342779989261E-02  0.347085919144E-02
+  0.351445425150E-02  0.355859143771E-02  0.360327717124E-02  0.364851792875E-02
+  0.369432024148E-02  0.374069069424E-02  0.378763592428E-02  0.383516262005E-02
+  0.388327751978E-02  0.393198740998E-02  0.398129912375E-02  0.403121953888E-02
+  0.408175557589E-02  0.413291419580E-02  0.418470239766E-02  0.423712721604E-02
+  0.429019571808E-02  0.434391500047E-02  0.439829218608E-02  0.445333442038E-02
+  0.450904886751E-02  0.456544270611E-02  0.462252312477E-02  0.468029731718E-02
+  0.473877247688E-02  0.479795579161E-02  0.485785443734E-02  0.491847557170E-02
+  0.497982632711E-02  0.504191380330E-02  0.510474505937E-02  0.516832710523E-02
+  0.523266689255E-02  0.529777130498E-02  0.536364714779E-02  0.543030113672E-02
+  0.549773988621E-02  0.556596989671E-02  0.563499754125E-02  0.570482905109E-02
+  0.577547050045E-02  0.584692779023E-02  0.591920663072E-02  0.599231252316E-02
+  0.606625074019E-02  0.614102630502E-02  0.621664396932E-02  0.629310818972E-02
+  0.637042310286E-02  0.644859249894E-02  0.652761979358E-02  0.660750799807E-02
+  0.668825968772E-02  0.676987696842E-02  0.685236144109E-02  0.693571416412E-02
+  0.701993561361E-02  0.710502564113E-02  0.719098342924E-02  0.727780744431E-02
+  0.736549538662E-02  0.745404413776E-02  0.754344970488E-02  0.763370716193E-02
+  0.772481058760E-02  0.781675299982E-02  0.790952628667E-02  0.800312113357E-02
+  0.809752694647E-02  0.819273177103E-02  0.828872220743E-02  0.838548332082E-02
+  0.848299854702E-02  0.858124959343E-02  0.868021633494E-02  0.877987670452E-02
+  0.888020657848E-02  0.898117965609E-02  0.908276733331E-02  0.918493857063E-02
+  0.928765975461E-02  0.939089455312E-02  0.949460376389E-02  0.959874515648E-02
+  0.970327330719E-02  0.980813942699E-02  0.991329118229E-02  0.100186725083E-01
+  0.101242234150E-01  0.102298797857E-01  0.103355731680E-01  0.104412305571E-01
+  0.105467741720E-01  0.106521212232E-01  0.107571836745E-01  0.108618679962E-01
+  0.109660749121E-01  0.110696991397E-01  0.111726291236E-01  0.112747467635E-01
+  0.113759271363E-01  0.114760382140E-01  0.115749405768E-01  0.116724871234E-01
+  0.117685227793E-01  0.118628842034E-01  0.119553994951E-01  0.120458879030E-01
+  0.121341595366E-01  0.122200150832E-01  0.123032455317E-01  0.123836319060E-01
+  0.124609450100E-01  0.125349451869E-01  0.126053820964E-01  0.126719945132E-01
+  0.127345101492E-01  0.127926455049E-01  0.128461057530E-01  0.128945846604E-01
+  0.129377645520E-01  0.129753163224E-01  0.130068995019E-01  0.130321623822E-01
+  0.130507422086E-01  0.130622654459E-01  0.130663481259E-01  0.130625962834E-01
+  0.130506064892E-01  0.130299664903E-01  0.130002559633E-01  0.129610473931E-01
+  0.129119070851E-01  0.128523963206E-01  0.127820726663E-01  0.127004914464E-01
+  0.126072073887E-01  0.125017764540E-01  0.123837578573E-01  0.122527162919E-01
+  0.121082243634E-01  0.119498652416E-01  0.117772355372E-01  0.115899484090E-01
+  0.113876369050E-01  0.111699575400E-01  0.109365941097E-01  0.106872617383E-01
+  0.104217111554E-01  0.101397331934E-01  0.984116349261E-02  0.952588739945E-02
+  0.919384503617E-02  0.884503651742E-02  0.847952728266E-02  0.809745350849E-02
+  0.769902755819E-02  0.728454341977E-02  0.685438207703E-02  0.640901675091E-02
+  0.594901794164E-02  0.547505819486E-02  0.498791650778E-02  0.448848228488E-02
+  0.397775874608E-02  0.345686568460E-02  0.292704146701E-02  0.238964416417E-02
+  0.184615169919E-02  0.129816089841E-02  0.747385332190E-03  0.195651836412E-03
+ -0.355104388134E-03 -0.902846192270E-03 -0.144544249181E-02 -0.198067794306E-02
+ -0.250626432601E-02 -0.301985365770E-02 -0.351905303129E-02 -0.400144114621E-02
+ -0.446458646115E-02 -0.490606686610E-02 -0.532349073159E-02 -0.571451915507E-02
+ -0.607688918642E-02 -0.640843777861E-02 -0.670712617789E-02 -0.697106444133E-02
+ -0.719853575196E-02 -0.738802019378E-02 -0.753821765393E-02 -0.764806953850E-02
+ -0.771677902412E-02 -0.774382961979E-02 -0.772900188259E-02 -0.767238821527E-02
+ -0.757440576999E-02 -0.743580758490E-02 -0.725769218048E-02 -0.704151193001E-02
+ -0.678908057756E-02 -0.650258029086E-02 -0.618456858371E-02 -0.583798529992E-02
+ -0.546615959365E-02 -0.507281644497E-02 -0.466208169268E-02 -0.423848383377E-02
+ -0.380694992569E-02 -0.337279184202E-02 -0.294167790533E-02 -0.251958360632E-02
+ -0.211271379676E-02 -0.172738752754E-02 -0.136987572476E-02 -0.104618130648E-02
+ -0.761751280808E-03 -0.521110936876E-03 -0.327411465400E-03 -0.181884116597E-03
+ -0.831960321335E-04 -0.267046957873E-04 -0.360893093045E-05  0.594294249368E-08
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000    
+ Up Pseudopotential follows (l on next line)
+  3
+  0.150548808782E-07  0.302991288468E-07  0.457351258476E-07  0.613652837909E-07
+  0.771920449158E-07  0.932178821906E-07  0.109445299683E-06  0.125876832959E-06
+  0.142515049480E-06  0.159362549002E-06  0.176421963980E-06  0.193695959983E-06
+  0.211187236107E-06  0.228898525401E-06  0.246832595288E-06  0.264992248005E-06
+  0.283380321033E-06  0.301999687547E-06  0.320853256860E-06  0.339943974881E-06
+  0.359274824573E-06  0.378848826422E-06  0.398669038904E-06  0.418738558969E-06
+  0.439060522519E-06  0.459638104903E-06  0.480474521410E-06  0.501573027772E-06
+  0.522936920674E-06  0.544569538268E-06  0.566474260693E-06  0.588654510609E-06
+  0.611113753723E-06  0.633855499337E-06  0.656883300898E-06  0.680200756544E-06
+  0.703811509676E-06  0.727719249522E-06  0.751927711715E-06  0.776440678877E-06
+  0.801261981209E-06  0.826395497089E-06  0.851845153680E-06  0.877614927544E-06
+  0.903708845260E-06  0.930130984055E-06  0.956885472442E-06  0.983976490865E-06
+  0.101140827235E-05  0.103918510317E-05  0.106731132351E-05  0.109579132815E-05
+  0.112462956715E-05  0.115383054654E-05  0.118339882903E-05  0.121333903473E-05
+  0.124365584186E-05  0.127435398748E-05  0.130543826824E-05  0.133691354111E-05
+  0.136878472418E-05  0.140105679738E-05  0.143373480329E-05  0.146682384791E-05
+  0.150032910148E-05  0.153425579926E-05  0.156860924236E-05  0.160339479857E-05
+  0.163861790323E-05  0.167428405999E-05  0.171039884179E-05  0.174696789161E-05
+  0.178399692346E-05  0.182149172319E-05  0.185945814944E-05  0.189790213454E-05
+  0.193682968544E-05  0.197624688466E-05  0.201615989121E-05  0.205657494158E-05
+  0.209749835070E-05  0.213893651294E-05  0.218089590309E-05  0.222338307740E-05
+  0.226640467458E-05  0.230996741683E-05  0.235407811092E-05  0.239874364924E-05
+  0.244397101086E-05  0.248976726267E-05  0.253613956041E-05  0.258309514985E-05
+  0.263064136789E-05  0.267878564374E-05  0.272753550002E-05  0.277689855401E-05
+  0.282688251879E-05  0.287749520444E-05  0.292874451930E-05  0.298063847119E-05
+  0.303318516864E-05  0.308639282217E-05  0.314026974560E-05  0.319482435730E-05
+  0.325006518154E-05  0.330600084981E-05  0.336264010217E-05  0.341999178862E-05
+  0.347806487048E-05  0.353686842179E-05  0.359641163071E-05  0.365670380101E-05
+  0.371775435344E-05  0.377957282730E-05  0.384216888183E-05  0.390555229780E-05
+  0.396973297899E-05  0.403472095378E-05  0.410052637665E-05  0.416715952985E-05
+  0.423463082493E-05  0.430295080444E-05  0.437213014349E-05  0.444217965151E-05
+  0.451311027387E-05  0.458493309362E-05  0.465765933324E-05  0.473130035633E-05
+  0.480586766946E-05  0.488137292393E-05  0.495782791759E-05  0.503524459667E-05
+  0.511363505771E-05  0.519301154935E-05  0.527338647435E-05  0.535477239145E-05
+  0.543718201737E-05  0.552062822877E-05  0.560512406430E-05  0.569068272660E-05
+  0.577731758439E-05  0.586504217453E-05  0.595387020419E-05  0.604381555291E-05
+  0.613489227484E-05  0.622711460090E-05  0.632049694103E-05  0.641505388639E-05
+  0.651080021171E-05  0.660775087754E-05  0.670592103263E-05  0.680532601625E-05
+  0.690598136064E-05  0.700790279340E-05  0.711110623997E-05  0.721560782609E-05
+  0.732142388034E-05  0.742857093671E-05  0.753706573713E-05  0.764692523414E-05
+  0.775816659351E-05  0.787080719693E-05  0.798486464472E-05  0.810035675859E-05
+  0.821730158442E-05  0.833571739507E-05  0.845562269326E-05  0.857703621443E-05
+  0.869997692969E-05  0.882446404879E-05  0.895051702307E-05  0.907815554859E-05
+  0.920739956911E-05  0.933826927928E-05  0.947078512776E-05  0.960496782043E-05
+  0.974083832358E-05  0.987841786728E-05  0.100177279486E-04  0.101587903350E-04
+  0.103016270678E-04  0.104462604656E-04  0.105927131275E-04  0.107410079371E-04
+  0.108911680659E-04  0.110432169765E-04  0.111971784269E-04  0.113530764740E-04
+  0.115109354772E-04  0.116707801022E-04  0.118326353250E-04  0.119965264359E-04
+  0.121624790432E-04  0.123305190773E-04  0.125006727949E-04  0.126729667828E-04
+  0.128474279622E-04  0.130240835931E-04  0.132029612783E-04  0.133840889678E-04
+  0.135674949632E-04  0.137532079220E-04  0.139412568623E-04  0.141316711670E-04
+  0.143244805888E-04  0.145197152546E-04  0.147174056702E-04  0.149175827251E-04
+  0.151202776974E-04  0.153255222586E-04  0.155333484785E-04  0.157437888305E-04
+  0.159568761963E-04  0.161726438711E-04  0.163911255692E-04  0.166123554288E-04
+  0.168363680174E-04  0.170631983375E-04  0.172928818318E-04  0.175254543887E-04
+  0.177609523484E-04  0.179994125077E-04  0.182408721265E-04  0.184853689335E-04
+  0.187329411317E-04  0.189836274048E-04  0.192374669231E-04  0.194944993494E-04
+  0.197547648457E-04  0.200183040788E-04  0.202851582275E-04  0.205553689881E-04
+  0.208289785817E-04  0.211060297603E-04  0.213865658137E-04  0.216706305763E-04
+  0.219582684337E-04  0.222495243300E-04  0.225444437744E-04  0.228430728488E-04
+  0.231454582146E-04  0.234516471200E-04  0.237616874077E-04  0.240756275221E-04
+  0.243935165170E-04  0.247154040633E-04  0.250413404565E-04  0.253713766248E-04
+  0.257055641370E-04  0.260439552107E-04  0.263866027201E-04  0.267335602046E-04
+  0.270848818770E-04  0.274406226320E-04  0.278008380548E-04  0.281655844299E-04
+  0.285349187496E-04  0.289088987231E-04  0.292875827856E-04  0.296710301073E-04
+  0.300593006025E-04  0.304524549392E-04  0.308505545488E-04  0.312536616350E-04
+  0.316618391841E-04  0.320751509748E-04  0.324936615878E-04  0.329174364162E-04
+  0.333465416758E-04  0.337810444151E-04  0.342210125260E-04  0.346665147545E-04
+  0.351176207111E-04  0.355744008822E-04  0.360369266405E-04  0.365052702566E-04
+  0.369795049102E-04  0.374597047014E-04  0.379459446624E-04  0.384383007692E-04
+  0.389368499533E-04  0.394416701143E-04  0.399528401311E-04  0.404704398752E-04
+  0.409945502226E-04  0.415252530666E-04  0.420626313305E-04  0.426067689809E-04
+  0.431577510403E-04  0.437156636008E-04  0.442805938375E-04  0.448526300216E-04
+  0.454318615352E-04  0.460183788843E-04  0.466122737134E-04  0.472136388197E-04
+  0.478225681679E-04  0.484391569044E-04  0.490635013723E-04  0.496956991269E-04
+  0.503358489502E-04  0.509840508669E-04  0.516404061600E-04  0.523050173863E-04
+  0.529779883927E-04  0.536594243321E-04  0.543494316805E-04  0.550481182527E-04
+  0.557555932200E-04  0.564719671269E-04  0.571973519081E-04  0.579318609065E-04
+  0.586756088907E-04  0.594287120728E-04  0.601912881266E-04  0.609634562062E-04
+  0.617453369644E-04  0.625370525717E-04  0.633387267352E-04  0.641504847182E-04
+  0.649724533595E-04  0.658047610933E-04  0.666475379694E-04  0.675009156733E-04
+  0.683650275472E-04  0.692400086100E-04  0.701259955796E-04  0.710231268929E-04
+  0.719315427288E-04  0.728513850289E-04  0.737827975205E-04  0.747259257386E-04
+  0.756809170489E-04  0.766479206707E-04  0.776270877002E-04  0.786185711344E-04
+  0.796225258943E-04  0.806391088500E-04  0.816684788446E-04  0.827107967192E-04
+  0.837662253380E-04  0.848349296140E-04  0.859170765340E-04  0.870128351858E-04
+  0.881223767841E-04  0.892458746965E-04  0.903835044723E-04  0.915354438679E-04
+  0.927018728764E-04  0.938829737544E-04  0.950789310514E-04  0.962899316380E-04
+  0.975161647355E-04  0.987578219451E-04  0.100015097278E-03  0.101288187187E-03
+  0.102577290593E-03  0.103882608922E-03  0.105204346132E-03  0.106542708748E-03
+  0.107897905891E-03  0.109270149313E-03  0.110659653430E-03  0.112066635354E-03
+  0.113491314929E-03  0.114933914765E-03  0.116394660269E-03  0.117873779686E-03
+  0.119371504131E-03  0.120888067626E-03  0.122423707138E-03  0.123978662613E-03
+  0.125553177014E-03  0.127147496364E-03  0.128761869777E-03  0.130396549502E-03
+  0.132051790960E-03  0.133727852786E-03  0.135424996868E-03  0.137143488386E-03
+  0.138883595860E-03  0.140645591182E-03  0.142429749667E-03  0.144236350095E-03
+  0.146065674748E-03  0.147918009461E-03  0.149793643666E-03  0.151692870432E-03
+  0.153615986516E-03  0.155563292409E-03  0.157535092380E-03  0.159531694526E-03
+  0.161553410818E-03  0.163600557152E-03  0.165673453398E-03  0.167772423448E-03
+  0.169897795270E-03  0.172049900955E-03  0.174229076773E-03  0.176435663222E-03
+  0.178670005083E-03  0.180932451476E-03  0.183223355909E-03  0.185543076339E-03
+  0.187891975223E-03  0.190270419581E-03  0.192678781045E-03  0.195117435923E-03
+  0.197586765257E-03  0.200087154882E-03  0.202618995483E-03  0.205182682664E-03
+  0.207778617000E-03  0.210407204107E-03  0.213068854702E-03  0.215763984669E-03
+  0.218493015120E-03  0.221256372468E-03  0.224054488486E-03  0.226887800379E-03
+  0.229756750850E-03  0.232661788171E-03  0.235603366252E-03  0.238581944712E-03
+  0.241597988951E-03  0.244651970222E-03  0.247744365706E-03  0.250875658585E-03
+  0.254046338117E-03  0.257256899715E-03  0.260507845024E-03  0.263799681996E-03
+  0.267132924971E-03  0.270508094760E-03  0.273925718722E-03  0.277386330852E-03
+  0.280890471856E-03  0.284438689243E-03  0.288031537408E-03  0.291669577717E-03
+  0.295353378596E-03  0.299083515621E-03  0.302860571604E-03  0.306685136689E-03
+  0.310557808439E-03  0.314479191933E-03  0.318449899860E-03  0.322470552612E-03
+  0.326541778383E-03  0.330664213267E-03  0.334838501356E-03  0.339065294842E-03
+  0.343345254117E-03  0.347679047877E-03  0.352067353227E-03  0.356510855785E-03
+  0.361010249790E-03  0.365566238209E-03  0.370179532847E-03  0.374850854461E-03
+  0.379580932866E-03  0.384370507055E-03  0.389220325309E-03  0.394131145318E-03
+  0.399103734296E-03  0.404138869102E-03  0.409237336358E-03  0.414399932577E-03
+  0.419627464280E-03  0.424920748129E-03  0.430280611046E-03  0.435707890349E-03
+  0.441203433877E-03  0.446768100124E-03  0.452402758373E-03  0.458108288826E-03
+  0.463885582750E-03  0.469735542607E-03  0.475659082197E-03  0.481657126800E-03
+  0.487730613319E-03  0.493880490426E-03  0.500107718709E-03  0.506413270817E-03
+  0.512798131618E-03  0.519263298343E-03  0.525809780747E-03  0.532438601261E-03
+  0.539150795152E-03  0.545947410681E-03  0.552829509266E-03  0.559798165645E-03
+  0.566854468045E-03  0.573999518343E-03  0.581234432238E-03  0.588560339428E-03
+  0.595978383776E-03  0.603489723487E-03  0.611095531292E-03  0.618796994618E-03
+  0.626595315776E-03  0.634491712144E-03  0.642487416349E-03  0.650583676462E-03
+  0.658781756180E-03  0.667082935025E-03  0.675488508532E-03  0.683999788453E-03
+  0.692618102947E-03  0.701344796788E-03  0.710181231566E-03  0.719128785886E-03
+  0.728188855585E-03  0.737362853936E-03  0.746652211859E-03  0.756058378136E-03
+  0.765582819629E-03  0.775227021494E-03  0.784992487402E-03  0.794880739764E-03
+  0.804893319956E-03  0.815031788540E-03  0.825297725498E-03  0.835692730459E-03
+  0.846218422936E-03  0.856876442555E-03  0.867668449298E-03  0.878596123736E-03
+  0.889661167273E-03  0.900865302388E-03  0.912210272877E-03  0.923697844099E-03
+  0.935329803231E-03  0.947107959503E-03  0.959034144463E-03  0.971110212219E-03
+  0.983338039696E-03  0.995719526894E-03  0.100825659714E-02  0.102095119734E-02
+  0.103380529824E-02  0.104682089472E-02  0.106000000596E-02  0.107334467582E-02
+  0.108685697299E-02  0.110053899134E-02  0.111439285011E-02  0.112842069421E-02
+  0.114262469447E-02  0.115700704790E-02  0.117156997793E-02  0.118631573468E-02
+  0.120124659523E-02  0.121636486383E-02  0.123167287220E-02  0.124717297974E-02
+  0.126286757379E-02  0.127875906985E-02  0.129484991187E-02  0.131114257240E-02
+  0.132763955290E-02  0.134434338389E-02  0.136125662524E-02  0.137838186630E-02
+  0.139572172616E-02  0.141327885380E-02  0.143105592832E-02  0.144905565907E-02
+  0.146728078584E-02  0.148573407900E-02  0.150441833963E-02  0.152333639969E-02
+  0.154249112205E-02  0.156188540068E-02  0.158152216065E-02  0.160140435821E-02
+  0.162153498086E-02  0.164191704732E-02  0.166255360756E-02  0.168344774274E-02
+  0.170460256518E-02  0.172602121823E-02  0.174770687620E-02  0.176966274417E-02
+  0.179189205782E-02  0.181439808322E-02  0.183718411652E-02  0.186025348368E-02
+  0.188360954009E-02  0.190725567018E-02  0.193119528696E-02  0.195543183148E-02
+  0.197996877227E-02  0.200480960473E-02  0.202995785036E-02  0.205541705602E-02
+  0.208119079306E-02  0.210728265636E-02  0.213369626333E-02  0.216043525275E-02
+  0.218750328355E-02  0.221490403351E-02  0.224264119776E-02  0.227071848727E-02
+  0.229913962710E-02  0.232790835462E-02  0.235702841749E-02  0.238650357157E-02
+  0.241633757862E-02  0.244653420382E-02  0.247709721315E-02  0.250803037052E-02
+  0.253933743477E-02  0.257102215637E-02  0.260308827393E-02  0.263553951049E-02
+  0.266837956950E-02  0.270161213056E-02  0.273524084485E-02  0.276926933026E-02
+  0.280370116623E-02  0.283853988819E-02  0.287378898164E-02  0.290945187594E-02
+  0.294553193753E-02  0.298203246293E-02  0.301895667105E-02  0.305630769527E-02
+  0.309408857482E-02  0.313230224573E-02  0.317095153120E-02  0.321003913138E-02
+  0.324956761255E-02  0.328953939559E-02  0.332995674383E-02  0.337082175015E-02
+  0.341213632328E-02  0.345390217340E-02  0.349612079678E-02  0.353879345966E-02
+  0.358192118107E-02  0.362550471482E-02  0.366954453036E-02  0.371404079265E-02
+  0.375899334088E-02  0.380440166598E-02  0.385026488703E-02  0.389658172624E-02
+  0.394335048272E-02  0.399056900482E-02  0.403823466093E-02  0.408634430895E-02
+  0.413489426402E-02  0.418388026469E-02  0.423329743736E-02  0.428314025900E-02
+  0.433340251799E-02  0.438407727306E-02  0.443515681032E-02  0.448663259824E-02
+  0.453849524049E-02  0.459073442670E-02  0.464333888097E-02  0.469629630813E-02
+  0.474959333761E-02  0.480321546499E-02  0.485714699112E-02  0.491137095867E-02
+  0.496586908632E-02  0.502062170024E-02  0.507560766312E-02  0.513080430056E-02
+  0.518618732483E-02  0.524173075616E-02  0.529740684130E-02  0.535318596969E-02
+  0.540903658703E-02  0.546492510649E-02  0.552081581756E-02  0.557667079263E-02
+  0.563244979154E-02  0.568811016411E-02  0.574360675093E-02  0.579889178262E-02
+  0.585391477777E-02  0.590862243984E-02  0.596295855343E-02  0.601686388015E-02
+  0.607027605468E-02  0.612312948128E-02  0.617535523139E-02  0.622688094300E-02
+  0.627763072208E-02  0.632752504714E-02  0.637648067749E-02  0.642441056605E-02
+  0.647122377763E-02  0.651682541368E-02  0.656111654463E-02  0.660399415087E-02
+  0.664535107364E-02  0.668507597726E-02  0.672305332398E-02  0.675916336309E-02
+  0.679328213583E-02  0.682528149784E-02  0.685502916098E-02  0.688238875631E-02
+  0.690721992040E-02  0.692937840692E-02  0.694871622566E-02  0.696508181133E-02
+  0.697832022436E-02  0.698827338613E-02  0.699478035093E-02  0.699767761735E-02
+  0.699679948129E-02  0.699197843330E-02  0.698304560259E-02  0.696983125020E-02
+  0.695216531368E-02  0.692987800563E-02  0.690280046811E-02  0.687076548521E-02
+  0.683360825533E-02  0.679116722515E-02  0.674328498633E-02  0.668980923642E-02
+  0.663059380448E-02  0.656549974209E-02  0.649439647966E-02  0.641716304778E-02
+  0.633368936263E-02  0.624387757441E-02  0.614764347655E-02  0.604491797370E-02
+  0.593564860523E-02  0.581980112077E-02  0.569736110365E-02  0.556833563729E-02
+  0.543275500908E-02  0.529067444561E-02  0.514217587231E-02  0.498736968997E-02
+  0.482639655959E-02  0.465942918648E-02  0.448667409333E-02  0.430837337094E-02
+  0.412480639414E-02  0.393629148886E-02  0.374318753443E-02  0.354589548310E-02
+  0.334485977580E-02  0.314056963002E-02  0.293356017110E-02  0.272441337336E-02
+  0.251375877100E-02  0.230227389090E-02  0.209068435054E-02  0.187976355291E-02
+  0.167033189807E-02  0.146325541554E-02  0.125944370587E-02  0.105984706041E-02
+  0.865452608376E-03  0.677279319232E-03  0.496371665910E-03  0.323791733895E-03
+  0.160609541839E-03  0.789132477053E-05 -0.133314476896E-03 -0.261993776803E-03
+ -0.377186187639E-03 -0.478007351802E-03 -0.563674394657E-03 -0.633534540500E-03
+ -0.687096792457E-03 -0.724066386372E-03 -0.744381474610E-03 -0.748251166162E-03
+ -0.736193631298E-03 -0.709072458014E-03 -0.668128808316E-03 -0.615006148948E-03
+ -0.551763405854E-03 -0.480871295015E-03 -0.405185291975E-03 -0.327887190409E-03
+ -0.252385430827E-03 -0.182162305476E-03 -0.120553697889E-03 -0.704441039058E-04
+ -0.338561821057E-04 -0.114098361418E-04 -0.162064807187E-05 -0.115490804222E-08
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000       0.00000000000    
+   0.00000000000       0.00000000000       0.00000000000    
+ Core charge follows
+  0.728506723275E-10  0.295079610162E-09  0.672324092092E-09  0.121038744755E-08
+  0.191524355401E-08  0.279304145177E-08  0.385011007921E-08  0.509296313182E-08
+  0.652830404798E-08  0.816303112489E-08  0.100042427679E-07  0.120592428767E-07
+  0.143355463722E-07  0.168408848665E-07  0.195832124820E-07  0.225707118204E-07
+  0.258118000882E-07  0.293151353813E-07  0.330896231325E-07  0.371444227274E-07
+  0.414889542914E-07  0.461329056541E-07  0.510862394936E-07  0.563592006665E-07
+  0.619623237287E-07  0.679064406507E-07  0.742026887329E-07  0.808625187273E-07
+  0.878977031679E-07  0.953203449190E-07  0.103142885943E-06  0.111378116296E-06
+  0.120039183359E-06  0.129139601302E-06  0.138693260798E-06  0.148714438987E-06
+  0.159217809699E-06  0.170218453935E-06  0.181731870630E-06  0.193773987683E-06
+  0.206361173278E-06  0.219510247498E-06  0.233238494234E-06  0.247563673407E-06
+  0.262504033501E-06  0.278078324423E-06  0.294305810690E-06  0.311206284963E-06
+  0.328800081923E-06  0.347108092508E-06  0.366151778517E-06  0.385953187590E-06
+  0.406534968574E-06  0.427920387282E-06  0.450133342662E-06  0.473198383382E-06
+  0.497140724837E-06  0.521986266597E-06  0.547761610305E-06  0.574494078035E-06
+  0.602211731119E-06  0.630943389460E-06  0.660718651342E-06  0.691567913750E-06
+  0.723522393211E-06  0.756614147164E-06  0.790876095896E-06  0.826342045021E-06
+  0.863046708549E-06  0.901025732545E-06  0.940315719391E-06  0.980954252678E-06
+  0.102297992273E-05  0.106643235278E-05  0.111135222583E-05  0.115778131220E-05
+  0.120576249775E-05  0.125533981287E-05  0.130655846220E-05  0.135946485510E-05
+  0.141410663688E-05  0.147053272091E-05  0.152879332145E-05  0.158893998740E-05
+  0.165102563688E-05  0.171510459268E-05  0.178123261868E-05  0.184946695709E-05
+  0.191986636680E-05  0.199249116257E-05  0.206740325526E-05  0.214466619318E-05
+  0.222434520433E-05  0.230650723991E-05  0.239122101877E-05  0.247855707311E-05
+  0.256858779532E-05  0.266138748598E-05  0.275703240314E-05  0.285560081285E-05
+  0.295717304091E-05  0.306183152607E-05  0.316966087447E-05  0.328074791553E-05
+  0.339518175929E-05  0.351305385512E-05  0.363445805206E-05  0.375949066057E-05
+  0.388825051597E-05  0.402083904341E-05  0.415736032454E-05  0.429792116593E-05
+  0.444263116908E-05  0.459160280245E-05  0.474495147509E-05  0.490279561230E-05
+  0.506525673319E-05  0.523245953020E-05  0.540453195062E-05  0.558160528027E-05
+  0.576381422923E-05  0.595129701983E-05  0.614419547679E-05  0.634265511978E-05
+  0.654682525823E-05  0.675685908861E-05  0.697291379419E-05  0.719515064732E-05
+  0.742373511433E-05  0.765883696311E-05  0.790063037340E-05  0.814929404997E-05
+  0.840501133855E-05  0.866797034482E-05  0.893836405643E-05  0.921639046805E-05
+  0.950225270968E-05  0.979615917819E-05  0.100983236722E-04  0.104089655305E-04
+  0.107283097737E-04  0.110565872500E-04  0.113940347840E-04  0.117408953301E-04
+  0.120974181290E-04  0.124638588685E-04  0.128404798489E-04  0.132275501516E-04
+  0.136253458131E-04  0.140341500023E-04  0.144542532033E-04  0.148859534021E-04
+  0.153295562787E-04  0.157853754036E-04  0.162537324394E-04  0.167349573478E-04
+  0.172293886014E-04  0.177373734013E-04  0.182592679000E-04  0.187954374301E-04
+  0.193462567388E-04  0.199121102282E-04  0.204933922018E-04  0.210905071175E-04
+  0.217038698467E-04  0.223339059401E-04  0.229810519003E-04  0.236457554612E-04
+  0.243284758747E-04  0.250296842047E-04  0.257498636283E-04  0.264895097448E-04
+  0.272491308925E-04  0.280292484740E-04  0.288303972887E-04  0.296531258753E-04
+  0.304979968613E-04  0.313655873228E-04  0.322564891523E-04  0.331713094371E-04
+  0.341106708458E-04  0.350752120263E-04  0.360655880121E-04  0.370824706405E-04
+  0.381265489807E-04  0.391985297725E-04  0.402991378769E-04  0.414291167372E-04
+  0.425892288532E-04  0.437802562655E-04  0.450030010540E-04  0.462582858478E-04
+  0.475469543489E-04  0.488698718680E-04  0.502279258756E-04  0.516220265655E-04
+  0.530531074336E-04  0.545221258708E-04  0.560300637716E-04  0.575779281572E-04
+  0.591667518156E-04  0.607975939569E-04  0.624715408857E-04  0.641897066907E-04
+  0.659532339515E-04  0.677632944634E-04  0.696210899807E-04  0.715278529789E-04
+  0.734848474361E-04  0.754933696341E-04  0.775547489802E-04  0.796703488497E-04
+  0.818415674496E-04  0.840698387044E-04  0.863566331643E-04  0.887034589364E-04
+  0.911118626399E-04  0.935834303846E-04  0.961197887754E-04  0.987226059417E-04
+  0.101393592592E-03  0.104134503099E-03  0.106947136604E-03  0.109833338161E-03
+  0.112794999899E-03  0.115834062221E-03  0.118952515028E-03  0.122152398980E-03
+  0.125435806784E-03  0.128804884515E-03  0.132261832975E-03  0.135808909082E-03
+  0.139448427293E-03  0.143182761071E-03  0.147014344380E-03  0.150945673222E-03
+  0.154979307214E-03  0.159117871203E-03  0.163364056924E-03  0.167720624695E-03
+  0.172190405165E-03  0.176776301093E-03  0.181481289184E-03  0.186308421966E-03
+  0.191260829712E-03  0.196341722419E-03  0.201554391827E-03  0.206902213499E-03
+  0.212388648944E-03  0.218017247805E-03  0.223791650091E-03  0.229715588473E-03
+  0.235792890636E-03  0.242027481690E-03  0.248423386646E-03  0.254984732946E-03
+  0.261715753067E-03  0.268620787186E-03  0.275704285911E-03  0.282970813086E-03
+  0.290425048664E-03  0.298071791651E-03  0.305915963131E-03  0.313962609360E-03
+  0.322216904943E-03  0.330684156092E-03  0.339369803962E-03  0.348279428079E-03
+  0.357418749846E-03  0.366793636143E-03  0.376410103022E-03  0.386274319485E-03
+  0.396392611367E-03  0.406771465313E-03  0.417417532859E-03  0.428337634612E-03
+  0.439538764541E-03  0.451028094368E-03  0.462812978084E-03  0.474900956567E-03
+  0.487299762322E-03  0.500017324341E-03  0.513061773087E-03  0.526441445598E-03
+  0.540164890735E-03  0.554240874542E-03  0.568678385762E-03  0.583486641477E-03
+  0.598675092901E-03  0.614253431318E-03  0.630231594164E-03  0.646619771271E-03
+  0.663428411263E-03  0.680668228122E-03  0.698350207908E-03  0.716485615662E-03
+  0.735086002475E-03  0.754163212741E-03  0.773729391590E-03  0.793796992511E-03
+  0.814378785171E-03  0.835487863423E-03  0.857137653529E-03  0.879341922581E-03
+  0.902114787141E-03  0.925470722097E-03  0.949424569743E-03  0.973991549093E-03
+  0.999187265426E-03  0.102502772007E-02  0.105152932045E-02  0.107870889037E-02
+  0.110658368055E-02  0.113517137948E-02  0.116449012448E-02  0.119455851308E-02
+  0.122539561468E-02  0.125702098252E-02  0.128945466592E-02  0.132271722284E-02
+  0.135682973281E-02  0.139181381009E-02  0.142769161725E-02  0.146448587903E-02
+  0.150221989664E-02  0.154091756228E-02  0.158060337417E-02  0.162130245189E-02
+  0.166304055210E-02  0.170584408469E-02  0.174974012932E-02  0.179475645238E-02
+  0.184092152440E-02  0.188826453785E-02  0.193681542546E-02  0.198660487893E-02
+  0.203766436819E-02  0.209002616106E-02  0.214372334349E-02  0.219878984028E-02
+  0.225526043626E-02  0.231317079816E-02  0.237255749686E-02  0.243345803030E-02
+  0.249591084699E-02  0.255995537002E-02  0.262563202176E-02  0.269298224917E-02
+  0.276204854970E-02  0.283287449791E-02  0.290550477272E-02  0.297998518537E-02
+  0.305636270809E-02  0.313468550345E-02  0.321500295452E-02  0.329736569574E-02
+  0.338182564461E-02  0.346843603412E-02  0.355725144609E-02  0.364832784524E-02
+  0.374172261424E-02  0.383749458955E-02  0.393570409823E-02  0.403641299563E-02
+  0.413968470404E-02  0.424558425238E-02  0.435417831681E-02  0.446553526239E-02
+  0.457972518582E-02  0.469681995924E-02  0.481689327512E-02  0.494002069231E-02
+  0.506627968323E-02  0.519574968228E-02  0.532851213544E-02  0.546465055113E-02
+  0.560425055237E-02  0.574739993025E-02  0.589418869872E-02  0.604470915081E-02
+  0.619905591625E-02  0.635732602049E-02  0.651961894532E-02  0.668603669090E-02
+  0.685668383943E-02  0.703166762042E-02  0.721109797756E-02  0.739508763731E-02
+  0.758375217924E-02  0.777721010807E-02  0.797558292760E-02  0.817899521647E-02
+  0.838757470581E-02  0.860145235891E-02  0.882076245279E-02  0.904564266195E-02
+  0.927623414410E-02  0.951268162816E-02  0.975513350443E-02  0.100037419170E-01
+  0.102586628585E-01  0.105200562672E-01  0.107880861268E-01  0.110629205683E-01
+  0.113447319747E-01  0.116336970883E-01  0.119299971209E-01  0.122338178662E-01
+  0.125453498155E-01  0.128647882762E-01  0.131923334935E-01  0.135281907744E-01
+  0.138725706158E-01  0.142256888350E-01  0.145877667042E-01  0.149590310874E-01
+  0.153397145821E-01  0.157300556628E-01  0.161302988301E-01  0.165406947618E-01
+  0.169615004687E-01  0.173929794540E-01  0.178354018770E-01  0.182890447205E-01
+  0.187541919627E-01  0.192311347529E-01  0.197201715927E-01  0.202216085200E-01
+  0.207357592994E-01  0.212629456163E-01  0.218034972758E-01  0.223577524072E-01
+  0.229260576733E-01  0.235087684845E-01  0.241062492188E-01  0.247188734473E-01
+  0.253470241649E-01  0.259910940270E-01  0.266514855918E-01  0.273286115696E-01
+  0.280228950766E-01  0.287347698969E-01  0.294646807495E-01  0.302130835626E-01
+  0.309804457550E-01  0.317672465237E-01  0.325739771392E-01  0.334011412481E-01
+  0.342492551827E-01  0.351188482791E-01  0.360104632021E-01  0.369246562795E-01
+  0.378619978429E-01  0.388230725789E-01  0.398084798872E-01  0.408188342486E-01
+  0.418547656017E-01  0.429169197291E-01  0.440059586525E-01  0.451225610384E-01
+  0.462674226131E-01  0.474412565881E-01  0.486447940959E-01  0.498787846367E-01
+  0.511439965354E-01  0.524412174107E-01  0.537712546550E-01  0.551349359261E-01
+  0.565331096512E-01  0.579666455426E-01  0.594364351269E-01  0.609433922858E-01
+  0.624884538114E-01  0.640725799738E-01  0.656967551030E-01  0.673619881853E-01
+  0.690693134731E-01  0.708197911101E-01  0.726145077715E-01  0.744545773199E-01
+  0.763411414760E-01  0.782753705064E-01  0.802584639275E-01  0.822916512262E-01
+  0.843761925981E-01  0.865133797027E-01  0.887045364374E-01  0.909510197295E-01
+  0.932542203467E-01  0.956155637275E-01  0.980365108305E-01  0.100518559005    
+  0.103063242879      0.105672135274      0.108346848133      0.111089033481    
+  0.113900384394      0.116782636004      0.119737566520      0.122766998276    
+  0.125872798797      0.129056881900      0.132321208810      0.135667789310    
+  0.139098682908      0.142616000044      0.146221903309      0.149918608702    
+  0.153708386915      0.157593564641      0.161576525916      0.165659713491    
+  0.169845630230      0.174136840546      0.178535971865      0.183045716119    
+  0.187668831276      0.192408142907      0.197266545773      0.202247005466    
+  0.207352560065      0.212586321845      0.217951479009      0.223451297464    
+  0.229089122633      0.234868381302      0.240792583508      0.246865324464    
+  0.253090286528      0.259471241204      0.266012051189      0.272716672460    
+  0.279589156400      0.286633651969      0.293854407914      0.301255775024    
+  0.308842208426      0.316618269925      0.324588630389      0.332758072174    
+  0.341131491598      0.349713901453      0.358510433571      0.367526341424    
+  0.376767002774      0.386237922368      0.395944734678      0.405893206681    
+  0.416089240687      0.426538877214      0.437248297898      0.448223828453    
+  0.459471941675      0.470999260479      0.482812560992      0.494918775671    
+  0.507324996471      0.520038478049      0.533066641003      0.546417075151    
+  0.560097542841      0.574115982293      0.588480510980      0.603199429026    
+  0.618281222637      0.633734567559      0.649568332550      0.665791582876    
+  0.682413583821      0.699443804204      0.716891919914      0.734767817435    
+  0.753081597385      0.771843578037      0.791064298836      0.810754523898    
+  0.830925245486      0.851587687458      0.872753308681      0.894433806394    
+  0.916641119530      0.939387431970      0.962685175734      0.986547034086    
+   1.01098594456       1.03601510186       1.06164796070       1.08789823846    
+   1.11477991771       1.14230724864       1.17049475124       1.19935721736    
+   1.22890971250       1.25916757747       1.29014642969       1.32186216433    
+   1.35433095510       1.38756925477       1.42159379531       1.45642158773    
+   1.49206992145       1.52855636329       1.56589875603       1.60411521643    
+   1.64322413276       1.68324416173       1.72419422487       1.76609350419    
+   1.80896143722       1.85281771122       1.89768225671       1.94357524004    
+   1.99051705511       2.03852831412       2.08762983729       2.13784264144    
+   2.18918792748       2.24168706655       2.29536158495       2.35023314758    
+   2.40632353989       2.46365464826       2.52224843872       2.58212693378    
+   2.64331218749       2.70582625837       2.76969118028       2.83492893099    
+   2.90156139837       2.96961034406       3.03909736444       3.11004384876    
+   3.18247093437       3.25639945864       3.33184990770       3.40884236158    
+   3.48739643567       3.56753121832       3.64926520423       3.73261622367    
+   3.81760136701       3.90423690460       3.99253820158       4.08251962740    
+   4.17419445995       4.26757478376       4.36267138232       4.45949362395    
+   4.55804934114       4.65834470302       4.76038408062       4.86416990462    
+   4.96970251543       5.07698000512       5.18599805100       5.29674974055    
+   5.40922538737       5.52341233790       5.63929476862       5.75685347347    
+   5.87606564123       5.99690462266       6.11933968717       6.24333576886    
+   6.36885320180       6.49584744445       6.62426879317       6.75406208481    
+   6.88516638854       7.01751468689       7.15103354646       7.28564277848    
+   7.42125508960       7.55777572369       7.69510209513       7.83312341449    
+   7.97172030768       8.11076442968       8.25011807431       8.38963378163    
+   8.52915394488       8.66851041910       8.80752413385       8.94600471290    
+   9.08375010383       9.22054622124       9.35616660737       9.49037211447    
+   9.62291061371       9.75351673607       9.88191165078       10.0078028879    
+   10.1308842120       10.2508355538       10.3673230097       10.4799989148    
+   10.5885020030       10.6924576596       10.7914782811       10.8851637508    
+   10.9731020423       11.0548699645       11.1300340594       11.1981516654    
+   11.2587721614       11.3114384019       11.3556883591       11.3910569826    
+   11.4170782905       11.4332877020       11.4392246226       11.4344352905    
+   11.4185234687       11.3913102500       11.3527167487       11.3027190027    
+   11.2413465499       11.1686807575       11.0848529229       10.9900421628    
+   10.8844731124       10.7684134523       10.6421712851       10.5060923818    
+   10.3605573194       10.2059785294       10.0427972796       9.87148060790    
+   9.69251822923       9.50641943359       9.31370999471       9.11492910662    
+   8.91062636483       8.70135880811       8.48768803549       8.27017741211    
+   8.04938937644       7.82588286021       7.60021083094       7.37291796620    
+   7.14453846715       6.91559401775       6.68659189499       6.45802323458    
+   6.23036145420       6.00406083717       5.77955527681       5.55725718153    
+   5.33755653945       5.12082014049       4.90739095319       4.69758765244    
+   4.49170429383       4.29001012948       4.09274955981       3.90014221476    
+   3.71238315805       3.52964320718       3.35206936186       3.17978533235    
+   3.01289216061       2.85146892539       2.69557352311       2.54524351590    
+   2.40049703846       2.26133375522       2.12773585954       1.99966910670    
+   1.87708387266       1.75991623101       1.64808904047       1.54151303604    
+   1.44008791689       1.34370342488       1.25224040776       1.16557186162    
+   1.08356394783       1.00607697994      0.932966376672      0.864083577696    
+  0.799276919172      0.738392466711      0.681274803792      0.627767774094    
+  0.577715176672      0.530961413223      0.487352087088      0.446734553912    
+  0.408958424211      0.373876018311      0.341342774383      0.311217610511    
+  0.283363241901      0.257646454558      0.233938336888      0.212114470880    
+  0.192055084661      0.173645168351      0.156774555306      0.141337970916    
+  0.127235051250      0.114370333896      0.102653223389      0.919979336562E-01
+  0.823234098690E-01  0.735532320908E-01  0.656155030160E-01  0.584427220347E-01
+  0.519716477461E-01  0.461431509321E-01  0.409020598777E-01  0.361969997903E-01
+  0.319802279401E-01  0.282074660018E-01  0.248377309502E-01  0.218331657272E-01
+  0.191588707729E-01  0.167827373926E-01  0.146752838168E-01  0.128094947004E-01
+  0.111606647059E-01  0.970624671989E-02  0.842570515865E-02  0.730037473781E-02
+  0.631332500156E-02  0.544923083508E-02  0.469424911787E-02  0.403590161519E-02
+  0.346296415003E-02  0.296536204850E-02  0.253407180721E-02  0.216102889247E-02
+  0.183904154621E-02  0.156171044452E-02  0.132335402892E-02  0.111893930995E-02
+  0.944017924969E-03  0.794667219330E-03  0.667436109374E-03  0.559295479355E-03
+  0.467592860097E-03  0.390011135885E-03  0.324531026955E-03  0.269397097931E-03
+  0.223087047287E-03  0.184284039217E-03  0.151851846873E-03  0.124812584619E-03
+  0.102326816445E-03  0.836758378847E-04  0.682459394418E-04  0.555144704877E-04
+  0.450375337301E-04  0.364391515101E-04  0.294017562495E-04  0.236578682519E-04
+  0.189828346600E-04  0.151885136319E-04  0.121177976478E-04  0.963987926268E-05
+  0.764617153663E-05  0.604680378521E-05  0.476762117657E-05  0.374762405689E-05
+  0.293678970944E-05  0.229422555108E-05  0.178660855494E-05  0.138687097530E-05
+  0.107309725904E-05  0.827601380262E-06  0.636157754874E-06  0.487362406569E-06
+  0.372104191353E-06  0.283128672684E-06  0.214679700759E-06  0.162205915131E-06
+  0.122121286181E-06  0.916104639556E-07  0.684711369617E-07  0.509868419656E-07
+  0.378247304712E-07  0.279537084706E-07  0.205791419444E-07  0.150909783879E-07
+  0.110226897794E-07  0.801890875841E-08  0.581001974807E-08  0.419229134961E-08
+  0.301240527852E-08  0.215545890979E-08  0.153570057867E-08  0.108940556019E-08
+  0.769421652098E-09  0.541011236967E-09  0.378695619082E-09  0.263870717190E-09
+  0.183013701675E-09  0.126340280966E-09  0.868040512021E-10  0.593542653019E-10
+  0.403879003706E-10  0.273471076661E-10  0.184249126515E-10  0.123511179206E-10
+  0.823733096312E-11  0.546535707250E-11  0.360723500872E-11  0.236824167328E-11
+  0.154648181923E-11  0.100438929856E-11  0.648737098596E-12  0.416692250593E-12
+  0.266141415491E-12  0.169016787121E-12  0.106717887726E-12  0.669890648461E-13
+  0.418021761689E-13  0.259292977725E-13  0.159862921659E-13  0.979575074101E-14
+  0.596524344832E-14  0.360982518713E-14  0.217059303271E-14  0.129679446504E-14
+  0.769715546798E-15  0.453859225534E-15  0.265832989065E-15  0.154652853453E-15
+  0.893577996994E-16  0.512738720983E-16  0.292154161298E-16  0.165288664110E-16
+  0.928434644914E-17  0.517724407400E-17  0.286580239337E-17  0.157454439176E-17
+  0.858588181637E-18  0.464617945598E-18  0.249486678154E-18  0.132922270257E-18
+  0.702595427623E-19  0.368406850716E-19  0.191611675909E-19  0.988427149813E-20
+  0.505652034660E-20  0.256506665462E-20  0.129014994282E-20  0.643325271564E-21
+  0.317997421903E-21  0.155801712864E-21  0.756534922984E-22  0.364037174965E-22
+  0.173569639371E-22  0.819905331634E-23  0.383676866731E-23  0.177839765631E-23
+  0.816398631379E-24  0.371136713050E-24  0.167059551082E-24  0.744494135826E-25
+  0.328435436460E-25  0.143411180218E-25  0.619733728924E-26  0.265008959058E-26
+  0.112122501545E-26  0.469293585605E-27  0.194293470512E-27  0.795563737599E-28
+  0.322133344988E-28  0.128967523764E-28  0.510444287447E-29  0.199700093722E-29
+  0.772161412944E-30  0.295035987912E-30  0.111382086534E-30  0.415399050788E-31
+  0.153024262762E-31  0.556717378113E-32  0.199996926362E-32  0.709346722572E-33
+  0.248354791017E-33  0.858215901233E-34  0.292658537157E-34  0.984682751885E-35
+  0.326836916296E-35  0.107002505785E-35  0.345471779286E-36  0.109980070148E-36
+  0.345163201413E-37  0.106775018270E-37  0.325517529473E-38  0.977828892256E-39
+  0.289373408950E-39  0.843498822928E-40  0.242137811418E-40  0.684407127403E-41
+  0.190441272236E-41  0.521581872909E-42  0.140578327998E-42  0.372792978204E-43
+  0.972498511868E-44  0.249516845943E-44  0.629531957129E-45  0.156156266276E-45
+  0.380750960681E-46  0.912385334398E-47  0.214825858401E-47  0.496913303652E-48
+  0.112895056723E-48  0.251874096786E-49  0.551721690709E-50  0.118630936947E-50
+  0.250340034630E-51  0.518358174034E-52  0.105295432898E-52  0.209788430945E-53
+  0.409881489726E-54  0.785149072083E-55  0.147426386852E-55  0.271293794697E-56
+  0.489168355198E-57  0.864058480224E-58  0.149488164529E-58  0.253257431199E-59
+  0.420070716115E-60  0.682025926585E-61  0.108370599198E-61  0.168487810262E-62
+  0.256263499063E-63  0.381225283294E-64  0.554586635131E-65  0.788799576570E-66
+  0.109670823534E-66  0.149025700617E-67  0.197877435412E-68  0.256694649952E-69
+  0.325270215011E-70  0.402532879791E-71  0.486420519761E-72  0.573853539460E-73
+  0.660838689216E-74  0.742716556433E-75  0.814542147591E-76  0.871561437892E-77
+  0.909723279906E-78  0.926151641376E-79  0.919502387868E-80  0.890143426550E-81
+  0.840124944016E-82  0.772942169570E-83  0.693128848098E-84  0.605747514596E-85
+  0.515856780593E-86  0.428033735247E-87  0.346012806116E-88  0.272475934128E-89
+  0.208999386955E-90  0.156136523687E-91  0.113598112682E-92  0.804844791915E-94
+  0.555261736872E-95  0.372993333713E-96  0.243948558089E-97  0.155334722713E-98
+  0.962929178466-100  0.581113919178-101  0.341395845818-102  0.195243895000-103
+  0.108696313183-104  0.589074401148-106  0.310776159198-107  0.159608056370-108
+  0.797986257443-110  0.388374378517-111  0.183964791319-112  0.847644119834-114
+  0.379465418841-115  0.164676215405-116  0.690111584563-118  0.277607337558-119
+  0.106260227667-120  0.382362391448-122  0.127236525591-123  0.382880983964-125
+  0.100976655884-126  0.223348974763-128  0.397594213139-130  0.686189789082-132
+  0.275887022318-133  0.189015789474-134  0.108626747861-135  0.492599870540-137
+  0.182608472453-138  0.566855360074-140  0.148581651720-141  0.326670109636-143
+  0.587214747813-145  0.817320319408-147  0.832042125931-149  0.112648109400-150
+  0.610322690621-152  0.340023454970-153  0.142595081462-154  0.488849591955-156
+  0.145804118376-157  0.393059718294-159  0.981739243730-161  0.231118300230-162
+  0.519251658824-164  0.112369114876-165  0.235863091836-167  0.482706463697-169
+  0.966969131094-171  0.190159693317-172  0.367929535927-174  0.701766693399-176
+  0.132271976509-177  0.243853582931-179  0.364397176339-181  0.944356300932-184
+  0.227082341268-186  0.506182910178-189  0.104494428395-191
+ Valence charge follows
+  0.458482098235E-13  0.185706891223E-12  0.423123837565E-12  0.761751345493E-12
+  0.120534904523E-11  0.175778680485E-11  0.242304771039E-11  0.320523112390E-11
+  0.410855582115E-11  0.513736321136E-11  0.629612064084E-11  0.758942478279E-11
+  0.902200511543E-11  0.105987274908E-10  0.123245977963E-10  0.142047657121E-10
+  0.162445285655E-10  0.184493352864E-10  0.208247904650E-10  0.233766585153E-10
+  0.261108679470E-10  0.290335157478E-10  0.321508718800E-10  0.354693838938E-10
+  0.389956816599E-10  0.427365822256E-10  0.466990947963E-10  0.508904258462E-10
+  0.553179843620E-10  0.599893872216E-10  0.649124647130E-10  0.700952661958E-10
+  0.755460659087E-10  0.812733689288E-10  0.872859172832E-10  0.935926962202E-10
+  0.100202940642E-09  0.107126141704E-09  0.114372053585E-09  0.121950700430E-09
+  0.129872383475E-09  0.138147688359E-09  0.146787492613E-09  0.155802973357E-09
+  0.165205615187E-09  0.175007218263E-09  0.185219906619E-09  0.195856136667E-09
+  0.206928705941E-09  0.218450762052E-09  0.230435811880E-09  0.242897730999E-09
+  0.255850773352E-09  0.269309581167E-09  0.283289195131E-09  0.297805064831E-09
+  0.312873059453E-09  0.328509478769E-09  0.344731064394E-09  0.361555011346E-09
+  0.378998979890E-09  0.397081107693E-09  0.415820022295E-09  0.435234853894E-09
+  0.455345248463E-09  0.476171381200E-09  0.497733970330E-09  0.520054291258E-09
+  0.543154191081E-09  0.567056103484E-09  0.591783064004E-09  0.617358725697E-09
+  0.643807375202E-09  0.671153949218E-09  0.699424051405E-09  0.728643969712E-09
+  0.758840694162E-09  0.790041935080E-09  0.822276141793E-09  0.855572521816E-09
+  0.889961060514E-09  0.925472541286E-09  0.962138566252E-09  0.999991577477E-09
+  0.103906487874E-08  0.107939265784E-08  0.112101000952E-08  0.116395295893E-08
+  0.120825848570E-08  0.125396454864E-08  0.130111011110E-08  0.134973516692E-08
+  0.139988076705E-08  0.145158904694E-08  0.150490325449E-08  0.155986777885E-08
+  0.161652817984E-08  0.167493121822E-08  0.173512488667E-08  0.179715844159E-08
+  0.186108243568E-08  0.192694875142E-08  0.199481063533E-08  0.206472273316E-08
+  0.213674112592E-08  0.221092336691E-08  0.228732851964E-08  0.236601719670E-08
+  0.244705159970E-08  0.253049556015E-08  0.261641458145E-08  0.270487588185E-08
+  0.279594843866E-08  0.288970303346E-08  0.298621229848E-08  0.308555076426E-08
+  0.318779490836E-08  0.329302320552E-08  0.340131617890E-08  0.351275645273E-08
+  0.362742880633E-08  0.374542022941E-08  0.386681997887E-08  0.399171963701E-08
+  0.412021317119E-08  0.425239699509E-08  0.438837003148E-08  0.452823377658E-08
+  0.467209236608E-08  0.482005264285E-08  0.497222422638E-08  0.512871958393E-08
+  0.528965410361E-08  0.545514616914E-08  0.562531723675E-08  0.580029191381E-08
+  0.598019803960E-08  0.616516676813E-08  0.635533265300E-08  0.655083373446E-08
+  0.675181162871E-08  0.695841161944E-08  0.717078275172E-08  0.738907792825E-08
+  0.761345400808E-08  0.784407190788E-08  0.808109670571E-08  0.832469774748E-08
+  0.857504875612E-08  0.883232794352E-08  0.909671812529E-08  0.936840683849E-08
+  0.964758646232E-08  0.993445434190E-08  0.102292129152E-07  0.105320698431E-07
+  0.108432381429E-07  0.111629363254E-07  0.114913885348E-07  0.118288246928E-07
+  0.121754806462E-07  0.125315983184E-07  0.128974258641E-07  0.132732178287E-07
+  0.136592353114E-07  0.140557461325E-07  0.144630250049E-07  0.148813537100E-07
+  0.153110212783E-07  0.157523241739E-07  0.162055664848E-07  0.166710601165E-07
+  0.171491249926E-07  0.176400892581E-07  0.181442894898E-07  0.186620709113E-07
+  0.191937876132E-07  0.197398027793E-07  0.203004889184E-07  0.208762281022E-07
+  0.214674122088E-07  0.220744431726E-07  0.226977332411E-07  0.233377052370E-07
+  0.239947928282E-07  0.246694408040E-07  0.253621053581E-07  0.260732543798E-07
+  0.268033677513E-07  0.275529376534E-07  0.283224688789E-07  0.291124791535E-07
+  0.299234994653E-07  0.307560744026E-07  0.316107625001E-07  0.324881365936E-07
+  0.333887841850E-07  0.343133078145E-07  0.352623254444E-07  0.362364708509E-07
+  0.372363940271E-07  0.382627615954E-07  0.393162572307E-07  0.403975820945E-07
+  0.415074552798E-07  0.426466142671E-07  0.438158153925E-07  0.450158343270E-07
+  0.462474665689E-07  0.475115279477E-07  0.488088551413E-07  0.501403062065E-07
+  0.515067611223E-07  0.529091223478E-07  0.543483153937E-07  0.558252894083E-07
+  0.573410177788E-07  0.588964987474E-07  0.604927560433E-07  0.621308395307E-07
+  0.638118258729E-07  0.655368192140E-07  0.673069518768E-07  0.691233850799E-07
+  0.709873096712E-07  0.728999468815E-07  0.748625490966E-07  0.768764006489E-07
+  0.789428186293E-07  0.810631537193E-07  0.832387910452E-07  0.854711510525E-07
+  0.877616904037E-07  0.901119028986E-07  0.925233204171E-07  0.949975138873E-07
+  0.975360942770E-07  0.100140713611E-06  0.102813066013E-06  0.105554888778E-06
+  0.108367963465E-06  0.111254117022E-06  0.114215222941E-06  0.117253202438E-06
+  0.120370025665E-06  0.123567712956E-06  0.126848336094E-06  0.130214019625E-06
+  0.133666942195E-06  0.137209337920E-06  0.140843497801E-06  0.144571771164E-06
+  0.148396567141E-06  0.152320356189E-06  0.156345671648E-06  0.160475111334E-06
+  0.164711339181E-06  0.169057086914E-06  0.173515155772E-06  0.178088418273E-06
+  0.182779820024E-06  0.187592381574E-06  0.192529200315E-06  0.197593452439E-06
+  0.202788394927E-06  0.208117367612E-06  0.213583795270E-06  0.219191189784E-06
+  0.224943152351E-06  0.230843375748E-06  0.236895646658E-06  0.243103848050E-06
+  0.249471961627E-06  0.256004070326E-06  0.262704360892E-06  0.269577126505E-06
+  0.276626769490E-06  0.283857804077E-06  0.291274859247E-06  0.298882681641E-06
+  0.306686138543E-06  0.314690220945E-06  0.322900046685E-06  0.331320863662E-06
+  0.339958053138E-06  0.348817133121E-06  0.357903761836E-06  0.367223741279E-06
+  0.376783020868E-06  0.386587701178E-06  0.396644037782E-06  0.406958445180E-06
+  0.417537500828E-06  0.428387949278E-06  0.439516706411E-06  0.450930863791E-06
+  0.462637693112E-06  0.474644650776E-06  0.486959382576E-06  0.499589728498E-06
+  0.512543727653E-06  0.525829623323E-06  0.539455868145E-06  0.553431129420E-06
+  0.567764294559E-06  0.582464476669E-06  0.597541020278E-06  0.613003507204E-06
+  0.628861762580E-06  0.645125861023E-06  0.661806132967E-06  0.678913171153E-06
+  0.696457837283E-06  0.714451268846E-06  0.732904886117E-06  0.751830399331E-06
+  0.771239816041E-06  0.791145448667E-06  0.811559922225E-06  0.832496182270E-06
+  0.853967503023E-06  0.875987495720E-06  0.898570117160E-06  0.921729678481E-06
+  0.945480854154E-06  0.969838691206E-06  0.994818618679E-06  0.102043645733E-05
+  0.104670842958E-05  0.107365116969E-05  0.110128173428E-05  0.112961761298E-05
+  0.115867673948E-05  0.118847750280E-05  0.121903875883E-05  0.125037984224E-05
+  0.128252057860E-05  0.131548129690E-05  0.134928284228E-05  0.138394658923E-05
+  0.141949445498E-05  0.145594891334E-05  0.149333300884E-05  0.153167037125E-05
+  0.157098523044E-05  0.161130243169E-05  0.165264745134E-05  0.169504641282E-05
+  0.173852610317E-05  0.178311398989E-05  0.182883823829E-05  0.187572772930E-05
+  0.192381207764E-05  0.197312165056E-05  0.202368758703E-05  0.207554181738E-05
+  0.212871708354E-05  0.218324695972E-05  0.223916587362E-05  0.229650912831E-05
+  0.235531292449E-05  0.241561438349E-05  0.247745157080E-05  0.254086352016E-05
+  0.260589025842E-05  0.267257283088E-05  0.274095332741E-05  0.281107490921E-05
+  0.288298183627E-05  0.295671949554E-05  0.303233442989E-05  0.310987436775E-05
+  0.318938825360E-05  0.327092627925E-05  0.335453991589E-05  0.344028194711E-05
+  0.352820650266E-05  0.361836909319E-05  0.371082664593E-05  0.380563754124E-05
+  0.390286165022E-05  0.400256037334E-05  0.410479668000E-05  0.420963514929E-05
+  0.431714201179E-05  0.442738519250E-05  0.454043435498E-05  0.465636094669E-05
+  0.477523824551E-05  0.489714140766E-05  0.502214751685E-05  0.515033563485E-05
+  0.528178685345E-05  0.541658434788E-05  0.555481343173E-05  0.569656161347E-05
+  0.584191865450E-05  0.599097662894E-05  0.614382998507E-05  0.630057560861E-05
+  0.646131288780E-05  0.662614378039E-05  0.679517288262E-05  0.696850750022E-05
+  0.714625772157E-05  0.732853649299E-05  0.751545969638E-05  0.770714622919E-05
+  0.790371808685E-05  0.810530044773E-05  0.831202176082E-05  0.852401383607E-05
+  0.874141193772E-05  0.896435488048E-05  0.919298512893E-05  0.942744890013E-05
+  0.966789626958E-05  0.991448128071E-05  0.101673620581E-04  0.104267009245E-04
+  0.106926645219E-04  0.109654239367E-04  0.112451548294E-04  0.115320375687E-04
+  0.118262573709E-04  0.121280044435E-04  0.124374741349E-04  0.127548670893E-04
+  0.130803894075E-04  0.134142528134E-04  0.137566748280E-04  0.141078789488E-04
+  0.144680948377E-04  0.148375585152E-04  0.152165125630E-04  0.156052063356E-04
+  0.160038961795E-04  0.164128456624E-04  0.168323258122E-04  0.172626153662E-04
+  0.177040010312E-04  0.181567777554E-04  0.186212490128E-04  0.190977270998E-04
+  0.195865334462E-04  0.200879989413E-04  0.206024642743E-04  0.211302802921E-04
+  0.216718083744E-04  0.222274208270E-04  0.227975012958E-04  0.233824452004E-04
+  0.239826601915E-04  0.245985666314E-04  0.252305980994E-04  0.258792019257E-04
+  0.265448397523E-04  0.272279881260E-04  0.279291391234E-04  0.286488010114E-04
+  0.293874989445E-04  0.301457757023E-04  0.309241924694E-04  0.317233296614E-04
+  0.325437877982E-04  0.333861884312E-04  0.342511751242E-04  0.351394144954E-04
+  0.360515973224E-04  0.369884397152E-04  0.379506843628E-04  0.389391018579E-04
+  0.399544921047E-04  0.409976858179E-04  0.420695461162E-04  0.431709702208E-04
+  0.443028912626E-04  0.454662802098E-04  0.466621479216E-04  0.478915473386E-04
+  0.491555758200E-04  0.504553776375E-04  0.517921466378E-04  0.531671290869E-04
+  0.545816267075E-04  0.560369999262E-04  0.575346713440E-04  0.590761294477E-04
+  0.606629325799E-04  0.622967131856E-04  0.639791823586E-04  0.657121347068E-04
+  0.674974535623E-04  0.693371165613E-04  0.712332016210E-04  0.731878933444E-04
+  0.752034898829E-04  0.772824102933E-04  0.794272024240E-04  0.816405513718E-04
+  0.839252885511E-04  0.862844014212E-04  0.887210439221E-04  0.912385476710E-04
+  0.938404339769E-04  0.965304267350E-04  0.993124662667E-04  0.102190724176E-03
+  0.105169619300E-03  0.108253834832E-03  0.111448336715E-03  0.114758393383E-03
+  0.118189596973E-03  0.121747886104E-03  0.125439570343E-03  0.129271356488E-03
+  0.133250376804E-03  0.137384219356E-03  0.141680960601E-03  0.146149200401E-03
+  0.150798099649E-03  0.155637420693E-03  0.160677570783E-03  0.165929648746E-03
+  0.171405495152E-03  0.177117746222E-03  0.183079891758E-03  0.189306337399E-03
+  0.195812471522E-03  0.202614737147E-03  0.209730709201E-03  0.217179177553E-03
+  0.224980236257E-03  0.233155379442E-03  0.241727604369E-03  0.250721522175E-03
+  0.260163476873E-03  0.270081673227E-03  0.280506314165E-03  0.291469748413E-03
+  0.303006629143E-03  0.315154084408E-03  0.327951900268E-03  0.341442717522E-03
+  0.355672243058E-03  0.370689476885E-03  0.386546956012E-03  0.403301016392E-03
+  0.421012074278E-03  0.439744928375E-03  0.459569084336E-03  0.480559103218E-03
+  0.502794975630E-03  0.526362523458E-03  0.551353831145E-03  0.577867708674E-03
+  0.606010188541E-03  0.635895059158E-03  0.667644437311E-03  0.701389382471E-03
+  0.737270555950E-03  0.775438928097E-03  0.816056536972E-03  0.859297302122E-03
+  0.905347897398E-03  0.954408686944E-03  0.100669472884E-02  0.106243685114E-02
+  0.112188280534E-02  0.118529850273E-02  0.125296933937E-02  0.132520161584E-02
+  0.140232405830E-02  0.148468944783E-02  0.157267636550E-02  0.166669106107E-02
+  0.176716945367E-02  0.187457927356E-02  0.198942235423E-02  0.211223708522E-02
+  0.224360103618E-02  0.238413376367E-02  0.253449981277E-02  0.269541192627E-02
+  0.286763447516E-02  0.305198712463E-02  0.324934875099E-02  0.346066162550E-02
+  0.368693588229E-02  0.392925428828E-02  0.418877733413E-02  0.446674866638E-02
+  0.476450088183E-02  0.508346170647E-02  0.542516058246E-02  0.579123568777E-02
+  0.618344141440E-02  0.660365633233E-02  0.705389166774E-02  0.753630032528E-02
+  0.805318648562E-02  0.860701581076E-02  0.920042629118E-02  0.983623977011E-02
+  0.105174741817E-01  0.112473565415E-01  0.120293367278E-01  0.128671020964E-01
+  0.137645929695E-01  0.147260190424E-01  0.157558767526E-01  0.168589676581E-01
+  0.180404178686E-01  0.193056985798E-01  0.206606477569E-01  0.221114930165E-01
+  0.236648757545E-01  0.253278765693E-01  0.271080420276E-01  0.290134128202E-01
+  0.310525533539E-01  0.332345828231E-01  0.355692078046E-01  0.380667564135E-01
+  0.407382140570E-01  0.435952608184E-01  0.466503104969E-01  0.499165513257E-01
+  0.534079883818E-01  0.571394876939E-01  0.611268220469E-01  0.653867184683E-01
+  0.699369073729E-01  0.747961733271E-01  0.799844073804E-01  0.855226608930E-01
+  0.914332007727E-01  0.977395660101E-01  0.104466625381      0.111640636156    
+  0.119289303638      0.127441841302      0.136129031295      0.145383285006    
+  0.155238703386      0.165731136645      0.176898242909      0.188779545384    
+  0.201416487506      0.214852485496      0.229132977698      0.244305470007    
+  0.260419576602      0.277527055182      0.295681835770      0.314940042115    
+  0.335360004635      0.357002263738      0.379929562321      0.404206826110    
+  0.429901130474      0.457081652208      0.485819604758      0.516188155219    
+  0.548262321413      0.582118847270      0.617836054651      0.655493669736    
+  0.695172622039      0.736954814086      0.780922859788      0.827159789560    
+  0.875748720234      0.926772487920      0.980313242023       1.03645199874    
+   1.09526815254       1.15683894434       1.22123888519       1.28853913487    
+   1.35880683474       1.43210439492       1.50848873616       1.58801048727    
+   1.67071313960       1.75663216069       1.84579406993       1.93821547977    
+   2.03390210694       2.13284775891       2.23503330208       2.34042561861    
+   2.44897656062       2.56062191080       2.67528036016       2.79285251444    
+   2.91321994185       3.03624427602       3.16176638877       3.28960564862    
+   3.41955928136       3.55140185007       3.68488487226       3.81973659219    
+   3.95566192649       4.09234260116       4.22943749715       4.36658322141    
+   4.50339491856       4.63946733714       4.77437616209       4.90767962283    
+   5.03892038326       5.16762771676       5.29331996544       5.41550727866    
+   5.53369462136       5.64738503785       5.75608315150       5.85929887551    
+   5.95655130463       6.04737275220       6.13131289180       6.20794295779    
+   6.27685995461       6.33769082071       6.39009648980       6.43377578982    
+   6.46846911849       6.49396183440       6.51008730316       6.51672954070    
+   6.51382539936       6.50136624737       6.47939909854       6.44802715674    
+   6.40740974834       6.35776162555       6.29935163428       6.23250075117    
+   6.15757950599       6.07500481712       5.98523627915       5.88877195238    
+   5.78614371360       5.67791223650       5.56466167718       5.44699414557    
+   5.32552404766       5.20087238493       5.07366109709       4.94450753206    
+   4.81401912260       4.68278834317       4.55138801245       4.42036699620    
+   4.29024636510       4.16151602932       4.03463188362       3.91001347223    
+   3.78804217502       3.66905990579       3.55336830350       3.44122838959    
+   3.33286065685       3.22844555054       3.12812429838       3.03200004441    
+   2.94013924146       2.85257325834       2.76930016150       2.69028663474    
+   2.61547000692       2.54476036412       2.47804272995       2.41517930572    
+   2.35601176967       2.30036364148       2.24804272471       2.19884364398    
+   2.15255049616       2.10893963427       2.06778259847       2.02884920041    
+   1.99191075358       1.95674342417       1.92313165257       1.89087156640    
+   1.85977427108       1.82966886547       1.80040498955       1.77185465753    
+   1.74391311404       1.71649841241       1.68954887711       1.66301995827    
+   1.63687655050       1.61108633082       1.58561764130       1.56043974270    
+   1.53552270951       1.51083761010       1.48635662562       1.46205315711    
+   1.43790193193       1.41387910034       1.38996232408       1.36613085578    
+   1.34236560887       1.31864921743       1.29496608539       1.27130242830    
+   1.24764629211       1.22398759969       1.20031810931       1.17663148381    
+   1.15292330599       1.12919100362       1.10543372136       1.08165238639    
+   1.05784961674       1.03402969514       1.01019850856      0.986363485735    
+  0.962533526578      0.938718925102      0.914931286353      0.891183437932    
+  0.867489336594      0.843863970415      0.820323257007      0.796883938229    
+  0.773563471875      0.750379920799      0.727351839980      0.704498162020    
+  0.681838081636      0.659390939686      0.637176107377      0.615212871259    
+  0.593520319717      0.572117231682      0.551021968292      0.530252368304    
+  0.509825648031      0.489758306621      0.470066037282      0.450763645589    
+  0.431864975103      0.413382841165      0.395328973348      0.377713966982    
+  0.360547244066      0.343837023750      0.327590302437      0.311812843427    
+  0.296509175900      0.281682602889      0.267335217813      0.253467929003    
+  0.240080491602      0.227171546114      0.214738662861      0.202778391529    
+  0.191286315017      0.180257106752      0.169684590671      0.159561803104    
+  0.149881055810      0.140633999487      0.131811687108      0.123404636537    
+  0.115402891903      0.107796083302      0.100573484481      0.937240681896E-01
+  0.872365589925E-01  0.810994833714E-01  0.753012170274E-01  0.698300293336E-01
+  0.646741249453E-01  0.598216826149E-01  0.552608912934E-01  0.509799836280E-01
+  0.469672669838E-01  0.432111521308E-01  0.397001797420E-01  0.364230448473E-01
+  0.333686193798E-01  0.305259729414E-01  0.278843918974E-01  0.254333968944E-01
+  0.231627588769E-01  0.210625136575E-01  0.191229750817E-01  0.173347468108E-01
+  0.156887327335E-01  0.141761460081E-01  0.127885167302E-01  0.115176982194E-01
+  0.103558719165E-01  0.929555088926E-02  0.832958194883E-02  0.745114638881E-02
+  0.665375936844E-02  0.593126797257E-02  0.527784799285E-02  0.468799948627E-02
+  0.415654117804E-02  0.367860378632E-02  0.324962235515E-02  0.286532768942E-02
+  0.252173699192E-02  0.221514380615E-02  0.194210737172E-02  0.169944149903E-02
+  0.148420306994E-02  0.129368026778E-02  0.112538063713E-02  0.977019068118E-03
+  0.846505794733E-03  0.731934489281E-03  0.631570528336E-03  0.543839497453E-03
+  0.467315994093E-03  0.400712780111E-03  0.342870327185E-03  0.292746790768E-03
+  0.249408440643E-03  0.212020569074E-03  0.179838890888E-03  0.152201443709E-03
+  0.128520990978E-03  0.108277925393E-03  0.910136659988E-04  0.763245382950E-04
+  0.638561234960E-04  0.532980603258E-04  0.443792805562E-04  0.368636577744E-04
+  0.305460476076E-04  0.252486967849E-04  0.208179979348E-04  0.171215668633E-04
+  0.140456191972E-04  0.114926236492E-04  0.937920975788E-05  0.763430870694E-05
+  0.619750672675E-05  0.501759157950E-05  0.405127370568E-05  0.326206473685E-05
+  0.261929723473E-05  0.209727068061E-05  0.167450989443E-05  0.133312319625E-05
+  0.105824872119E-05  0.837578355002E-06  0.660949761589E-06  0.519997923315E-06
+  0.407858503967E-06  0.318916172379E-06  0.248591790223E-06  0.193163071018E-06
+  0.149613960061E-06  0.115508568735E-06  0.888860238687E-07  0.681730665981E-07
+  0.521116585633E-07  0.396992298390E-07  0.301395362026E-07  0.228023866169E-07
+  0.171907594992E-07  0.129140481771E-07  0.966637911862E-08  0.720909131640E-08
+  0.535665784264E-08  0.396538429076E-08  0.292438736756E-08  0.214843473865E-08
+  0.157226636060E-08  0.114610800879E-08  0.832144894576E-09  0.601761756389E-09
+  0.433391521602E-09  0.310845175331E-09  0.222020543016E-09  0.157908182017E-09
+  0.111829246318E-09  0.788536882321E-10  0.553580442197E-10  0.386907853536E-10
+  0.269201885931E-10  0.186452305428E-10  0.128543930721E-10  0.882072520169E-11
+  0.602421314735E-11  0.409462175452E-11  0.276960892089E-11  0.186417962818E-11
+  0.124851806241E-11  0.831979151696E-12  0.551585747525E-12  0.363805028278E-12
+  0.238699312605E-12  0.155787222623E-12  0.101130399574E-12  0.652937326106E-13
+  0.419248433816E-13  0.267701929925E-13  0.169973493155E-13  0.107307407570E-13
+  0.673543710756E-14  0.420298488439E-14  0.260719680667E-14  0.160761233251E-14
+  0.985252494594E-15  0.600121545507E-15  0.363264284150E-15  0.218506272206E-15
+  0.130595536264E-15  0.775498628154E-16  0.457495291385E-16  0.268107702048E-16
+  0.156067596250E-16  0.902319302042E-17  0.518101217270E-17  0.295418828446E-17
+  0.167260266859E-17  0.940242407250E-18  0.524735220333E-18  0.290706222297E-18
+  0.159860834425E-18  0.872494819702E-19  0.472580240126E-19  0.254002825943E-19
+  0.135459562951E-19  0.716714573732E-20  0.376188070015E-20  0.195858420743E-20
+  0.101137822971E-20  0.517933729156E-21  0.263013826225E-21  0.132428278535E-21
+  0.661049610964E-22  0.327108137898E-22  0.160437110045E-22  0.779876991852E-23
+  0.375669709170E-23  0.179306247269E-23  0.847897953283E-24  0.397191359145E-24
+  0.184294557012E-24  0.846894980800E-25  0.385387925085E-25  0.173645940275E-25
+  0.774595495636E-26  0.342037900062E-26  0.149488182434E-26  0.646571545591E-27
+  0.276723746814E-27  0.117176003277E-27  0.490834302767E-28  0.203364868437E-28
+  0.833300848878E-29  0.337638452766E-29  0.135258542736E-29  0.535646158158E-30
+  0.209666354588E-30  0.811060265411E-31  0.310017706042E-31  0.117074794049E-31
+  0.436734544594E-32  0.160909538790E-32  0.585447760001E-33  0.210313798225E-33
+  0.745849004141E-34  0.261076014226E-34  0.901871015409E-35  0.307404949333E-35
+  0.103369616062E-35  0.342859581570E-36  0.112151681805E-36  0.361730573617E-37
+  0.115021073032E-37  0.360499150847E-38  0.111349065975E-38  0.338878699815E-39
+  0.101600575481E-39  0.300026816280E-40  0.872474518535E-41  0.249798546628E-41
+  0.704021906769E-42  0.195278800447E-42  0.532977819575E-43  0.143106587660E-43
+  0.377934717124E-44  0.981498641981E-45  0.250603021469E-45  0.628945995851E-46
+  0.155123093494E-46  0.375906649244E-47  0.894802545468E-48  0.209179948972E-48
+  0.480130496625E-49  0.108179369803E-49  0.239206944082E-50  0.518972444274E-51
+  0.110446438712E-51  0.230510370634E-52  0.471686760143E-53  0.946091600344E-54
+  0.185959969811E-54  0.358097816636E-55  0.675410158546E-56  0.124739554708E-56
+  0.225525788442E-57  0.399038468160E-58  0.690910845188E-59  0.117194027810E-59
+  0.194400351869E-60  0.315264302868E-61  0.499706840064E-62
diff --git a/tests/data/parsers/siesta/Fe/Fe.sh b/tests/data/parsers/siesta/Fe/Fe.sh
new file mode 100644
index 0000000000000000000000000000000000000000..12b0f364c58dd49d1ee153de686efeca03f4c9ea
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+#SBATCH --nodes=1
+#SBATCH --time=30:00
+#SBATCH --ntasks=2
+#SBATCH -p debug
+#SBATCH --output=out.log
+#SBATCH --error=err.out.log
+#SBATCH --exclusive
+
+#load the environment
+
+ulimit -s unlimited
+export I_MPI_PMI_LIBRARY=/usr/lib64/libpmi.so
+export I_MPI_FABRICS=shm:dapl
+module load   intel/2016a    
+
+srun  --resv-ports  -N 1 -n 2 /home/andrea/siesta-4.0/Obj/siesta < Fe.fdf > out
\ No newline at end of file
diff --git a/tests/data/parsers/siesta/Fe/Fe.times b/tests/data/parsers/siesta/Fe/Fe.times
new file mode 100644
index 0000000000000000000000000000000000000000..cc29a46712c8311e2e41ca663bc686b428bff5eb
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.times
@@ -0,0 +1,69 @@
+
+timer: Number of nodes =      2
+timer: Busiest calculating node was node =      1
+timer: Times refer to node =      1
+timer: Total elapsed wall-clock time (sec) =      137.882
+timer: CPU times (sec):
+Calc: Sum, Avge, myNode, Avg/Max =     275.804     137.902     137.965   1.000
+No communications time available. Compile with -DMPI_TIMING
+Tot:  Sum, Avge, myNode, Avg/Max =     275.804     137.902     137.965   1.000
+Program times printed if >  0.000E+00 of total
+
+Program            Calls     Prg.com  Prg.com     Prg.tot  Prg.tot Nod.avg
+                                     /Tot.com             /Tot.tot/Nod.max
+siesta                 1       0.000   0.0000     137.965   1.0000   1.000
+Setup                  1       0.000   0.0000       0.467   0.0034   0.891
+bands                  3       0.000   0.0000       0.288   0.0021   0.993
+IterGeom               1       0.000   0.0000     136.559   0.9898   0.999
+state_init             1       0.000   0.0000       0.387   0.0028   0.796
+hsparse                1       0.000   0.0000       0.007   0.0001   0.818
+overlap                1       0.000   0.0000       0.170   0.0012   0.917
+Setup_H0               1       0.000   0.0000       1.630   0.0118   1.000
+kinefsm                2       0.000   0.0000       0.159   0.0012   0.904
+nlefsm                 2       0.000   0.0000       1.897   0.0137   0.991
+DHSCF_Init             1       0.000   0.0000       0.207   0.0015   0.877
+DHSCF1                 1       0.000   0.0000       0.019   0.0001   1.000
+INITMESH               3       0.000   0.0000       0.054   0.0004   0.500
+DHSCF2                 1       0.000   0.0000       0.188   0.0014   0.862
+REMESH                 1       0.000   0.0000       0.084   0.0006   0.685
+SPLOAD                 2       0.000   0.0000       0.054   0.0004   0.500
+PHION                  1       0.000   0.0000       0.079   0.0006   0.988
+POISON                26       0.000   0.0000       0.050   0.0004   0.600
+fft                   52       0.000   0.0000       0.050   0.0004   0.590
+IterSCF               24       0.000   0.0000     133.617   0.9685   1.000
+setup_H               24       0.000   0.0000       3.057   0.0222   0.996
+DHSCF                 25       0.000   0.0000       3.288   0.0238   1.000
+DHSCF3                25       0.000   0.0000       3.165   0.0229   0.999
+rhoofd                25       0.000   0.0000       1.396   0.0101   0.987
+cellXC                25       0.000   0.0000       0.177   0.0013   0.991
+vmat                  25       0.000   0.0000       1.539   0.0112   1.000
+compute_dm            24       0.000   0.0000     130.403   0.9452   1.000
+diagon                24       0.000   0.0000     128.766   0.9333   0.994
+c-eigval           53014       0.000   0.0000      54.607   0.3958   1.000
+c-buildHS          53014       0.000   0.0000       2.043   0.0148   0.786
+cdiag             105766       0.000   0.0000     121.516   0.8808   0.971
+cdiag1            105766       0.000   0.0000       1.973   0.0143   0.522
+cdiag2            105766       0.000   0.0000       4.314   0.0313   0.708
+cdiag3            105766       0.000   0.0000      79.336   0.5750   0.818
+cdiag4            105766       0.000   0.0000       7.145   0.0518   0.957
+c-eigvec           52752       0.000   0.0000      72.091   0.5225   0.987
+c-buildD           52752       0.000   0.0000       1.702   0.0123   0.743
+MIXER                 23       0.000   0.0000       0.029   0.0002   0.776
+WriteDM               24       0.000   0.0000       0.133   0.0010   0.947
+PostSCF                1       0.000   0.0000       0.920   0.0067   0.999
+DHSCF4                 1       0.000   0.0000       0.124   0.0009   0.981
+dfscf                  1       0.000   0.0000       0.112   0.0008   0.979
+overfsm                1       0.000   0.0000       0.003   0.0000   0.749
+No communications time available. Compile with -DMPI_TIMING
+
+Definitions:
+Program: Name of a time-profiled routine (or code section)
+Calls:   Number of profiled calls to a program
+Prg.com: CPU time in communications in one program in one node
+Tot.com: CPU time in communications in all progs. in one node
+Prg.tot: total CPU time in one program in one node
+Tot.tot: total CPU time in all programs in one node
+Nod.avg: average calculation time in one program across nodes
+Nod.max: maximum calculation time in one program across nodes
+Calculation time: CPU time excluding communications
+
diff --git a/tests/data/parsers/siesta/Fe/Fe.xml b/tests/data/parsers/siesta/Fe/Fe.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b228286c8afabe24a5410c10cd9bdfa0bd8b3b54
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/Fe.xml
@@ -0,0 +1,10629 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<cml convention="CMLComp" fileId="Fe.xml" xmlns="http://www.xml-cml.org/schema" xmlns:siesta="http://www.uam.es/siesta/namespace" xmlns:siestaUnits="http://www.uam.es/siesta/namespace/units" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:fpx="http://www.uszla.me.uk/fpx" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:units="http://www.uszla.me.uk/FoX/units" xmlns:cmlUnits="http://www.xml-cml.org/units/units" xmlns:siUnits="http://www.xml-cml.org/units/siUnits" xmlns:atomicUnits="http://www.xml-cml.org/units/atomic">
+  <metadata name="UUID" content="6d9d1210-4433-11e6-4fa9-9834fc75d1b7"/>
+  <metadataList>
+    <metadata name="siesta:Program" content="Siesta"/>
+    <metadata name="siesta:Version" content="siesta-4.0--500"/>
+    <metadata name="siesta:Arch" content="mpiifort"/>
+    <metadata name="siesta:Flags" content="mpiifort -O2"/>
+    <metadata name="siesta:StartTime" content="2016-07-07T09-10-12"/>
+    <metadata name="siesta:Mode" content="Parallel"/>
+    <metadata name="siesta:Nodes" content="         2"/>
+    <metadata name="siesta:NetCDF" content="false"/>
+  </metadataList>
+  <module title="Initial System">
+    <molecule>
+      <atomArray>
+        <atom elementType="Fe" x3="0.000000000000e0" y3="0.000000000000e0" z3="0.000000000000e0" ref="siesta:e001"/>
+      </atomArray>
+    </molecule>
+    <lattice dictRef="siesta:ucell">
+      <latticeVector units="siestaUnits:angstrom" dictRef="cml:latticeVector">2.711758069606e0 2.711758069606e0 2.711758069606e0</latticeVector>
+      <latticeVector units="siestaUnits:angstrom" dictRef="cml:latticeVector">2.711758069606e0 -2.711758069606e0 2.711758069606e0</latticeVector>
+      <latticeVector units="siestaUnits:angstrom" dictRef="cml:latticeVector">2.711758069606e0 2.711758069606e0 -2.711758069606e0</latticeVector>
+    </lattice>
+    <property dictRef="siesta:shape">
+      <scalar dataType="xsd:string">bulk</scalar>
+    </property>
+  </module>
+  <parameterList title="Input Parameters">
+    <parameter dictRef="siesta:sname" name="SystemName">
+      <scalar dataType="xsd:string">bcc Fe ferro GGA</scalar>
+    </parameter>
+    <parameter dictRef="siesta:slabel" name="SystemLabel">
+      <scalar dataType="xsd:string">Fe</scalar>
+    </parameter>
+    <parameter dictRef="siesta:verbosity" name="LongOutput">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter title="NumberOfSpecies" dictRef="siesta:ns">
+      <scalar dataType="xsd:integer" units="cmlUnits:countable">1</scalar>
+    </parameter>
+    <parameter name="WriteDenChar">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter name="WriteMullikenPop">
+      <scalar dataType="xsd:integer" units="cmlUnits:dimensionless">1</scalar>
+    </parameter>
+    <parameter dictRef="siesta:g2max" name="MeshCutOff">
+      <scalar dataType="fpx:real" units="siestaUnits:Ry">1.500000000000e2</scalar>
+    </parameter>
+    <parameter dictRef="siesta:NetCharge" name="NetCharge">
+      <scalar dataType="fpx:real" units="siestaUnits:e__">0.000000000000e0</scalar>
+    </parameter>
+    <parameter dictRef="siesta:maxscf" name="MaxSCFIterations">
+      <scalar dataType="xsd:integer" units="cmlUnits:countable">40</scalar>
+    </parameter>
+    <parameter dictRef="siesta:minscf" name="MinSCFIterations">
+      <scalar dataType="xsd:integer" units="cmlUnits:countable">0</scalar>
+    </parameter>
+    <parameter dictRef="siesta:maxsav" name="DM.NumberPulay">
+      <scalar dataType="xsd:integer" units="cmlUnits:countable">3</scalar>
+    </parameter>
+    <parameter dictRef="siesta:broyden_maxit" name="DM.NumberBroyden">
+      <scalar dataType="xsd:integer" units="cmlUnits:countable">0</scalar>
+    </parameter>
+    <parameter dictRef="siesta:mix" name="DM.MixSCF1">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter dictRef="siesta:pulfile" name="DM.PulayOnFile">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter dictRef="siesta:avoid_first_after_kick" name="DM.Pulay.Avoid.First.After.Kick">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter dictRef="siesta:wmix" name="DM.MixingWeight">
+      <scalar dataType="fpx:real" units="cmlUnits:dimensionless">1.000000000000e-1</scalar>
+    </parameter>
+    <parameter dictRef="siesta:occtol" name="DM.OccupancyTolerance">
+      <scalar dataType="fpx:real" units="cmlUnits:dimensionless">1.000000000000e-12</scalar>
+    </parameter>
+    <parameter dictRef="siesta:nkick" name="DM.NumberKick">
+      <scalar dataType="xsd:integer" units="cmlUnits:countable">0</scalar>
+    </parameter>
+    <parameter dictRef="siesta:wmixkick" name="DM.KickMixingWeight">
+      <scalar dataType="fpx:real" units="cmlUnits:dimensionless">5.000000000000e-1</scalar>
+    </parameter>
+    <parameter dictRef="siesta:dDtol" name="DM.Tolerance">
+      <scalar dataType="fpx:real" units="siestaUnits:eAng_3">1.000000000000e-3</scalar>
+    </parameter>
+    <parameter dictRef="siesta:ReqEnergyConv" name="DM.RequireEnergyConvergence">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter dictRef="siesta:dEtol" name="DM.EnergyTolerance">
+      <scalar dataType="fpx:real" units="siestaUnits:eV">1.000000000000e-5</scalar>
+    </parameter>
+    <parameter dictRef="siesta:ReqHarrisConv" name="DM.RequireHarrisConvergence">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter dictRef="siesta:Harris_tolerance" name="DM.HarrisTolerance">
+      <scalar dataType="fpx:real" units="siestaUnits:eV">7.349806700084e-7</scalar>
+    </parameter>
+    <parameter dictRef="siesta:inspn" name="DM.InitSpinAF">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter dictRef="siesta:usesavedm" name="DM.UseSaveDM">
+      <scalar dataType="xsd:boolean">true</scalar>
+    </parameter>
+    <parameter dictRef="siesta:negl" name="NeglNonOverlapInt">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter dictRef="siesta:SCFmethod" name="SolutionMethod">
+      <scalar dataType="xsd:string">diagon</scalar>
+    </parameter>
+    <parameter dictRef="siesta:DaC" name="Diag.DivideAndConquer">
+      <scalar dataType="xsd:boolean">true</scalar>
+    </parameter>
+    <parameter dictRef="siesta:MemoryFactor" name="Diag.Memory">
+      <scalar dataType="fpx:real" units="cmlUnits:dimensionless">1.000000000000e0</scalar>
+    </parameter>
+    <parameter dictRef="siesta:etemp" name="ElectronicTemperature">
+      <scalar dataType="fpx:real" units="siestaUnits:Ry">1.837449711227e-3</scalar>
+    </parameter>
+    <parameter dictRef="siesta:fixspin" name="FixSpin">
+      <scalar dataType="xsd:boolean">false</scalar>
+    </parameter>
+    <parameter dictRef="siesta:ts" name="TotalSpin">
+      <scalar dataType="fpx:real" units="siestaUnits:eSpin">0.000000000000e0</scalar>
+    </parameter>
+    <parameter name="MD.TypeOfRun">
+      <scalar dataType="xsd:string">Single-Point</scalar>
+    </parameter>
+    <parameter name="MD.BulkModulus">
+      <scalar dataType="fpx:real" units="siestaUnits:Ry_Bohr__3">6.797730000000e-3</scalar>
+    </parameter>
+  </parameterList>
+  <propertyList dictRef="siesta:kpoints" title="k-points">
+    <property dictRef="siesta:nkpnt">
+      <scalar dataType="xsd:integer" units="cmlUnits:countable">1099</scalar>
+    </property>
+    <kpoint coords="-5.346958699487e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 8.911597832478e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 9.802757615725e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-5.346958699487e-1 1.069391739897e0 5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 8.020438049230e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 8.911597832478e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 9.802757615725e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 7.129278265982e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 8.020438049230e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 8.911597832478e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 6.238118482734e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 7.129278265982e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.020438049230e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 5.346958699487e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 6.238118482734e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 7.129278265982e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 4.455798916239e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 5.346958699487e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 6.238118482734e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 0.000000000000e0 0.000000000000e0" weight="4.551661356395e-4"/>
+    <kpoint coords="-4.455798916239e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 8.911597832478e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 9.802757615725e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-4.455798916239e-1 1.069391739897e0 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 8.911597832478e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 9.802757615725e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.020438049230e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.911597832478e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 7.129278265982e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.020438049230e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 6.238118482734e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 7.129278265982e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 5.346958699487e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 6.238118482734e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 4.455798916239e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 5.346958699487e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 2.673479349743e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 3.564639132991e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 4.455798916239e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 2.673479349743e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 3.564639132991e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 1.782319566496e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 2.673479349743e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -8.911597832478e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -8.020438049230e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -7.129278265982e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 0.000000000000e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 8.911597832478e-2 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 1.782319566496e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -9.802757615725e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.911597832478e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.020438049230e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 0.000000000000e0 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 8.911597832478e-2 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -1.069391739897e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -9.802757615725e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.911597832478e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.911597832478e-2 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 0.000000000000e0 4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 8.911597832478e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 9.802757615725e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-3.564639132991e-1 1.069391739897e0 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.911597832478e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 9.802757615725e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.911597832478e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.020438049230e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 7.129278265982e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 6.238118482734e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 5.346958699487e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 4.455798916239e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 2.673479349743e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 3.564639132991e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 2.673479349743e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.911597832478e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 1.782319566496e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -9.802757615725e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.911597832478e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 0.000000000000e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 8.911597832478e-2 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -1.069391739897e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -9.802757615725e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.911597832478e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 0.000000000000e0 3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 8.911597832478e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 9.802757615725e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-2.673479349743e-1 1.069391739897e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.911597832478e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 9.802757615725e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.911597832478e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 2.673479349743e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.911597832478e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -9.802757615725e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.911597832478e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -1.069391739897e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -9.802757615725e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.911597832478e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 0.000000000000e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 0.000000000000e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 7.129278265982e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.020438049230e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 8.911597832478e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 9.802757615725e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-1.782319566496e-1 1.069391739897e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.911597832478e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 9.802757615725e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.911597832478e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.911597832478e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -9.802757615725e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.911597832478e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -1.069391739897e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -9.802757615725e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -8.911597832478e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 0.000000000000e0 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 7.129278265982e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.020438049230e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 8.911597832478e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 9.802757615725e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="-8.911597832478e-2 1.069391739897e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 -8.911597832478e-2 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 0.000000000000e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 7.129278265982e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.020438049230e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.911597832478e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 9.802757615725e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.911597832478e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.911597832478e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -9.802757615725e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -8.911597832478e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -1.069391739897e0 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -9.802757615725e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -8.911597832478e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 0.000000000000e0 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.911597832478e-2 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 7.129278265982e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.020438049230e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 8.911597832478e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 9.802757615725e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="0.000000000000e0 1.069391739897e0 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 0.000000000000e0 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 7.129278265982e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.020438049230e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 8.911597832478e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-2 9.802757615725e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 0.000000000000e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 7.129278265982e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 8.020438049230e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.782319566496e-1 8.911597832478e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="2.673479349743e-1 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="3.564639132991e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="4.455798916239e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="5.346958699487e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="6.238118482734e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="7.129278265982e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.020438049230e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -8.911597832478e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -8.020438049230e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -7.129278265982e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="8.911597832478e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -9.802757615725e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -8.911597832478e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -8.020438049230e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="9.802757615725e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -1.069391739897e0 -1.069391739897e0" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -9.802757615725e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -8.911597832478e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+    <kpoint coords="1.069391739897e0 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+    <property dictRef="siesta:kcutof">
+      <scalar dataType="fpx:real" units="siestaUnits:angstrom">1.615570390760e1</scalar>
+    </property>
+  </propertyList>
+  <property dictRef="siesta:kscell">
+    <matrix rows="3" columns="3" dataType="xsd:integer" units="siestaUnits:Ang">0 13 0 0 0 13 13 0 0</matrix>
+  </property>
+  <property dictRef="siesta:kdispl">
+    <array size="3" dataType="fpx:real" units="siestaUnits:Ang">0.000000000000e0 0.000000000000e0 0.000000000000e0</array>
+  </property>
+  <module serial="1" dictRef="Single-Point" role="step">
+    <molecule>
+      <atomArray>
+        <atom elementType="Fe" x3="0.000000000000e0" y3="0.000000000000e0" z3="0.000000000000e0" ref="siesta:e001"/>
+      </atomArray>
+    </molecule>
+    <lattice dictRef="siesta:ucell">
+      <latticeVector units="siestaUnits:Ang" dictRef="cml:latticeVector">1.435000000000e0 1.435000000000e0 1.435000000000e0</latticeVector>
+      <latticeVector units="siestaUnits:Ang" dictRef="cml:latticeVector">1.435000000000e0 -1.435000000000e0 1.435000000000e0</latticeVector>
+      <latticeVector units="siestaUnits:Ang" dictRef="cml:latticeVector">1.435000000000e0 1.435000000000e0 -1.435000000000e0</latticeVector>
+    </lattice>
+    <crystal title="Lattice Parameters">
+      <cellParameter latticeType="real" parameterType="length" units="units:angstrom">2.485493 2.485493 2.485493</cellParameter>
+      <cellParameter latticeType="real" parameterType="angle" units="units:degree">70.528779 70.528779 109.471221</cellParameter>
+    </crystal>
+    <propertyList>
+      <property dictRef="siesta:ntm" title="Mesh">
+        <array size="3" dataType="xsd:integer" units="cmlUnits:countable">16 16 16</array>
+      </property>
+      <property dictRef="siesta:g2max" title="Requested Cut-Off">
+        <scalar dataType="fpx:real" units="siestaUnits:Ry">1.500000000000e2</scalar>
+      </property>
+      <property dictRef="siesta:g2mesh" title="Actual Cut-Off">
+        <scalar dataType="fpx:real" units="siestaUnits:Ry">1.717939370371e2</scalar>
+      </property>
+    </propertyList>
+    <module serial="1" dictRef="SCF" role="step">
+      <propertyList title="Energy Decomposition">
+        <property dictRef="siesta:Ebs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-64.254281</scalar>
+        </property>
+        <property dictRef="siesta:Eions">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">711.951417</scalar>
+        </property>
+        <property dictRef="siesta:Ena">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">22.613146</scalar>
+        </property>
+        <property dictRef="siesta:Ekin">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">769.702259</scalar>
+        </property>
+        <property dictRef="siesta:Enl">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-468.825520</scalar>
+        </property>
+        <property dictRef="siesta:DEna">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000       </scalar>
+        </property>
+        <property dictRef="siesta:DUscf">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000                </scalar>
+        </property>
+        <property dictRef="siesta:DUext">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+        </property>
+        <property dictRef="siesta:Exc">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-393.596676</scalar>
+        </property>
+        <property dictRef="siesta:Ecorrec">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+        </property>
+        <property dictRef="siesta:Emad">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+        </property>
+        <property dictRef="siesta:Emeta">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+        </property>
+        <property dictRef="siesta:Emm">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+        </property>
+        <property dictRef="siesta:Ekinion">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+        </property>
+        <property dictRef="siesta:EharrsK">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-781.882593</scalar>
+        </property>
+        <property dictRef="siesta:EtotK">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.058208</scalar>
+        </property>
+        <property dictRef="siesta:FreeEK">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.060834</scalar>
+        </property>
+      </propertyList>
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-781.8825934</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.0608337</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.2100801</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="2" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2935914</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.1254302</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-6.2765515</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="3" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2461493</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.1206995</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-6.0973502</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="4" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2283018</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.1813512</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.7868821</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="5" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2258522</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.1785109</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8430087</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="6" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2357224</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2236589</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8035067</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="7" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2340049</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2233183</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8887609</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="8" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2362405</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2334141</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.9078262</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="9" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2370593</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2354609</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.9089538</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="10" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2414185</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2387442</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8739885</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="11" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2409981</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2349417</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8783627</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="12" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2418466</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2329660</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8726534</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="13" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2418965</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2307542</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8783433</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="14" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2419290</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2309255</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8845089</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="15" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2420136</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2375685</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8936654</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="16" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2420680</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2388586</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8932534</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="17" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2424227</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2457366</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8862524</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="18" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2424421</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2456232</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8872294</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="19" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2425309</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2426500</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8957894</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="20" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2425210</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2412273</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8954676</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="21" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2425217</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2407019</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8940860</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="22" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2425616</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2424075</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8898484</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="23" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2425781</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2433543</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8893192</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module serial="24" dictRef="SCF" role="step">
+      <propertyList title="SCF Cycle">
+        <property dictRef="siesta:Eharrs">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2425949</scalar>
+        </property>
+        <property dictRef="siesta:FreeE">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2455003</scalar>
+        </property>
+        <property dictRef="siesta:Ef">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-5.8930025</scalar>
+        </property>
+      </propertyList>
+    </module>
+    <module title="SCF Finalization">
+      <propertyList title="Final KS Energy">
+        <property dictRef="siesta:E_KS">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.242600</scalar>
+        </property>
+        <property dictRef="siesta:E_KS_egg">
+          <scalar dataType="fpx:real" units="siestaUnits:eV">-782.242600</scalar>
+        </property>
+      </propertyList>
+      <propertyList title="Forces">
+        <property dictRef="siesta:forces">
+          <matrix rows="3" columns="1" dataType="fpx:real" units="siestaUnits:evpa">-4.567234759922e-13 2.908267016804e-13 -2.466306770358e-12</matrix>
+        </property>
+        <property dictRef="siesta:ftot">
+          <array size="3" dataType="fpx:real" units="siestaUnits:evpa">-4.567234759922e-13 2.908267016804e-13 -2.466306770358e-12</array>
+        </property>
+        <property dictRef="siesta:fmax">
+          <scalar dataType="fpx:real" units="siestaUnits:evpa">2.466306770358e-12</scalar>
+        </property>
+        <property dictRef="siesta:fres">
+          <scalar dataType="fpx:real" units="siestaUnits:evpa">1.457834648768e-12</scalar>
+        </property>
+        <property dictRef="siesta:cfmax">
+          <scalar dataType="fpx:real" units="siestaUnits:evpa">2.466306770358e-12</scalar>
+        </property>
+      </propertyList>
+      <propertyList dictRef="siesta:mulliken" title="Mulliken Population Analysis">
+        <propertyList title="SpinUp">
+          <propertyList title="Fe">
+            <property title="Orbital list">
+              <array size="15" delimiter=" " dataType="xsd:string">4s       4s       3dxy     3dyz     3dz2     3dxz     3dx2-y2  3dxy     3dyz     3dz2     3dxz     3dx2-y2  4Ppy     4Ppz     4Ppx    </array>
+            </property>
+            <propertyList title="atom        1">
+              <property title="Atomic Charge">
+                <scalar dataType="fpx:real" units="siestaUnits:e">5.157697946349e0</scalar>
+              </property>
+              <property title="Orbital Charges">
+                <array size="15" dataType="fpx:real" units="siestaUnits:e">-1.511739424258e-1 4.459036955750e-1 9.052908922743e-1 9.052908840211e-1 9.677885475432e-1 9.052908840217e-1 9.677882188938e-1 -2.855506684443e-2 -2.855506673139e-2 -2.197624811804e-2 -2.855506673234e-2 -2.197597088528e-2 1.137120664103e-1 1.137120529362e-1 1.137120664107e-1</array>
+              </property>
+            </propertyList>
+          </propertyList>
+          <property title="Total Charge">
+            <scalar dataType="fpx:real" units="siestaUnits:e">5.157697946349e0</scalar>
+          </property>
+        </propertyList>
+        <propertyList title="SpinDown">
+          <propertyList title="Fe">
+            <property title="Orbital list">
+              <array size="15" delimiter=" " dataType="xsd:string">4s       4s       3dxy     3dyz     3dz2     3dxz     3dx2-y2  3dxy     3dyz     3dz2     3dxz     3dx2-y2  4Ppy     4Ppz     4Ppx    </array>
+            </property>
+            <propertyList title="atom        1">
+              <property title="Atomic Charge">
+                <scalar dataType="fpx:real" units="siestaUnits:e">2.842302053651e0</scalar>
+              </property>
+              <property title="Orbital Charges">
+                <array size="15" dataType="fpx:real" units="siestaUnits:e">-2.437965434243e-1 5.443319058326e-1 5.382347936266e-1 5.382348146163e-1 3.430995690607e-1 5.382348146181e-1 3.430993439203e-1 -4.971425836890e-2 -4.971425991879e-2 -4.237419969883e-2 -4.971425991976e-2 -4.237413103654e-2 1.582514946796e-1 1.582514749834e-1 1.582514946806e-1</array>
+              </property>
+            </propertyList>
+          </propertyList>
+          <property title="Total Charge">
+            <scalar dataType="fpx:real" units="siestaUnits:e">2.842302053651e0</scalar>
+          </property>
+        </propertyList>
+      </propertyList>
+    </module>
+  </module>
+  <module title="Finalization">
+    <molecule>
+      <atomArray>
+        <atom elementType="Fe" x3="0.000000000000e0" y3="0.000000000000e0" z3="0.000000000000e0" ref="siesta:e001"/>
+      </atomArray>
+    </molecule>
+    <lattice dictRef="siesta:ucell">
+      <latticeVector units="siestaUnits:Ang" dictRef="cml:latticeVector">1.435000000000e0 1.435000000000e0 1.435000000000e0</latticeVector>
+      <latticeVector units="siestaUnits:Ang" dictRef="cml:latticeVector">1.435000000000e0 -1.435000000000e0 1.435000000000e0</latticeVector>
+      <latticeVector units="siestaUnits:Ang" dictRef="cml:latticeVector">1.435000000000e0 1.435000000000e0 -1.435000000000e0</latticeVector>
+    </lattice>
+    <propertyList title="Eigenvalues">
+      <property dictRef="siesta:E_Fermi" title="Fermi Energy">
+        <scalar dataType="fpx:real" units="siestaUnits:ev">-5.89300</scalar>
+      </property>
+      <property dictRef="siesta:nkpoints" title="Number of k-points">
+        <scalar dataType="xsd:integer" units="cmlUnits:countable">1099</scalar>
+      </property>
+      <propertyList dictRef="siesta:kpt_band">
+        <property dictRef="siesta:spin">
+          <scalar dataType="xsd:string">up</scalar>
+        </property>
+        <kpoint coords="-5.346958699487e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.080610464559e1 -9.243937562194e0 -7.003952764669e0 -6.867974493992e0 -5.651038886951e0 -5.528807754601e0 1.728153970819e0 1.888233667722e1 2.238272909433e1 2.286284337300e1 3.142344126955e1 4.620575190017e1 5.045779935648e1 6.732764070113e1 8.465537590822e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070643405799e1 -9.181501709939e0 -7.365451483939e0 -6.985483523587e0 -6.460296499161e0 -4.998073181580e0 3.009341805907e0 1.622947756740e1 2.000383435126e1 2.812196506294e1 3.365285110948e1 4.555080255382e1 5.013576722678e1 6.444039234722e1 8.020695209020e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041362132466e1 -9.109353123450e0 -8.242198092254e0 -7.088319647850e0 -6.664937937925e0 -4.604945535493e0 5.086751115005e0 1.199033188578e1 1.931753626468e1 3.275890797753e1 3.773007644130e1 4.368313664173e1 5.016420913487e1 5.933235472443e1 7.967090527406e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017249535549e1 -9.157914168455e0 -8.618398261804e0 -7.153053218824e0 -6.704092155555e0 -4.474644710107e0 7.197447238778e0 9.136057734734e0 1.909015221895e1 3.556421345977e1 3.837640642453e1 4.383399577146e1 5.020844227397e1 5.600177812356e1 7.928263702348e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041337472323e1 -9.108550351186e0 -8.242577416161e0 -7.089544217214e0 -6.664704626953e0 -4.605086720486e0 5.084806848751e0 1.199209240270e1 1.931768824609e1 3.275274218639e1 3.773000738823e1 4.368294730554e1 5.016694101048e1 5.934256234789e1 7.966917315763e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070613211293e1 -9.180362339070e0 -7.365717354235e0 -6.986972168031e0 -6.460599916022e0 -4.998366715370e0 3.007297436892e0 1.623117960440e1 2.000345728180e1 2.811529419671e1 3.365269808077e1 4.555131283717e1 5.013747002057e1 6.445668738848e1 8.020584794538e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.080578835367e1 -9.242709469201e0 -7.005361145372e0 -6.867944900622e0 -5.653819458977e0 -5.527404207309e0 1.726019720541e0 1.888551241351e1 2.238269042692e1 2.285457516451e1 3.142363275344e1 4.620621431068e1 5.045813490555e1 6.734435285147e1 8.465888899736e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068250873737e1 -9.233025245783e0 -7.149617491420e0 -7.005229516116e0 -6.157849479948e0 -4.248857214150e0 1.317990902247e0 1.577331344593e1 1.949271080904e1 2.748310060213e1 3.318417094536e1 4.561472843289e1 5.085438195627e1 6.734701805186e1 9.601190987758e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035456091050e1 -9.177825199756e0 -7.862448855181e0 -7.022015567560e0 -6.447797330722e0 -3.189984765651e0 1.993244726094e0 1.107389362708e1 1.837082066621e1 3.178496557908e1 3.742932885560e1 4.405708070082e1 5.080550933422e1 6.454619026866e1 9.668239799951e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916719577686e0 -9.193751204103e0 -8.494556503561e0 -7.016241992329e0 -6.612080136348e0 -2.722195208851e0 3.854839011393e0 7.260634922445e0 1.782133549371e1 3.559671519228e1 3.972254293632e1 4.322268763377e1 5.176200272497e1 5.951981703788e1 9.130634179406e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 8.911597832478e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916941462944e0 -9.194123101069e0 -8.494238524589e0 -7.015693019980e0 -6.612159753884e0 -2.722308259847e0 3.857340032206e0 7.258298032300e0 1.782128793790e1 3.560052146115e1 3.972075465418e1 4.322458725980e1 5.176304831203e1 5.951072943836e1 9.130782215215e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 9.802757615725e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035489520353e1 -9.178779112608e0 -7.861893981342e0 -7.020861007260e0 -6.447681914664e0 -3.190104212484e0 1.995947189295e0 1.107168812342e1 1.837072221867e1 3.179086729802e1 3.743084603024e1 4.405682277092e1 5.080405041684e1 6.453046082641e1 9.668399346820e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 1.069391739897e0 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068283861663e1 -9.234205331114e0 -7.149303392352e0 -7.003867475000e0 -6.157266708155e0 -4.248593464174e0 1.320360177465e0 1.577166511420e1 1.949302612555e1 2.748962475921e1 3.318422702176e1 4.561431832892e1 5.085329925985e1 6.733020277452e1 9.600922280709e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070643408502e1 -9.181501703543e0 -7.365450865958e0 -6.985484115585e0 -6.460296500745e0 -4.998073196314e0 3.009341808013e0 1.622947753863e1 2.000383436605e1 2.812196487537e1 3.365285109218e1 4.555080249022e1 5.013576754211e1 6.444039234823e1 8.020695211000e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091482511672e1 -9.134784317969e0 -7.259049528471e0 -6.897764863853e0 -6.795282042814e0 -5.994558190846e0 4.551826218051e0 1.966209104555e1 2.349056508364e1 2.410738723782e1 3.252391593418e1 4.644135594604e1 4.863691683759e1 6.168326135358e1 6.290425547509e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096670679236e1 -9.032243095722e0 -8.051989326306e0 -7.084120660561e0 -6.820543267344e0 -5.930905228974e0 6.708297152475e0 1.754715292639e1 2.151424849651e1 2.998147490355e1 3.482807594730e1 4.515978731210e1 4.859483271817e1 5.501282186554e1 6.110065906465e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091962017376e1 -8.958817999965e0 -8.635326595807e0 -7.237677278249e0 -6.798658769145e0 -5.787699311603e0 9.375614629182e0 1.375841955913e1 2.122422018382e1 3.418387442142e1 3.759298933715e1 4.365905346551e1 4.911226780356e1 5.196264895772e1 6.063590541810e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952839998e1 -8.958186134375e0 -8.635566096424e0 -7.238288921813e0 -6.798533631921e0 -5.787993868741e0 9.374568528003e0 1.375939966780e1 2.122434637887e1 3.417859065288e1 3.759506605902e1 4.365840661763e1 4.911452668494e1 5.196488877266e1 6.063736036609e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096648985724e1 -9.031113890557e0 -8.051952425548e0 -7.085746700875e0 -6.820159107097e0 -5.931929263505e0 6.706990191224e0 1.754867750043e1 2.151358861189e1 2.997460239695e1 3.482856414385e1 4.516058566275e1 4.859565452323e1 5.501895187735e1 6.110625388193e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091455071903e1 -9.133530045408e0 -7.258875138372e0 -6.897738526527e0 -6.795875600907e0 -5.997135538266e0 4.550425895790e0 1.966575771598e1 2.348199728687e1 2.410716068745e1 3.252403123471e1 4.644170420080e1 4.863673926613e1 6.168528344492e1 6.291910690014e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070612126249e1 -9.180254025380e0 -7.365635205387e0 -6.986765680995e0 -6.459685931285e0 -5.000610249992e0 3.007875009903e0 1.623087851933e1 2.000332535424e1 2.811553845989e1 3.365311319157e1 4.555124875314e1 5.013612542660e1 6.445331844012e1 8.021352728263e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035454171668e1 -9.177678388210e0 -7.862455627289e0 -7.021894465262e0 -6.447582339293e0 -3.191740684732e0 1.994225655582e0 1.107381170626e1 1.837071653114e1 3.178523909713e1 3.742926598986e1 4.405708054007e1 5.080405155365e1 6.454554408575e1 9.668779215231e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.911608064693e0 -9.163210501042e0 -8.432871103986e0 -6.955825983232e0 -6.554480271878e0 -1.263594884689e0 1.677357642380e0 6.803362769689e0 1.741119383390e1 3.535972078091e1 4.117030677437e1 4.210227786681e1 5.207516520495e1 6.251298403473e1 9.140386047380e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.020438049230e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.610609422815e0 -9.150511522828e0 -8.788781964900e0 -6.858105643129e0 -6.668243483725e0 -3.933128986165e-1 2.474153348725e0 4.268208294636e0 1.710526087954e1 3.808366387104e1 3.987221535857e1 4.246017501457e1 5.552761965609e1 5.909233844677e1 8.611554185403e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.911597832478e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.911942769857e0 -9.164009765931e0 -8.432174039220e0 -6.955228915668e0 -6.554504649520e0 -1.263177688862e0 1.680055594685e0 6.800608601434e0 1.741117156520e1 3.536359804095e1 4.117147182973e1 4.210207738051e1 5.207935916704e1 6.249769089906e1 9.140390788515e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 9.802757615725e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035489523322e1 -9.178779087916e0 -7.861893829949e0 -7.020861064609e0 -6.447681995780e0 -3.190104237073e0 1.995947193422e0 1.107168811332e1 1.837072223031e1 3.179086706391e1 3.743084578339e1 4.405682317769e1 5.080405055332e1 6.453046081860e1 9.668399346816e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041362141905e1 -9.109353019796e0 -8.242197843761e0 -7.088319438778e0 -6.664938382772e0 -4.604945581559e0 5.086751093339e0 1.199033185166e1 1.931753630630e1 3.275890711607e1 3.773007577370e1 4.368313814853e1 5.016420930900e1 5.933235473924e1 7.967090525795e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096670683982e1 -9.032243078070e0 -8.051989007933e0 -7.084120499899e0 -6.820543711907e0 -5.930905241934e0 6.708297133107e0 1.754715286731e1 2.151424853177e1 2.998147439318e1 3.482807593040e1 4.515978752424e1 4.859483315561e1 5.501282185563e1 6.110065908406e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.147772905413e1 -8.937450557112e0 -8.144078448723e0 -7.110509328076e0 -6.944169201967e0 -6.562473608033e0 8.851886850954e0 2.137671532351e1 2.474235561653e1 2.750839324982e1 3.409800664309e1 4.378088525674e1 4.655138869188e1 4.846787958328e1 5.744076856252e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183234135656e1 -8.811390655708e0 -8.469191812643e0 -7.237685181911e0 -6.911461881060e0 -6.686151912069e0 1.162324577969e1 1.964399898143e1 2.390344835556e1 3.267100867520e1 3.557303432337e1 4.161180948623e1 4.552183148955e1 4.843641264737e1 5.508942457269e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195764439018e1 -8.705538085348e0 -8.656301417119e0 -7.321470298879e0 -6.890416214104e0 -6.672581152310e0 1.408854171559e1 1.676495679095e1 2.391849572972e1 3.470237782399e1 3.666873728031e1 4.147347209650e1 4.543240474381e1 4.883074702563e1 5.379616695547e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183223706262e1 -8.810238431985e0 -8.469120668784e0 -7.238731626940e0 -6.911274133929e0 -6.687233763108e0 1.162252085871e1 1.964516145128e1 2.390239754089e1 3.266427733115e1 3.557518791521e1 4.161048102856e1 4.552297314916e1 4.843916238981e1 5.509608289451e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.147755179293e1 -8.936147007682e0 -8.142976631901e0 -7.112069205118e0 -6.944147411873e0 -6.564740425505e0 8.851010758812e0 2.138127516139e1 2.473320042415e1 2.750786042546e1 3.409833055689e1 4.377726680006e1 4.655145970674e1 4.847263430256e1 5.745283038404e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096649176337e1 -9.030893854854e0 -8.051100787174e0 -7.085374157080e0 -6.820163688937e0 -5.934306038191e0 6.707350747767e0 1.754839057924e1 2.151331428654e1 2.997518199209e1 3.482870470242e1 4.516027885994e1 4.859405490982e1 5.501046247883e1 6.112001846605e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041336251290e1 -9.108086125625e0 -8.242217958682e0 -7.089275222310e0 -6.664560495863e0 -4.608153292787e0 5.085802970213e0 1.199198839648e1 1.931735257502e1 3.275347975319e1 3.772913676981e1 4.368338291515e1 5.016233811757e1 5.934242272935e1 7.968079445207e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916665372416e0 -9.193069970667e0 -8.494840721693e0 -7.016178527846e0 -6.612005229279e0 -2.725096088020e0 3.856359110998e0 7.260805767078e0 1.782120226755e1 3.559721921358e1 3.971956193449e1 4.322477072823e1 5.175560554387e1 5.952451065722e1 9.131544636776e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 7.129278265982e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.610513449531e0 -9.149649453904e0 -8.789542628832e0 -6.858223309776e0 -6.668219243718e0 -3.953999478681e-1 2.474341406486e0 4.269746225900e0 1.710524169264e1 3.808323549869e1 3.986995381677e1 4.246178312918e1 5.551502993003e1 5.910651009647e1 8.611862444250e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.020438049230e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.610609455204e0 -9.150511132630e0 -8.788782340588e0 -6.858105074740e0 -6.668244037477e0 -3.933129276238e-1 2.474153345058e0 4.268208304651e0 1.710526088121e1 3.808366034025e1 3.987221790123e1 4.246017619222e1 5.552761954688e1 5.909233845849e1 8.611554184767e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916941575017e0 -9.194122843057e0 -8.494238580792e0 -7.015692672141e0 -6.612160180461e0 -2.722308306534e0 3.857340014955e0 7.258298034628e0 1.782128795513e1 3.560052007272e1 3.972075331154e1 4.322459035068e1 5.176304812552e1 5.951072942092e1 9.130782213518e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017249547090e1 -9.157913805752e0 -8.618398347806e0 -7.153052598387e0 -6.704092916066e0 -4.474644776069e0 7.197447144403e0 9.136057762727e0 1.909015226365e1 3.556421026678e1 3.837640659297e1 4.383399926594e1 5.020844194258e1 5.600177827194e1 7.928263698982e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091962025981e1 -8.958817768081e0 -8.635326519312e0 -7.237676677968e0 -6.798659556658e0 -5.787699366915e0 9.375614530905e0 1.375841952065e1 2.122422026321e1 3.418387238483e1 3.759298915250e1 4.365905590057e1 4.911226747581e1 5.196264931630e1 6.063590542473e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183234138418e1 -8.811390625051e0 -8.469191674763e0 -7.237684597418e0 -6.911462586633e0 -6.686151935213e0 1.162324571464e1 1.964399890325e1 2.390344841505e1 3.267100736430e1 3.557303472560e1 4.161180932109e1 4.552183309197e1 4.843641228066e1 5.508942461533e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.256818510343e1 -8.692470016626e0 -8.358426737254e0 -7.220337087819e0 -7.189071593148e0 -6.989832389158e0 1.446912532166e1 2.404864508173e1 2.654294442221e1 3.208884952671e1 3.427133614155e1 3.737155617580e1 4.644688724859e1 4.751977827941e1 5.326861054420e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296294045136e1 -8.563382483107e0 -8.421908975102e0 -7.345597035822e0 -7.283434426385e0 -6.965701183829e0 1.793117530287e1 2.244600911981e1 2.676948814134e1 3.403377485530e1 3.469997003066e1 3.799461669647e1 4.597821655783e1 4.866736555402e1 5.167619207466e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296290774409e1 -8.562302250437e0 -8.422164989983e0 -7.345903068622e0 -7.284262193785e0 -6.965700330214e0 1.793083184073e1 2.244675369807e1 2.676819311693e1 3.403531087664e1 3.469520906960e1 3.799571221969e1 4.597850679043e1 4.866823885644e1 5.167994405053e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.256809239770e1 -8.691101441282e0 -8.357459689204e0 -7.221652571909e0 -7.191014331615e0 -6.989825207589e0 1.446848085626e1 2.405458877403e1 2.653296394652e1 3.208811344606e1 3.427203532669e1 3.736974632760e1 4.644640546573e1 4.752301753158e1 5.327762175418e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183221802997e1 -8.809919501010e0 -8.468036734963e0 -7.238627223010e0 -6.911520670376e0 -6.689267930016e0 1.162238720985e1 1.964541881858e1 2.390202232145e1 3.266519337199e1 3.557376260734e1 4.160996128755e1 4.552314837808e1 4.843542995772e1 5.510436458823e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952409696e1 -8.957322998934e0 -8.634781107981e0 -7.238280704983e0 -6.798700385458e0 -5.791089158325e0 9.374650002977e0 1.375987054415e1 2.122384341828e1 3.417910107025e1 3.759237812217e1 4.365987909168e1 4.910780933786e1 5.196241339179e1 6.065428503085e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017244748724e1 -9.156776012868e0 -8.618327623744e0 -7.153268751858e0 -6.704034794154e0 -4.478030267377e0 7.197077752068e0 9.137541412319e0 1.908984881869e1 3.556300952356e1 3.837397406088e1 4.383572140851e1 5.019871529634e1 5.601135075842e1 7.929454055797e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 6.238118482734e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916665183993e0 -9.193070005789e0 -8.494840979077e0 -7.016178175987e0 -6.612005496336e0 -2.725096095230e0 3.856359123857e0 7.260805754684e0 1.782120226120e1 3.559721762276e1 3.971956316723e1 4.322477098104e1 5.175560579098e1 5.952451061937e1 9.131544635962e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 7.129278265982e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.911607856761e0 -9.163210405761e0 -8.432871547117e0 -6.955825354853e0 -6.554480786707e0 -1.263594918436e0 1.677357664394e0 6.803362756709e0 1.741119382841e1 3.535971848372e1 4.117030545845e1 4.210228164962e1 5.207516523160e1 6.251298402761e1 9.140386046345e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.020438049230e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916719501414e0 -9.193750980912e0 -8.494556817490e0 -7.016241292769e0 -6.612080829718e0 -2.722195262777e0 3.854839007053e0 7.260634912341e0 1.782133550461e1 3.559671221551e1 3.972254282187e1 4.322269097950e1 5.176200278587e1 5.951981698228e1 9.130634176922e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041337461301e1 -9.108550303245e0 -8.242577450554e0 -7.089543528797e0 -6.664705452315e0 -4.605086786722e0 5.084806847554e0 1.199209236016e1 1.931768827971e1 3.275274051277e1 3.773000507413e1 4.368295101469e1 5.016694174275e1 5.934256228470e1 7.966917310181e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952842752e1 -8.958185968150e0 -8.635565989072e0 -7.238288213678e0 -6.798534558622e0 -5.787993942383e0 9.374568408342e0 1.375939965901e1 2.122434646087e1 3.417858828989e1 3.759506491683e1 4.365840971325e1 4.911452736324e1 5.196488889017e1 6.063736033112e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195764441899e1 -8.705537833237e0 -8.656301455644e0 -7.321469532097e0 -6.890417047536e0 -6.672581285189e0 1.408854143021e1 1.676495685004e1 2.391849585044e1 3.470237500498e1 3.666873773720e1 4.147347212859e1 4.543240785355e1 4.883074648877e1 5.379616705772e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296294046061e1 -8.563382463653e0 -8.421908918498e0 -7.345596995685e0 -7.283433733273e0 -6.965701983239e0 1.793117516100e1 2.244600904528e1 2.676948822662e1 3.403377497891e1 3.469996749074e1 3.799461826221e1 4.597821820800e1 4.866736496885e1 5.167619212818e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.362629148223e1 -8.454726475861e0 -8.273573446215e0 -7.731036345445e0 -7.213668357777e0 -7.023122937389e0 2.167041985580e1 2.725904818969e1 2.861348066001e1 3.241889475585e1 3.603859390889e1 3.605071846358e1 4.714165306253e1 4.850510432646e1 5.099956197697e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385415405198e1 -8.361666909881e0 -8.308794565125e0 -7.827449760524e0 -7.207716544958e0 -7.015852573489e0 2.515562297289e1 2.592575084557e1 2.926855768379e1 3.214739458428e1 3.542972725244e1 3.783603561959e1 4.743821013773e1 4.947131798793e1 5.023385677726e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.362625879707e1 -8.453289714229e0 -8.272979304179e0 -7.732734730526e0 -7.214455742511e0 -7.023117806261e0 2.166970333125e1 2.726713167173e1 2.860257249242e1 3.241848792687e1 3.603916750485e1 3.605026559098e1 4.714019693152e1 4.850790045043e1 5.100503986945e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296287612411e1 -8.561971833561e0 -8.420712791027e0 -7.347746079192e0 -7.284432392682e0 -6.966046975638e0 1.792946400333e1 2.244830878238e1 2.676786986815e1 3.403336413695e1 3.469547613723e1 3.799555950673e1 4.597869542908e1 4.866504527706e1 5.168801434080e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195757965467e1 -8.703997703075e0 -8.655630481654e0 -7.321842702467e0 -6.890725526493e0 -6.675397203284e0 1.408658625345e1 1.676728019798e1 2.391807934495e1 3.470020734535e1 3.666659039826e1 4.147275945157e1 4.543406180989e1 4.882380166635e1 5.381257992480e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952403843e1 -8.957323065398e0 -8.634781076250e0 -7.238280596348e0 -6.798700525521e0 -5.791089176640e0 9.374649981595e0 1.375987057380e1 2.122384342084e1 3.417910074035e1 3.759237716884e1 4.365987975151e1 4.910781034222e1 5.196241315250e1 6.065428498924e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041336230822e1 -9.108086181647e0 -8.242218241160e0 -7.089274742647e0 -6.664560876882e0 -4.608153312905e0 5.085802990659e0 1.199198838805e1 1.931735256698e1 3.275347893997e1 3.772913512428e1 4.368338511739e1 5.016233867569e1 5.934242265176e1 7.968079441183e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035454146229e1 -9.177678409832e0 -7.862456188891e0 -7.021893776311e0 -6.447582757781e0 -3.191740708024e0 1.994225691965e0 1.107381168282e1 1.837071651965e1 3.178523804978e1 3.742926378883e1 4.405708410748e1 5.080405158286e1 6.454554405281e1 9.668779206711e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035456068584e1 -9.177825196604e0 -7.862449265728e0 -7.022014935197e0 -6.447797830775e0 -3.189984813588e0 1.993244766638e0 1.107389359354e1 1.837082066638e1 3.178496429784e1 3.742932640777e1 4.405708467474e1 5.080550949993e1 6.454619022783e1 9.668239791483e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070613190650e1 -9.180362368589e0 -7.365717350157e0 -6.986972047492e0 -6.460600293169e0 -4.998366754764e0 3.007297493560e0 1.623117954510e1 2.000345731225e1 2.811529391040e1 3.365269494231e1 4.555131650286e1 5.013747033881e1 6.445668734685e1 8.020584773943e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096648976502e1 -9.031113917661e0 -8.051952120135e0 -7.085746064120e0 -6.820160147433e0 -5.931929313147e0 6.706990182600e0 1.754867743865e1 2.151358869155e1 2.997460199367e1 3.482856097774e1 4.516058848317e1 4.859565573782e1 5.501895187214e1 6.110625379944e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183223706270e1 -8.810238456898e0 -8.469120342778e0 -7.238730838236e0 -6.911275189745e0 -6.687233837063e0 1.162252070602e1 1.964516141326e1 2.390239766938e1 3.266427659282e1 3.557518560172e1 4.161048090305e1 4.552297614310e1 4.843916303371e1 5.509608282651e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296290775285e1 -8.562302290232e0 -8.422164791729e0 -7.345903041903e0 -7.284261302232e0 -6.965701406488e0 1.793083151321e1 2.244675370459e1 2.676819325628e1 3.403531009560e1 3.469520763843e1 3.799571264307e1 4.597850919236e1 4.866823871523e1 5.167994399006e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385415405530e1 -8.361666935964e0 -8.308794500562e0 -7.827449780849e0 -7.207715587519e0 -7.015853543396e0 2.515562265793e1 2.592575091415e1 2.926855774551e1 3.214739460077e1 3.542972418082e1 3.783603835299e1 4.743821104196e1 4.947131771025e1 5.023385677024e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.432408922920e1 -8.282025837321e0 -8.223811118462e0 -8.091563715641e0 -7.108076579390e0 -7.041313330400e0 2.864780647346e1 2.998561383301e1 3.036620899158e1 3.137321999418e1 3.664247376741e1 3.750546005361e1 4.924539013397e1 4.968749730707e1 5.036456098793e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.432408400054e1 -8.280526209361e0 -8.223676616712e0 -8.093104646927e0 -7.108290930246e0 -7.041311290208e0 2.864749035440e1 2.999632984549e1 3.035450842161e1 3.137261214815e1 3.664323700959e1 3.750538333687e1 4.924316072442e1 4.969009000579e1 5.036633996712e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385413471103e1 -8.361147354391e0 -8.307141295274e0 -7.829481041956e0 -7.207975591012e0 -7.016089174243e0 2.514837619994e1 2.593317538120e1 2.926745721232e1 3.214656878687e1 3.542850085744e1 3.783677282794e1 4.743800118639e1 4.946713309380e1 5.024287784238e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296287612361e1 -8.561971892293e0 -8.420712649696e0 -7.347746089928e0 -7.284432195975e0 -6.966047253646e0 1.792946381785e1 2.244830886332e1 2.676786992188e1 3.403336322533e1 3.469547725128e1 3.799555836622e1 4.597869618147e1 4.866504571932e1 5.168801422800e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183221800242e1 -8.809919556595e0 -8.468036546631e0 -7.238627016861e0 -6.911521022621e0 -6.689267980955e0 1.162238712225e1 1.964541885869e1 2.390202239013e1 3.266519394287e1 3.557375989345e1 4.160996132732e1 4.552314976881e1 4.843543096872e1 5.510436447815e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096649162367e1 -9.030893899699e0 -8.051100800078e0 -7.085373679116e0 -6.820164286566e0 -5.934306074859e0 6.707350758511e0 1.754839057651e1 2.151331433074e1 2.997518209897e1 3.482870155316e1 4.516028146801e1 4.859405568760e1 5.501046248350e1 6.112001836427e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070612102901e1 -9.180254061343e0 -7.365635818993e0 -6.986764970946e0 -6.459686304666e0 -5.000610274591e0 3.007875064450e0 1.623087848879e1 2.000332536981e1 2.811553836110e1 3.365311007027e1 4.555125248249e1 5.013612542970e1 6.445331839757e1 8.021352705641e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068250849140e1 -9.233025277052e0 -7.149618310222e0 -7.005228838854e0 -6.157849656133e0 -4.248857232047e0 1.317990969891e0 1.577331340068e1 1.949271081626e1 2.748310040330e1 3.318416785584e1 4.561473237913e1 5.085438189870e1 6.734701800821e1 9.601190953790e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.080578811536e1 -9.242709502073e0 -7.005360463859e0 -6.867945920937e0 -5.653819502610e0 -5.527404158878e0 1.726019799306e0 1.888551235341e1 2.238269051745e1 2.285457516219e1 3.142362951076e1 4.620621826440e1 5.045813487004e1 6.734435280581e1 8.465888851165e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091455053722e1 -9.133530079062e0 -7.258874523145e0 -6.897739543452e0 -6.795875412421e0 -5.997135581465e0 4.550425945792e0 1.966575765960e1 2.348199728322e1 2.410716088583e1 3.252402783113e1 4.644170803094e1 4.863673928060e1 6.168528323800e1 6.291910685152e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.147755173294e1 -8.936147042750e0 -8.142976288664e0 -7.112068588606e0 -6.944148421305e0 -6.564740467979e0 8.851010716210e0 2.138127511133e1 2.473320041776e1 2.750786089725e1 3.409832701813e1 4.377726683244e1 4.655146322013e1 4.847263433557e1 5.745283033024e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.256809239571e1 -8.691101478094e0 -8.357459413835e0 -7.221651799085e0 -7.191014373293e0 -6.989826205345e0 1.446848066453e1 2.405458873206e1 2.653296393601e1 3.208811456266e1 3.427203298277e1 3.736974535119e1 4.644640825910e1 4.752301750166e1 5.327762169353e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.362625880021e1 -8.453289752711e0 -8.272979161929e0 -7.732734771567e0 -7.214454821170e0 -7.023118790269e0 2.166970305282e1 2.726713163893e1 2.860257247696e1 3.241848756527e1 3.603916471620e1 3.605026803662e1 4.714019830943e1 4.850790031401e1 5.100503980055e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.432408400148e1 -8.280526249037e0 -8.223676532228e0 -8.093104687550e0 -7.108289959734e0 -7.041312262797e0 2.864749029307e1 2.999632982066e1 3.035450840182e1 3.137261211462e1 3.664323353635e1 3.750538681956e1 4.924316100016e1 4.969008998069e1 5.036633989045e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 0.000000000000e0" weight="4.551661356395e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.456361697696e1 -8.219599421772e0 -8.217349115022e0 -8.217349061545e0 -7.046817192232e0 -7.046815901395e0 3.105688947246e1 3.105688950120e1 3.107462079322e1 3.108760611817e1 3.766039695233e1 3.766040187959e1 5.038614617465e1 5.038614622788e1 5.038976157088e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066325176827e1 -9.099289121767e0 -7.619234509398e0 -7.089647863980e0 -5.667153818283e0 -4.642702761732e0 1.806234505768e0 1.628265707106e1 2.295154280456e1 2.600834962449e1 3.219260620231e1 4.361770563960e1 5.055378881990e1 6.663165461438e1 9.876427055083e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070647548153e1 -9.181557426233e0 -7.366125087640e0 -6.985608887678e0 -6.458580551963e0 -4.998829046886e0 3.009253815528e0 1.623089697092e1 2.000414554752e1 2.811945629039e1 3.365319317342e1 4.555071618645e1 5.013606294446e1 6.444034253440e1 8.020703266995e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054213552504e1 -9.187685240012e0 -7.958761396070e0 -7.000289378932e0 -6.889032662264e0 -4.783138519376e0 4.909294099473e0 1.470154876344e1 1.550621095649e1 3.408726902002e1 3.690970752569e1 4.640859204235e1 4.917373002836e1 6.018801086580e1 7.987142974189e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024095869319e1 -9.156832158889e0 -8.780792877392e0 -7.030735176423e0 -6.869112823966e0 -4.633678609432e0 7.381284134184e0 1.109369013154e1 1.466000012546e1 3.890512884145e1 4.051934762728e1 4.520607776586e1 4.830063825418e1 5.674535761049e1 8.251357007385e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024078554356e1 -9.156070879518e0 -8.781521338989e0 -7.031297681658e0 -6.868936634957e0 -4.633699227408e0 7.379870229102e0 1.109440982539e1 1.466061846146e1 3.889761524009e1 4.052231184258e1 4.520577724103e1 4.830452634138e1 5.674918295101e1 8.251271520458e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054182480069e1 -9.186661660591e0 -7.959412361680e0 -7.001842117069e0 -6.888763890854e0 -4.783139268780e0 4.907469324644e0 1.469915519964e1 1.550981795597e1 3.407971122649e1 3.691038097417e1 4.640885705654e1 4.917767286026e1 6.019921603310e1 7.986957270952e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070613211293e1 -9.180362339070e0 -7.365717354235e0 -6.986972168032e0 -6.460599916022e0 -4.998366715370e0 3.007297436893e0 1.623117960438e1 2.000345728184e1 2.811529419676e1 3.365269808079e1 4.555131283648e1 5.013747002059e1 6.445668738946e1 8.020584794408e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066288502109e1 -9.098016522686e0 -7.618979712281e0 -7.091067055276e0 -5.669930100041e0 -4.641530159036e0 1.804186324143e0 1.628339742608e1 2.295136822195e1 2.600225169332e1 3.219245011283e1 4.361831413551e1 5.055566952867e1 6.664814030391e1 9.876564290904e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042605180018e1 -8.974340740119e0 -8.114153292978e0 -7.174180755017e0 -5.866122780188e0 -3.224612526941e0 1.402577521196e0 1.253945441452e1 2.404200903161e1 2.688702778116e1 3.530760263552e1 4.106565335521e1 5.063435254996e1 6.598044502505e1 1.136959993824e2</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002850757351e1 -8.987711622482e0 -8.606501419174e0 -7.105057918490e0 -6.205575232930e0 -2.209012851702e0 2.264101076945e0 8.229859586069e0 2.480993280062e1 2.917800728227e1 3.774916716564e1 3.989822667430e1 5.157180943460e1 6.270003520916e1 1.016901356840e2</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.911597832478e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.625855570760e0 -9.345140583127e0 -8.698482547966e0 -6.982582518308e0 -6.422437299515e0 -1.945835503312e0 4.057215920681e0 5.354976143202e0 2.474247278882e1 3.161218730060e1 3.565232394036e1 4.171934486759e1 5.405287212361e1 5.870284749761e1 9.473349067395e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 9.802757615725e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002893340257e1 -8.987862268588e0 -8.606743514711e0 -7.104585202825e0 -6.204660293741e0 -2.209448976035e0 2.266782911504e0 8.227497828669e0 2.480976140042e1 2.918256163122e1 3.774788027711e1 3.990138256592e1 5.157173040163e1 6.268589467801e1 1.016924149630e2</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 1.069391739897e0 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042645202671e1 -8.975439706372e0 -8.114130924903e0 -7.173096953060e0 -5.864585547953e0 -3.225032632945e0 1.404944009890e0 1.253766759615e1 2.404115003160e1 2.689347332654e1 3.530998186800e1 4.106520790396e1 5.063183220350e1 6.596403553734e1 1.136961429676e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043573695194e1 -8.942680270865e0 -8.239647426547e0 -7.171281270921e0 -6.065607312906e0 -4.294385801113e0 3.273923045587e0 1.296555009524e1 2.463285952128e1 2.736077782866e1 3.546450771562e1 4.095424774434e1 5.060876397552e1 6.335027482986e1 9.558205061800e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075593048439e1 -8.994690753227e0 -7.955293647773e0 -7.080415435880e0 -6.015439369043e0 -5.939980870463e0 4.741281460389e0 1.694374027819e1 2.460014128288e1 2.678983799015e1 3.313078402395e1 4.329451619652e1 5.012346182773e1 6.234007355296e1 6.964234899462e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096675465253e1 -9.032265085628e0 -8.052397707720e0 -7.083877651282e0 -6.819634983278e0 -5.931514211374e0 6.708145721127e0 1.754872081698e1 2.151445667018e1 2.997832593244e1 3.482900609152e1 4.516003792082e1 4.859513392582e1 5.501253147943e1 6.110085098280e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105619349661e1 -9.011776452046e0 -8.634619049857e0 -7.089242153123e0 -6.942880396736e0 -5.835251668098e0 9.224299028118e0 1.620340038753e1 1.763179141734e1 3.612325502206e1 3.781472944781e1 4.612486198248e1 4.658390280222e1 5.101355483321e1 6.005126478061e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106959647246e1 -8.968419974899e0 -8.926877566364e0 -7.098319371450e0 -6.946030007340e0 -5.788052569076e0 1.154839689556e1 1.346427141576e1 1.713835451388e1 3.918516637070e1 3.977942179299e1 4.489027254055e1 4.697682837102e1 4.911827592010e1 5.999082379169e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105602137172e1 -9.010808488817e0 -8.634986889925e0 -7.090626976059e0 -6.942459105771e0 -5.835534594902e0 9.223511195861e0 1.620034629882e1 1.763517158993e1 3.611525203416e1 3.781718727817e1 4.612489896257e1 4.658561148509e1 5.101884408612e1 6.005364392092e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096648985724e1 -9.031113890556e0 -8.051952425550e0 -7.085746700875e0 -6.820159107097e0 -5.931929263504e0 6.706990191225e0 1.754867750041e1 2.151358861195e1 2.997460239705e1 3.482856414389e1 4.516058566173e1 4.859565452308e1 5.501895187737e1 6.110625388217e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075561582087e1 -8.993394812817e0 -7.954813404069e0 -7.081845890134e0 -6.018008172997e0 -5.939463509796e0 4.739992632413e0 1.694456317540e1 2.459972617085e1 2.678382341088e1 3.313064087524e1 4.329564151796e1 5.012500177928e1 6.235463747548e1 6.964155856340e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043536238044e1 -8.941443022639e0 -8.239680096203e0 -7.172336098303e0 -6.066394245438e0 -4.295751903821e0 3.272576744111e0 1.296709466851e1 2.463388054638e1 2.735411187404e1 3.546255399764e1 4.095487304048e1 5.061028665649e1 6.336531420714e1 9.558345000691e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002847886830e1 -8.987051993985e0 -8.607166542561e0 -7.104874289211e0 -6.205464862914e0 -2.210576310543e0 2.265165828746e0 8.229785462900e0 2.480971782506e1 2.917827227985e1 3.774700387026e1 3.989990995178e1 5.157023143492e1 6.270160706279e1 1.016934108319e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.558443065101e0 -9.087532776706e0 -9.043477186885e0 -6.829313640240e0 -6.450103283992e0 -8.891315307554e-3 1.838732814940e0 4.587848953109e0 2.445553892816e1 3.236134489203e1 3.563460247012e1 4.162346590843e1 5.520458154492e1 6.036922871668e1 9.233080646826e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.558963223825e0 -9.087648305682e0 -9.043074725617e0 -6.829637102875e0 -6.449442741176e0 -8.906452892303e-3 1.841237461322e0 4.585460763918e0 2.445569363036e1 3.236354756104e1 3.563412443003e1 4.162416844124e1 5.521302676819e1 6.035472475838e1 9.233116391263e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 9.802757615725e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002893348563e1 -8.987862034034e0 -8.606743575694e0 -7.104585191345e0 -6.204660364506e0 -2.209449033738e0 2.266782912019e0 8.227497822974e0 2.480976139484e1 2.918256109842e1 3.774787872273e1 3.990138477761e1 5.157173034657e1 6.268589467038e1 1.016924150281e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008305342975e1 -9.137595839096e0 -8.487620227041e0 -7.217626873510e0 -6.425621646986e0 -4.053490709658e0 5.567510615160e0 9.124601671589e0 2.559478547244e1 2.963092283026e1 3.589376207758e1 4.141652917438e1 5.143115499512e1 5.833291815330e1 8.878728741882e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066152667780e1 -8.858319448720e0 -8.458243824787e0 -7.271543880084e0 -6.496283190161e0 -5.658228389495e0 7.115079262349e0 1.418392756970e1 2.628673493474e1 2.859748734849e1 3.527198837178e1 4.145762332710e1 5.051415680442e1 5.798740920891e1 6.901952775613e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129144590262e1 -8.805682942159e0 -8.354534205878e0 -7.246252333011e0 -6.647248617063e0 -6.589766219787e0 9.103956348935e0 1.836566264355e1 2.744166570646e1 2.825409696218e1 3.414194172872e1 4.332519902118e1 4.907982950553e1 5.061180233027e1 5.705314720908e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183237243784e1 -8.811359189231e0 -8.469535190321e0 -7.237136556712e0 -6.910933996529e0 -6.686812671699e0 1.162287684390e1 1.964606566865e1 2.390332048707e1 3.266653243619e1 3.557460360593e1 4.161461385336e1 4.552216776361e1 4.843430706314e1 5.508946193099e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213844339584e1 -8.778216323090e0 -8.688279365980e0 -7.145291401138e0 -7.018119667612e0 -6.676777825950e0 1.467665441688e1 1.851025486705e1 2.043511305790e1 3.748910186646e1 3.778869632620e1 3.948330097038e1 4.616702407856e1 4.718718128442e1 5.350299182365e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213839401019e1 -8.777269068124e0 -8.688761599349e0 -7.146320457687e0 -7.017591092591e0 -6.677020656563e0 1.467726385712e1 1.850633008353e1 2.043797933140e1 3.749438452564e1 3.778117537845e1 3.948188428134e1 4.616603869009e1 4.719164519551e1 5.350513693433e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183223706262e1 -8.810238431984e0 -8.469120668785e0 -7.238731626940e0 -6.911274133929e0 -6.687233763107e0 1.162252085871e1 1.964516145127e1 2.390239754093e1 3.266427733131e1 3.557518791534e1 4.161048102797e1 4.552297314846e1 4.843916238952e1 5.509608289509e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129125558555e1 -8.804345994515e0 -8.353634708857e0 -7.247765952644e0 -6.647059321103e0 -6.592014915598e0 9.103182543966e0 1.836650506517e1 2.744099643812e1 2.824843522787e1 3.414227172713e1 4.332645730333e1 4.907796487218e1 5.061306146794e1 5.706481828290e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066129389800e1 -8.856954679469e0 -8.457912829684e0 -7.272553754090e0 -6.496189772644e0 -5.660817499016e0 7.114158927921e0 1.418531084994e1 2.628786776454e1 2.859060634894e1 3.527107482058e1 4.145862409519e1 5.051343381174e1 5.799896783062e1 6.902215476031e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008275712679e1 -9.136763304024e0 -8.487750837276e0 -7.217861922368e0 -6.425826411503e0 -4.055901973153e0 5.566548844897e0 9.126539488796e0 2.559449711841e1 2.962733019445e1 3.589285646418e1 4.141614258376e1 5.142545795976e1 5.834846392345e1 8.879101337216e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.625658990183e0 -9.344452978385e0 -8.699081193665e0 -6.982236537434e0 -6.422819698723e0 -1.947966571199e0 4.057017554076e0 5.356605292733e0 2.474208924348e1 3.161126394970e1 3.565051588097e1 4.171975820212e1 5.404107661098e1 5.871915987121e1 9.473754675286e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.020438049230e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.558442696206e0 -9.087532599812e0 -9.043477798323e0 -6.829313264144e0 -6.450103582476e0 -8.891369426350e-3 1.838732833053e0 4.587848942164e0 2.445553892032e1 3.236134181080e1 3.563460599465e1 4.162346562485e1 5.520458147430e1 6.036922874096e1 9.233080643748e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.625855806596e0 -9.345140010242e0 -8.698482878528e0 -6.982582143802e0 -6.422437632083e0 -1.945835594471e0 4.057215879485e0 5.354976158184e0 2.474247280364e1 3.161218405628e1 3.565232632589e1 4.171934604817e1 5.405287196603e1 5.870284749470e1 9.473349070156e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008281379704e1 -9.137684576191e0 -8.487075603808e0 -7.218301674119e0 -6.425993571155e0 -4.053406562611e0 5.565658893746e0 9.126501205096e0 2.559514226796e1 2.962696769552e1 3.589585332260e1 4.141403781066e1 5.143208845114e1 5.833999491050e1 8.878577978083e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057687175766e1 -9.003968915865e0 -8.439282846420e0 -7.428225582177e0 -6.630384866344e0 -5.553653015011e0 9.388335497211e0 1.142111441247e1 2.714761255252e1 2.965166502292e1 3.483449284406e1 4.245327755137e1 5.075262332354e1 5.514672184685e1 6.933461122936e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146366743038e1 -8.674830924880e0 -8.468052158860e0 -7.514573995326e0 -6.835606934997e0 -6.507800153124e0 1.200369794281e1 1.612584603366e1 2.854954147238e1 2.976559580830e1 3.455800948461e1 4.302380468269e1 5.034838175758e1 5.114734895083e1 5.491645410317e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235274115649e1 -8.571556612503e0 -8.367708842333e0 -7.451963037299e0 -7.221348738309e0 -6.812273774909e0 1.468513074699e1 2.062846132109e1 3.004065370982e1 3.022611588574e1 3.393365366678e1 4.114784180600e1 4.483658205545e1 4.956641259517e1 5.309695923923e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296295600600e1 -8.563614796121e0 -8.422003433087e0 -7.345218859252e0 -7.283182939375e0 -6.965900498497e0 1.792997578349e1 2.244926781362e1 2.676897008945e1 3.403388226174e1 3.469429901261e1 3.800025076224e1 4.597906745429e1 4.866400841772e1 5.167656552487e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.317599969658e1 -8.524821553724e0 -8.523500818848e0 -7.343848030997e0 -7.112024874084e0 -7.111314240073e0 2.162134329460e1 2.162811995026e1 2.366479676793e1 3.404892087929e1 3.741171211082e1 3.741881452082e1 4.751734341591e1 4.752144920931e1 5.079428261162e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296290774409e1 -8.562302250436e0 -8.422164989983e0 -7.345903068621e0 -7.284262193785e0 -6.965700330215e0 1.793083184072e1 2.244675369808e1 2.676819311693e1 3.403531087664e1 3.469520906975e1 3.799571221957e1 4.597850678951e1 4.866823885641e1 5.167994405080e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235265180211e1 -8.570177007477e0 -8.366726893542e0 -7.453188865031e0 -7.223240256028e0 -6.812330442343e0 1.468458683851e1 2.062918027340e1 3.003605770981e1 3.022578054320e1 3.393405979417e1 4.114604339466e1 4.483754550437e1 4.956755318846e1 5.310514325441e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146356146985e1 -8.673257501164e0 -8.467531625326e0 -7.515215502884e0 -6.836637154046e0 -6.509408090315e0 1.200250766415e1 1.612775158817e1 2.855071498141e1 2.976002333644e1 3.455650395726e1 4.302559736643e1 5.034408122019e1 5.114600961175e1 5.493078128739e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057678342290e1 -9.002908223131e0 -8.439251958905e0 -7.428143276093e0 -6.630394148467e0 -5.556304618479e0 9.387419591561e0 1.142272253398e1 2.714690383326e1 2.965022415006e1 3.483199843685e1 4.245556683700e1 5.074326206174e1 5.516027661703e1 6.933850824247e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008275687154e1 -9.136763539735e0 -8.487751039621e0 -7.217861597559e0 -6.425826543779e0 -4.055902005834e0 5.566548873374e0 9.126539450018e0 2.559449717584e1 2.962732905653e1 3.589285783414e1 4.141614212673e1 5.142545831112e1 5.834846386275e1 8.879101330299e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002847848946e1 -8.987052126352e0 -8.607167053955e0 -7.104873808253e0 -6.205465068675e0 -2.210576369451e0 2.265165851598e0 8.229785421622e0 2.480971783520e1 2.917827040851e1 3.774700704401e1 3.989990880961e1 5.157023153753e1 6.270160704657e1 1.016934106565e2</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.020438049230e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002850727785e1 -8.987711520181e0 -8.606501991797e0 -7.105057425543e0 -6.205575509699e0 -2.209012968430e0 2.264101100430e0 8.229859539062e0 2.480993280533e1 2.917800487850e1 3.774916878402e1 3.989822774418e1 5.157180948239e1 6.270003518521e1 1.016901355747e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043538058459e1 -8.941789419817e0 -8.239344377992e0 -7.172576814529e0 -6.067002273600e0 -4.294015476485e0 3.271957243995e0 1.296732055948e1 2.463379137736e1 2.735413245488e1 3.546291958983e1 4.095456956700e1 5.061157454143e1 6.336476558640e1 9.557962577512e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066130996943e1 -8.857734097752e0 -8.457503124504e0 -7.273060235986e0 -6.496784898769e0 -5.658475840995e0 7.113786910986e0 1.418539289317e1 2.628819334036e1 2.859036010919e1 3.527284799326e1 4.145694926944e1 5.051685096734e1 5.799648934652e1 6.901763288542e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146359675774e1 -8.674345636790e0 -8.467473148053e0 -7.515525460176e0 -6.835960928778e0 -6.508015654871e0 1.200292482224e1 1.612681240784e1 2.855247170886e1 2.975893493513e1 3.455917514933e1 4.302351125194e1 5.034988209612e1 5.114595569312e1 5.492110791976e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253284537408e1 -8.390383896367e0 -8.375227337522e0 -7.607942048226e0 -7.376924405080e0 -6.769534267143e0 1.744321878125e1 1.908422566464e1 2.990247950629e1 3.099595930701e1 3.381438390328e1 4.232246360537e1 4.541844030241e1 5.053466087707e1 5.183332584956e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339486662115e1 -8.346898487667e0 -8.241859516343e0 -7.763882259173e0 -7.442815214335e0 -6.891615631093e0 2.150973948698e1 2.369649418913e1 3.142248370446e1 3.171415868033e1 3.265137573741e1 3.957109972467e1 4.571960178128e1 5.009836558930e1 5.102888138810e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385416246278e1 -8.363281120095e0 -8.307628724384e0 -7.827149054524e0 -7.207358140632e0 -7.015951264330e0 2.514870921521e1 2.593385396267e1 2.926926028503e1 3.214724769811e1 3.542686332401e1 3.783855192810e1 4.743937728882e1 4.946721353509e1 5.023462713347e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385415405198e1 -8.361666909881e0 -8.308794565125e0 -7.827449760524e0 -7.207716544957e0 -7.015852573490e0 2.515562297287e1 2.592575084559e1 2.926855768377e1 3.214739458427e1 3.542972725245e1 3.783603561961e1 4.743821013723e1 4.947131798791e1 5.023385677724e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339483965535e1 -8.345538431864e0 -8.241326296945e0 -7.765433678190e0 -7.443421186605e0 -6.891684647937e0 2.150917160001e1 2.369698731273e1 3.141987076131e1 3.171488794172e1 3.265079392420e1 3.957075028495e1 4.571978349380e1 5.009906705390e1 5.103290437273e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253280349648e1 -8.388693825755e0 -8.375005450153e0 -7.608300587828e0 -7.378816991369e0 -6.769739003190e0 1.743980305481e1 1.908845286605e1 2.990119784796e1 3.099515614492e1 3.381255852732e1 4.232219218939e1 4.541988231242e1 5.052755726873e1 5.184507339377e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146356143526e1 -8.673257546741e0 -8.467531641976e0 -7.515215384402e0 -6.836637171962e0 -6.509408181540e0 1.200250763856e1 1.612775159002e1 2.855071559832e1 2.976002265722e1 3.455650343319e1 4.302559754890e1 5.034408197195e1 5.114600943562e1 5.493078122071e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066129370484e1 -8.856954784964e0 -8.457913159086e0 -7.272553279569e0 -6.496189944206e0 -5.660817605478e0 7.114158951159e0 1.418531082044e1 2.628786800004e1 2.859060552820e1 3.527107400665e1 4.145862506947e1 5.051343449887e1 5.799896775180e1 6.902215473044e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043536205724e1 -8.941443073179e0 -8.239680834071e0 -7.172335446366e0 -6.066394397113e0 -4.295752008948e0 3.272576781960e0 1.296709462166e1 2.463388047146e1 2.735411097761e1 3.546255240410e1 4.095487587049e1 5.061028682205e1 6.336531416425e1 9.558344972926e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042605148311e1 -8.974340758602e0 -8.114154022425e0 -7.174180161289e0 -5.866122913878e0 -3.224612658124e0 1.402577571995e0 1.253945435968e1 2.404200874585e1 2.688702685016e1 3.530760061482e1 4.106565713240e1 5.063435254909e1 6.598044498571e1 1.136959989834e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066288476437e1 -9.098016554991e0 -7.618980242295e0 -7.091066637950e0 -5.669930144725e0 -4.641530348902e0 1.804186392153e0 1.628339738771e1 2.295136782410e1 2.600225166877e1 3.219244729232e1 4.361831790107e1 5.055566965447e1 6.664814025859e1 9.876564247007e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075561566605e1 -8.993394844055e0 -7.954813345937e0 -7.081845632675e0 -6.018008219450e0 -5.939464002311e0 4.739992659602e0 1.694456314118e1 2.459972557058e1 2.678382338251e1 3.313063796383e1 4.329564475829e1 5.012500261641e1 6.235463742767e1 6.964155846208e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129125557615e1 -8.804346024827e0 -8.353634272478e0 -7.247765377211e0 -6.647060319768e0 -6.592014963736e0 9.103182450396e0 1.836650503702e1 2.744099549024e1 2.824843519469e1 3.414226912426e1 4.332646004848e1 4.907796588505e1 5.061306189354e1 5.706481823194e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235265182465e1 -8.570177035989e0 -8.366726512415e0 -7.453188131653e0 -7.223240306676e0 -6.812331469495e0 1.468458657096e1 2.062918025173e1 3.003605767150e1 3.022577861090e1 3.393405902774e1 4.114604326219e1 4.483754842512e1 4.956755387179e1 5.310514319970e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339483966738e1 -8.345538454544e0 -8.241326154179e0 -7.765433735397e0 -7.443420230492e0 -6.891685648362e0 2.150917132723e1 2.369698729705e1 3.141987071892e1 3.171488478838e1 3.265079421517e1 3.957075166091e1 4.571978563713e1 5.009906709437e1 5.103290431282e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.408624837079e1 -8.217797950527e0 -8.216304860618e0 -8.090716964964e0 -7.254180316638e0 -6.965127385495e0 2.719774524419e1 2.720702662314e1 3.159415868743e1 3.162161153893e1 3.396298173745e1 3.885735058407e1 4.740824300683e1 5.040915967245e1 5.041341452256e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.432408922920e1 -8.282025837321e0 -8.223811118463e0 -8.091563715640e0 -7.108076579390e0 -7.041313330401e0 2.864780647347e1 2.998561383300e1 3.036620899158e1 3.137321999418e1 3.664247376741e1 3.750546005360e1 4.924539013404e1 4.968749730686e1 5.036456098784e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.408624836643e1 -8.217797991160e0 -8.216304900880e0 -8.090716884046e0 -7.254181298252e0 -6.965126414758e0 2.719774523627e1 2.720702661512e1 3.159415866091e1 3.162161158259e1 3.396298533991e1 3.885734749792e1 4.740824226548e1 5.040915969942e1 5.041341454964e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339483965519e1 -8.345538485989e0 -8.241326194061e0 -7.765433702788e0 -7.443421148840e0 -6.891684712923e0 2.150917150036e1 2.369698728226e1 3.141987075823e1 3.171488795963e1 3.265079408881e1 3.957074989912e1 4.571978370223e1 5.009906729481e1 5.103290429419e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235265178922e1 -8.570177052642e0 -8.366726768359e0 -7.453188793040e0 -7.223240288487e0 -6.812330594652e0 1.468458673757e1 2.062918024330e1 3.003605770005e1 3.022578129283e1 3.393405836904e1 4.114604324023e1 4.483754581281e1 4.956755404118e1 5.310514318462e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129125548920e1 -8.804346034601e0 -8.353634799947e0 -7.247765578763e0 -6.647059675159e0 -6.592014952321e0 9.103182530327e0 1.836650503200e1 2.744099687240e1 2.824843521245e1 3.414226918584e1 4.332645878545e1 4.907796540106e1 5.061306191040e1 5.706481822335e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075561558027e1 -8.993394849327e0 -7.954814009537e0 -7.081845213231e0 -6.018008212942e0 -5.939463829230e0 4.739992674624e0 1.694456313834e1 2.459972619174e1 2.678382339198e1 3.313063800261e1 4.329564449700e1 5.012500213453e1 6.235463742437e1 6.964155838676e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066288473650e1 -9.098016556666e0 -7.618980615418e0 -7.091066317839e0 -5.669930142592e0 -4.641530309974e0 1.804186385021e0 1.628339738677e1 2.295136800099e1 2.600225167175e1 3.219244727169e1 4.361831794359e1 5.055566945870e1 6.664814025799e1 9.876564240258e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068250849140e1 -9.233025277040e0 -7.149618309017e0 -7.005228840205e0 -6.157849656046e0 -4.248857232001e0 1.317990969892e0 1.577331340071e1 1.949271081629e1 2.748310040338e1 3.318416785566e1 4.561473237916e1 5.085438189873e1 6.734701800821e1 9.601190953782e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070612105606e1 -9.180254054913e0 -7.365635200495e0 -6.986765562418e0 -6.459686307296e0 -5.000610289355e0 3.007875066592e0 1.623087846006e1 2.000332538470e1 2.811553817358e1 3.365311005267e1 4.555125241949e1 5.013612574503e1 6.445331839764e1 8.021352707801e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096649167115e1 -9.030893882019e0 -8.051100481070e0 -7.085373521423e0 -6.820164728890e0 -5.934306087730e0 6.707350739158e0 1.754839051750e1 2.151331436623e1 2.997518158867e1 3.482870153575e1 4.516028168100e1 4.859405612524e1 5.501046247366e1 6.112001838334e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183221803005e1 -8.809919526084e0 -8.468036408261e0 -7.238626435153e0 -6.911521725968e0 -6.689268003867e0 1.162238705716e1 1.964541878069e1 2.390202245003e1 3.266519263261e1 3.557376029444e1 4.160996116265e1 4.552315137233e1 4.843543060177e1 5.510436452003e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296287613286e1 -8.561971873411e0 -8.420712592350e0 -7.347746054792e0 -7.284431499562e0 -6.966048051510e0 1.792946367577e1 2.244830878935e1 2.676787000770e1 3.403336335171e1 3.469547470818e1 3.799555993181e1 4.597869783239e1 4.866504513428e1 5.168801428089e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385413471435e1 -8.361147380868e0 -8.307141230131e0 -7.829481062384e0 -7.207974634602e0 -7.016090143193e0 2.514837588540e1 2.593317545008e1 2.926745727449e1 3.214656880322e1 3.542849778353e1 3.783677556283e1 4.743800209085e1 4.946713281620e1 5.024287783532e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.432408400148e1 -8.280526249038e0 -8.223676532228e0 -8.093104687550e0 -7.108289959734e0 -7.041312262796e0 2.864749029306e1 2.999632982067e1 3.035450840182e1 3.137261211463e1 3.664323353636e1 3.750538681957e1 4.924316100008e1 4.969008998090e1 5.036633989054e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.432408922827e1 -8.282025797306e0 -8.223811202966e0 -8.091563675396e0 -7.108077549858e0 -7.041312357811e0 2.864780653450e1 2.998561385771e1 3.036620901149e1 3.137322002781e1 3.664247724086e1 3.750545657084e1 4.924538985826e1 4.968749733211e1 5.036456106454e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385415405199e1 -8.361666908046e0 -8.308794567007e0 -7.827449760590e0 -7.207716542960e0 -7.015852575403e0 2.515562297296e1 2.592575084566e1 2.926855768256e1 3.214739458469e1 3.542972725630e1 3.783603561608e1 4.743821013827e1 4.947131798764e1 5.023385677689e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296290774360e1 -8.562302309251e0 -8.422164848715e0 -7.345903079126e0 -7.284261995996e0 -6.965700609426e0 1.793083165521e1 2.244675377903e1 2.676819317005e1 3.403530996731e1 3.469521018392e1 3.799571107682e1 4.597850754274e1 4.866823929946e1 5.167994393694e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183223703507e1 -8.810238487587e0 -8.469120480527e0 -7.238731419938e0 -6.911274487071e0 -6.687233813947e0 1.162252077112e1 1.964516149139e1 2.390239760941e1 3.266427790289e1 3.557518520071e1 4.161048106761e1 4.552297454118e1 4.843916339933e1 5.509608278467e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096648971754e1 -9.031113935379e0 -8.051952438230e0 -7.085746223511e0 -6.820159704421e0 -5.931929300156e0 6.706990201961e0 1.754867749772e1 2.151358865609e1 2.997460250419e1 3.482856099455e1 4.516058827101e1 4.859565529971e1 5.501895188187e1 6.110625378041e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070613187945e1 -9.180362375006e0 -7.365717967671e0 -6.986971457498e0 -6.460600290155e0 -4.998366739911e0 3.007297491423e0 1.623117957388e1 2.000345729741e1 2.811529409811e1 3.365269495947e1 4.555131656606e1 5.013747002347e1 6.445668734679e1 8.020584771781e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048152685173e1 -9.280701413717e0 -7.230404370596e0 -6.949166587758e0 -6.859965500421e0 -3.559724324718e0 1.907160925404e0 1.395817316069e1 1.435663035545e1 3.287336885458e1 3.615945904719e1 4.652914654301e1 5.132307946030e1 6.535504480827e1 1.011812356202e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048151092657e1 -9.280609146883e0 -7.229972640787e0 -6.949002464926e0 -6.860120002124e0 -3.561537851515e0 1.908102002020e0 1.395833165978e1 1.435629449871e1 3.287358184706e1 3.615967933695e1 4.652920012517e1 5.132109697717e1 6.535491824797e1 1.011865954339e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054182412961e1 -9.186387035358e0 -7.958172019848e0 -7.001673176922e0 -6.889212931126e0 -4.786277614058e0 4.908466539270e0 1.469958244224e1 1.550896540971e1 3.408041454560e1 3.691067296490e1 4.640895107590e1 4.917256428182e1 6.019815167656e1 7.988204990076e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105603730926e1 -9.010361817428e0 -8.633468173205e0 -7.090535308956e0 -6.943154068191e0 -5.838558760786e0 9.223741193479e0 1.620090041626e1 1.763450129065e1 3.611664031758e1 3.781587759276e1 4.612480303031e1 4.658138251287e1 5.101148000201e1 6.007225195507e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213833860736e1 -8.776682407663e0 -8.687079313264e0 -7.146368783384e0 -7.018445680671e0 -6.679719503065e0 1.467592065621e1 1.850679001970e1 2.043897017524e1 3.748975997508e1 3.778335655682e1 3.948068267100e1 4.616554860405e1 4.718568543315e1 5.352125422094e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.317594209271e1 -8.522859699031e0 -8.522859581957e0 -7.346346079748e0 -7.112182006957e0 -7.112180759921e0 2.162145444288e1 2.162145489955e1 2.367091273922e1 3.404752161139e1 3.741396926341e1 3.741397239687e1 4.751694998532e1 4.751695141962e1 5.080877064479e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385413471103e1 -8.361147354391e0 -8.307141295274e0 -7.829481041957e0 -7.207975591012e0 -7.016089174242e0 2.514837619997e1 2.593317538118e1 2.926745721234e1 3.214656878687e1 3.542850085743e1 3.783677282792e1 4.743800118689e1 4.946713309383e1 5.024287784240e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.408624836643e1 -8.217797991160e0 -8.216304900880e0 -8.090716884047e0 -7.254181298252e0 -6.965126414758e0 2.719774523629e1 2.720702661514e1 3.159415866094e1 3.162161158259e1 3.396298533991e1 3.885734749783e1 4.740824226627e1 5.040915969944e1 5.041341454966e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385416245947e1 -8.363281093380e0 -8.307628789666e0 -7.827149034338e0 -7.207359096942e0 -7.015950295368e0 2.514870952954e1 2.593385389419e1 2.926926022197e1 3.214724768163e1 3.542686639811e1 3.783854919354e1 4.743937638537e1 4.946721381278e1 5.023462714044e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.317599969660e1 -8.524821465911e0 -8.523500906682e0 -7.343848031123e0 -7.112023939084e0 -7.111315174978e0 2.162134363703e1 2.162811960733e1 2.366479676785e1 3.404892087937e1 3.741171446074e1 3.741881217040e1 4.751734449159e1 4.752144813480e1 5.079428261165e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213839401148e1 -8.777269150178e0 -8.688761420169e0 -7.146319611751e0 -7.017592039548e0 -6.677020666113e0 1.467726365206e1 1.850633031775e1 2.043797927112e1 3.749438231762e1 3.778117651051e1 3.948188377982e1 4.616604120176e1 4.719164448007e1 5.350513686638e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105602133189e1 -9.010808551582e0 -8.634986681709e0 -7.090626222802e0 -6.942460080636e0 -5.835534604767e0 9.223511132991e0 1.620034643788e1 1.763517150077e1 3.611525233229e1 3.781718388017e1 4.612490248966e1 4.658561151925e1 5.101884393443e1 6.005364385666e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054182464132e1 -9.186661704641e0 -7.959412251492e0 -7.001841421409e0 -6.888764892485e0 -4.783139267642e0 4.907469341543e0 1.469915527697e1 1.550981786507e1 3.407971130061e1 3.691037742507e1 4.640886092248e1 4.917767287764e1 6.019921595833e1 7.986957267747e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806451349e1 -9.262380457153e0 -8.174865048620e0 -6.951420955796e0 -6.815498276723e0 -3.140202238842e0 3.585438875779e0 9.865907637140e0 1.319973413321e1 3.778966057862e1 4.031301697732e1 4.599264428434e1 5.090085236525e1 6.163869958015e1 1.050408048014e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010624148811e1 -9.296949872289e0 -7.878041727009e0 -6.918606568287e0 -6.785267087976e0 -1.956063334121e0 1.578041547043e0 9.446785766030e0 1.273462496554e1 3.732981339621e1 4.008409895386e1 4.634055981912e1 5.223079945827e1 6.391277581992e1 1.101345974102e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008802794275e1 -9.262076542003e0 -8.174267320022e0 -6.951409541109e0 -6.815769045374e0 -3.143384471724e0 3.587159340530e0 9.866007254700e0 1.319960997995e1 3.779025067217e1 4.031285365705e1 4.599280507048e1 5.089397656549e1 6.164407444716e1 1.050496665713e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024086136971e1 -9.155411939140e0 -8.780353805663e0 -7.031440844901e0 -6.869480977094e0 -4.637295955733e0 7.380614900727e0 1.109490239452e1 1.466033226143e1 3.889883326406e1 4.052038572092e1 4.520604136585e1 4.829554124455e1 5.675597107928e1 8.252568798464e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106956866431e1 -8.966989072351e0 -8.925983896043e0 -7.098729849744e0 -6.946722376927e0 -5.791395488883e0 1.154721476123e1 1.346537337430e1 1.713868208790e1 3.918248687008e1 3.977823806680e1 4.489039186798e1 4.697033502525e1 4.911711466370e1 6.001131699381e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213833860609e1 -8.776682325558e0 -8.687079492646e0 -7.146369628933e0 -7.018444733851e0 -6.679719493671e0 1.467592086127e1 1.850678978547e1 2.043897023534e1 3.748976218258e1 3.778335542519e1 3.948068317170e1 4.616554609208e1 4.718568615069e1 5.352125428841e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296287612411e1 -8.561971833562e0 -8.420712791027e0 -7.347746079193e0 -7.284432392682e0 -6.966046975637e0 1.792946400335e1 2.244830878237e1 2.676786986815e1 3.403336413694e1 3.469547613709e1 3.799555950684e1 4.597869543000e1 4.866504527709e1 5.168801434053e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339483965535e1 -8.345538431865e0 -8.241326296944e0 -7.765433678192e0 -7.443421186605e0 -6.891684647936e0 2.150917160003e1 2.369698731280e1 3.141987076134e1 3.171488794167e1 3.265079392421e1 3.957075028470e1 4.571978349520e1 5.009906705422e1 5.103290437209e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339486660897e1 -8.346898518949e0 -8.241859556428e0 -7.763882226721e0 -7.442816132921e0 -6.891614695221e0 2.150973966007e1 2.369649417445e1 3.142248374388e1 3.171416185038e1 3.265137561216e1 3.957109796280e1 4.571959984758e1 5.009836579022e1 5.102888136875e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296295599676e1 -8.563614814457e0 -8.422003490921e0 -7.345218895658e0 -7.283183635106e0 -6.965899700141e0 1.792997592574e1 2.244926788743e1 2.676897000314e1 3.403388213724e1 3.469430155386e1 3.800024919682e1 4.597906580467e1 4.866400900302e1 5.167656547155e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213844339587e1 -8.778216321911e0 -8.688279367145e0 -7.145291394771e0 -7.018119673799e0 -6.676777826199e0 1.467665441719e1 1.851025486639e1 2.043511305805e1 3.748910188854e1 3.778869630818e1 3.948330096549e1 4.616702408318e1 4.718718128089e1 5.350299182380e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106959648941e1 -8.968419780339e0 -8.926877648102e0 -7.098318550980e0 -6.946030933477e0 -5.788052577033e0 1.154839673595e1 1.346427153157e1 1.713835453946e1 3.918516369791e1 3.977942241896e1 4.489027517324e1 4.697682743252e1 4.911827641532e1 5.999082378145e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024078551584e1 -9.156070839094e0 -8.781521251992e0 -7.031296827995e0 -6.868937681825e0 -4.633699234875e0 7.379870181808e0 1.109440986179e1 1.466061846525e1 3.889761379112e1 4.052230941373e1 4.520578111825e1 4.830452657435e1 5.674918294398e1 8.251271519289e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767414139975e0 -9.222560771807e0 -8.723774685733e0 -6.962420453632e0 -6.802053157661e0 -3.017612062490e0 5.623559509147e0 7.043332528126e0 1.287619852135e1 4.112168900297e1 4.167595375789e1 4.547263154362e1 5.038075445703e1 5.936294494495e1 1.054771806755e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715329988697e0 -9.212686821112e0 -8.523939143615e0 -6.889544029274e0 -6.776391097644e0 -1.017327331896e0 2.670100284587e0 5.803560513197e0 1.206430806338e1 4.102834837169e1 4.331571144196e1 4.540152069343e1 5.321071164680e1 6.068662982123e1 1.079970773819e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715272118562e0 -9.212310232901e0 -8.524034232479e0 -6.889676133466e0 -6.776410768461e0 -1.019942427809e0 2.671978799375e0 5.803806082915e0 1.206434438665e1 4.102871408604e1 4.331378372946e1 4.540299910139e1 5.320346373435e1 6.069475495214e1 1.080005800806e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767349596532e0 -9.221420002093e0 -8.723867162019e0 -6.962818559876e0 -6.802213610042e0 -3.021128275446e0 5.623491817041e0 7.045306661121e0 1.287627975258e1 4.112122359483e1 4.167337205758e1 4.547402403932e1 5.037021499330e1 5.937698565717e1 1.054862962181e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024086145437e1 -9.155411850723e0 -8.780353873020e0 -7.031441044951e0 -6.869480683506e0 -4.637295957871e0 7.380614917811e0 1.109490235164e1 1.466033228876e1 3.889883361681e1 4.052038762217e1 4.520603952981e1 4.829554056677e1 5.675597122125e1 8.252568798479e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105603734912e1 -9.010361754592e0 -8.633468381728e0 -7.090536061787e0 -6.943153093480e0 -5.838558751011e0 9.223741256339e0 1.620090027723e1 1.763450137974e1 3.611664001979e1 3.781588099051e1 4.612479950296e1 4.658138247911e1 5.101148015374e1 6.007225201924e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183221802997e1 -8.809919501011e0 -8.468036734962e0 -7.238627223010e0 -6.911520670376e0 -6.689267930017e0 1.162238720985e1 1.964541881859e1 2.390202232140e1 3.266519337183e1 3.557376260722e1 4.160996128812e1 4.552314837879e1 4.843542995801e1 5.510436458765e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235265180211e1 -8.570177007479e0 -8.366726893541e0 -7.453188865031e0 -7.223240256030e0 -6.812330442342e0 1.468458683852e1 2.062918027350e1 3.003605770988e1 3.022578054284e1 3.393405979400e1 4.114604339548e1 4.483754550510e1 4.956755318931e1 5.310514325311e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253284534095e1 -8.390384151122e0 -8.375227331271e0 -7.607942830903e0 -7.376924366262e0 -6.769533313998e0 1.744321912937e1 1.908422565233e1 2.990248247933e1 3.099595923548e1 3.381438360080e1 4.232246354439e1 4.541843697422e1 5.053466106070e1 5.183332574133e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235274112107e1 -8.571556629114e0 -8.367709098072e0 -7.451963699504e0 -7.221348720156e0 -6.812272899460e0 1.468513091362e1 2.062846131281e1 3.004065373894e1 3.022611856770e1 3.393365300768e1 4.114784178467e1 4.483657944363e1 4.956641276520e1 5.309695922277e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183237241026e1 -8.811359219601e0 -8.469535328455e0 -7.237137139034e0 -6.910933291406e0 -6.686812650356e0 1.162287690909e1 1.964606574656e1 2.390332042701e1 3.266653374858e1 3.557460320339e1 4.161461401840e1 4.552216616099e1 4.843430742965e1 5.508946188860e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105619349665e1 -9.011776451947e0 -8.634619049891e0 -7.089242148076e0 -6.942880401613e0 -5.835251668374e0 9.224299028229e0 1.620340038725e1 1.763179141748e1 3.612325502476e1 3.781472944553e1 4.612486198259e1 4.658390280173e1 5.101355483325e1 6.005126478077e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024095875013e1 -9.156832030542e0 -8.780792857150e0 -7.030734519245e0 -6.869113580856e0 -4.633678619095e0 7.381284104037e0 1.109369012496e1 1.466000015662e1 3.890512774061e1 4.051934710540e1 4.520607980490e1 4.830063780990e1 5.674535774599e1 8.251357006221e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008836554004e1 -9.263275999923e0 -8.173851352240e0 -6.950405088396e0 -6.815901336509e0 -3.140418149408e0 3.588067324744e0 9.864078400189e0 1.319917600603e1 3.779657001742e1 4.031305103551e1 4.599268467939e1 5.089708757237e1 6.162861032225e1 1.050427252334e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.020438049230e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715463688179e0 -9.213500131586e0 -8.523110236267e0 -6.888948164998e0 -6.776726935303e0 -1.017555028883e0 2.673256708353e0 5.800785488380e0 1.206416509666e1 4.103245006514e1 4.331419786023e1 4.540248865816e1 5.321269838678e1 6.067743183578e1 1.079977273189e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -7.129278265982e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.601216760284e0 -8.914154114875e0 -8.912847847488e0 -6.815435625898e0 -6.814870377091e0 1.377995158192e0 1.378508674932e0 3.752348423990e0 1.171679302424e1 4.380060401939e1 4.380063744389e1 4.409470915646e1 5.730567295489e1 5.732363568293e1 1.051093254954e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715272217486e0 -9.212310276568e0 -8.524034093419e0 -6.889676585582e0 -6.776410283877e0 -1.019942434189e0 2.671978796644e0 5.803806081989e0 1.206434439030e1 4.102871603801e1 4.331378377251e1 4.540299707555e1 5.320346365471e1 6.069475496670e1 1.080005800783e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008802812805e1 -9.262076496046e0 -8.174267235644e0 -6.951410012393e0 -6.815768453757e0 -3.143384483435e0 3.587159326600e0 9.866007244803e0 1.319961000024e1 3.779025141251e1 4.031285620099e1 4.599280165022e1 5.089397642849e1 6.164407452120e1 1.050496665605e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054182428898e1 -9.186386991253e0 -7.958172130450e0 -7.001673872109e0 -6.889211929609e0 -4.786277615245e0 4.908466522345e0 1.469958236495e1 1.550896550058e1 3.408041447164e1 3.691067651432e1 4.640894720985e1 4.917256426428e1 6.019815175109e1 7.988204993294e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096649176337e1 -9.030893854855e0 -8.051100787173e0 -7.085374157080e0 -6.820163688937e0 -5.934306038192e0 6.707350747766e0 1.754839057926e1 2.151331428648e1 2.997518199199e1 3.482870470238e1 4.516027886096e1 4.859405490996e1 5.501046247880e1 6.112001846582e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129125558555e1 -8.804345994517e0 -8.353634708855e0 -7.247765952642e0 -6.647059321103e0 -6.592014915600e0 9.103182543964e0 1.836650506526e1 2.744099643759e1 2.824843522795e1 3.414227172717e1 4.332645730487e1 4.907796487159e1 5.061306146966e1 5.706481828109e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146359669607e1 -8.674345965689e0 -8.467473251305e0 -7.515526049124e0 -6.835960636411e0 -6.508014968294e0 1.200292505027e1 1.612681245069e1 2.855247250351e1 2.975893673904e1 3.455917562142e1 4.302350832507e1 5.034988153146e1 5.114595542527e1 5.492110794012e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146366733415e1 -8.674831298174e0 -8.468052279917e0 -7.514574466129e0 -6.835606659697e0 -6.507799558303e0 1.200369814528e1 1.612584607841e1 2.854954288398e1 2.976559693448e1 3.455800943115e1 4.302380193832e1 5.034838194623e1 5.114734850563e1 5.491645405632e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129144581573e1 -8.805682951916e0 -8.354534732581e0 -7.246252535339e0 -6.647247972560e0 -6.589766208257e0 9.103956428944e0 1.836566263865e1 2.744166708872e1 2.825409698001e1 3.414194179056e1 4.332519775856e1 4.907982902106e1 5.061180234897e1 5.705314719862e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096675460512e1 -9.032265103309e0 -8.052398025788e0 -7.083877808851e0 -6.819634541516e0 -5.931514199028e0 6.708145740586e0 1.754872087597e1 2.151445663465e1 2.997832644357e1 3.482900610844e1 4.516003770849e1 4.859513348807e1 5.501253148925e1 6.110085096375e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054213552506e1 -9.187685240051e0 -7.958761396101e0 -7.000289373616e0 -6.889032667318e0 -4.783138519635e0 4.909294099551e0 1.470154876328e1 1.550621095661e1 3.408726902045e1 3.690970752567e1 4.640859204198e1 4.917373002830e1 6.018801086581e1 7.987142974212e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -9.802757615725e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048188978647e1 -9.281800831820e0 -7.229514267657e0 -6.947622069441e0 -6.860067918591e0 -3.559996571529e0 1.909770507721e0 1.396013371172e1 1.435300298587e1 3.288051731042e1 3.615905390848e1 4.652875704500e1 5.132079710560e1 6.533930603228e1 1.011819832310e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010660151293e1 -9.297983989419e0 -7.877013815010e0 -6.917440000472e0 -6.785723594227e0 -1.955560851684e0 1.580660639379e0 9.444502455938e0 1.273416118971e1 3.733629221676e1 4.008477364960e1 4.634034717331e1 5.223076371628e1 6.389702951320e1 1.101342366935e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.020438049230e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715463654795e0 -9.213500227256e0 -8.523110205390e0 -6.888948611300e0 -6.776726448920e0 -1.017555021339e0 2.673256712805e0 5.800785481877e0 1.206416509481e1 4.103245053658e1 4.331419951247e1 4.540248640086e1 5.321269844975e1 6.067743185477e1 1.079977273151e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715330054230e0 -9.212686960580e0 -8.523938973540e0 -6.889544924435e0 -6.776390129944e0 -1.017327330747e0 2.670100286316e0 5.803560505775e0 1.206430806518e1 4.102835079346e1 4.331571314278e1 4.540151640638e1 5.321071163006e1 6.068662985489e1 1.079970773758e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010624168499e1 -9.296949855438e0 -7.878041593216e0 -6.918607326638e0 -6.785266201436e0 -1.956063344938e0 1.578041523549e0 9.446785766774e0 1.273462497775e1 3.732981427390e1 4.008410174871e1 4.634055585559e1 5.223079946910e1 6.391277585330e1 1.101345973928e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048151114430e1 -9.280609113527e0 -7.229972674326e0 -6.949003148919e0 -6.860118985096e0 -3.561537866408e0 1.908101957963e0 1.395833161240e1 1.435629457527e1 3.287358182122e1 3.615968284984e1 4.652919615760e1 5.132109705370e1 6.535491829312e1 1.011865954777e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070612126249e1 -9.180254025380e0 -7.365635205387e0 -6.986765680995e0 -6.459685931285e0 -5.000610249992e0 3.007875009902e0 1.623087851934e1 2.000332535420e1 2.811553845984e1 3.365311319156e1 4.555124875384e1 5.013612542658e1 6.445331843913e1 8.021352728392e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075561582087e1 -8.993394812818e0 -7.954813404069e0 -7.081845890132e0 -6.018008172999e0 -5.939463509794e0 4.739992632410e0 1.694456317547e1 2.459972617049e1 2.678382341094e1 3.313064087527e1 4.329564151946e1 5.012500177899e1 6.235463747368e1 6.964155856461e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066130998980e1 -8.857734235300e0 -8.457503205452e0 -7.273060728645e0 -6.496784408471e0 -5.658475540123e0 7.113786966693e0 1.418539296585e1 2.628819377467e1 2.859036167533e1 3.527284968539e1 4.145694588392e1 5.051685007163e1 5.799648939919e1 6.901763292356e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057687158727e1 -9.003969453383e0 -8.439282777745e0 -7.428226044487e0 -6.630384331493e0 -5.553652764067e0 9.388335699321e0 1.142111439939e1 2.714761247709e1 2.965166800755e1 3.483449270131e1 4.245327418875e1 5.075262359707e1 5.514672163809e1 6.933461127074e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066152650511e1 -8.858319690808e0 -8.458244235966e0 -7.271543897735e0 -6.496282871784e0 -5.658228195291e0 7.115079341397e0 1.418392761290e1 2.628673560473e1 2.859748809467e1 3.527198924877e1 4.145762091593e1 5.051415659631e1 5.798740918224e1 6.901952776531e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075593039870e1 -8.994690758492e0 -7.955294310575e0 -7.080415016081e0 -6.015439362551e0 -5.939980698537e0 4.741281475540e0 1.694374027545e1 2.460014190397e1 2.678983799967e1 3.313078406295e1 4.329451593594e1 5.012346134558e1 6.234007354782e1 6.964234892175e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070647545452e1 -9.181557432666e0 -7.366125703897e0 -6.985608297404e0 -6.458580549987e0 -4.998829032577e0 3.009253813498e0 1.623089699967e1 2.000414553263e1 2.811945647821e1 3.365319319085e1 4.555071624989e1 5.013606262900e1 6.444034253328e1 8.020703265045e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.069391739897e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068287434348e1 -9.234267406039e0 -7.150125163240e0 -7.003689901524e0 -6.155772249641e0 -4.249286740863e0 1.320291640166e0 1.577306808326e1 1.949334743662e1 2.748730968552e1 3.318440027063e1 4.561417737033e1 5.085359496244e1 6.733027958806e1 9.600901004617e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -9.802757615725e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048188978647e1 -9.281800831803e0 -7.229514266968e0 -6.947622073989e0 -6.860067914821e0 -3.559996571400e0 1.909770507669e0 1.396013371179e1 1.435300298581e1 3.288051731035e1 3.615905390842e1 4.652875704510e1 5.132079710564e1 6.533930603229e1 1.011819832309e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008836550709e1 -9.263276043831e0 -8.173851417463e0 -6.950405486295e0 -6.815900858789e0 -3.140418139081e0 3.588067327821e0 9.864078408156e0 1.319917599255e1 3.779657032674e1 4.031305140479e1 4.599268404231e1 5.089708747399e1 6.162861031926e1 1.050427252400e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767414082927e0 -9.222560995114e0 -8.723774614730e0 -6.962421225124e0 -6.802052265442e0 -3.017612051970e0 5.623559552265e0 7.043332491359e0 1.287619851367e1 4.112169252117e1 4.167595359373e1 4.547262784580e1 5.038075468232e1 5.936294491046e1 1.054771806776e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806466581e1 -9.262380455275e0 -8.174865029230e0 -6.951421819751e0 -6.815497212666e0 -3.140202240295e0 3.585438864985e0 9.865907635182e0 1.319973414003e1 3.778966162761e1 4.031301989100e1 4.599264022699e1 5.090085212993e1 6.163869965142e1 1.050408047968e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048152706945e1 -9.280701380380e0 -7.230404403475e0 -6.949167272437e0 -6.859964483352e0 -3.559724339597e0 1.907160881367e0 1.395817311330e1 1.435663043202e1 3.287336882870e1 3.615946255994e1 4.652914257547e1 5.132307953691e1 6.535504485350e1 1.011812356640e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068250873737e1 -9.233025245783e0 -7.149617491420e0 -7.005229516116e0 -6.157849479948e0 -4.248857214150e0 1.317990902247e0 1.577331344593e1 1.949271080904e1 2.748310060213e1 3.318417094536e1 4.561472843289e1 5.085438195627e1 6.734701805186e1 9.601190987753e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066288502109e1 -9.098016522687e0 -7.618979712281e0 -7.091067055275e0 -5.669930100042e0 -4.641530159034e0 1.804186324141e0 1.628339742611e1 2.295136822183e1 2.600225169334e1 3.219245011283e1 4.361831413621e1 5.055566952842e1 6.664814030311e1 9.876564290983e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043538080636e1 -8.941789427656e0 -8.239344046980e0 -7.172577239825e0 -6.067002056164e0 -4.294015274949e0 3.271957213767e0 1.296732062833e1 2.463379177828e1 2.735413357304e1 3.546292179556e1 4.095456571097e1 5.061157415590e1 6.336476562947e1 9.557962594518e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008281379773e1 -9.137684891356e0 -8.487075333224e0 -7.218302181042e0 -6.425993135267e0 -4.053406392136e0 5.565658932359e0 9.126501255817e0 2.559514221511e1 2.962697066223e1 3.589585265404e1 4.141403526476e1 5.143208832150e1 5.833999496635e1 8.878577979077e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008305317538e1 -9.137596389390e0 -8.487620159572e0 -7.217627054908e0 -6.425621343680e0 -4.053490571945e0 5.567510682383e0 9.124601683444e0 2.559478547742e1 2.963092466028e1 3.589376277649e1 4.141652617208e1 5.143115521766e1 5.833291814787e1 8.878728736059e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043573685063e1 -8.942680329026e0 -8.239647833762e0 -7.171281043310e0 -6.065607247760e0 -4.294385704929e0 3.273923053346e0 1.296555011724e1 2.463285984720e1 2.736077805070e1 3.546450832803e1 4.095424671762e1 5.060876375580e1 6.335027482991e1 9.558205051297e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066325174044e1 -9.099289123441e0 -7.619234881848e0 -7.089647544196e0 -5.667153816152e0 -4.642702723218e0 1.806234498745e0 1.628265707015e1 2.295154298141e1 2.600834962748e1 3.219260618172e1 4.361770568254e1 5.055378862391e1 6.663165461296e1 9.876427048573e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032034879665e1 -8.679016726913e0 -8.586342735589e0 -7.319256177159e0 -5.711618835218e0 -3.199910493306e0 2.023135125237e0 1.298641874483e1 2.075742664929e1 3.099763674637e1 3.471576145386e1 3.763742924848e1 5.064266528784e1 6.479633326273e1 1.201457130863e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043584514897e1 -8.943001366974e0 -8.240057275097e0 -7.170777355804e0 -6.063919931494e0 -4.295546836669e0 3.273656284342e0 1.296755031015e1 2.463485641390e1 2.735771693057e1 3.546411953579e1 4.095371658952e1 5.060795370352e1 6.335024833287e1 9.558208217404e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041382579608e1 -9.109469484269e0 -8.243050258213e0 -7.087589532194e0 -6.663276246716e0 -4.605926747721e0 5.086253182043e0 1.199293702687e1 1.931752617944e1 3.275521139628e1 3.773227664346e1 4.368243335379e1 5.016262703411e1 5.933214995050e1 7.967129203772e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024118089718e1 -9.156607316872e0 -8.781299827442e0 -7.029835215629e0 -6.869014327395e0 -4.634017192820e0 7.380541331941e0 1.109686726354e1 1.465805472107e1 3.890239143437e1 4.052451096708e1 4.520568238826e1 4.829688221601e1 5.674492168553e1 8.251407470687e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006757055757e1 -9.156973857628e0 -9.156225204628e0 -6.953115800988e0 -6.951992456163e0 -4.624379260617e0 9.799548480622e0 9.801845736606e0 1.259476016649e1 4.250540172889e1 4.251600228828e1 4.571730026402e1 4.572098274498e1 5.578685647157e1 8.540030717383e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024078554356e1 -9.156070879515e0 -8.781521338995e0 -7.031297681658e0 -6.868936634958e0 -4.633699227406e0 7.379870229098e0 1.109440982540e1 1.466061846148e1 3.889761523998e1 4.052231184241e1 4.520577724063e1 4.830452634191e1 5.674918295095e1 8.251271520324e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041337472323e1 -9.108550351183e0 -8.242577416166e0 -7.089544217214e0 -6.664704626953e0 -4.605086720484e0 5.084806848752e0 1.199209240270e1 1.931768824618e1 3.275274218652e1 3.773000738799e1 4.368294730464e1 5.016694101062e1 5.934256234923e1 7.966917315357e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043538080636e1 -8.941789427654e0 -8.239344046982e0 -7.172577239826e0 -6.067002056164e0 -4.294015274951e0 3.271957213771e0 1.296732062831e1 2.463379177856e1 2.735413357303e1 3.546292179513e1 4.095456571030e1 5.061157415650e1 6.336476563136e1 9.557962594050e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.031986459891e1 -8.677608201758e0 -8.586072836525e0 -7.320667700475e0 -5.714390875992e0 -3.198777187271e0 2.021239254832e0 1.298681945543e1 2.075709530901e1 3.099110514416e1 3.471519965223e1 3.763804444259e1 5.064672890593e1 6.481221430450e1 1.201449468326e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806539815e1 -9.000347337133e0 -8.523257239890e0 -7.265526590534e0 -5.827852828977e0 -1.662355637276e0 1.584782627519e0 9.574795085532e0 2.165697606328e1 3.140857982615e1 3.434850939131e1 3.781483821934e1 5.140137970983e1 6.378474005546e1 1.073157583696e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767254247680e0 -9.396869750915e0 -8.569708999438e0 -6.913397582040e0 -6.144306344232e0 -8.782545844812e-1 2.819059234236e0 5.815244587607e0 2.554068612422e1 3.051308443066e1 3.134380658603e1 4.006524243224e1 5.433615338493e1 6.070766841398e1 9.667573137533e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 9.802757615725e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767711286727e0 -9.396591763977e0 -8.569844334118e0 -6.913911495367e0 -6.143095363449e0 -8.787557888729e-1 2.821489531197e0 5.813206715798e0 2.554253592721e1 3.051366908626e1 3.134291250167e1 4.006638848657e1 5.433991554833e1 6.069700753806e1 9.667633594532e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 1.069391739897e0 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008856500736e1 -9.000402288962e0 -8.523946863129e0 -7.265213552796e0 -5.825776320367e0 -1.663318083443e0 1.587236573028e0 9.573134050036e0 2.165878453616e1 3.141121618913e1 3.434789185366e1 3.781790703772e1 5.139998153744e1 6.376904458797e1 1.073163231653e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006540315393e1 -9.105948094486e0 -8.424972920361e0 -7.291552515201e0 -6.006398068166e0 -3.160335465621e0 3.782065005593e0 9.977393055051e0 2.227045560640e1 3.152023136488e1 3.286966704019e1 3.870252347404e1 5.135229764731e1 6.139378413118e1 1.001979519226e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036547753291e1 -8.742790734971e0 -8.588755113538e0 -7.324392943893e0 -6.072418875989e0 -4.884053785422e0 5.219394501751e0 1.363763575338e1 2.232029427782e1 3.180630462945e1 3.363684533059e1 3.827528295152e1 5.067060398572e1 6.068544746628e1 9.389980049132e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066166001605e1 -8.858488753110e0 -8.458750562678e0 -7.271059159035e0 -6.494264374568e0 -5.659723322115e0 7.114612607724e0 1.418609485377e1 2.628940752980e1 2.859318627525e1 3.527284545777e1 4.145689682559e1 5.051230699249e1 5.798697630591e1 6.902104635288e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091979472555e1 -8.958630291658e0 -8.636282847578e0 -7.236545314925e0 -6.797837341800e0 -5.788456542016e0 9.374430125758e0 1.376188600023e1 2.122395560895e1 3.417876019318e1 3.759705857606e1 4.365927192666e1 4.910869440907e1 5.196386251283e1 6.063598890173e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106970055975e1 -8.967973508850e0 -8.927648472787e0 -7.097229072768e0 -6.946417347032e0 -5.788144822372e0 1.154617971430e1 1.346919345802e1 1.713610039270e1 3.917983381704e1 3.978730814989e1 4.489205294362e1 4.697128867109e1 4.911842216502e1 5.999033026388e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106959647246e1 -8.968419974897e0 -8.926877566367e0 -7.098319371450e0 -6.946030007341e0 -5.788052569075e0 1.154839689553e1 1.346427141581e1 1.713835451389e1 3.918516637077e1 3.977942179278e1 4.489027253979e1 4.697682837174e1 4.911827591981e1 5.999082379127e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952839998e1 -8.958186134371e0 -8.635566096428e0 -7.238288921812e0 -6.798533631922e0 -5.787993868739e0 9.374568527999e0 1.375939966781e1 2.122434637896e1 3.417859065303e1 3.759506605883e1 4.365840661657e1 4.911452668511e1 5.196488877237e1 6.063736036533e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066130998980e1 -8.857734235296e0 -8.457503205455e0 -7.273060728646e0 -6.496784408470e0 -5.658475540122e0 7.113786966698e0 1.418539296581e1 2.628819377514e1 2.859036167526e1 3.527284968475e1 4.145694588339e1 5.051685007176e1 5.799648940119e1 6.901763292059e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036507264318e1 -8.742431624297e0 -8.587331412374e0 -7.325792956175e0 -6.074949563803e0 -4.883531658368e0 5.218280296310e0 1.363802278702e1 2.231966606592e1 3.179996167905e1 3.363775500333e1 3.827530756150e1 5.067370681467e1 6.069931324838e1 9.389732298009e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006493290696e1 -9.105611956676e0 -8.424555645065e0 -7.291765742563e0 -6.008132329206e0 -3.160908988089e0 3.780868311324e0 9.978818671134e0 2.226880334845e1 3.151927978897e1 3.286818506188e1 3.870025835813e1 5.135175168070e1 6.141030553087e1 1.001973205397e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767220213425e0 -9.396531599517e0 -8.570083280611e0 -6.912962094534e0 -6.144658661553e0 -8.794794343259e-1 2.820036719250e0 5.815174325319e0 2.554070219949e1 3.051445724547e1 3.134101768884e1 4.006566727069e1 5.433163654409e1 6.071510863680e1 9.667619548472e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.555021659272e0 -9.554690937432e0 -8.717103854670e0 -6.461678366879e0 -6.460051510553e0 1.664456022235e0 1.665186280512e0 3.472094209927e0 2.887102234643e1 2.887209276722e1 3.057366881957e1 4.031162470858e1 5.824754483378e1 5.826581413458e1 9.482361160709e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 9.802757615725e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767711452430e0 -9.396591455758e0 -8.569844427930e0 -6.913911426844e0 -6.143095429695e0 -8.787558617449e-1 2.821489514844e0 5.813206717911e0 2.554253515103e1 3.051366831227e1 3.134291338587e1 4.006638924074e1 5.433991547796e1 6.069700753216e1 9.667633611057e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.806715094176e0 -9.458532120060e0 -8.348225632598e0 -7.151958861790e0 -6.266946658582e0 -3.147470709945e0 6.107423524926e0 6.888312650927e0 2.541723241153e1 2.862407463709e1 3.200623775009e1 4.051632885907e1 5.325471265200e1 5.812116503667e1 9.339604038044e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022727856203e1 -9.116845237212e0 -8.256575228365e0 -7.442218922670e0 -6.423466452333e0 -4.959689528472e0 7.786838748089e0 1.116091832274e1 2.368652673398e1 2.971108231652e1 3.327292768033e1 4.014768932650e1 5.147297107112e1 5.671975126769e1 8.770509584756e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081483762278e1 -8.727311156004e0 -8.428314467360e0 -7.500850877244e0 -6.660432013450e0 -6.071721002771e0 9.707635566902e0 1.496879664172e1 2.440677273298e1 3.209292068692e1 3.306518412842e1 4.068315652408e1 5.092477988298e1 5.574645810681e1 7.168273392210e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146375566325e1 -8.674657591609e0 -8.469192353964e0 -7.513598890706e0 -6.833842851579e0 -6.509260656537e0 1.200242149217e1 1.612888084795e1 2.855229113873e1 2.976125288707e1 3.455841117115e1 4.302427881646e1 5.034390819948e1 5.114890597855e1 5.491764997876e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195773164690e1 -8.705159062515e0 -8.657558762292e0 -7.320258215430e0 -6.889646544589e0 -6.673295941136e0 1.408571220912e1 1.677033494395e1 2.391787694376e1 3.469822848117e1 3.666968030647e1 4.147954622527e1 4.543352560255e1 4.882438167907e1 5.379501896535e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213844339584e1 -8.778216323090e0 -8.688279365979e0 -7.145291401138e0 -7.018119667612e0 -6.676777825950e0 1.467665441686e1 1.851025486711e1 2.043511305789e1 3.748910186686e1 3.778869632592e1 3.948330096989e1 4.616702407860e1 4.718718128452e1 5.350299182331e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195764439018e1 -8.705538085346e0 -8.656301417120e0 -7.321470298878e0 -6.890416214105e0 -6.672581152309e0 1.408854171556e1 1.676495679100e1 2.391849572977e1 3.470237782393e1 3.666873728071e1 4.147347209507e1 4.543240474317e1 4.883074702625e1 5.379616695532e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146359669607e1 -8.674345965687e0 -8.467473251306e0 -7.515526049124e0 -6.835960636410e0 -6.508014968293e0 1.200292505027e1 1.612681245065e1 2.855247250396e1 2.975893673883e1 3.455917562143e1 4.302350832335e1 5.034988153121e1 5.114595542535e1 5.492110794125e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081462753762e1 -8.726665258128e0 -8.426896208987e0 -7.502203009756e0 -6.662565958678e0 -6.071424789162e0 9.706984400616e0 1.496911227730e1 2.440604145735e1 3.209432367400e1 3.305968568824e1 4.068313949681e1 5.092648209066e1 5.575687070777e1 7.167994255995e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022702365513e1 -9.116262794027e0 -8.256213809782e0 -7.442307661458e0 -6.424638552316e0 -4.960777512701e0 7.785849834859e0 1.116223661474e1 2.368481916155e1 2.971311996525e1 3.326852041435e1 4.014714366424e1 5.146818572348e1 5.673611366087e1 8.770378895239e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.806514411768e0 -9.458046028725e0 -8.348732867963e0 -7.151115530155e0 -6.267800856514e0 -3.148912318871e0 6.106670063999e0 6.889715613768e0 2.541610421555e1 2.862507510901e1 3.200354988161e1 4.051642028961e1 5.324337159944e1 5.814062684541e1 9.339607371161e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767219531322e0 -9.396532399960e0 -8.570083231673e0 -6.912961903070e0 -6.144658758954e0 -8.794794712503e-1 2.820036734312e0 5.815174275771e0 2.554070020157e1 3.051445896587e1 3.134101877911e1 4.006566659865e1 5.433163657802e1 6.071510862824e1 9.667619533987e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767253731505e0 -9.396870242643e0 -8.569709044667e0 -6.913397321828e0 -6.144306508008e0 -8.782546943768e-1 2.819059233103e0 5.815244540097e0 2.554068335056e1 3.051308537600e1 3.134380856128e1 4.006524251422e1 5.433615334863e1 6.070766839943e1 9.667573139622e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006496378495e1 -9.106123348447e0 -8.423900103170e0 -7.292150503740e0 -6.008220591727e0 -3.159791577435e0 3.780240655151e0 9.979062367232e0 2.226846316400e1 3.151798842334e1 3.287159810681e1 3.869892983358e1 5.135367658524e1 6.140622043310e1 1.001967061042e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022708878656e1 -9.116848642006e0 -8.255523135900e0 -7.443099406533e0 -6.424437760500e0 -4.959503442238e0 7.785574156987e0 1.116226171822e1 2.368480624817e1 2.971248013249e1 3.327198924341e1 4.014519972823e1 5.147344914544e1 5.672685260963e1 8.770402885175e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086675924515e1 -8.786277694931e0 -8.147920728296e0 -7.731714448257e0 -6.873246020644e0 -6.070278873293e0 1.220537067900e1 1.339589544485e1 2.416781851301e1 3.015945184872e1 3.446371255612e1 4.169103583778e1 5.160372501718e1 5.348608859812e1 7.342930091203e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175668122237e1 -8.391710593618e0 -8.242533655460e0 -7.824848792376e0 -7.288679686695e0 -6.531400880208e0 1.506180422291e1 1.703334724874e1 2.532747287730e1 3.230421944364e1 3.391459611015e1 4.325948038898e1 5.125741007364e1 5.247234911614e1 5.595343177218e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253289075232e1 -8.389932465199e0 -8.377018551868e0 -7.606824163095e0 -7.376215564141e0 -6.769712430521e0 1.743936525299e1 1.908976170021e1 2.990003780809e1 3.099836888133e1 3.381351850584e1 4.232447122538e1 4.541948789302e1 5.052783916651e1 5.183497397103e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296295600600e1 -8.563614796121e0 -8.422003433087e0 -7.345218859252e0 -7.283182939375e0 -6.965900498497e0 1.792997578346e1 2.244926781367e1 2.676897008943e1 3.403388226181e1 3.469429901248e1 3.800025076230e1 4.597906745429e1 4.866400841792e1 5.167656552443e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296294045136e1 -8.563382483107e0 -8.421908975100e0 -7.345597035822e0 -7.283434426385e0 -6.965701183830e0 1.793117530287e1 2.244600911981e1 2.676948814134e1 3.403377485530e1 3.469997003063e1 3.799461669638e1 4.597821655708e1 4.866736555417e1 5.167619207450e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253284534095e1 -8.390384151121e0 -8.375227331271e0 -7.607942830902e0 -7.376924366261e0 -6.769533313998e0 1.744321912933e1 1.908422565231e1 2.990248247928e1 3.099595923550e1 3.381438360095e1 4.232246354285e1 4.541843697420e1 5.053466106128e1 5.183332574163e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175661110184e1 -8.390749464735e0 -8.241254852232e0 -7.826059890948e0 -7.290271995977e0 -6.531346190394e0 1.506143398312e1 1.703352603481e1 2.532750722469e1 3.230458425594e1 3.391137690039e1 4.325975900922e1 5.125788923300e1 5.247787538236e1 5.595200716835e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086667748233e1 -8.785500611663e0 -8.148151302838e0 -7.731130344268e0 -6.874457767001e0 -6.070881707495e0 1.220344509485e1 1.339824391932e1 2.416681164366e1 3.016075910181e1 3.445941385534e1 4.169290562789e1 5.159441999057e1 5.350068923180e1 7.342827545187e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022702343266e1 -9.116263140605e0 -8.256213879371e0 -7.442307379054e0 -6.424638596710e0 -4.960777572790e0 7.785849892425e0 1.116223655534e1 2.368481839573e1 2.971312092662e1 3.326852051716e1 4.014714316234e1 5.146818609563e1 5.673611357257e1 8.770378889019e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006493237155e1 -9.105612736475e0 -8.424555682837e0 -7.291765340906e0 -6.008132400205e0 -3.160909067608e0 3.780868346307e0 9.978818598493e0 2.226880207632e1 3.151928003906e1 3.286818740830e1 3.870025718550e1 5.135175187881e1 6.141030548637e1 1.001973202186e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.020438049230e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806489171e1 -9.000348080590e0 -8.523257230766e0 -7.265526206460e0 -5.827852911180e0 -1.662355775963e0 1.584782658336e0 9.574795009404e0 2.165697455809e1 3.140857949431e1 3.434851292344e1 3.781483692263e1 5.140137975680e1 6.378474002106e1 1.073157580214e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.031986424712e1 -8.677608233962e0 -8.586073407698e0 -7.320667271921e0 -5.714390921855e0 -3.198777410841e0 2.021239292449e0 1.298681942560e1 2.075709405628e1 3.099110511107e1 3.471519736679e1 3.763804838737e1 5.064672901622e1 6.481221426110e1 1.201449464813e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036507251561e1 -8.742431617146e0 -8.587331441079e0 -7.325792660717e0 -6.074949613898e0 -4.883532069130e0 5.218280278885e0 1.363802276029e1 2.231966432566e1 3.179996164125e1 3.363775334153e1 3.827531084330e1 5.067370740523e1 6.069931320361e1 9.389732294189e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081462763992e1 -8.726664703476e0 -8.426896233111e0 -7.502202651279e0 -6.662566013852e0 -6.071425538001e0 9.706984254787e0 1.496911225479e1 2.440603900087e1 3.209432293007e1 3.305968564583e1 4.068314261393e1 5.092648286584e1 5.575687066084e1 7.167994250622e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175661118424e1 -8.390748821186e0 -8.241254867078e0 -7.826059447095e0 -7.290272060766e0 -6.531347102094e0 1.506143375897e1 1.703352601613e1 2.532750422664e1 3.230458422967e1 3.391137685501e1 4.325976215970e1 5.125788951244e1 5.247787533251e1 5.595200755941e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.272953437859e1 -8.155230758090e0 -8.153758690928e0 -7.832374175431e0 -7.733378756892e0 -6.730425793311e0 1.992831664400e1 1.993378379523e1 2.689313313443e1 3.288841985258e1 3.342790741735e1 4.344299023197e1 4.644957860966e1 5.124849750083e1 5.125558044523e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339486662115e1 -8.346898487666e0 -8.241859516343e0 -7.763882259173e0 -7.442815214335e0 -6.891615631093e0 2.150973948691e1 2.369649418920e1 3.142248370444e1 3.171415868036e1 3.265137573740e1 3.957109972468e1 4.571960178123e1 5.009836559017e1 5.102888138724e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.362629148223e1 -8.454726475860e0 -8.273573446215e0 -7.731036345445e0 -7.213668357777e0 -7.023122937390e0 2.167041985580e1 2.725904818964e1 2.861348066001e1 3.241889475583e1 3.603859390889e1 3.605071846359e1 4.714165306270e1 4.850510432599e1 5.099956197679e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339486660897e1 -8.346898518950e0 -8.241859556426e0 -7.763882226721e0 -7.442816132921e0 -6.891614695221e0 2.150973966005e1 2.369649417442e1 3.142248374384e1 3.171416185030e1 3.265137561213e1 3.957109796305e1 4.571959984625e1 5.009836579070e1 5.102888136859e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.272953434449e1 -8.155230799086e0 -8.153758731551e0 -7.832375181544e0 -7.733378675040e0 -6.730424840590e0 1.992831664844e1 1.993378379962e1 2.689313655634e1 3.288841951842e1 3.342790746289e1 4.344298974198e1 4.644957548162e1 5.124849751166e1 5.125558045617e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175661109025e1 -8.390749483121e0 -8.241254911001e0 -7.826059779658e0 -7.290272013912e0 -6.531346224784e0 1.506143397252e1 1.703352601161e1 2.532750730936e1 3.230458405398e1 3.391137689582e1 4.325975898381e1 5.125788957129e1 5.247787530285e1 5.595200711894e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081462741392e1 -8.726665548170e0 -8.426896256099e0 -7.502202649039e0 -6.662565987785e0 -6.071424932494e0 9.706984428160e0 1.496911225171e1 2.440604120110e1 3.209432363790e1 3.305968567344e1 4.068313931685e1 5.092648272270e1 5.575687064131e1 7.167994256514e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036507227650e1 -8.742432346986e0 -8.587331452863e0 -7.325792409052e0 -6.074949599723e0 -4.883531819449e0 5.218280338995e0 1.363802275830e1 2.231966529033e1 3.179996165592e1 3.363775521340e1 3.827530809845e1 5.067370715669e1 6.069931319448e1 9.389732277457e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.031986417086e1 -8.677608237639e0 -8.586073685697e0 -7.320667126500e0 -5.714390917271e0 -3.198777334581e0 2.021239289555e0 1.298681942488e1 2.075709431015e1 3.099110511558e1 3.471519831317e1 3.763804733763e1 5.064672889271e1 6.481221425873e1 1.201449462898e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042605148313e1 -8.974340758633e0 -8.114154021959e0 -7.174180161821e0 -5.866122913872e0 -3.224612658036e0 1.402577571996e0 1.253945435978e1 2.404200874580e1 2.688702685042e1 3.530760061412e1 4.106565713281e1 5.063435254912e1 6.598044498570e1 1.136959989832e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043536215868e1 -8.941443014888e0 -8.239680426586e0 -7.172335673853e0 -6.066394462382e0 -4.295752105549e0 3.272576774361e0 1.296709459978e1 2.463388014527e1 2.735411075604e1 3.546255179173e1 4.095487689727e1 5.061028704155e1 6.336531416222e1 9.558344984132e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066129387765e1 -8.856954542327e0 -8.457912747812e0 -7.272553262399e0 -6.496190261683e0 -5.660817800695e0 7.114158872223e0 1.418531077740e1 2.628786732990e1 2.859060478288e1 3.527107312930e1 4.145862748088e1 5.051343470689e1 5.799896777635e1 6.902215472493e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146356153152e1 -8.673257172582e0 -8.467531520918e0 -7.515214914921e0 -6.836637443135e0 -6.509408780023e0 1.200250743613e1 1.612775154553e1 2.855071418574e1 2.976002153284e1 3.455650348591e1 4.302560029521e1 5.034408178049e1 5.114600988298e1 5.493078126638e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253280352960e1 -8.388693571902e0 -8.375005454778e0 -7.608299806106e0 -7.378817030099e0 -6.769739956191e0 1.743980270706e1 1.908845287841e1 2.990119487572e1 3.099515621481e1 3.381255883044e1 4.232219225186e1 4.541988564123e1 5.052755708401e1 5.184507350137e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339483966738e1 -8.345538454545e0 -8.241326154178e0 -7.765433735398e0 -7.443420230492e0 -6.891685648362e0 2.150917132730e1 2.369698729697e1 3.141987071894e1 3.171488478836e1 3.265079421519e1 3.957075166089e1 4.571978563718e1 5.009906709350e1 5.103290431368e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385415405530e1 -8.361666935964e0 -8.308794500562e0 -7.827449780849e0 -7.207715587519e0 -7.015853543396e0 2.515562265793e1 2.592575091415e1 2.926855774551e1 3.214739460077e1 3.542972418082e1 3.783603835299e1 4.743821104196e1 4.947131771025e1 5.023385677024e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385416245947e1 -8.363281093379e0 -8.307628789667e0 -7.827149034337e0 -7.207359096942e0 -7.015950295369e0 2.514870952951e1 2.593385389421e1 2.926926022195e1 3.214724768161e1 3.542686639812e1 3.783854919356e1 4.743937638487e1 4.946721381275e1 5.023462714043e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339486660913e1 -8.346898464568e0 -8.241859659400e0 -7.763882202405e0 -7.442816169823e0 -6.891614631026e0 2.150973975962e1 2.369649420491e1 3.142248374690e1 3.171416183448e1 3.265137544572e1 3.957109834849e1 4.571959963843e1 5.009836554944e1 5.102888144720e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253284534096e1 -8.390384148541e0 -8.375227333716e0 -7.607942830408e0 -7.376924366524e0 -6.769533314416e0 1.744321912936e1 1.908422565236e1 2.990248247736e1 3.099595923879e1 3.381438359956e1 4.232246354290e1 4.541843697408e1 5.053466106219e1 5.183332574089e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146359666148e1 -8.674346011181e0 -8.467473267653e0 -7.515525930892e0 -6.835960654989e0 -6.508015059048e0 1.200292502471e1 1.612681245257e1 2.855247312069e1 2.975893606022e1 3.455917509683e1 4.302350850618e1 5.034988228464e1 5.114595524781e1 5.492110787405e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066130979662e1 -8.857734340931e0 -8.457503534386e0 -7.273060254561e0 -6.496784580477e0 -5.658475646088e0 7.113786989943e0 1.418539293640e1 2.628819401032e1 2.859036085497e1 3.527284886996e1 4.145694685900e1 5.051685075836e1 5.799648932228e1 6.901763289077e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043538048317e1 -8.941789478326e0 -8.239344784533e0 -7.172576588050e0 -6.067002208158e0 -4.294015379796e0 3.271957251604e0 1.296732058156e1 2.463379170344e1 2.735413267694e1 3.546292020061e1 4.095456854146e1 5.061157432178e1 6.336476558843e1 9.557962566268e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035456065611e1 -9.177825221345e0 -7.862449416212e0 -7.022014879169e0 -6.447797749409e0 -3.189984788808e0 1.993244762459e0 1.107389360375e1 1.837082065476e1 3.178496453212e1 3.742932665372e1 4.405708426843e1 5.080550936334e1 6.454619023667e1 9.668239791107e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035454149203e1 -9.177678385069e0 -7.862456037249e0 -7.021893833875e0 -6.447582839009e0 -3.191740732617e0 1.994225696150e0 1.107381167280e1 1.837071653131e1 3.178523781607e1 3.742926354133e1 4.405708451470e1 5.080405171946e1 6.454554404394e1 9.668779207068e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041336240269e1 -9.108086077816e0 -8.242217992535e0 -7.089274534809e0 -6.664561320691e0 -4.608153359028e0 5.085802969048e0 1.199198835400e1 1.931735260863e1 3.275347807931e1 3.772913445571e1 4.368338662504e1 5.016233884982e1 5.934242266515e1 7.968079440008e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952412449e1 -8.957322833224e0 -8.634780999631e0 -7.238279997970e0 -6.798701311513e0 -5.791089231958e0 9.374649883339e0 1.375987053541e1 2.122384350034e1 3.417909870548e1 3.759237698222e1 4.365988218818e1 4.910781001350e1 5.196241351150e1 6.065428499664e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195757968347e1 -8.703997451518e0 -8.655630519188e0 -7.321841937207e0 -6.890726357950e0 -6.675397337033e0 1.408658596823e1 1.676728025705e1 2.391807946588e1 3.470020452420e1 3.666659085708e1 4.147275948498e1 4.543406492113e1 4.882380112794e1 5.381258002671e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296287613285e1 -8.561971873412e0 -8.420712592351e0 -7.347746054792e0 -7.284431499562e0 -6.966048051510e0 1.792946367580e1 2.244830878930e1 2.676787000772e1 3.403336335164e1 3.469547470831e1 3.799555993175e1 4.597869783238e1 4.866504513409e1 5.168801428132e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.362625880021e1 -8.453289752711e0 -8.272979161930e0 -7.732734771567e0 -7.214454821171e0 -7.023118790269e0 2.166970305283e1 2.726713163898e1 2.860257247696e1 3.241848756529e1 3.603916471621e1 3.605026803661e1 4.714019830926e1 4.850790031449e1 5.100503980074e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.385415405199e1 -8.361666908046e0 -8.308794567007e0 -7.827449760590e0 -7.207716542961e0 -7.015852575402e0 2.515562297299e1 2.592575084564e1 2.926855768258e1 3.214739458470e1 3.542972725630e1 3.783603561606e1 4.743821013877e1 4.947131798767e1 5.023385677690e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.362629147911e1 -8.454726437007e0 -8.273573588607e0 -7.731036304797e0 -7.213669279017e0 -7.023121953381e0 2.167042013416e1 2.725904822235e1 2.861348067560e1 3.241889511821e1 3.603859669688e1 3.605071601768e1 4.714165168497e1 4.850510446259e1 5.099956204575e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296294045187e1 -8.563382423734e0 -8.421909116850e0 -7.345597025560e0 -7.283434620763e0 -6.965700907987e0 1.793117548853e1 2.244600903904e1 2.676948808657e1 3.403377576977e1 3.469996891549e1 3.799461783543e1 4.597821580622e1 4.866736511032e1 5.167619218805e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195764439019e1 -8.705538083800e0 -8.656301418512e0 -7.321470297119e0 -6.890416216472e0 -6.672581151957e0 1.408854171567e1 1.676495679108e1 2.391849572934e1 3.470237782921e1 3.666873727545e1 4.147347209520e1 4.543240474311e1 4.883074702704e1 5.379616695497e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952834145e1 -8.958186200699e0 -8.635566064515e0 -7.238288812399e0 -6.798533773346e0 -5.787993886901e0 9.374568506642e0 1.375939969758e1 2.122434638137e1 3.417859032445e1 3.759506510370e1 4.365840727806e1 4.911452768935e1 5.196488853235e1 6.063736032365e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041337451854e1 -9.108550407174e0 -8.242577698045e0 -7.089543738003e0 -6.664705008397e0 -4.605086740444e0 5.084806869186e0 1.199209239439e1 1.931768823809e1 3.275274137387e1 3.773000574109e1 4.368294950884e1 5.016694156777e1 5.934256227146e1 7.966917311334e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806448049e1 -9.262380501175e0 -8.174865113414e0 -6.951421346747e0 -6.815497806399e0 -3.140202228534e0 3.585438878893e0 9.865907645200e0 1.319973411972e1 3.778966088786e1 4.031301734607e1 4.599264364793e1 5.090085226657e1 6.163869957754e1 1.050408048058e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010624148811e1 -9.296949872284e0 -7.878041726729e0 -6.918606568153e0 -6.785267088471e0 -1.956063334067e0 1.578041547043e0 9.446785766105e0 1.273462496552e1 3.732981339668e1 4.008409895305e1 4.634055981942e1 5.223079945833e1 6.391277581989e1 1.101345974100e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008802797575e1 -9.262076497997e0 -8.174267254728e0 -6.951409148779e0 -6.815769517723e0 -3.143384481932e0 3.587159337423e0 9.866007246787e0 1.319960999340e1 3.779025036391e1 4.031285328645e1 4.599280570804e1 5.089397666382e1 6.164407444983e1 1.050496665666e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024086142663e1 -9.155411810651e0 -8.780353785466e0 -7.031440192978e0 -6.869481728938e0 -4.637295965238e0 7.380614870531e0 1.109490238801e1 1.466033229255e1 3.889883216634e1 4.052038519546e1 4.520604340674e1 4.829554079910e1 5.675597121471e1 8.252568797424e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106956868123e1 -8.966988878998e0 -8.925983976468e0 -7.098729033065e0 -6.946723299508e0 -5.791395496665e0 1.154721460168e1 1.346537349008e1 1.713868211348e1 3.918248418808e1 3.977823870345e1 4.489039450220e1 4.697033408322e1 4.911711515968e1 6.001131698391e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213833860736e1 -8.776682407662e0 -8.687079313265e0 -7.146368783385e0 -7.018445680671e0 -6.679719503065e0 1.467592065623e1 1.850679001964e1 2.043897017524e1 3.748975997467e1 3.778335655709e1 3.948068267149e1 4.616554860401e1 4.718568543305e1 5.352125422129e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296287612361e1 -8.561971892293e0 -8.420712649698e0 -7.347746089929e0 -7.284432195976e0 -6.966047253646e0 1.792946381786e1 2.244830886332e1 2.676786992188e1 3.403336322533e1 3.469547725131e1 3.799555836632e1 4.597869618222e1 4.866504571917e1 5.168801422815e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339483965519e1 -8.345538485989e0 -8.241326194063e0 -7.765433702788e0 -7.443421148841e0 -6.891684712923e0 2.150917150039e1 2.369698728229e1 3.141987075827e1 3.171488795971e1 3.265079408884e1 3.957074989887e1 4.571978370356e1 5.009906729433e1 5.103290429435e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.339486660913e1 -8.346898464569e0 -8.241859659399e0 -7.763882202406e0 -7.442816169824e0 -6.891614631025e0 2.150973975964e1 2.369649420498e1 3.142248374693e1 3.171416183443e1 3.265137544573e1 3.957109834825e1 4.571959963983e1 5.009836554976e1 5.102888144656e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296295599727e1 -8.563614755667e0 -8.422003632061e0 -7.345218886366e0 -7.283183830058e0 -6.965899422745e0 1.792997611116e1 2.244926780692e1 2.676896994916e1 3.403388305090e1 3.469430043904e1 3.800025033588e1 4.597906505318e1 4.866400855960e1 5.167656558458e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213844339459e1 -8.778216240155e0 -8.688279545926e0 -7.145292243839e0 -7.018118723746e0 -6.676777816833e0 1.467665462221e1 1.851025463244e1 2.043511311805e1 3.748910408651e1 3.778869518442e1 3.948330146728e1 4.616702156998e1 4.718718199978e1 5.350299189116e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106959647248e1 -8.968419972345e0 -8.926877568765e0 -7.098319364819e0 -6.946030014166e0 -5.788052569158e0 1.154839689570e1 1.346427141584e1 1.713835451376e1 3.918516639208e1 3.977942177027e1 4.489027253997e1 4.697682837401e1 4.911827591881e1 5.999082379131e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024078545887e1 -9.156070967819e0 -8.781521271652e0 -7.031297477418e0 -6.868936932993e0 -4.633699225270e0 7.379870212021e0 1.109440986844e1 1.466061843409e1 3.889761488915e1 4.052230993819e1 4.520577908019e1 4.830452701772e1 5.674918280852e1 8.251271520325e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633233761283e0 -9.270798618216e0 -8.880818778251e0 -6.912980269047e0 -6.874256654951e0 -3.111217279471e0 5.913695178279e0 8.706464200340e0 9.991502399718e0 4.326631205602e1 4.347037465310e1 4.629780531058e1 4.859751416507e1 5.985520896404e1 1.163178312648e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711086862300e0 -9.323007977066e0 -8.373062141315e0 -6.874844528071e0 -6.843431795395e0 -1.255911663299e0 2.603645093888e0 8.179361863464e0 8.880290779593e0 4.293565107501e1 4.321994834033e1 4.723561186202e1 5.242058661745e1 6.152510800770e1 1.255538379107e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711009846585e0 -9.322840199733e0 -8.372812284616e0 -6.874843666381e0 -6.843728423449e0 -1.258610947205e0 2.605707998867e0 8.179594580278e0 8.880228693083e0 4.293595046222e1 4.322001586532e1 4.723577086736e1 5.241330353558e1 6.153296144717e1 1.255576346505e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633217874102e0 -9.270313236143e0 -8.879913912405e0 -6.913008650246e0 -6.875096202960e0 -3.114903011477e0 5.915151757031e0 8.707116492261e0 9.991548730592e0 4.326770097595e1 4.346986784293e1 4.629765614302e1 4.858543182503e1 5.986883453508e1 1.163274583979e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006768676377e1 -9.155465767904e0 -9.155465599518e0 -6.953245910112e0 -6.953244720980e0 -4.628045196565e0 9.800490787743e0 9.800490901404e0 1.259617245024e1 4.250854460062e1 4.250854700052e1 4.571583017436e1 4.571583286262e1 5.579801998772e1 8.541259985824e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106956866431e1 -8.966989072354e0 -8.925983896040e0 -7.098729849744e0 -6.946722376926e0 -5.791395488884e0 1.154721476126e1 1.346537337425e1 1.713868208789e1 3.918248687002e1 3.977823806700e1 4.489039186873e1 4.697033502453e1 4.911711466396e1 6.001131699422e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195757965467e1 -8.703997703077e0 -8.655630481653e0 -7.321842702468e0 -6.890725526492e0 -6.675397203285e0 1.408658625348e1 1.676728019792e1 2.391807934490e1 3.470020734540e1 3.666659039786e1 4.147275945298e1 4.543406181053e1 4.882380166573e1 5.381257992495e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253280349648e1 -8.388693825756e0 -8.375005450153e0 -7.608300587829e0 -7.378816991370e0 -6.769739003189e0 1.743980305486e1 1.908845286607e1 2.990119784801e1 3.099515614490e1 3.381255852717e1 4.232219219093e1 4.541988231244e1 5.052755726814e1 5.184507339348e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.272953434449e1 -8.155230799087e0 -8.153758731552e0 -7.832375181544e0 -7.733378675041e0 -6.730424840589e0 1.992831664852e1 1.993378379970e1 2.689313655634e1 3.288841951830e1 3.342790746289e1 4.344298974453e1 4.644957548048e1 5.124849751105e1 5.125558045556e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253289071921e1 -8.389932719152e0 -8.377018546921e0 -7.606824944799e0 -7.376215525794e0 -6.769711477434e0 1.743936560081e1 1.908976168791e1 2.990004078044e1 3.099836881109e1 3.381351820289e1 4.232447116432e1 4.541948456488e1 5.052783935067e1 5.183497386271e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195773161815e1 -8.705159313779e0 -8.657558724584e0 -7.320258981130e0 -6.889645708167e0 -6.673295812475e0 1.408571249448e1 1.677033488492e1 2.391787682254e1 3.469823130235e1 3.666967984750e1 4.147954619327e1 4.543352249246e1 4.882438221695e1 5.379501886320e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106970054290e1 -8.967973701902e0 -8.927648392323e0 -7.097229889931e0 -6.946416424002e0 -5.788144814999e0 1.154617987405e1 1.346919334217e1 1.713610036710e1 3.917983649877e1 3.978730751194e1 4.489205031144e1 4.697128961267e1 4.911842166962e1 5.999033027434e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006757055766e1 -9.156973731384e0 -9.156225330682e0 -6.953114909059e0 -6.951993348183e0 -4.624379260788e0 9.799548566048e0 9.801845651346e0 1.259476016646e1 4.250540352883e1 4.251600048139e1 4.571730227927e1 4.572098073678e1 5.578685647153e1 8.540030717407e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633599118845e0 -9.271512051697e0 -8.879979928670e0 -6.911881630731e0 -6.874770809163e0 -3.111444003726e0 5.915408167873e0 8.707755498141e0 9.988623317939e0 4.327661350158e1 4.346861832096e1 4.629761478070e1 4.858917217610e1 5.985207016443e1 1.163186430776e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.437789983630e0 -9.219961663916e0 -8.826422868140e0 -6.864529079081e0 -6.837844464852e0 -1.135387643155e0 4.599762335429e0 5.571649414163e0 8.309642396114e0 4.538460017535e1 4.630555814754e1 4.687924429492e1 5.110922719350e1 6.028534412588e1 1.324590334487e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.456168669340e0 -9.179839981194e0 -8.736109328385e0 -6.842092536821e0 -6.828554882229e0 8.124711166836e-1 2.311431491071e0 4.930030318724e0 7.924735229484e0 4.575188929606e1 4.709236983704e1 4.725540495635e1 5.420447410188e1 5.860024019946e1 1.359387299260e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.437573554975e0 -9.218882320898e0 -8.826916975203e0 -6.864942300015e0 -6.838170903971e0 -1.138625994005e0 4.599790406292e0 5.574011777624e0 8.310038245214e0 4.538483302281e1 4.630207890531e1 4.688067805555e1 5.109779591864e1 6.030267378143e1 1.324640174587e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633217979680e0 -9.270313167768e0 -8.879913946105e0 -6.913009514010e0 -6.875095238497e0 -3.114903017417e0 5.915151772441e0 8.707116440422e0 9.991548765489e0 4.326770086881e1 4.346987156901e1 4.629765231162e1 4.858543189910e1 5.986883457441e1 1.163274583948e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024086145437e1 -9.155411850727e0 -8.780353873013e0 -7.031441044951e0 -6.869480683506e0 -4.637295957873e0 7.380614917814e0 1.109490235163e1 1.466033228874e1 3.889883361692e1 4.052038762234e1 4.520603953020e1 4.829554056624e1 5.675597122131e1 8.252568798610e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952409697e1 -8.957322998937e0 -8.634781107977e0 -7.238280704983e0 -6.798700385457e0 -5.791089158327e0 9.374650002981e0 1.375987054414e1 2.122384341819e1 3.417910107010e1 3.759237812235e1 4.365987909274e1 4.910780933768e1 5.196241339208e1 6.065428503161e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146356146985e1 -8.673257501166e0 -8.467531625325e0 -7.515215502884e0 -6.836637154048e0 -6.509408090316e0 1.200250766415e1 1.612775158822e1 2.855071498096e1 2.976002333664e1 3.455650395725e1 4.302559736815e1 5.034408122044e1 5.114600961170e1 5.493078128628e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175661110184e1 -8.390749464734e0 -8.241254852236e0 -7.826059890946e0 -7.290271995979e0 -6.531346190394e0 1.506143398312e1 1.703352603493e1 2.532750722463e1 3.230458425577e1 3.391137690042e1 4.325975901122e1 5.125788923375e1 5.247787537996e1 5.595200716724e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175668112840e1 -8.391711254438e0 -8.242533699243e0 -7.824849126114e0 -7.288679639975e0 -6.531400002843e0 1.506180443650e1 1.703334724439e1 2.532747596014e1 3.230421926776e1 3.391459615100e1 4.325947721507e1 5.125741013303e1 5.247234908391e1 5.595343133084e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146375556707e1 -8.674657964984e0 -8.469192474597e0 -7.513599361277e0 -6.833842577887e0 -6.509260060723e0 1.200242169477e1 1.612888089248e1 2.855229255640e1 2.976125400647e1 3.455841111856e1 4.302427607180e1 5.034390839065e1 5.114890553110e1 5.491764993218e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091979463961e1 -8.958630523375e0 -8.636282923887e0 -7.236545913957e0 -6.797836554895e0 -5.788456487774e0 9.374430224235e0 1.376188603863e1 2.122395552931e1 3.417876222973e1 3.759705876130e1 4.365926949120e1 4.910869473721e1 5.196386215403e1 6.063598889544e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024118084038e1 -9.156607445147e0 -8.781299847461e0 -7.029835867631e0 -6.869013575537e0 -4.634017183720e0 7.380541362348e0 1.109686727006e1 1.465805468991e1 3.890239253956e1 4.052451148537e1 4.520568034805e1 4.829688266066e1 5.674492155016e1 8.251407471902e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008856182170e1 -9.263270399266e0 -8.174486924179e0 -6.949815498465e0 -6.815048363614e0 -3.140884343234e0 3.587727480914e0 9.866822338753e0 1.319725501908e1 3.779538996844e1 4.031530842403e1 4.599210903689e1 5.089470348468e1 6.162841351759e1 1.050424165143e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711498505148e0 -9.323892064602e0 -8.372250575065e0 -6.873638239479e0 -6.843604907699e0 -1.256457819763e0 2.606788708098e0 8.180298272464e0 8.876566638061e0 4.294531824380e1 4.321921123721e1 4.723542388190e1 5.241545519925e1 6.151504141902e1 1.255540477565e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.456244215131e0 -9.180946027223e0 -8.735210970860e0 -6.841359875051e0 -6.828857848125e0 8.127723858417e-1 2.314363647613e0 4.927071473062e0 7.924431309238e0 4.575293779789e1 4.709576608869e1 4.725540651880e1 5.421098257647e1 5.858625677950e1 1.359376453889e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.456168699338e0 -9.179840038160e0 -8.736109282093e0 -6.842093449274e0 -6.828553908884e0 8.124710934148e-1 2.311431515038e0 4.930030305407e0 7.924735234188e0 4.575189294845e1 4.709237010655e1 4.725540097808e1 5.420447407920e1 5.860024021927e1 1.359387299243e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711009998820e0 -9.322840165495e0 -8.372812271460e0 -6.874844517076e0 -6.843727414051e0 -1.258610964940e0 2.605707996346e0 8.179594540251e0 8.880228733351e0 4.293595045550e1 4.322001969502e1 4.723576687468e1 5.241330350785e1 6.153296148558e1 1.255576346458e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008802812805e1 -9.262076496048e0 -8.174267235640e0 -6.951410012393e0 -6.815768453757e0 -3.143384483437e0 3.587159326601e0 9.866007244803e0 1.319961000023e1 3.779025141266e1 4.031285620093e1 4.599280165054e1 5.089397642828e1 6.164407452090e1 1.050496665624e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041336251290e1 -9.108086125628e0 -8.242217958677e0 -7.089275222310e0 -6.664560495862e0 -4.608153292788e0 5.085802970211e0 1.199198839649e1 1.931735257494e1 3.275347975306e1 3.772913677005e1 4.368338291606e1 5.016233811743e1 5.934242272800e1 7.968079445609e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066129389800e1 -8.856954679473e0 -8.457912829681e0 -7.272553754089e0 -6.496189772645e0 -5.660817499017e0 7.114158927916e0 1.418531084998e1 2.628786776407e1 2.859060634902e1 3.527107482121e1 4.145862409572e1 5.051343381161e1 5.799896782862e1 6.902215476321e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081462753762e1 -8.726665258127e0 -8.426896208992e0 -7.502203009753e0 -6.662565958682e0 -6.071424789161e0 9.706984400606e0 1.496911227740e1 2.440604145709e1 3.209432367468e1 3.305968568828e1 4.068313949608e1 5.092648209146e1 5.575687070483e1 7.167994256257e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086675904125e1 -8.786278480270e0 -8.147920706794e0 -7.731714698136e0 -6.873245907728e0 -6.070278189391e0 1.220537095193e1 1.339589544522e1 2.416782146493e1 3.015945177631e1 3.446371248396e1 4.169103240641e1 5.160372511740e1 5.348608842378e1 7.342930098407e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081483739693e1 -8.727311999865e0 -8.428314490297e0 -7.500850875401e0 -6.660431987430e0 -6.071720397643e0 9.707635740401e0 1.496879663878e1 2.440677493352e1 3.209292139468e1 3.306518415606e1 4.068315322644e1 5.092477974069e1 5.574645808418e1 7.168273398430e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066165984343e1 -8.858488995234e0 -8.458750973057e0 -7.271059177083e0 -6.494264055862e0 -5.659723128635e0 7.114612686855e0 1.418609489691e1 2.628940820135e1 2.859318701952e1 3.527284633537e1 4.145689441471e1 5.051230678377e1 5.798697627934e1 6.902104636235e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041382570175e1 -9.109469587974e0 -8.243050505948e0 -7.087589740261e0 -6.663275803068e0 -4.605926702286e0 5.086253203860e0 1.199293706099e1 1.931752613771e1 3.275521225835e1 3.773227731090e1 4.368243184723e1 5.016262685930e1 5.933214993572e1 7.967129205430e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -9.802757615725e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035505529342e1 -9.178999773825e0 -7.862990203835e0 -7.020218987283e0 -6.445612857426e0 -3.191110165508e0 1.995609198897e0 1.107409869818e1 1.837077449305e1 3.178789364500e1 3.743164246853e1 4.405629963178e1 5.080299712710e1 6.453060922110e1 9.668303488795e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010676792594e1 -9.298026068257e0 -7.877907683178e0 -6.917041561527e0 -6.784379613597e0 -1.956067347375e0 1.580389386034e0 9.447201973057e0 1.273222127625e1 3.733538075574e1 4.008630040676e1 4.633996724854e1 5.222845056551e1 6.389719305068e1 1.101333361168e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711498505200e0 -9.323892064537e0 -8.372250575083e0 -6.873638248590e0 -6.843604898597e0 -1.256457819633e0 2.606788708000e0 8.180298272461e0 8.876566638048e0 4.294531824312e1 4.321921123765e1 4.723542388215e1 5.241545519929e1 6.151504141899e1 1.255540477563e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.437789957290e0 -9.219961772307e0 -8.826422830114e0 -6.864530002296e0 -6.837843480206e0 -1.135387647485e0 4.599762366172e0 5.571649375937e0 8.309642402871e0 4.538460402259e1 4.630555779294e1 4.687924068486e1 5.110922724985e1 6.028534413293e1 1.324590334413e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711087014550e0 -9.323007942872e0 -8.373062128086e0 -6.874845378843e0 -6.843430785904e0 -1.255911681034e0 2.603645091383e0 8.179361823390e0 8.880290819872e0 4.293565106820e1 4.321995216996e1 4.723560786940e1 5.242058658972e1 6.152510804621e1 1.255538379059e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010624168499e1 -9.296949855438e0 -7.878041593216e0 -6.918607326638e0 -6.785266201436e0 -1.956063344938e0 1.578041523549e0 9.446785766774e0 1.273462497775e1 3.732981427390e1 4.008410174871e1 4.634055585559e1 5.223079946910e1 6.391277585330e1 1.101345973928e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035454171668e1 -9.177678388212e0 -7.862455627287e0 -7.021894465262e0 -6.447582339293e0 -3.191740684733e0 1.994225655581e0 1.107381170626e1 1.837071653111e1 3.178523909709e1 3.742926598993e1 4.405708054055e1 5.080405155355e1 6.454554408472e1 9.668779215549e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043536238044e1 -8.941443022641e0 -8.239680096201e0 -7.172336098302e0 -6.066394245439e0 -4.295751903819e0 3.272576744107e0 1.296709466854e1 2.463388054611e1 2.735411187405e1 3.546255399806e1 4.095487304114e1 5.061028665588e1 6.336531420525e1 9.558345001160e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036507264318e1 -8.742431624297e0 -8.587331412377e0 -7.325792956172e0 -6.074949563806e0 -4.883531658365e0 5.218280296301e0 1.363802278709e1 2.231966606570e1 3.179996167907e1 3.363775500505e1 3.827530755961e1 5.067370681435e1 6.069931324570e1 9.389732298625e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022708861377e1 -9.116849168287e0 -8.255523033408e0 -7.443099710652e0 -6.424437581136e0 -4.959503050975e0 7.785574251259e0 1.116226180233e1 2.368480888668e1 2.971247997636e1 3.327198882209e1 4.014519742595e1 5.147344890015e1 5.672685264094e1 8.770402879888e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022727816698e1 -9.116846109494e0 -8.256575196385e0 -7.442218943414e0 -6.423466317694e0 -4.959689197441e0 7.786838900122e0 1.116091834736e1 2.368652860724e1 2.971108312052e1 3.327292736196e1 4.014768652252e1 5.147297119912e1 5.671975120993e1 8.770509573383e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036547729404e1 -8.742791464194e0 -8.588755125291e0 -7.324392692077e0 -6.072418861830e0 -4.884053536438e0 5.219394562069e0 1.363763575147e1 2.232029524239e1 3.180630464413e1 3.363684720375e1 3.827528020471e1 5.067060373728e1 6.068544745436e1 9.389980033377e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043584504767e1 -8.943001425285e0 -8.240057681449e0 -7.170777128985e0 -6.063919866037e0 -4.295546740788e0 3.273656292166e0 1.296755033214e1 2.463485674048e1 2.735771715191e1 3.546412014801e1 4.095371556340e1 5.060795348345e1 6.335024833291e1 9.558208206930e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.069391739897e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042654307610e1 -8.975764786069e0 -8.114639872241e0 -7.172447810069e0 -5.863154646605e0 -3.226016412648e0 1.404728868482e0 1.253966336792e1 2.404286217417e1 2.689088526619e1 3.530900542694e1 4.106489109567e1 5.063127048530e1 6.596421790357e1 1.136954618267e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -9.802757615725e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035505532311e1 -9.178999749091e0 -7.862990053090e0 -7.020219044189e0 -6.445612938524e0 -3.191110189836e0 1.995609202920e0 1.107409868807e1 1.837077450472e1 3.178789341069e1 3.743164222180e1 4.405630003839e1 5.080299726382e1 6.453060921334e1 9.668303488764e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008856185466e1 -9.263270355268e0 -8.174486859172e0 -6.949815106935e0 -6.815048835017e0 -3.140884353140e0 3.587727477640e0 9.866822330769e0 1.319725503256e1 3.779538965812e1 4.031530805520e1 4.599210967425e1 5.089470358343e1 6.162841352051e1 1.050424165072e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633599118927e0 -9.271512051551e0 -8.879979928783e0 -6.911881650573e0 -6.874770789302e0 -3.111444003539e0 5.915408167724e0 8.707755498164e0 9.988623317913e0 4.327661348469e1 4.346861833768e1 4.629761478121e1 4.858917217578e1 5.985207016441e1 1.163186430772e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633233866965e0 -9.270798549977e0 -8.880818811712e0 -6.912981133023e0 -6.874255690220e0 -3.111217285350e0 5.913695193674e0 8.706464148375e0 9.991502434658e0 4.326631194785e1 4.347037837979e1 4.629780148016e1 4.859751423837e1 5.985520900359e1 1.163178312614e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806466581e1 -9.262380455273e0 -8.174865029234e0 -6.951421819751e0 -6.815497212666e0 -3.140202240293e0 3.585438864985e0 9.865907635182e0 1.319973414004e1 3.778966162746e1 4.031301989106e1 4.599264022666e1 5.090085213014e1 6.163869965172e1 1.050408047948e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035456091049e1 -9.177825199755e0 -7.862448855182e0 -7.022015567560e0 -6.447797330722e0 -3.189984765651e0 1.993244726095e0 1.107389362708e1 1.837082066624e1 3.178496557912e1 3.742932885554e1 4.405708070034e1 5.080550933433e1 6.454619026969e1 9.668239799631e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042605180018e1 -8.974340740119e0 -8.114153292978e0 -7.174180755017e0 -5.866122780188e0 -3.224612526941e0 1.402577521196e0 1.253945441452e1 2.404200903161e1 2.688702778116e1 3.530760263552e1 4.106565335521e1 5.063435254996e1 6.598044502505e1 1.136959993822e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.031986459892e1 -8.677608201759e0 -8.586072836525e0 -7.320667700474e0 -5.714390875994e0 -3.198777187268e0 2.021239254827e0 1.298681945546e1 2.075709530894e1 3.099110514417e1 3.471519965319e1 3.763804444171e1 5.064672890550e1 6.481221430334e1 1.201449468366e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006496406049e1 -9.106123149905e0 -8.423899994283e0 -7.292150825051e0 -6.008220476141e0 -3.159791354627e0 3.780240657031e0 9.979062454030e0 2.226846506060e1 3.151798900582e1 3.287159639736e1 3.869892888152e1 5.135367640150e1 6.140622047705e1 1.001967060985e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.806714620342e0 -9.458532875930e0 -8.348225484817e0 -7.151959077501e0 -6.266946478878e0 -3.147470522279e0 6.107423655997e0 6.888312625095e0 2.541723543711e1 2.862407357498e1 3.200623713885e1 4.051632720723e1 5.325471277745e1 5.812116504720e1 9.339604012510e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006540289437e1 -9.105948674666e0 -8.424972850480e0 -7.291552434007e0 -6.006398023856e0 -3.160335322581e0 3.782065042672e0 9.977393069149e0 2.227045623097e1 3.152023220228e1 3.286966767176e1 3.870252134954e1 5.135229766219e1 6.139378413051e1 1.001979515987e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032034872047e1 -8.679016730574e0 -8.586343013348e0 -7.319256031696e0 -5.711618830639e0 -3.199910417431e0 2.023135122543e0 1.298641874415e1 2.075742690308e1 3.099763675088e1 3.471576240173e1 3.763742819709e1 5.064266516413e1 6.479633325917e1 1.201457129025e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006361194907e1 -9.394969607673e0 -8.027624576236e0 -7.342290859657e0 -5.773842690108e0 -1.629255672428e0 2.485036499372e0 1.020271617296e1 1.718576739956e1 2.993201954714e1 3.654374227236e1 3.689150224463e1 5.091155135222e1 6.243949780231e1 7.871389599677e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006551068577e1 -9.106315012421e0 -8.425943253619e0 -7.290122109512e0 -6.005233467283e0 -3.161190462632e0 3.781675913733e0 9.979301410574e0 2.226817100292e1 3.152292504889e1 3.287175298160e1 3.870115956932e1 5.134759272761e1 6.139388451748e1 1.001977150119e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008340739695e1 -9.137996535428e0 -8.488676226567e0 -7.216078970872e0 -6.423532000488e0 -4.054856154902e0 5.566423333824e0 9.127586442413e0 2.559843004210e1 2.962685888828e1 3.589487807505e1 4.141684661053e1 5.142445663649e1 5.833301088213e1 8.878803282699e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017301655770e1 -9.157926986605e0 -8.619400301980e0 -7.151386273209e0 -6.702771204566e0 -4.475634792662e0 7.195765145211e0 9.140025894304e0 1.908998356184e1 3.556116952370e1 3.838133647206e1 4.383550286643e1 5.019939821367e1 5.600068333513e1 7.928375177283e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024118089718e1 -9.156607316875e0 -8.781299827443e0 -7.029835215629e0 -6.869014327396e0 -4.634017192818e0 7.380541331933e0 1.109686726357e1 1.465805472106e1 3.890239143348e1 4.052451096742e1 4.520568238838e1 4.829688221618e1 5.674492168548e1 8.251407470969e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024095869319e1 -9.156832158890e0 -8.780792877397e0 -7.030735176422e0 -6.869112823967e0 -4.633678609427e0 7.381284134173e0 1.109369013156e1 1.466000012548e1 3.890512884064e1 4.051934762711e1 4.520607776536e1 4.830063825539e1 5.674535761029e1 8.251357007515e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017249535549e1 -9.157914168451e0 -8.618398261813e0 -7.153053218823e0 -6.704092155556e0 -4.474644710102e0 7.197447238765e0 9.136057734751e0 1.909015221906e1 3.556421345961e1 3.837640642337e1 4.383399577165e1 5.020844227530e1 5.600177812337e1 7.928263702032e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008281379773e1 -9.137684891351e0 -8.487075333230e0 -7.218302181041e0 -6.425993135268e0 -4.053406392133e0 5.565658932364e0 9.126501255808e0 2.559514221544e1 2.962697066232e1 3.589585265174e1 4.141403526660e1 5.143208832239e1 5.833999496749e1 8.878577978384e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006496406049e1 -9.106123149904e0 -8.423899994283e0 -7.292150825052e0 -6.008220476139e0 -3.159791354629e0 3.780240657040e0 9.979062454010e0 2.226846506068e1 3.151798900470e1 3.287159639695e1 3.869892888407e1 5.135367640194e1 6.140622047874e1 1.001967060914e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006314404652e1 -9.394781095162e0 -8.025966597995e0 -7.343425118475e0 -5.776605533184e0 -1.628218971889e0 2.483298808863e0 1.020309116905e1 1.718560634891e1 2.993307726416e1 3.654336133400e1 3.688369216199e1 5.091453308803e1 6.245458742475e1 7.871441580419e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001623249137e1 -9.704065551460e0 -7.913344251386e0 -6.945761956234e0 -5.864484088125e0 1.730131566276e-1 2.033740805753e0 7.257238358354e0 1.877869095429e1 2.753425221405e1 3.452557334677e1 3.919880146945e1 5.303680200010e1 6.146427266782e1 6.544153767555e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 9.802757615725e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921724480994e0 -9.892129863608e0 -7.949571975262e0 -6.521649489260e0 -6.100092814379e0 6.569334445858e-1 3.670925855181e0 4.270011598072e0 2.273811438017e1 2.420660667116e1 3.334359843037e1 3.929016403475e1 5.667032384207e1 5.911761320187e1 6.188645177569e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.069391739897e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001656808663e1 -9.704111371122e0 -7.913466591137e0 -6.946807971719e0 -5.862143089158e0 1.715954665612e-1 2.036399969496e0 7.255976103698e0 1.877986124407e1 2.753344961678e1 3.452554772977e1 3.920149228720e1 5.304271634387e1 6.144935183946e1 6.544053015288e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952878294436e0 -9.708103576736e0 -7.868089392849e0 -7.024972621721e0 -6.027912362097e0 -1.829622752692e0 4.667801447419e0 7.634280594061e0 1.926849467849e1 2.449496207577e1 3.601160540877e1 3.980167353029e1 5.321213803626e1 5.912205896811e1 6.799280722826e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003966180444e1 -9.382821693056e0 -7.964973236880e0 -7.397136873979e0 -6.149310942286e0 -3.747917850906e0 5.966686918982e0 1.090339915840e1 1.848932083928e1 2.632992968534e1 3.753251641376e1 3.806612873173e1 5.125634038818e1 5.832881357857e1 8.004821599976e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022745080313e1 -9.117133778621e0 -8.257649443330e0 -7.440916298220e0 -6.421842176627e0 -4.960750942522e0 7.786047546666e0 1.116321935362e1 2.368434974622e1 2.971119890631e1 3.327732231355e1 4.014742456928e1 5.146648724170e1 5.672001902776e1 8.770580443325e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057717999863e1 -9.004142097918e0 -8.440814531640e0 -7.426338522119e0 -6.628352298300e0 -5.555041534776e0 9.386201791303e0 1.142514382691e1 2.715067607859e1 2.964904531012e1 3.483481616089e1 4.245494112709e1 5.074385100428e1 5.514640387024e1 6.933713987366e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091979472555e1 -8.958630291659e0 -8.636282847578e0 -7.236545314925e0 -6.797837341801e0 -5.788456542015e0 9.374430125739e0 1.376188600029e1 2.122395560894e1 3.417876019272e1 3.759705857655e1 4.365927192646e1 4.910869440920e1 5.196386251337e1 6.063598890155e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105619349661e1 -9.011776452047e0 -8.634619049856e0 -7.089242153122e0 -6.942880396737e0 -5.835251668096e0 9.224299028110e0 1.620340038760e1 1.763179141734e1 3.612325502162e1 3.781472944779e1 4.612486198253e1 4.658390280136e1 5.101355483483e1 6.005126477993e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091962017377e1 -8.958817999964e0 -8.635326595808e0 -7.237677278248e0 -6.798658769146e0 -5.787699311600e0 9.375614629171e0 1.375841955916e1 2.122422018391e1 3.418387442092e1 3.759298933746e1 4.365905346414e1 4.911226780441e1 5.196264895785e1 6.063590541706e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057687158727e1 -9.003969453381e0 -8.439282777747e0 -7.428226044485e0 -6.630384331493e0 -5.553652764064e0 9.388335699308e0 1.142111439939e1 2.714761247734e1 2.965166800741e1 3.483449270075e1 4.245327418874e1 5.075262359831e1 5.514672163837e1 6.933461126763e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022708861377e1 -9.116849168286e0 -8.255523033406e0 -7.443099710653e0 -6.424437581134e0 -4.959503050974e0 7.785574251272e0 1.116226180229e1 2.368480888679e1 2.971247997517e1 3.327198882254e1 4.014519742812e1 5.147344890035e1 5.672685264317e1 8.770402879143e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003930030005e1 -9.382572885387e0 -7.963358366728e0 -7.398205549606e0 -6.151752286270e0 -3.747519127575e0 5.965658430916e0 1.090369450295e1 1.848894568874e1 2.633171248419e1 3.752522002638e1 3.806538753282e1 5.125839109040e1 5.834152140782e1 8.004814687258e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952572994678e0 -9.707961500338e0 -7.868212979404e0 -7.023673107881e0 -6.030120783047e0 -1.829911329029e0 4.666765372752e0 7.635292030416e0 1.926751825198e1 2.449612318810e1 3.601060304851e1 3.979903898065e1 5.320462695131e1 5.913896674502e1 6.799355446863e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921568418707e0 -9.892117861967e0 -7.949732064641e0 -6.520004907885e0 -6.101905076121e0 6.564503493770e-1 3.669752161121e0 4.271514123925e0 2.273716594787e1 2.420713579641e1 3.334368131204e1 3.928993303169e1 5.665721515868e1 5.913127040594e1 6.188916523520e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 9.802757615725e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921723650220e0 -9.892130646796e0 -7.949571982375e0 -6.521649387653e0 -6.100092899498e0 6.569333946944e-1 3.670925791960e0 4.270011613195e0 2.273811132707e1 2.420660916258e1 3.334359903093e1 3.929016410188e1 5.667032381962e1 5.911761317488e1 6.188645186355e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952602812087e0 -9.708147913712e0 -7.867814158708e0 -7.024452155299e0 -6.029524482164e0 -1.829295119806e0 4.666277813412e0 7.635612824467e0 1.926713063431e1 2.449647583238e1 3.601144433132e1 3.979905093902e1 5.320769291298e1 5.913284897230e1 6.799323457221e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001312244393e1 -9.500273158707e0 -7.781791432379e0 -7.299791223213e0 -6.388765770698e0 -3.921033336217e0 8.549732346579e0 8.879370370743e0 2.012325350433e1 2.166020465857e1 3.765032260785e1 4.025177933009e1 5.300890751190e1 5.509238826983e1 7.449233868506e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032283032542e1 -9.103077130886e0 -7.873873976050e0 -7.605710422473e0 -6.732901859729e0 -5.319407057329e0 1.042354248934e1 1.227065758743e1 2.018907408590e1 2.482230015423e1 3.803321948520e1 3.979603231882e1 5.184519609142e1 5.380736653553e1 8.147070791200e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086689014844e1 -8.786579918352e0 -8.149900663730e0 -7.729741036238e0 -6.871622541365e0 -6.071081548998e0 1.220257986567e1 1.340001306860e1 2.416639278289e1 3.015941332287e1 3.446677819154e1 4.169230980972e1 5.159477230452e1 5.348760136238e1 7.343110590610e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146375566325e1 -8.674657591609e0 -8.469192353964e0 -7.513598890706e0 -6.833842851578e0 -6.509260656536e0 1.200242149212e1 1.612888084805e1 2.855229113837e1 2.976125288738e1 3.455841117127e1 4.302427881623e1 5.034390820059e1 5.114890597902e1 5.491764997754e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183237243785e1 -8.811359189230e0 -8.469535190320e0 -7.237136556712e0 -6.910933996530e0 -6.686812671699e0 1.162287684388e1 1.964606566872e1 2.390332048704e1 3.266653243598e1 3.557460360619e1 4.161461385325e1 4.552216776363e1 4.843430706357e1 5.508946193025e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183234135656e1 -8.811390655708e0 -8.469191812641e0 -7.237685181910e0 -6.911461881060e0 -6.686151912069e0 1.162324577969e1 1.964399898143e1 2.390344835559e1 3.267100867502e1 3.557303432350e1 4.161180948569e1 4.552183148895e1 4.843641264784e1 5.508942457252e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146366733415e1 -8.674831298173e0 -8.468052279916e0 -7.514574466127e0 -6.835606659697e0 -6.507799558302e0 1.200369814526e1 1.612584607841e1 2.854954288373e1 2.976559693455e1 3.455800943145e1 4.302380193631e1 5.034838194748e1 5.114734850618e1 5.491645405618e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086675904125e1 -8.786278480268e0 -8.147920706793e0 -7.731714698134e0 -6.873245907727e0 -6.070278189391e0 1.220537095190e1 1.339589544519e1 2.416782146486e1 3.015945177616e1 3.446371248395e1 4.169103240682e1 5.160372511874e1 5.348608842477e1 7.342930098181e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032268317469e1 -9.102746654705e0 -7.872504171999e0 -7.606503166246e0 -6.734677269676e0 -5.319197320114e0 1.042290009580e1 1.227081599789e1 2.018858519671e1 2.482380549805e1 3.802830919217e1 3.979553546394e1 5.184613005242e1 5.381499353299e1 8.147012493799e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001300094729e1 -9.500023054928e0 -7.782335673327e0 -7.298452620527e0 -6.390133057635e0 -3.921419963946e0 8.548094045647e0 8.880881805942e0 2.012243118865e1 2.166152509406e1 3.764836194837e1 4.025062249585e1 5.299773279781e1 5.510994867001e1 7.449235901435e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952572208804e0 -9.707962351618e0 -7.868212972051e0 -7.023672985943e0 -6.030120820060e0 -1.829911357247e0 4.666765430512e0 7.635291942212e0 1.926751646948e1 2.449612581891e1 3.601060247789e1 3.979903876964e1 5.320462706593e1 5.913896669685e1 6.799355432757e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001623173293e1 -9.704066338338e0 -7.913344243096e0 -6.945761801104e0 -5.864484149087e0 1.730130761585e-1 2.033740819088e0 7.257238273000e0 1.877868905547e1 2.753425549777e1 3.452557235086e1 3.919880128974e1 5.303680204152e1 6.146427263613e1 6.544153756836e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006314351416e1 -9.394781671642e0 -8.025966630347e0 -7.343424856211e0 -5.776605580615e0 -1.628219143682e0 2.483298821643e0 1.020309114279e1 1.718560472727e1 2.993307929965e1 3.654336113527e1 3.688369212495e1 5.091453319094e1 6.245458738454e1 7.871441572005e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003930031861e1 -9.382572664219e0 -7.963358391686e0 -7.398205369685e0 -6.151752341755e0 -3.747519431377e0 5.965658397425e0 1.090369447894e1 1.848894362138e1 2.633171292374e1 3.752521998290e1 3.806538916851e1 5.125839133130e1 5.834152136929e1 8.004814711304e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032268352144e1 -9.102745797372e0 -7.872504184704e0 -7.606503030713e0 -6.734677337387e0 -5.319197859379e0 1.042289999410e1 1.227081597666e1 2.018858212592e1 2.482380608435e1 3.802830914317e1 3.979553827366e1 5.184613022752e1 5.381499349408e1 8.147012502664e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.097100633016e1 -8.649040235180e0 -7.899474229831e0 -7.897923377064e0 -7.218347841926e0 -6.127578219049e0 1.428856673649e1 1.429209330769e1 2.108725937244e1 2.856238137934e1 3.687727534900e1 4.187712261365e1 5.200637236290e1 5.201559635289e1 7.542538405030e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175668122237e1 -8.391710593619e0 -8.242533655459e0 -7.824848792377e0 -7.288679686695e0 -6.531400880208e0 1.506180422280e1 1.703334724888e1 2.532747287735e1 3.230421944363e1 3.391459611006e1 4.325948038890e1 5.125741007634e1 5.247234911352e1 5.595343177235e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235274115649e1 -8.571556612502e0 -8.367708842333e0 -7.451963037299e0 -7.221348738309e0 -6.812273774909e0 1.468513074694e1 2.062846132119e1 3.004065370973e1 3.022611588570e1 3.393365366695e1 4.114784180609e1 4.483658205530e1 4.956641259641e1 5.309695923799e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.256818510343e1 -8.692470016625e0 -8.358426737252e0 -7.220337087819e0 -7.189071593148e0 -6.989832389158e0 1.446912532166e1 2.404864508166e1 2.654294442221e1 3.208884952677e1 3.427133614157e1 3.737155617575e1 4.644688724873e1 4.751977827885e1 5.326861054403e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235274112108e1 -8.571556629114e0 -8.367709098069e0 -7.451963699502e0 -7.221348720157e0 -6.812272899460e0 1.468513091361e1 2.062846131277e1 3.004065373880e1 3.022611856753e1 3.393365300790e1 4.114784178431e1 4.483657944273e1 4.956641276583e1 5.309695922290e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175668112840e1 -8.391711254435e0 -8.242533699245e0 -7.824849126110e0 -7.288679639975e0 -6.531400002843e0 1.506180443643e1 1.703334724436e1 2.532747596003e1 3.230421926802e1 3.391459615091e1 4.325947721290e1 5.125741013507e1 5.247234908383e1 5.595343133215e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.097100611487e1 -8.649041249266e0 -7.899474271187e0 -7.897923418046e0 -7.218347758741e0 -6.127577454767e0 1.428856674452e1 1.429209331569e1 2.108726263089e1 2.856238126727e1 3.687727539835e1 4.187711894334e1 5.200637236231e1 5.201559635241e1 7.542538413151e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032268308844e1 -9.102746813474e0 -7.872504231792e0 -7.606502991255e0 -6.734677286027e0 -5.319197351983e0 1.042290016677e1 1.227081597396e1 2.018858459712e1 2.482380618747e1 3.802830918411e1 3.979553522065e1 5.184613026852e1 5.381499345828e1 8.147012491606e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003929976623e1 -9.382573590008e0 -7.963358413548e0 -7.398205252657e0 -6.151752316467e0 -3.747519191508e0 5.965658503426e0 1.090369447682e1 1.848894429627e1 2.633171469528e1 3.752522000464e1 3.806538664855e1 5.125839134273e1 5.834152135050e1 8.004814667511e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006314334322e1 -9.394781975515e0 -8.025966636862e0 -7.343424796528e0 -5.776605572766e0 -1.628219058130e0 2.483298831354e0 1.020309114195e1 1.718560487227e1 2.993308082433e1 3.654335955326e1 3.688369213143e1 5.091453317096e1 6.245458737912e1 7.871441543607e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806489174e1 -9.000348080785e0 -8.523257230049e0 -7.265526207061e0 -5.827852911185e0 -1.662355775878e0 1.584782658332e0 9.574795009588e0 2.165697455796e1 3.140857949518e1 3.434851292134e1 3.781483692386e1 5.140137975682e1 6.378474002103e1 1.073157580213e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006493263146e1 -9.105612155688e0 -8.424555752739e0 -7.291765422106e0 -6.008132444583e0 -3.160909211025e0 3.780868309465e0 9.978818584564e0 2.226880145147e1 3.151927920708e1 3.286818677127e1 3.870025930876e1 5.135175186397e1 6.141030548523e1 1.001973205525e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022702382794e1 -9.116262267596e0 -8.256213911583e0 -7.442307358294e0 -6.424638731031e0 -4.960777904526e0 7.785849740555e0 1.116223653092e1 2.368481652247e1 2.971312012333e1 3.326852083445e1 4.014714596500e1 5.146818596756e1 5.673611362796e1 8.770378901270e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086667768628e1 -8.785499825440e0 -8.148151324157e0 -7.731130095387e0 -6.874457879125e0 -6.070882392243e0 1.220344482218e1 1.339824391903e1 2.416680869170e1 3.016075917435e1 3.445941392773e1 4.169290905910e1 5.159441988862e1 5.350068940501e1 7.342827538207e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175661118424e1 -8.390748821186e0 -8.241254867079e0 -7.826059447094e0 -7.290272060766e0 -6.531347102094e0 1.506143375908e1 1.703352601600e1 2.532750422658e1 3.230458422968e1 3.391137685510e1 4.325976215977e1 5.125788950973e1 5.247787533513e1 5.595200755920e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253284537408e1 -8.390383896367e0 -8.375227337522e0 -7.607942048226e0 -7.376924405080e0 -6.769534267143e0 1.744321878125e1 1.908422566464e1 2.990247950629e1 3.099595930701e1 3.381438390328e1 4.232246360536e1 4.541844030241e1 5.053466087706e1 5.183332584957e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296294046061e1 -8.563382463653e0 -8.421908918498e0 -7.345596995685e0 -7.283433733273e0 -6.965701983239e0 1.793117516097e1 2.244600904533e1 2.676948822660e1 3.403377497898e1 3.469996749061e1 3.799461826227e1 4.597821820800e1 4.866736496904e1 5.167619212774e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296295599676e1 -8.563614814457e0 -8.422003490920e0 -7.345218895658e0 -7.283183635106e0 -6.965899700141e0 1.792997592573e1 2.244926788743e1 2.676897000314e1 3.403388213724e1 3.469430155383e1 3.800024919673e1 4.597906580392e1 4.866400900317e1 5.167656547139e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253289071921e1 -8.389932719151e0 -8.377018546920e0 -7.606824944799e0 -7.376215525793e0 -6.769711477435e0 1.743936560076e1 1.908976168789e1 2.990004078039e1 3.099836881111e1 3.381351820304e1 4.232447116279e1 4.541948456487e1 5.052783935125e1 5.183497386301e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175668113999e1 -8.391711236094e0 -8.242533640229e0 -7.824849237344e0 -7.288679622307e0 -6.531399968509e0 1.506180444713e1 1.703334726758e1 2.532747587552e1 3.230421946971e1 3.391459615546e1 4.325947723853e1 5.125740979648e1 5.247234916340e1 5.595343138167e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086675904123e1 -8.786278480017e0 -8.147920706176e0 -7.731714699017e0 -6.873245908066e0 -6.070278189110e0 1.220537095206e1 1.339589544520e1 2.416782146468e1 3.015945177620e1 3.446371248429e1 4.169103240632e1 5.160372511956e1 5.348608842418e1 7.342930098184e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022708839132e1 -9.116849514248e0 -8.255523103405e0 -7.443099428580e0 -6.424437625793e0 -4.959503110700e0 7.785574308874e0 1.116226174300e1 2.368480812061e1 2.971248093626e1 3.327198892663e1 4.014519692551e1 5.147344927290e1 5.672685255451e1 8.770402872918e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006496352509e1 -9.106123928808e0 -8.423900032721e0 -7.292150423712e0 -6.008220547287e0 -3.159791433913e0 3.780240692000e0 9.979062381521e0 2.226846378844e1 3.151798925725e1 3.287159874179e1 3.869892771073e1 5.135367659991e1 6.140622043426e1 1.001967057703e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002850719470e1 -8.987711755501e0 -8.606501929294e0 -7.105057438299e0 -6.205575438782e0 -2.209012910384e0 2.264101099769e0 8.229859544953e0 2.480993281086e1 2.917800541138e1 3.774917033809e1 3.989822553289e1 5.157180953747e1 6.270003519393e1 1.016901355039e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002847857269e1 -8.987051891317e0 -8.607167114773e0 -7.104873797217e0 -6.205465139548e0 -2.210576427255e0 2.265165852265e0 8.229785416070e0 2.480971782969e1 2.917826987607e1 3.774700548829e1 3.989991102212e1 5.157023148231e1 6.270160703784e1 1.016934107271e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008275712614e1 -9.136762988646e0 -8.487751107318e0 -7.217861416385e0 -6.425826846989e0 -4.055902143868e0 5.566548806304e0 9.126539438265e0 2.559449717112e1 2.962732722719e1 3.589285713471e1 4.141614512862e1 5.142545808784e1 5.834846386681e1 8.879101336907e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057678359334e1 -9.002907685027e0 -8.439252027490e0 -7.428142814669e0 -6.630394682317e0 -5.556304870201e0 9.387419389602e0 1.142272254710e1 2.714690390919e1 2.965022116512e1 3.483199857975e1 4.245557020064e1 5.074326178629e1 5.516027682522e1 6.933850820417e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146356153152e1 -8.673257172582e0 -8.467531520918e0 -7.515214914921e0 -6.836637443135e0 -6.509408780024e0 1.200250743618e1 1.612775154543e1 2.855071418609e1 2.976002153253e1 3.455650348579e1 4.302560029544e1 5.034408177938e1 5.114600988257e1 5.493078126761e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235265182465e1 -8.570177035989e0 -8.366726512415e0 -7.453188131653e0 -7.223240306677e0 -6.812331469495e0 1.468458657102e1 2.062918025163e1 3.003605767159e1 3.022577861094e1 3.393405902757e1 4.114604326208e1 4.483754842527e1 4.956755387054e1 5.310514320093e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296290775285e1 -8.562302290232e0 -8.422164791729e0 -7.345903041903e0 -7.284261302232e0 -6.965701406488e0 1.793083151324e1 2.244675370454e1 2.676819325630e1 3.403531009552e1 3.469520763855e1 3.799571264301e1 4.597850919235e1 4.866823871504e1 5.167994399050e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.317599969660e1 -8.524821465911e0 -8.523500906682e0 -7.343848031123e0 -7.112023939084e0 -7.111315174978e0 2.162134363698e1 2.162811960738e1 2.366479676785e1 3.404892087937e1 3.741171446082e1 3.741881217032e1 4.751734449156e1 4.752144813483e1 5.079428261165e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296295599727e1 -8.563614755667e0 -8.422003632062e0 -7.345218886365e0 -7.283183830057e0 -6.965899422745e0 1.792997611115e1 2.244926780693e1 2.676896994916e1 3.403388305091e1 3.469430043919e1 3.800025033577e1 4.597906505226e1 4.866400855957e1 5.167656558485e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235274113397e1 -8.571556583610e0 -8.367709223213e0 -7.451963770645e0 -7.221348688076e0 -6.812272748121e0 1.468513101468e1 2.062846134292e1 3.004065374844e1 3.022611781857e1 3.393365443236e1 4.114784193852e1 4.483657913534e1 4.956641191243e1 5.309695929278e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146366736872e1 -8.674831252490e0 -8.468052263038e0 -7.514574584189e0 -6.835606642655e0 -6.507799467110e0 1.200369817105e1 1.612584607659e1 2.854954226731e1 2.976559761445e1 3.455800995439e1 4.302380175348e1 5.034838119403e1 5.114734868418e1 5.491645412304e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057687158722e1 -9.003969453193e0 -8.439282777224e0 -7.428226045012e0 -6.630384332219e0 -5.553652763684e0 9.388335699485e0 1.142111439942e1 2.714761247628e1 2.965166800853e1 3.483449270143e1 4.245327418740e1 5.075262359931e1 5.514672163802e1 6.933461126753e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008281354244e1 -9.137685126697e0 -8.487075535313e0 -7.218301856997e0 -6.425993267848e0 -4.053406424480e0 5.565658960855e0 9.126501217170e0 2.559514227260e1 2.962696952474e1 3.589585402274e1 4.141403480869e1 5.143208867380e1 5.833999490658e1 8.878577971456e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916719389185e0 -9.193751239374e0 -8.494556760118e0 -7.016241640779e0 -6.612080404153e0 -2.722195215854e0 3.854839024245e0 7.260634910201e0 1.782133548741e1 3.559671360245e1 3.972254416653e1 4.322268788765e1 5.176200297265e1 5.951981700068e1 9.130634178189e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.911607856763e0 -9.163210405904e0 -8.432871546322e0 -6.955825355501e0 -6.554480786898e0 -1.263594918311e0 1.677357664397e0 6.803362756849e0 1.741119382843e1 3.535971848425e1 4.117030545223e1 4.210228165535e1 5.207516523156e1 6.251298402758e1 9.140386046329e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916665296176e0 -9.193069747384e0 -8.494841035225e0 -7.016177829004e0 -6.612005922451e0 -2.725096141944e0 3.856359106698e0 7.260805757097e0 1.782120227843e1 3.559721623615e1 3.971956182327e1 4.322477407226e1 5.175560560371e1 5.952451060102e1 9.131544634672e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017244760266e1 -9.156775649845e0 -8.618327709729e0 -7.153268132572e0 -6.704035553810e0 -4.478030333383e0 7.197077657784e0 9.137541440329e0 1.908984886339e1 3.556300633115e1 3.837397422975e1 4.383572490407e1 5.019871496263e1 5.601135090688e1 7.929454052724e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952412449e1 -8.957322833224e0 -8.634780999631e0 -7.238279997970e0 -6.798701311513e0 -5.791089231959e0 9.374649883358e0 1.375987053536e1 2.122384350035e1 3.417909870594e1 3.759237698173e1 4.365988218838e1 4.910781001337e1 5.196241351097e1 6.065428499682e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183221803004e1 -8.809919526084e0 -8.468036408262e0 -7.238626435153e0 -6.911521725968e0 -6.689268003867e0 1.162238705718e1 1.964541878062e1 2.390202245006e1 3.266519263281e1 3.557376029418e1 4.160996116275e1 4.552315137231e1 4.843543060133e1 5.510436452077e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.256809239571e1 -8.691101478094e0 -8.357459413836e0 -7.221651799086e0 -7.191014373293e0 -6.989826205345e0 1.446848066453e1 2.405458873214e1 2.653296393601e1 3.208811456259e1 3.427203298276e1 3.736974535123e1 4.644640825897e1 4.752301750223e1 5.327762169370e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296290774360e1 -8.562302309251e0 -8.422164848717e0 -7.345903079127e0 -7.284261995996e0 -6.965700609426e0 1.793083165522e1 2.244675377903e1 2.676819317005e1 3.403530996731e1 3.469521018395e1 3.799571107692e1 4.597850754350e1 4.866823929931e1 5.167994393709e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.296294045187e1 -8.563382423734e0 -8.421909116850e0 -7.345597025561e0 -7.283434620763e0 -6.965700907986e0 1.793117548855e1 2.244600903903e1 2.676948808657e1 3.403377576977e1 3.469996891535e1 3.799461783554e1 4.597821580714e1 4.866736511035e1 5.167619218778e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.256818510542e1 -8.692469979447e0 -8.358427012484e0 -7.220337860905e0 -7.189071551845e0 -6.989831391416e0 1.446912551356e1 2.404864512359e1 2.654294443286e1 3.208884840996e1 3.427133848651e1 3.737155715122e1 4.644688445545e1 4.751977830886e1 5.326861060478e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183234138410e1 -8.811390599801e0 -8.469192000856e0 -7.237685385260e0 -6.911461532577e0 -6.686151860805e0 1.162324586754e1 1.964399894152e1 2.390344828624e1 3.267100810490e1 3.557303703724e1 4.161180944574e1 4.552183009870e1 4.843641163621e1 5.508942468296e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091962023224e1 -8.958817933364e0 -8.635326627377e0 -7.237677385128e0 -6.798658631525e0 -5.787699293138e0 9.375614650813e0 1.375841952955e1 2.122422018109e1 3.418387475330e1 3.759299028905e1 4.365905280259e1 4.911226680079e1 5.196264919772e1 6.063590545867e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017249535539e1 -9.157914168353e0 -8.618398261390e0 -7.153053218237e0 -6.704092157124e0 -4.474644709898e0 7.197447238925e0 9.136057734801e0 1.909015221896e1 3.556421345959e1 3.837640642498e1 4.383399576933e1 5.020844227650e1 5.600177812307e1 7.928263702035e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767414082748e0 -9.222560995098e0 -8.723774614544e0 -6.962421220216e0 -6.802052270985e0 -3.017612051897e0 5.623559552387e0 7.043332491445e0 1.287619851366e1 4.112169251601e1 4.167595359978e1 4.547262784273e1 5.038075468483e1 5.936294490975e1 1.054771806803e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715329955174e0 -9.212686917140e0 -8.523939112073e0 -6.889544468431e0 -6.776390619042e0 -1.017327324261e0 2.670100289037e0 5.803560506833e0 1.206430806154e1 4.102834884290e1 4.331571309474e1 4.540151843540e1 5.321071171042e1 6.068662983989e1 1.079970773793e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715272151898e0 -9.212310137212e0 -8.524034263144e0 -6.889675690849e0 -6.776411251548e0 -1.019942435283e0 2.671978794937e0 5.803806089506e0 1.206434438848e1 4.102871361738e1 4.331378207324e1 4.540300136051e1 5.320346367058e1 6.069475493348e1 1.080005800831e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767349653519e0 -9.221419778672e0 -8.723867233024e0 -6.962817791426e0 -6.802214499440e0 -3.021128285891e0 5.623491773966e0 7.045306697899e0 1.287627976024e1 4.112122007970e1 4.167337221984e1 4.547402773825e1 5.037021476553e1 5.937698569228e1 1.054862962131e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024086142663e1 -9.155411810648e0 -8.780353785465e0 -7.031440192978e0 -6.869481728938e0 -4.637295965241e0 7.380614870539e0 1.109490238799e1 1.466033229255e1 3.889883216723e1 4.052038519512e1 4.520604340661e1 4.829554079893e1 5.675597121475e1 8.252568797139e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105603730926e1 -9.010361817427e0 -8.633468173206e0 -7.090535308956e0 -6.943154068191e0 -5.838558760788e0 9.223741193487e0 1.620090041620e1 1.763450129065e1 3.611664031802e1 3.781587759279e1 4.612480303026e1 4.658138251373e1 5.101148000039e1 6.007225195574e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183221800242e1 -8.809919556595e0 -8.468036546633e0 -7.238627016862e0 -6.911521022621e0 -6.689267980956e0 1.162238712225e1 1.964541885869e1 2.390202239010e1 3.266519394306e1 3.557375989332e1 4.160996132787e1 4.552314976942e1 4.843543096824e1 5.510436447832e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235265178922e1 -8.570177052641e0 -8.366726768363e0 -7.453188793041e0 -7.223240288487e0 -6.812330594651e0 1.468458673758e1 2.062918024335e1 3.003605770019e1 3.022578129300e1 3.393405836882e1 4.114604324059e1 4.483754581371e1 4.956755404055e1 5.310514318449e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.253284534096e1 -8.390384148542e0 -8.375227333716e0 -7.607942830409e0 -7.376924366525e0 -6.769533314415e0 1.744321912940e1 1.908422565238e1 2.990248247741e1 3.099595923877e1 3.381438359941e1 4.232246354445e1 4.541843697410e1 5.053466106160e1 5.183332574060e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.235274113397e1 -8.571556583611e0 -8.367709223212e0 -7.451963770645e0 -7.221348688078e0 -6.812272748121e0 1.468513101468e1 2.062846134301e1 3.004065374851e1 3.022611781822e1 3.393365443219e1 4.114784193935e1 4.483657913607e1 4.956641191328e1 5.309695929148e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183237243779e1 -8.811359163691e0 -8.469535516638e0 -7.237137345292e0 -6.910932938067e0 -6.686812601037e0 1.162287699686e1 1.964606570675e1 2.390332035800e1 3.266653317847e1 3.557460591598e1 4.161461397882e1 4.552216477160e1 4.843430641805e1 5.508946199823e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105619353644e1 -9.011776388889e0 -8.634619258223e0 -7.089242904088e0 -6.942879424343e0 -5.835251658602e0 9.224299091292e0 1.620340024840e1 1.763179150647e1 3.612325472492e1 3.781473284439e1 4.612485845548e1 4.658390276724e1 5.101355498686e1 6.005126484428e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024095877778e1 -9.156832070330e0 -8.780792944656e0 -7.030735370034e0 -6.869112537335e0 -4.633678611592e0 7.381284151538e0 1.109369008871e1 1.466000015271e1 3.890512919672e1 4.051934952577e1 4.520607592629e1 4.830063757974e1 5.674535775256e1 8.251357007549e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633599224385e0 -9.271511983038e0 -8.879979962506e0 -6.911882504789e0 -6.874769834741e0 -3.111444009613e0 5.915408183405e0 8.707755446342e0 9.988623352780e0 4.327661338436e1 4.346862205460e1 4.629761095035e1 4.858917225156e1 5.985207020337e1 1.163186430820e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.437789956937e0 -9.219961772460e0 -8.826422830164e0 -6.864529971816e0 -6.837843510985e0 -1.135387647508e0 4.599762366268e0 5.571649376053e0 8.309642402831e0 4.538460402242e1 4.630555779726e1 4.687924067884e1 5.110922725208e1 6.028534413220e1 1.324590334483e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.456168669148e0 -9.179839981478e0 -8.736109328178e0 -6.842092517148e0 -6.828554902094e0 8.124711167315e-1 2.311431491048e0 4.930030318817e0 7.924735229454e0 4.575188929841e1 4.709236981538e1 4.725540497564e1 5.420447410194e1 5.860024019944e1 1.359387299260e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.437573581220e0 -9.218882212535e0 -8.826917013235e0 -6.864941392001e0 -6.838171873483e0 -1.138625989597e0 4.599790375533e0 5.574011815857e0 8.310038238412e0 4.538482917585e1 4.630207926209e1 4.688068166494e1 5.109779586016e1 6.030267377512e1 1.324640174591e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633217874113e0 -9.270313236138e0 -8.879913912396e0 -6.913008650247e0 -6.875096202960e0 -3.114903011480e0 5.915151757040e0 8.707116492236e0 9.991548730607e0 4.326770097724e1 4.346986784304e1 4.629765614300e1 4.858543182367e1 5.986883453558e1 1.163274583905e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024086136971e1 -9.155411939140e0 -8.780353805657e0 -7.031440844901e0 -6.869480977093e0 -4.637295955738e0 7.380614900738e0 1.109490239450e1 1.466033226141e1 3.889883326487e1 4.052038572109e1 4.520604136635e1 4.829554124334e1 5.675597107947e1 8.252568798329e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952403843e1 -8.957323065399e0 -8.634781076250e0 -7.238280596349e0 -6.798700525520e0 -5.791089176644e0 9.374649981606e0 1.375987057377e1 2.122384342075e1 3.417910074085e1 3.759237716853e1 4.365987975288e1 4.910781034136e1 5.196241315239e1 6.065428499029e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146356143526e1 -8.673257546742e0 -8.467531641977e0 -7.515215384404e0 -6.836637171961e0 -6.509408181541e0 1.200250763858e1 1.612775159002e1 2.855071559857e1 2.976002265715e1 3.455650343289e1 4.302559755091e1 5.034408197070e1 5.114600943508e1 5.493078122085e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175661109025e1 -8.390749483124e0 -8.241254910998e0 -7.826059779662e0 -7.290272013911e0 -6.531346224784e0 1.506143397259e1 1.703352601164e1 2.532750730947e1 3.230458405372e1 3.391137689592e1 4.325975898598e1 5.125788956924e1 5.247787530293e1 5.595200711770e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.175668113999e1 -8.391711236093e0 -8.242533640233e0 -7.824849237342e0 -7.288679622310e0 -6.531399968509e0 1.506180444714e1 1.703334726771e1 2.532747587545e1 3.230421946955e1 3.391459615549e1 4.325947724053e1 5.125740979723e1 5.247234916100e1 5.595343138062e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146375560164e1 -8.674657919262e0 -8.469192458063e0 -7.513599479767e0 -6.833842559788e0 -6.509259969798e0 1.200242172045e1 1.612888089072e1 2.855229193823e1 2.976125468693e1 3.455841164225e1 4.302427588951e1 5.034390763977e1 5.114890570801e1 5.491764999775e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091979469808e1 -8.958630456728e0 -8.636282955731e0 -7.236546022895e0 -6.797836414534e0 -5.788456469664e0 9.374430245734e0 1.376188600904e1 2.122395552667e1 3.417876256027e1 3.759705971382e1 4.365926883103e1 4.910869373324e1 5.196386239416e1 6.063598893673e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024118092494e1 -9.156607356542e0 -8.781299914927e0 -7.029836068532e0 -6.869013281369e0 -4.634017185854e0 7.380541379558e0 1.109686722719e1 1.465805471720e1 3.890239289778e1 4.052451338027e1 4.520567851207e1 4.829688198328e1 5.674492169237e1 8.251407472184e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.768178208347e0 -9.222387711644e0 -8.724172895926e0 -6.961114169795e0 -6.801400948650e0 -3.018299274790e0 5.622308913969e0 7.047381690697e0 1.287398528028e1 4.111917869984e1 4.168458339167e1 4.547399702750e1 5.037079686551e1 5.936018847659e1 1.054776718950e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.438724866682e0 -9.219553429189e0 -8.826352283288e0 -6.863716993027e0 -6.837762009413e0 -1.135781893897e0 4.598958420600e0 5.575986780271e0 8.306266104233e0 4.538337018508e1 4.631508493869e1 4.688145413378e1 5.109800068651e1 6.028316074232e1 1.324586574507e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.197869964666e0 -9.196962272264e0 -8.958798337373e0 -6.832354166390e0 -6.832017734418e0 1.231400314613e0 4.093376908557e0 4.093892484538e0 5.435868976396e0 4.763899580938e1 4.763926841880e1 5.174957364720e1 5.176538368768e1 5.729827391065e1 1.540771035293e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.196717184965e0 -9.196717136886e0 -8.959785422398e0 -6.832470102456e0 -6.832468769006e0 1.229000566121e0 4.093677958587e0 4.093678001265e0 5.438235176060e0 4.763943476623e1 4.763944010215e1 5.174963121358e1 5.174963122217e1 5.731613229970e1 1.540792740301e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.437573554980e0 -9.218882320908e0 -8.826916975186e0 -6.864942300016e0 -6.838170903970e0 -1.138625994009e0 4.599790406309e0 5.574011777607e0 8.310038245216e0 4.538483302289e1 4.630207890676e1 4.688067805554e1 5.109779591683e1 6.030267378211e1 1.324640174518e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767349596537e0 -9.221420002100e0 -8.723867162002e0 -6.962818559877e0 -6.802213610041e0 -3.021128275452e0 5.623491817055e0 7.045306661106e0 1.287627975257e1 4.112122359496e1 4.167337205898e1 4.547402403917e1 5.037021499175e1 5.937698565772e1 1.054862962155e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017244748724e1 -9.156776012873e0 -8.618327623735e0 -7.153268751859e0 -6.704034794153e0 -4.478030267382e0 7.197077752080e0 9.137541412302e0 1.908984881859e1 3.556300952373e1 3.837397406204e1 4.383572140832e1 5.019871529501e1 5.601135075860e1 7.929454056112e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057678342290e1 -9.002908223133e0 -8.439251958903e0 -7.428143276095e0 -6.630394148466e0 -5.556304618483e0 9.387419591574e0 1.142272253397e1 2.714690383301e1 2.965022415020e1 3.483199843741e1 4.245556683701e1 5.074326206049e1 5.516027661676e1 6.933850824564e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086667748233e1 -8.785500611664e0 -8.148151302839e0 -7.731130344270e0 -6.874457767002e0 -6.070881707495e0 1.220344509488e1 1.339824391936e1 2.416681164373e1 3.016075910196e1 3.445941385536e1 4.169290562749e1 5.159441998923e1 5.350068923082e1 7.342827545409e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.097100611487e1 -8.649041249267e0 -7.899474271189e0 -7.897923418048e0 -7.218347758742e0 -6.127577454767e0 1.428856674458e1 1.429209331575e1 2.108726263089e1 2.856238126736e1 3.687727539835e1 4.187711894303e1 5.200637236088e1 5.201559635098e1 7.542538413335e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086688994460e1 -8.786580703188e0 -8.149900642033e0 -7.729741286621e0 -6.871622429101e0 -6.071080864665e0 1.220258013856e1 1.340001306898e1 2.416639573487e1 3.015941325043e1 3.446677811912e1 4.169230637840e1 5.159477240513e1 5.348760118803e1 7.343110597832e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057717982838e1 -9.004142635049e0 -8.440814462728e0 -7.426338984727e0 -6.628351762822e0 -5.555041284828e0 9.386201993543e0 1.142514381386e1 2.715067600239e1 2.964904829516e1 3.483481601813e1 4.245493776423e1 5.074385127851e1 5.514640366148e1 6.933713991541e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 2.673479349743e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017301644250e1 -9.157927348951e0 -8.619400215727e0 -7.151386893450e0 -6.702770444179e0 -4.475634727458e0 7.195765239812e0 9.140025866353e0 1.908998351701e1 3.556117271615e1 3.838133630369e1 4.383549937151e1 5.019939854622e1 5.600068318669e1 7.928375180709e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.917466697493e0 -9.194309127894e0 -8.495295701181e0 -7.014272527750e0 -6.610227939095e0 -2.723464580305e0 3.856193683652e0 7.261667648329e0 1.782121092265e1 3.559733704043e1 3.972512167675e1 4.322512220299e1 5.175491728366e1 5.951056083290e1 9.130740525654e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.716188848842e0 -9.213242904550e0 -8.523962099718e0 -6.887984422690e0 -6.775304802133e0 -1.018373753966e0 2.672189351953e0 5.804614057583e0 1.206196800300e1 4.103164695356e1 4.332086909198e1 4.540237517149e1 5.320246854966e1 6.067706877762e1 1.079966996341e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.457175215819e0 -9.180201368877e0 -8.735606736811e0 -6.841017136319e0 -6.828154850202e0 8.123848786114e-1 2.313428024677e0 4.931464053934e0 7.921083894993e0 4.575173245293e1 4.710544355446e1 4.725492075863e1 5.420022893688e1 5.858635221490e1 1.359365056455e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.197870000781e0 -9.196962236263e0 -8.958798337290e0 -6.832355165555e0 -6.832016735174e0 1.231400314698e0 4.093376876457e0 4.093892516419e0 5.435868976482e0 4.763899182717e1 4.763927240115e1 5.174957365422e1 5.176538368049e1 5.729827391067e1 1.540771035293e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.456168699338e0 -9.179840038160e0 -8.736109282093e0 -6.842093449274e0 -6.828553908884e0 8.124710934148e-1 2.311431515038e0 4.930030305407e0 7.924735234188e0 4.575189294845e1 4.709237010656e1 4.725540097807e1 5.420447407920e1 5.860024021927e1 1.359387299243e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715272217487e0 -9.212310276573e0 -8.524034093411e0 -6.889676585583e0 -6.776410283877e0 -1.019942434192e0 2.671978796647e0 5.803806081987e0 1.206434439030e1 4.102871603812e1 4.331378377338e1 4.540299707512e1 5.320346365396e1 6.069475496703e1 1.080005800772e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916665372417e0 -9.193069970674e0 -8.494840721683e0 -7.016178527847e0 -6.612005229277e0 -2.725096088024e0 3.856359110998e0 7.260805767078e0 1.782120226749e1 3.559721921343e1 3.971956193666e1 4.322477072700e1 5.175560554319e1 5.952451065638e1 9.131544637173e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008275712680e1 -9.136763304028e0 -8.487750837270e0 -7.217861922369e0 -6.425826411502e0 -4.055901973155e0 5.566548844892e0 9.126539488805e0 2.559449711808e1 2.962733019436e1 3.589285646648e1 4.141614258192e1 5.142545795887e1 5.834846392232e1 8.879101337918e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022702365513e1 -9.116262794028e0 -8.256213809784e0 -7.442307661457e0 -6.424638552318e0 -4.960777512701e0 7.785849834845e0 1.116223661478e1 2.368481916144e1 2.971311996644e1 3.326852041389e1 4.014714366206e1 5.146818572328e1 5.673611365865e1 8.770378895979e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032268317469e1 -9.102746654705e0 -7.872504172007e0 -7.606503166241e0 -6.734677269679e0 -5.319197320114e0 1.042290009579e1 1.227081599797e1 2.018858519669e1 2.482380549837e1 3.802830919213e1 3.979553546147e1 5.184613005287e1 5.381499352975e1 8.147012494480e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032282989253e1 -9.103078146622e0 -7.873874022997e0 -7.605710383072e0 -6.732901808502e0 -5.319406550193e0 1.042354266216e1 1.227065758482e1 2.018907655734e1 2.482230025714e1 3.803321952613e1 3.979602926342e1 5.184519613318e1 5.380736649626e1 8.147070780872e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022745040820e1 -9.117134650478e0 -8.257649410810e0 -7.440916319954e0 -6.421842041818e0 -4.960750611605e0 7.786047698804e0 1.116321937816e1 2.368435161932e1 2.971119971026e1 3.327732199515e1 4.014742176576e1 5.146648736945e1 5.672001897015e1 8.770580431969e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008340714272e1 -9.137997085451e0 -8.488676158502e0 -7.216079153098e0 -6.423531696759e0 -4.054856017679e0 5.566423401185e0 9.127586454292e0 2.559843004675e1 2.962686071799e1 3.589487877446e1 4.141684360844e1 5.142445685888e1 5.833301087680e1 8.878803276924e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -9.802757615725e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002917126082e1 -8.988630329179e0 -8.607531972336e0 -7.102980824633e0 -6.202790763848e0 -2.210697543234e0 2.266077091242e0 8.230078483750e0 2.481356181062e1 2.917850021524e1 3.774789590984e1 3.990149849544e1 5.156679445523e1 6.268619749525e1 1.016916566314e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.912377739749e0 -9.164346255803e0 -8.433271534316e0 -6.953896001012e0 -6.552384933602e0 -1.264369128871e0 1.679163122436e0 6.803732764382e0 1.741109731931e1 3.536091940602e1 4.117620215892e1 4.210118615312e1 5.207157503807e1 6.249810561083e1 9.140251148448e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.716188882189e0 -9.213242808873e0 -8.523962130777e0 -6.887983980652e0 -6.775305284153e0 -1.018373761224e0 2.672189347285e0 5.804614064066e0 1.206196800484e1 4.103164647948e1 4.332086743857e1 4.540237743279e1 5.320246848651e1 6.067706875863e1 1.079966996376e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.438724893033e0 -9.219553321045e0 -8.826352321168e0 -6.863716084563e0 -6.837762979123e0 -1.135781889314e0 4.598958389602e0 5.575986818448e0 8.306266097465e0 4.538336633850e1 4.631508531029e1 4.688145772697e1 5.109800062934e1 6.028316073530e1 1.324586574579e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.437789957286e0 -9.219961772298e0 -8.826422830131e0 -6.864530002295e0 -6.837843480207e0 -1.135387647481e0 4.599762366156e0 5.571649375954e0 8.309642402870e0 4.538460402252e1 4.630555779149e1 4.687924068487e1 5.110922725166e1 6.028534413225e1 1.324590334481e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715330054229e0 -9.212686960575e0 -8.523938973548e0 -6.889544924434e0 -6.776390129945e0 -1.017327330744e0 2.670100286313e0 5.803560505776e0 1.206430806519e1 4.102835079335e1 4.331571314191e1 4.540151640682e1 5.321071163081e1 6.068662985456e1 1.079970773769e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.911608064693e0 -9.163210501042e0 -8.432871103986e0 -6.955825983232e0 -6.554480271878e0 -1.263594884689e0 1.677357642380e0 6.803362769689e0 1.741119383390e1 3.535972078091e1 4.117030677437e1 4.210227786680e1 5.207516520495e1 6.251298403473e1 9.140386047380e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002847886830e1 -8.987051993990e0 -8.607166542555e0 -7.104874289211e0 -6.205464862914e0 -2.210576310543e0 2.265165828743e0 8.229785462904e0 2.480971782492e1 2.917827227977e1 3.774700387310e1 3.989990994929e1 5.157023143451e1 6.270160706178e1 1.016934108363e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006493290696e1 -9.105611956677e0 -8.424555645065e0 -7.291765742562e0 -6.008132329208e0 -3.160908988087e0 3.780868311316e0 9.978818671155e0 2.226880334836e1 3.151927979009e1 3.286818506229e1 3.870025835558e1 5.135175168026e1 6.141030552919e1 1.001973205469e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003930030005e1 -9.382572885387e0 -7.963358366733e0 -7.398205549602e0 -6.151752286274e0 -3.747519127574e0 5.965658430901e0 1.090369450299e1 1.848894568870e1 2.633171248502e1 3.752522002627e1 3.806538752959e1 5.125839109079e1 5.834152140519e1 8.004814687908e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001312187204e1 -9.500274081635e0 -7.781791397022e0 -7.299791315950e0 -6.388765689506e0 -3.921033036296e0 8.549732533002e0 8.879370345215e0 2.012325645095e1 2.166020380574e1 3.765032119245e1 4.025177845492e1 5.300890754723e1 5.509238823830e1 7.449233831083e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003966125250e1 -9.382822618295e0 -7.964973258687e0 -7.397136756779e0 -6.149310917045e0 -3.747917611481e0 5.966687025240e0 1.090339915633e1 1.848932151374e1 2.632993145760e1 3.753251643539e1 3.806612620888e1 5.125634040037e1 5.832881355701e1 8.004821556986e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006551042619e1 -9.106315592544e0 -8.425943183286e0 -7.290122028969e0 -6.005233422778e0 -3.161190319728e0 3.781675950859e0 9.979301424677e0 2.226817162751e1 3.152292589006e1 3.287175360893e1 3.870115744559e1 5.134759274220e1 6.139388451685e1 1.001977146881e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.069391739897e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008864902077e1 -9.000701813087e0 -8.525051718377e0 -7.263658094402e0 -5.824807317700e0 -1.664090329730e0 1.586897601598e0 9.575004646112e0 2.165649184378e1 3.141584900216e1 3.434758358658e1 3.781666498329e1 5.139580269730e1 6.376925656193e1 1.073158602480e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -9.802757615725e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002917134390e1 -8.988630094614e0 -8.607532033651e0 -7.102980812692e0 -6.202790834830e0 -2.210697600731e0 2.266077091663e0 8.230078478030e0 2.481356180512e1 2.917849968246e1 3.774789435615e1 3.990150070622e1 5.156679440029e1 6.268619748764e1 1.016916566964e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.917466809468e0 -9.194308869917e0 -8.495295757869e0 -7.014272180131e0 -6.610228365225e0 -2.723464626555e0 3.856193666205e0 7.261667650617e0 1.782121093994e1 3.559733565132e1 3.972512033432e1 4.322512529445e1 5.175491709705e1 5.951056081549e1 9.130740523910e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.768178265232e0 -9.222387488661e0 -8.724172967032e0 -6.961113400617e0 -6.801401838409e0 -3.018299284864e0 5.622308870584e0 7.047381727423e0 1.287398528797e1 4.111917518491e1 4.168458355365e1 4.547400072549e1 5.037079663890e1 5.936018851114e1 1.054776718923e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633599118916e0 -9.271512051556e0 -8.879979928793e0 -6.911881650572e0 -6.874770789302e0 -3.111444003535e0 5.915408167715e0 8.707755498189e0 9.988623317898e0 4.327661348339e1 4.346861833758e1 4.629761478123e1 4.858917217713e1 5.985207016391e1 1.163186430847e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767414082922e0 -9.222560995107e0 -8.723774614747e0 -6.962421225122e0 -6.802052265443e0 -3.017612051965e0 5.623559552250e0 7.043332491375e0 1.287619851369e1 4.112169252103e1 4.167595359232e1 4.547262784595e1 5.038075468387e1 5.936294490990e1 1.054771806802e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916719577684e0 -9.193751204096e0 -8.494556503571e0 -7.016241992327e0 -6.612080136350e0 -2.722195208847e0 3.854839011392e0 7.260634922445e0 1.782133549378e1 3.559671519244e1 3.972254293415e1 4.322268763500e1 5.176200272565e1 5.951981703872e1 9.130634179008e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002850757351e1 -8.987711622477e0 -8.606501419179e0 -7.105057918490e0 -6.205575232930e0 -2.209012851703e0 2.264101076948e0 8.229859586065e0 2.480993280076e1 2.917800728235e1 3.774916716280e1 3.989822667679e1 5.157180943500e1 6.270003521017e1 1.016901356795e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806539815e1 -9.000347337133e0 -8.523257239890e0 -7.265526590534e0 -5.827852828977e0 -1.662355637276e0 1.584782627519e0 9.574795085532e0 2.165697606328e1 3.140857982615e1 3.434850939132e1 3.781483821934e1 5.140137970983e1 6.378474005546e1 1.073157583695e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006314404652e1 -9.394781095162e0 -8.025966597997e0 -7.343425118474e0 -5.776605533186e0 -1.628218971886e0 2.483298808856e0 1.020309116907e1 1.718560634890e1 2.993307726525e1 3.654336133185e1 3.688369216194e1 5.091453308810e1 6.245458742368e1 7.871441580663e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952603020598e0 -9.708147831986e0 -7.867814136884e0 -7.024452302243e0 -6.029524401636e0 -1.829294956416e0 4.666277829707e0 7.635612916391e0 1.926713277860e1 2.449647476212e1 3.601144340554e1 3.979905064654e1 5.320769286069e1 5.913284901357e1 6.799323435882e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952877717710e0 -9.708104345588e0 -7.868089363960e0 -7.024972646317e0 -6.027912318712e0 -1.829622617672e0 4.667801521709e0 7.634280597660e0 1.926849504015e1 2.449496363633e1 3.601160391229e1 3.980167302697e1 5.321213809885e1 5.912205896108e1 6.799280687426e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 0.000000000000e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006361177832e1 -9.394969911316e0 -8.027624582736e0 -7.342290799894e0 -5.773842682271e0 -1.629255587223e0 2.485036509349e0 1.020271617213e1 1.718576754440e1 2.993202107270e1 3.654374068851e1 3.689150225103e1 5.091155133252e1 6.243949779577e1 7.871389571626e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015394964769e1 -1.000062982645e1 -7.234172668546e0 -6.917348718560e0 -5.839224091829e0 2.150484540145e-2 3.421462037913e0 7.975329596045e0 1.535052774910e1 2.293457796944e1 3.233355683697e1 4.394891077477e1 5.087636772979e1 5.604022936705e1 6.021244946866e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952958207833e0 -9.708310339360e0 -7.870210917300e0 -7.022492292972e0 -6.027006822204e0 -1.830250196313e0 4.667369581211e0 7.635768330163e0 1.926689229674e1 2.449488015012e1 3.601385003609e1 3.980732124689e1 5.320157338107e1 5.912237719771e1 6.799222083687e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.807109948591e0 -9.458831940108e0 -8.350084498715e0 -7.149677428834e0 -6.264805424354e0 -3.148730868962e0 6.105376180824e0 6.891867256560e0 2.541557260982e1 2.862353996597e1 3.201200936951e1 4.051843105404e1 5.324391235403e1 5.811920922693e1 9.339635908444e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008340739695e1 -9.137996535430e0 -8.488676226566e0 -7.216078970872e0 -6.423532000489e0 -4.054856154902e0 5.566423333812e0 9.127586442443e0 2.559843004198e1 2.962685888790e1 3.589487807598e1 4.141684661067e1 5.142445663635e1 5.833301088105e1 8.878803283027e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041382579607e1 -9.109469484271e0 -8.243050258215e0 -7.087589532195e0 -6.663276246718e0 -4.605926747718e0 5.086253182037e0 1.199293702690e1 1.931752617945e1 3.275521139548e1 3.773227664412e1 4.368243335386e1 5.016262703386e1 5.933214995009e1 7.967129204321e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054213552504e1 -9.187685240013e0 -7.958761396074e0 -7.000289378931e0 -6.889032662265e0 -4.783138519370e0 4.909294099468e0 1.470154876349e1 1.550621095647e1 3.408726901951e1 3.690970752538e1 4.640859204237e1 4.917373002796e1 6.018801086645e1 7.987142974721e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041362132466e1 -9.109353123451e0 -8.242198092258e0 -7.088319647848e0 -6.664937937927e0 -4.604945535485e0 5.086751114997e0 1.199033188579e1 1.931753626477e1 3.275890797671e1 3.773007644169e1 4.368313664091e1 5.016420913505e1 5.933235472542e1 7.967090527498e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008305317537e1 -9.137596389388e0 -8.487620159577e0 -7.217627054905e0 -6.425621343683e0 -4.053490571938e0 5.567510682369e0 9.124601683459e0 2.559478547760e1 2.963092465977e1 3.589376277587e1 4.141652617344e1 5.143115521838e1 5.833291814812e1 8.878728735598e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.806714620342e0 -9.458532875928e0 -8.348225484819e0 -7.151959077498e0 -6.266946478879e0 -3.147470522276e0 6.107423655992e0 6.888312625099e0 2.541723543696e1 2.862407357377e1 3.200623713984e1 4.051632720966e1 5.325471277871e1 5.812116504732e1 9.339604011698e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.020438049230e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952603020598e0 -9.708147831986e0 -7.867814136883e0 -7.024452302243e0 -6.029524401634e0 -1.829294956416e0 4.666277829719e0 7.635612916375e0 1.926713277860e1 2.449647476140e1 3.601144340799e1 3.979905064688e1 5.320769286066e1 5.913284901501e1 6.799323435559e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015372292754e1 -1.000052202219e1 -7.232168610055e0 -6.917939038728e0 -5.841963825238e0 2.220888423179e-2 3.420137116540e0 7.975625820075e0 1.535053063306e1 2.293556294638e1 3.233416862240e1 4.393933425210e1 5.087227744216e1 5.604541227884e1 6.022675167183e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 9.802757615725e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024713606904e1 -1.020292182525e1 -7.128814712641e0 -6.373850656818e0 -5.916044328328e0 2.206030285617e0 2.969012917790e0 5.532894467051e0 1.745883574381e1 2.147651754899e1 2.631377485886e1 4.501344915198e1 5.017585183857e1 5.664810683693e1 5.955344569994e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.069391739897e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024723504451e1 -1.020293770140e1 -7.128830272832e0 -6.375887054148e0 -5.913545116168e0 2.204069848645e0 2.971950211305e0 5.531994526053e0 1.745946971448e1 2.147567022653e1 2.631339465371e1 4.501434399976e1 5.018107943643e1 5.665402271456e1 5.953914077313e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017399153049e1 -1.013516907864e1 -7.125521190627e0 -6.579718018167e0 -6.009842191980e0 -2.172173526589e-1 5.863981226585e0 5.961609385558e0 1.774106951879e1 1.780489988529e1 3.146150378698e1 4.543347805861e1 5.150005461208e1 5.573607983268e1 5.801522761106e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007533820845e1 -9.859271602782e0 -7.224067982571e0 -7.059976933495e0 -6.217391905861e0 -2.380408907792e0 7.002960624660e0 8.745002093533e0 1.614996610324e1 1.877039974772e1 3.647715723978e1 4.414977167595e1 5.306300277355e1 5.608040303587e1 5.921612638372e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001327790904e1 -9.500472559303e0 -7.784107712744e0 -7.297661866723e0 -6.387186406080e0 -3.921654169884e0 8.547141055949e0 8.883060443713e0 2.012246398756e1 2.165929174481e1 3.765350860736e1 4.025600827297e1 5.299805350185e1 5.509303099306e1 7.449202209594e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022745080313e1 -9.117133778622e0 -8.257649443329e0 -7.440916298222e0 -6.421842176627e0 -4.960750942522e0 7.786047546631e0 1.116321935368e1 2.368434974604e1 2.971119890679e1 3.327732231333e1 4.014742456952e1 5.146648724300e1 5.672001902576e1 8.770580443429e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066166001605e1 -8.858488753110e0 -8.458750562678e0 -7.271059159036e0 -6.494264374568e0 -5.659723322114e0 7.114612607705e0 1.418609485385e1 2.628940752934e1 2.859318627538e1 3.527284545863e1 4.145689682550e1 5.051230699264e1 5.798697630450e1 6.902104635505e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096675465254e1 -9.032265085628e0 -8.052397707720e0 -7.083877651282e0 -6.819634983279e0 -5.931514211372e0 6.708145721121e0 1.754872081704e1 2.151445667016e1 2.997832593217e1 3.482900609175e1 4.516003792066e1 4.859513392537e1 5.501253148122e1 6.110085098213e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096670679237e1 -9.032243095722e0 -8.051989326304e0 -7.084120660560e0 -6.820543267344e0 -5.930905228971e0 6.708297152471e0 1.754715292639e1 2.151424849656e1 2.998147490330e1 3.482807594733e1 4.515978731128e1 4.859483271768e1 5.501282186737e1 6.110065906415e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066152650512e1 -8.858319690807e0 -8.458244235965e0 -7.271543897732e0 -6.496282871785e0 -5.658228195286e0 7.115079341385e0 1.418392761291e1 2.628673560446e1 2.859748809459e1 3.527198924944e1 4.145762091518e1 5.051415659677e1 5.798740918296e1 6.901952776377e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022727816698e1 -9.116846109492e0 -8.256575196388e0 -7.442218943409e0 -6.423466317695e0 -4.959689197437e0 7.786838900099e0 1.116091834737e1 2.368652860693e1 2.971108312035e1 3.327292736218e1 4.014768652443e1 5.147297120065e1 5.671975121026e1 8.770509572629e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001312187204e1 -9.500274081634e0 -7.781791397021e0 -7.299791315947e0 -6.388765689505e0 -3.921033036294e0 8.549732532993e0 8.879370345208e0 2.012325645089e1 2.166020380553e1 3.765032119467e1 4.025177845559e1 5.300890754859e1 5.509238823942e1 7.449233830413e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007521637361e1 -9.859145302027e0 -7.222353485363e0 -7.060432650839e0 -6.219532678583e0 -2.380220041931e0 7.002160656982e0 8.745173415881e0 1.615000066517e1 1.877140824106e1 3.647715739845e1 4.414200330263e1 5.306164962706e1 5.609094461845e1 5.921831708110e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017394429255e1 -1.013508724495e1 -7.125826039762e0 -6.577746214806e0 -6.011901933025e0 -2.173589476686e-1 5.861926062413e0 5.963520858519e0 1.774040913540e1 1.780590989869e1 3.146180519755e1 4.543177972536e1 5.149677559831e1 5.572326896810e1 5.803526893930e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 9.802757615725e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024713518576e1 -1.020292267801e1 -7.128814714032e0 -6.373850590453e0 -5.916044379060e0 2.206030298896e0 2.969012907306e0 5.532894399232e0 1.745883346675e1 2.147652061770e1 2.631377414544e1 4.501344914178e1 5.017585183004e1 5.664810687442e1 5.955344566733e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015372231157e1 -1.000052255984e1 -7.232168642193e0 -6.917938912702e0 -5.841963875240e0 2.220879859904e-2 3.420137111207e0 7.975625795773e0 1.535052877530e1 2.293556443157e1 3.233416912387e1 4.393933421163e1 5.087227750817e1 5.604541230151e1 6.022675163566e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007521686791e1 -9.859144578731e0 -7.222353501711e0 -7.060432553635e0 -6.219532744654e0 -2.380220238083e0 7.002160643483e0 8.745173392958e0 1.614999878891e1 1.877140821597e1 3.647715938775e1 4.414200325143e1 5.306164973871e1 5.609094459029e1 5.921831732902e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.009710770322e1 -9.506739881253e0 -7.359158665931e0 -7.357361644976e0 -6.657042180127e0 -4.175664162301e0 1.019893347288e1 1.020187361948e1 1.741740443174e1 1.853114680645e1 3.868798606313e1 4.252850956702e1 5.297058442846e1 5.298164499103e1 6.935649894836e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032283032542e1 -9.103077130886e0 -7.873873976049e0 -7.605710422474e0 -6.732901859729e0 -5.319407057329e0 1.042354248927e1 1.227065758751e1 2.018907408594e1 2.482230015423e1 3.803321948495e1 3.979603231899e1 5.184519609471e1 5.380736653220e1 8.147070791211e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081483762278e1 -8.727311156005e0 -8.428314467360e0 -7.500850877245e0 -6.660432013450e0 -6.071721002771e0 9.707635566849e0 1.496879664183e1 2.440677273294e1 3.209292068722e1 3.306518412810e1 4.068315652433e1 5.092477988491e1 5.574645810421e1 7.168273392343e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129144590262e1 -8.805682942158e0 -8.354534205878e0 -7.246252333011e0 -6.647248617063e0 -6.589766219786e0 9.103956348914e0 1.836566264364e1 2.744166570624e1 2.825409696201e1 3.414194172952e1 4.332519902068e1 4.907982950490e1 5.061180233245e1 5.705314720773e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.147772905414e1 -8.937450557111e0 -8.144078448720e0 -7.110509328075e0 -6.944169201967e0 -6.562473608033e0 8.851886850952e0 2.137671532343e1 2.474235561653e1 2.750839324990e1 3.409800664309e1 4.378088525649e1 4.655138869196e1 4.846787958307e1 5.744076856241e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129144581574e1 -8.805682951916e0 -8.354534732576e0 -7.246252535336e0 -6.647247972560e0 -6.589766208258e0 9.103956428938e0 1.836566263862e1 2.744166708852e1 2.825409697980e1 3.414194179120e1 4.332519775705e1 4.907982902066e1 5.061180234999e1 5.705314719912e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081483739693e1 -8.727311999862e0 -8.428314490299e0 -7.500850875395e0 -6.660431987430e0 -6.071720397641e0 9.707635740375e0 1.496879663876e1 2.440677493328e1 3.209292139494e1 3.306518415574e1 4.068315322688e1 5.092477974208e1 5.574645808464e1 7.168273398246e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032282989253e1 -9.103078146620e0 -7.873874023002e0 -7.605710383062e0 -6.732901808502e0 -5.319406550192e0 1.042354266212e1 1.227065758482e1 2.018907655729e1 2.482230025702e1 3.803321952594e1 3.979602926584e1 5.184519613594e1 5.380736649635e1 8.147070780153e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.009710710731e1 -9.506740879315e0 -7.359158707564e0 -7.357361686225e0 -6.657042095506e0 -4.175663812990e0 1.019893348233e1 1.020187362891e1 1.741740756253e1 1.853114603027e1 3.868798362517e1 4.252850962325e1 5.297058441334e1 5.298164497601e1 6.935649854822e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007521604390e1 -9.859145653209e0 -7.222353544357e0 -7.060432538475e0 -6.219532698053e0 -2.380220053948e0 7.002160747065e0 8.745173390339e0 1.614999885345e1 1.877141026868e1 3.647715711246e1 4.414200328766e1 5.306164974745e1 5.609094455442e1 5.921831702692e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015372198158e1 -1.000052297868e1 -7.232168653735e0 -6.917938901527e0 -5.841963862116e0 2.220886007656e-2 3.420137151271e0 7.975625794674e0 1.535052877562e1 2.293556609885e1 3.233416733339e1 4.393933422164e1 5.087227748449e1 5.604541226719e1 6.022675162562e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001623173304e1 -9.704066338174e0 -7.913344242666e0 -6.945761801727e0 -5.864484149060e0 1.730130762428e-1 2.033740819078e0 7.257238273249e0 1.877868905514e1 2.753425549785e1 3.452557235073e1 3.919880128993e1 5.303680204157e1 6.146427263597e1 6.544153756845e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952572786224e0 -9.707961582068e0 -7.868213000528e0 -7.023672961612e0 -6.030120863541e0 -1.829911492522e0 4.666765356463e0 7.635291938847e0 1.926751610694e1 2.449612425954e1 3.601060397122e1 3.979903927348e1 5.320462700347e1 5.913896670240e1 6.799355468529e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001300151920e1 -9.500022131942e0 -7.782335708143e0 -7.298452528150e0 -6.390133138869e0 -3.921420264120e0 8.548093859287e0 8.880881831790e0 2.012242824272e1 2.166152594617e1 3.764836335991e1 4.025062337204e1 5.299773276084e1 5.510994870068e1 7.449235939528e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032268352144e1 -9.102745797371e0 -7.872504184705e0 -7.606503030712e0 -6.734677337387e0 -5.319197859378e0 1.042289999417e1 1.227081597658e1 2.018858212588e1 2.482380608435e1 3.802830914342e1 3.979553827349e1 5.184613022423e1 5.381499349740e1 8.147012502649e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086675924515e1 -8.786277694931e0 -8.147920728296e0 -7.731714448257e0 -6.873246020644e0 -6.070278873293e0 1.220537067900e1 1.339589544485e1 2.416781851301e1 3.015945184873e1 3.446371255612e1 4.169103583778e1 5.160372501717e1 5.348608859813e1 7.342930091204e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146366743038e1 -8.674830924880e0 -8.468052158860e0 -7.514573995327e0 -6.835606934997e0 -6.507800153123e0 1.200369794276e1 1.612584603376e1 2.854954147202e1 2.976559580861e1 3.455800948473e1 4.302380468246e1 5.034838175869e1 5.114734895124e1 5.491645410194e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183234138419e1 -8.811390625050e0 -8.469191674762e0 -7.237684597418e0 -6.911462586633e0 -6.686151935213e0 1.162324571462e1 1.964399890332e1 2.390344841502e1 3.267100736410e1 3.557303472587e1 4.161180932099e1 4.552183309199e1 4.843641228110e1 5.508942461460e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183237241026e1 -8.811359219601e0 -8.469535328452e0 -7.237137139034e0 -6.910933291407e0 -6.686812650356e0 1.162287690909e1 1.964606574655e1 2.390332042705e1 3.266653374839e1 3.557460320353e1 4.161461401784e1 4.552216616039e1 4.843430743012e1 5.508946188843e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146375556707e1 -8.674657964983e0 -8.469192474596e0 -7.513599361275e0 -6.833842577887e0 -6.509260060723e0 1.200242169475e1 1.612888089248e1 2.855229255615e1 2.976125400654e1 3.455841111886e1 4.302427606979e1 5.034390839190e1 5.114890553165e1 5.491764993205e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086688994460e1 -8.786580703187e0 -8.149900642032e0 -7.729741286619e0 -6.871622429100e0 -6.071080864664e0 1.220258013854e1 1.340001306894e1 2.416639573479e1 3.015941325028e1 3.446677811910e1 4.169230637880e1 5.159477240647e1 5.348760118901e1 7.343110597601e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032282997878e1 -9.103077987530e0 -7.873873962972e0 -7.605710558762e0 -6.732901792416e0 -5.319406517954e0 1.042354259133e1 1.227065760877e1 2.018907715666e1 2.482229956777e1 3.803321953398e1 3.979602950896e1 5.184519591989e1 5.380736657114e1 8.147070782350e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001312187221e1 -9.500274081144e0 -7.781791396685e0 -7.299791316730e0 -6.388765689710e0 -3.921033035983e0 8.549732533503e0 8.879370344879e0 2.012325644921e1 2.166020380718e1 3.765032119488e1 4.025177845508e1 5.300890754925e1 5.509238823901e1 7.449233830406e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952602234717e0 -9.708148683036e0 -7.867814129412e0 -7.024452180838e0 -6.029524438683e0 -1.829294984416e0 4.666277887456e0 7.635612828352e0 1.926713099581e1 2.449647739246e1 3.601144283733e1 3.979905043573e1 5.320769297546e1 5.913284896679e1 6.799323421444e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767253565694e0 -9.396870550710e0 -8.569708950442e0 -6.913397391556e0 -6.144306441526e0 -8.782546211337e-1 2.819059249251e0 5.815244538263e0 2.554068412592e1 3.051308614693e1 3.134380768038e1 4.006524176154e1 5.433615341938e1 6.070766840550e1 9.667573122716e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767219697544e0 -9.396532091277e0 -8.570083324849e0 -6.912961835124e0 -6.144658825314e0 -8.794795442581e-1 2.820036718180e0 5.815174278095e0 2.554069942533e1 3.051445819487e1 3.134101966001e1 4.006566735213e1 5.433163650713e1 6.071510862218e1 9.667619550886e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.806514885558e0 -9.458045272898e0 -8.348733015088e0 -7.151115314917e0 -6.267801036280e0 -3.148912506802e0 6.106669933037e0 6.889715639842e0 2.541610119076e1 2.862507617215e1 3.200355049046e1 4.051642193988e1 5.324337147247e1 5.814062683482e1 9.339607397524e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022702382794e1 -9.116262267596e0 -8.256213911583e0 -7.442307358293e0 -6.424638731032e0 -4.960777904526e0 7.785849740590e0 1.116223653085e1 2.368481652264e1 2.971312012285e1 3.326852083467e1 4.014714596476e1 5.146818596627e1 5.673611362995e1 8.770378901155e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081462763992e1 -8.726664703475e0 -8.426896233111e0 -7.502202651278e0 -6.662566013853e0 -6.071425538001e0 9.706984254840e0 1.496911225468e1 2.440603900091e1 3.209432292977e1 3.305968564615e1 4.068314261368e1 5.092648286391e1 5.575687066344e1 7.167994250494e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146359675774e1 -8.674345636790e0 -8.467473148053e0 -7.515525460176e0 -6.835960928778e0 -6.508015654871e0 1.200292482230e1 1.612681240774e1 2.855247170922e1 2.975893493482e1 3.455917514920e1 4.302351125217e1 5.034988209500e1 5.114595569266e1 5.492110792099e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195764441899e1 -8.705537833237e0 -8.656301455644e0 -7.321469532097e0 -6.890417047536e0 -6.672581285189e0 1.408854143021e1 1.676495685004e1 2.391849585044e1 3.470237500498e1 3.666873773720e1 4.147347212859e1 4.543240785355e1 4.883074648877e1 5.379616705772e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213844339587e1 -8.778216321911e0 -8.688279367144e0 -7.145291394771e0 -7.018119673800e0 -6.676777826198e0 1.467665441717e1 1.851025486645e1 2.043511305805e1 3.748910188895e1 3.778869630791e1 3.948330096500e1 4.616702408322e1 4.718718128099e1 5.350299182345e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195773161815e1 -8.705159313777e0 -8.657558724584e0 -7.320258981129e0 -6.889645708167e0 -6.673295812474e0 1.408571249445e1 1.677033488497e1 2.391787682259e1 3.469823130230e1 3.666967984790e1 4.147954619185e1 4.543352249182e1 4.882438221757e1 5.379501886305e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146375560164e1 -8.674657919260e0 -8.469192458064e0 -7.513599479767e0 -6.833842559787e0 -6.509259969797e0 1.200242172044e1 1.612888089067e1 2.855229193868e1 2.976125468673e1 3.455841164226e1 4.302427588780e1 5.034390763951e1 5.114890570806e1 5.491764999887e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081483752054e1 -8.727311709792e0 -8.428314442859e0 -7.500851236864e0 -6.660431958698e0 -6.071720253746e0 9.707635713048e0 1.496879666440e1 2.440677518956e1 3.209292143071e1 3.306518417055e1 4.068315340726e1 5.092477910982e1 5.574645815118e1 7.168273397730e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022727838934e1 -9.116845762763e0 -8.256575125938e0 -7.442219227113e0 -6.423466273706e0 -4.959689136853e0 7.786838842760e0 1.116091840679e1 2.368652937271e1 2.971108215892e1 3.327292725990e1 4.014768702547e1 5.147297082861e1 5.671975129890e1 8.770509578843e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.806714620809e0 -9.458532874913e0 -8.348225484596e0 -7.151959078481e0 -6.266946479111e0 -3.147470521890e0 6.107423656333e0 6.888312624934e0 2.541723543556e1 2.862407357485e1 3.200623714084e1 4.051632720866e1 5.325471277918e1 5.812116504722e1 9.339604011680e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.625855571103e0 -9.345140582405e0 -8.698482547432e0 -6.982582519395e0 -6.422437299754e0 -1.945835503003e0 4.057215920891e0 5.354976143164e0 2.474247278889e1 3.161218729932e1 3.565232394067e1 4.171934486884e1 5.405287212503e1 5.870284749738e1 9.473349066980e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.558442696366e0 -9.087532606061e0 -9.043477791155e0 -6.829313265411e0 -6.450103582220e0 -8.891369274809e-3 1.838732833076e0 4.587848942352e0 2.445553892034e1 3.236134181080e1 3.563460599410e1 4.162346562547e1 5.520458147406e1 6.036922874109e1 9.233080643731e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.625659225918e0 -9.344452405382e0 -8.699081523798e0 -6.982236163392e0 -6.422820031546e0 -1.947966662451e0 4.057017512999e0 5.356605307893e0 2.474208925826e1 3.161126070620e1 3.565051826623e1 4.171975938188e1 5.404107645196e1 5.871915986853e1 9.473754678442e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008275712615e1 -9.136762988643e0 -8.487751107319e0 -7.217861416384e0 -6.425826846988e0 -4.055902143868e0 5.566548806316e0 9.126539438236e0 2.559449717124e1 2.962732722757e1 3.589285713378e1 4.141614512849e1 5.142545808798e1 5.834846386788e1 8.879101336580e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066129387764e1 -8.856954542327e0 -8.457912747812e0 -7.272553262398e0 -6.496190261683e0 -5.660817800695e0 7.114158872242e0 1.418531077732e1 2.628786733036e1 2.859060478275e1 3.527107312844e1 4.145862748097e1 5.051343470674e1 5.799896777775e1 6.902215472279e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129125557614e1 -8.804346024827e0 -8.353634272478e0 -7.247765377210e0 -6.647060319768e0 -6.592014963737e0 9.103182450418e0 1.836650503693e1 2.744099549046e1 2.824843519486e1 3.414226912345e1 4.332646004898e1 4.907796588568e1 5.061306189136e1 5.706481823329e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183223706270e1 -8.810238456898e0 -8.469120342779e0 -7.238730838236e0 -6.911275189745e0 -6.687233837064e0 1.162252070604e1 1.964516141319e1 2.390239766942e1 3.266427659302e1 3.557518560147e1 4.161048090318e1 4.552297614308e1 4.843916303327e1 5.509608282724e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213839401148e1 -8.777269150177e0 -8.688761420170e0 -7.146319611751e0 -7.017592039548e0 -6.677020666113e0 1.467726365208e1 1.850633031769e1 2.043797927112e1 3.749438231722e1 3.778117651077e1 3.948188378032e1 4.616604120171e1 4.719164447997e1 5.350513686672e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.213844339459e1 -8.778216240155e0 -8.688279545926e0 -7.145292243839e0 -7.018118723746e0 -6.676777816833e0 1.467665462221e1 1.851025463244e1 2.043511311805e1 3.748910408651e1 3.778869518443e1 3.948330146729e1 4.616702156998e1 4.718718199978e1 5.350299189116e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183237243779e1 -8.811359163690e0 -8.469535516639e0 -7.237137345292e0 -6.910932938068e0 -6.686812601036e0 1.162287699686e1 1.964606570673e1 2.390332035805e1 3.266653317864e1 3.557460591611e1 4.161461397826e1 4.552216477090e1 4.843430641776e1 5.508946199880e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129144591201e1 -8.805682911479e0 -8.354534641587e0 -7.246252909471e0 -6.647247618463e0 -6.589766171861e0 9.103956442838e0 1.836566267187e1 2.744166665426e1 2.825409699526e1 3.414194433227e1 4.332519627569e1 4.907982849058e1 5.061180190816e1 5.705314725877e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066152669811e1 -8.858319585165e0 -8.458243906360e0 -7.271544372944e0 -6.496282700427e0 -5.658228088662e0 7.115079318430e0 1.418392764244e1 2.628673536922e1 2.859748891613e1 3.527199006225e1 4.145761994087e1 5.051415590965e1 5.798740926202e1 6.901952779353e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008305343041e1 -9.137596153719e0 -8.487619956362e0 -7.217627380774e0 -6.425621211941e0 -4.053490538887e0 5.567510654173e0 9.124601722198e0 2.559478541977e1 2.963092579859e1 3.589376140623e1 4.141652662916e1 5.143115486741e1 5.833291820909e1 8.878728742505e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916941651086e0 -9.194123065697e0 -8.494238266822e0 -7.015693372062e0 -6.612159487970e0 -2.722308252415e0 3.857340019642e0 7.258298044649e0 1.782128794428e1 3.560052305201e1 3.972075342120e1 4.322458700574e1 5.176304806619e1 5.951072947653e1 9.130782216241e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.610609422612e0 -9.150511523478e0 -8.788781963607e0 -6.858105643099e0 -6.668243484931e0 -3.933128984290e-1 2.474153348878e0 4.268208294663e0 1.710526087957e1 3.808366386839e1 3.987221536139e1 4.246017501395e1 5.552761965733e1 5.909233844611e1 8.611554185492e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.610513481803e0 -9.149649063012e0 -8.789543004687e0 -6.858222742296e0 -6.668219797392e0 -3.953999768329e-1 2.474341402908e0 4.269746236053e0 1.710524169432e1 3.808323196943e1 3.986995635674e1 4.246178430865e1 5.551502981941e1 5.910651010889e1 8.611862443505e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916665296180e0 -9.193069747380e0 -8.494841035223e0 -7.016177829004e0 -6.612005922449e0 -2.725096141947e0 3.856359106703e0 7.260805757089e0 1.782120227842e1 3.559721623727e1 3.971956182217e1 4.322477407234e1 5.175560560362e1 5.952451060181e1 9.131544634027e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041336240269e1 -9.108086077814e0 -8.242217992533e0 -7.089274534808e0 -6.664561320690e0 -4.608153359032e0 5.085802969054e0 1.199198835397e1 1.931735260863e1 3.275347808010e1 3.772913445505e1 4.368338662497e1 5.016233885007e1 5.934242266556e1 7.968079439464e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096649167115e1 -9.030893882019e0 -8.051100481070e0 -7.085373521424e0 -6.820164728889e0 -5.934306087732e0 6.707350739164e0 1.754839051744e1 2.151331436625e1 2.997518158893e1 3.482870153551e1 4.516028168116e1 4.859405612569e1 5.501046247187e1 6.112001838401e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.147755173294e1 -8.936147042750e0 -8.142976288667e0 -7.112068588606e0 -6.944148421305e0 -6.564740467979e0 8.851010716212e0 2.138127511141e1 2.473320041776e1 2.750786089717e1 3.409832701813e1 4.377726683268e1 4.655146322006e1 4.847263433578e1 5.745283033035e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183223703507e1 -8.810238487587e0 -8.469120480530e0 -7.238731419938e0 -6.911274487070e0 -6.687233813947e0 1.162252077112e1 1.964516149139e1 2.390239760937e1 3.266427790307e1 3.557518520057e1 4.161048106816e1 4.552297454178e1 4.843916339886e1 5.509608278484e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.195764439019e1 -8.705538083801e0 -8.656301418511e0 -7.321470297119e0 -6.890416216472e0 -6.672581151958e0 1.408854171570e1 1.676495679102e1 2.391849572928e1 3.470237782926e1 3.666873727504e1 4.147347209662e1 4.543240474374e1 4.883074702642e1 5.379616695512e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.183234138410e1 -8.811390599802e0 -8.469192000855e0 -7.237685385260e0 -6.911461532577e0 -6.686151860806e0 1.162324586755e1 1.964399894153e1 2.390344828619e1 3.267100810473e1 3.557303703711e1 4.161180944632e1 4.552183009940e1 4.843641163650e1 5.508942468238e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.147772911408e1 -8.937450521683e0 -8.144078791482e0 -7.110509945326e0 -6.944168192537e0 -6.562473565969e0 8.851886893876e0 2.137671537351e1 2.474235562306e1 2.750839277801e1 3.409801018195e1 4.378088522411e1 4.655138517854e1 4.846787955008e1 5.744076861631e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096670693192e1 -9.032243050557e0 -8.051989313576e0 -7.084121137181e0 -6.820542671665e0 -5.930905192279e0 6.708297142083e0 1.754715292927e1 2.151424845200e1 2.998147479680e1 3.482807909662e1 4.515978470275e1 4.859483194013e1 5.501282186279e1 6.110065916610e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041362152908e1 -9.109353067154e0 -8.242197809732e0 -7.088320127352e0 -6.664937558135e0 -4.604945515166e0 5.086751094888e0 1.199033189424e1 1.931753627268e1 3.275890879194e1 3.773007808567e1 4.368313443800e1 5.016420857717e1 5.933235480329e1 7.967090531522e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008836569210e1 -9.263275997598e0 -8.173851333264e0 -6.950405953136e0 -6.815900272360e0 -3.140418150774e0 3.588067314236e0 9.864078398310e0 1.319917601279e1 3.779657106928e1 4.031305394561e1 4.599268062130e1 5.089708733781e1 6.162861039316e1 1.050427252432e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715463753453e0 -9.213500270571e0 -8.523110066416e0 -6.888949060529e0 -6.776725968084e0 -1.017555027659e0 2.673256710361e0 5.800785480934e0 1.206416509846e1 4.103245249058e1 4.331419955451e1 4.540248437241e1 5.321269837192e1 6.067743186815e1 1.079977273240e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.601216760057e0 -8.914154316229e0 -8.912847645889e0 -6.815434831691e0 -6.814871171986e0 1.377995165982e0 1.378508667302e0 3.752348424077e0 1.171679302424e1 4.380060797997e1 4.380063348351e1 4.409470915631e1 5.730567292566e1 5.732363571212e1 1.051093254952e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715272151905e0 -9.212310137210e0 -8.524034263136e0 -6.889675690850e0 -6.776411251547e0 -1.019942435289e0 2.671978794945e0 5.803806089501e0 1.206434438848e1 4.102871361850e1 4.331378207273e1 4.540300136062e1 5.320346366977e1 6.069475493445e1 1.080005800731e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008802797575e1 -9.262076497993e0 -8.174267254720e0 -6.951409148779e0 -6.815769517722e0 -3.143384481938e0 3.587159337428e0 9.866007246775e0 1.319960999340e1 3.779025036492e1 4.031285328646e1 4.599280570789e1 5.089397666356e1 6.164407445048e1 1.050496665504e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054182412961e1 -9.186387035357e0 -7.958172019844e0 -7.001673176922e0 -6.889212931126e0 -4.786277614064e0 4.908466539275e0 1.469958244218e1 1.550896540973e1 3.408041454611e1 3.691067296520e1 4.640895107587e1 4.917256428222e1 6.019815167590e1 7.988204989546e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096649162367e1 -9.030893899699e0 -8.051100800080e0 -7.085373679118e0 -6.820164286565e0 -5.934306074862e0 6.707350758515e0 1.754839057651e1 2.151331433068e1 2.997518209923e1 3.482870155313e1 4.516028146884e1 4.859405568809e1 5.501046248168e1 6.112001836478e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129125548919e1 -8.804346034600e0 -8.353634799951e0 -7.247765578766e0 -6.647059675159e0 -6.592014952321e0 9.103182530333e0 1.836650503203e1 2.744099687259e1 2.824843521266e1 3.414226918519e1 4.332645878696e1 4.907796540146e1 5.061306190939e1 5.706481822284e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146359666148e1 -8.674346011182e0 -8.467473267654e0 -7.515525930894e0 -6.835960654989e0 -6.508015059049e0 1.200292502473e1 1.612681245257e1 2.855247312094e1 2.975893606015e1 3.455917509653e1 4.302350850819e1 5.034988228339e1 5.114595524731e1 5.492110787420e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.146366736872e1 -8.674831252492e0 -8.468052263037e0 -7.514574584189e0 -6.835606642656e0 -6.507799467110e0 1.200369817106e1 1.612584607664e1 2.854954226686e1 2.976559761466e1 3.455800995438e1 4.302380175519e1 5.034838119427e1 5.114734868411e1 5.491645412192e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.129144591201e1 -8.805682911481e0 -8.354534641586e0 -7.246252909470e0 -6.647247618462e0 -6.589766171864e0 9.103956442836e0 1.836566267196e1 2.744166665373e1 2.825409699534e1 3.414194433231e1 4.332519627722e1 4.907982848998e1 5.061180190986e1 5.705314725697e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096675474467e1 -9.032265058137e0 -8.052398012983e0 -7.083878288203e0 -6.819633942613e0 -5.931514162873e0 6.708145730140e0 1.754872087891e1 2.151445659020e1 2.997832633685e1 3.482900925710e1 4.516003510035e1 4.859513271033e1 5.501253148655e1 6.110085106481e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054213568421e1 -9.187685195623e0 -7.958761506664e0 -7.000290072320e0 -6.889031663202e0 -4.783138520765e0 4.909294082946e0 1.470154868614e1 1.550621104737e1 3.408726894571e1 3.690971107477e1 4.640858817614e1 4.917373001040e1 6.018801094130e1 7.987142977953e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008856200672e1 -9.263270353040e0 -8.174486840022e0 -6.949815971395e0 -6.815047770887e0 -3.140884354960e0 3.587727467212e0 9.866822328907e0 1.319725503930e1 3.779539071273e1 4.031531096280e1 4.599210561690e1 5.089470334800e1 6.162841359117e1 1.050424165194e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711498657163e0 -9.323892030035e0 -8.372250562182e0 -6.873639095281e0 -6.843603893724e0 -1.256457837500e0 2.606788705802e0 8.180298232517e0 8.876566678276e0 4.294531823534e1 4.321921506688e1 4.723541988933e1 5.241545517320e1 6.151504145629e1 1.255540477729e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.456244244814e0 -9.180946083964e0 -8.735210924915e0 -6.841360797842e0 -6.828856864825e0 8.127723625110e-1 2.314363671816e0 4.927071459787e0 7.924431313917e0 4.575294145413e1 4.709576636288e1 4.725540253050e1 5.421098255648e1 5.858625679766e1 1.359376453973e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.456168669155e0 -9.179839981483e0 -8.736109328163e0 -6.842092517150e0 -6.828554902094e0 8.124711167159e-1 2.311431491069e0 4.930030318808e0 7.924735229456e0 4.575188929878e1 4.709236981637e1 4.725540497563e1 5.420447409928e1 5.860024020120e1 1.359387299160e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711009846599e0 -9.322840199727e0 -8.372812284602e0 -6.874843666382e0 -6.843728423449e0 -1.258610947215e0 2.605707998877e0 8.179594580254e0 8.880228693103e0 4.293595046363e1 4.322001586558e1 4.723577086736e1 5.241330353383e1 6.153296144842e1 1.255576346293e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008802794276e1 -9.262076542001e0 -8.174267320010e0 -6.951409541110e0 -6.815769045373e0 -3.143384471733e0 3.587159340537e0 9.866007254690e0 1.319960997994e1 3.779025067324e1 4.031285365724e1 4.599280507069e1 5.089397656477e1 6.164407444751e1 1.050496665573e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041336230822e1 -9.108086181647e0 -8.242218241156e0 -7.089274742648e0 -6.664560876880e0 -4.608153312912e0 5.085802990667e0 1.199198838804e1 1.931735256689e1 3.275347894079e1 3.772913512390e1 4.368338511821e1 5.016233867551e1 5.934242265077e1 7.968079441090e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066129370483e1 -8.856954784965e0 -8.457913159087e0 -7.272553279572e0 -6.496189944205e0 -5.660817605483e0 7.114158951171e0 1.418531082044e1 2.628786800031e1 2.859060552828e1 3.527107400598e1 4.145862507022e1 5.051343449841e1 5.799896775109e1 6.902215473199e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081462741392e1 -8.726665548173e0 -8.426896256097e0 -7.502202649045e0 -6.662565987784e0 -6.071424932496e0 9.706984428185e0 1.496911225173e1 2.440604120134e1 3.209432363764e1 3.305968567376e1 4.068313931641e1 5.092648272131e1 5.575687064085e1 7.167994256701e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.086675904123e1 -8.786278480019e0 -8.147920706177e0 -7.731714699018e0 -6.873245908067e0 -6.070278189111e0 1.220537095209e1 1.339589544523e1 2.416782146476e1 3.015945177635e1 3.446371248431e1 4.169103240592e1 5.160372511822e1 5.348608842320e1 7.342930098407e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.081483752054e1 -8.727311709791e0 -8.428314442863e0 -7.500851236861e0 -6.660431958701e0 -6.071720253745e0 9.707635713038e0 1.496879666450e1 2.440677518930e1 3.209292143139e1 3.306518417058e1 4.068315340654e1 5.092477911061e1 5.574645814824e1 7.168273397987e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066166003641e1 -8.858488889762e0 -8.458750643802e0 -7.271059652308e0 -6.494263883358e0 -5.659723022573e0 7.114612663823e0 1.418609492646e1 2.628940796527e1 2.859318784063e1 3.527284714965e1 4.145689344079e1 5.051230609669e1 5.798697635712e1 6.902104639355e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041382590616e1 -9.109469531744e0 -8.243050223930e0 -7.087590220950e0 -6.663275421078e0 -4.605926682309e0 5.086253183639e0 1.199293706946e1 1.931752614568e1 3.275521307209e1 3.773227895563e1 4.368242964500e1 5.016262630115e1 5.933215001327e1 7.967129209954e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.917466885579e0 -9.194309092732e0 -8.495295444177e0 -7.014272880165e0 -6.610227671534e0 -2.723464573148e0 3.856193670936e0 7.261667660688e0 1.782121092899e1 3.559733863023e1 3.972512044264e1 4.322512195251e1 5.175491703645e1 5.951056087024e1 9.130740527082e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.716188947539e0 -9.213242947901e0 -8.523961961055e0 -6.887984876245e0 -6.775304316329e0 -1.018373760437e0 2.672189349375e0 5.804614056663e0 1.206196800663e1 4.103164891052e1 4.332086912609e1 4.540237314895e1 5.320246847074e1 6.067706879127e1 1.079966996417e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.457175245696e0 -9.180201425455e0 -8.735606690923e0 -6.841018059116e0 -6.828153866708e0 8.123848551420e-1 2.313428048898e0 4.931464040656e0 7.921083899686e0 4.575173610836e1 4.710544382949e1 4.725491677040e1 5.420022891687e1 5.858635223297e1 1.359365056539e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.197869964677e0 -9.196962272252e0 -8.958798337374e0 -6.832354166390e0 -6.832017734418e0 1.231400314613e0 4.093376908540e0 4.093892484555e0 5.435868976396e0 4.763899580937e1 4.763926841881e1 5.174957364916e1 5.176538368571e1 5.729827391066e1 1.540771035294e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.456168669347e0 -9.179839981199e0 -8.736109328370e0 -6.842092536822e0 -6.828554882229e0 8.124711166679e-1 2.311431491093e0 4.930030318715e0 7.924735229485e0 4.575188929644e1 4.709236983804e1 4.725540495633e1 5.420447409922e1 5.860024020122e1 1.359387299160e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715272118571e0 -9.212310232903e0 -8.524034232463e0 -6.889676133468e0 -6.776410768459e0 -1.019942427820e0 2.671978799388e0 5.803806082908e0 1.206434438665e1 4.102871408728e1 4.331378372976e1 4.540299910120e1 5.320346373269e1 6.069475495344e1 1.080005800696e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916665183998e0 -9.193070005791e0 -8.494840979066e0 -7.016178175989e0 -6.612005496332e0 -2.725096095239e0 3.856359123868e0 7.260805754675e0 1.782120226112e1 3.559721762392e1 3.971956316780e1 4.322477098034e1 5.175560579012e1 5.952451061922e1 9.131544635746e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008275687154e1 -9.136763539737e0 -8.487751039616e0 -7.217861597562e0 -6.425826543777e0 -4.055902005841e0 5.566548873387e0 9.126539450003e0 2.559449717567e1 2.962732905705e1 3.589285783475e1 4.141614212537e1 5.142545831039e1 5.834846386251e1 8.879101330759e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022702343266e1 -9.116263140607e0 -8.256213879369e0 -7.442307379059e0 -6.424638596709e0 -4.960777572794e0 7.785849892448e0 1.116223655533e1 2.368481839604e1 2.971312092679e1 3.326852051695e1 4.014714316042e1 5.146818609410e1 5.673611357223e1 8.770378889770e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032268308844e1 -9.102746813476e0 -7.872504231788e0 -7.606502991265e0 -6.734677286027e0 -5.319197351985e0 1.042290016682e1 1.227081597397e1 2.018858459717e1 2.482380618760e1 3.802830918429e1 3.979553521823e1 5.184613026576e1 5.381499345818e1 8.147012492315e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032282997878e1 -9.103077987530e0 -7.873873962980e0 -7.605710558756e0 -6.732901792420e0 -5.319406517954e0 1.042354259132e1 1.227065760885e1 2.018907715665e1 2.482229956808e1 3.803321953393e1 3.979602950649e1 5.184519592034e1 5.380736656790e1 8.147070783032e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022745063051e1 -9.117134304229e0 -8.257649340840e0 -7.440916602848e0 -6.421841997380e0 -4.960750551327e0 7.786047641387e0 1.116321943752e1 2.368435238490e1 2.971119874968e1 3.327732189194e1 4.014742226772e1 5.146648699829e1 5.672001905684e1 8.770580438174e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008340739766e1 -9.137996850276e0 -8.488675955987e0 -7.216079478256e0 -6.423531564149e0 -4.054855985008e0 5.566423372857e0 9.127586493017e0 2.559842998897e1 2.962686185558e1 3.589487740520e1 4.141684406602e1 5.142445650706e1 5.833301093686e1 8.878803284081e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.626633286044e0 -9.345442836106e0 -8.699798882266e0 -6.980360759885e0 -6.420216916222e0 -1.947291562022e0 4.055593573505e0 5.358451995261e0 2.474641014485e1 3.161011444231e1 3.565137552333e1 4.172292745366e1 5.404171056492e1 5.870067209490e1 9.473444820447e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.611661166739e0 -9.150709983442e0 -8.789672183785e0 -6.856198764412e0 -6.666225862687e0 -3.947098457725e-1 2.472982079876e0 4.271820655260e0 1.710512571598e1 3.808173757615e1 3.987272464569e1 4.246693237136e1 5.551560886633e1 5.908859899877e1 8.611545047718e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.602286550931e0 -8.913766853884e0 -8.913766585563e0 -6.813734059057e0 -6.813732999664e0 1.377485915834e0 1.377485926472e0 3.755916879743e0 1.171443801946e1 4.379936192627e1 4.379936701232e1 4.410655538415e1 5.730602801816e1 5.730602805634e1 1.051076900551e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.457175215813e0 -9.180201368872e0 -8.735606736826e0 -6.841017136318e0 -6.828154850203e0 8.123848786271e-1 2.313428024655e0 4.931464053943e0 7.921083894992e0 4.575173245255e1 4.710544355346e1 4.725492075864e1 5.420022893954e1 5.858635221314e1 1.359365056555e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.456244215124e0 -9.180946027218e0 -8.735210970875e0 -6.841359875050e0 -6.828857848125e0 8.127723858574e-1 2.314363647591e0 4.927071473071e0 7.924431309236e0 4.575293779752e1 4.709576608769e1 4.725540651881e1 5.421098257912e1 5.858625677774e1 1.359376453989e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.601216760284e0 -8.914154114863e0 -8.912847847500e0 -6.815435625900e0 -6.814870377089e0 1.377995158179e0 1.378508674946e0 3.752348423990e0 1.171679302424e1 4.380060401931e1 4.380063744398e1 4.409470915645e1 5.730567295326e1 5.732363568456e1 1.051093254953e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.610513449534e0 -9.149649453911e0 -8.789542628820e0 -6.858223309779e0 -6.668219243714e0 -3.953999478754e-1 2.474341406497e0 4.269746225894e0 1.710524169261e1 3.808323549888e1 3.986995381857e1 4.246178312773e1 5.551502992860e1 5.910651009728e1 8.611862444161e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.625658990186e0 -9.344452978389e0 -8.699081193657e0 -6.982236537437e0 -6.422819698719e0 -1.947966571205e0 4.057017554084e0 5.356605292725e0 2.474208924326e1 3.161126394990e1 3.565051588312e1 4.171975819956e1 5.404107660970e1 5.871915987149e1 9.473754675682e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.806514411768e0 -9.458046028727e0 -8.348732867961e0 -7.151115530158e0 -6.267800856512e0 -3.148912318874e0 6.106670064005e0 6.889715613763e0 2.541610421570e1 2.862507511022e1 3.200354988062e1 4.051642028717e1 5.324337159818e1 5.814062684530e1 9.339607371972e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001300094729e1 -9.500023054929e0 -7.782335673328e0 -7.298452620530e0 -6.390133057636e0 -3.921419963948e0 8.548094045656e0 8.880881805949e0 2.012243118871e1 2.166152509427e1 3.764836194616e1 4.025062249518e1 5.299773279644e1 5.510994866890e1 7.449235902102e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.009710710731e1 -9.506740879316e0 -7.359158707566e0 -7.357361686228e0 -6.657042095507e0 -4.175663812991e0 1.019893348236e1 1.020187362893e1 1.741740756253e1 1.853114603029e1 3.868798362252e1 4.252850962325e1 5.297058441189e1 5.298164497457e1 6.935649855394e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001327733738e1 -9.500473481712e0 -7.784107677376e0 -7.297661959809e0 -6.387186324954e0 -3.921653869936e0 8.547141242606e0 8.883060418045e0 2.012246693344e1 2.165929089273e1 3.765350718852e1 4.025600740116e1 5.299805353743e1 5.509303096141e1 7.449202172174e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.807109475339e0 -9.458832695073e0 -8.350084350942e0 -7.149677645186e0 -6.264805244298e0 -3.148730681487e0 6.105376312143e0 6.891867230628e0 2.541557563470e1 2.862353890367e1 3.201200875862e1 4.051842940260e1 5.324391247974e1 5.811920923751e1 9.339635882924e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -9.802757615725e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767857368161e0 -9.397091508401e0 -8.571579803664e0 -6.911311346382e0 -6.141622973295e0 -8.799037381754e-1 2.820400987834e0 5.815715573962e0 2.554012637964e1 3.051565636147e1 3.134639947884e1 4.006818198922e1 5.432858891877e1 6.069726843996e1 9.667651400213e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.559358178158e0 -9.088750290568e0 -9.043907540087e0 -6.827253310930e0 -6.447523198140e0 -1.027427131278e-2 1.839441969905e0 4.589030522631e0 2.445977316365e1 3.236059137000e1 3.563320305280e1 4.162778247577e1 5.520016081419e1 6.035524272430e1 9.233181945289e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.611661198995e0 -9.150709593263e0 -8.789672559705e0 -6.856198195822e0 -6.666226416555e0 -3.947098744323e-1 2.472982075875e0 4.271820665308e0 1.710512571767e1 3.808173404682e1 3.987272719110e1 4.246693354494e1 5.551560875700e1 5.908859901053e1 8.611545047052e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.716188882182e0 -9.213242808875e0 -8.523962130785e0 -6.887983980651e0 -6.775305284154e0 -1.018373761218e0 2.672189347277e0 5.804614064071e0 1.206196800484e1 4.103164647836e1 4.332086743908e1 4.540237743268e1 5.320246848733e1 6.067706875766e1 1.079966996477e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711498505186e0 -9.323892064543e0 -8.372250575098e0 -6.873638248589e0 -6.843604898598e0 -1.256457819622e0 2.606788707989e0 8.180298272486e0 8.876566638028e0 4.294531824171e1 4.321921123739e1 4.723542388216e1 5.241545520104e1 6.151504141774e1 1.255540477775e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715463654786e0 -9.213500227254e0 -8.523110205406e0 -6.888948611298e0 -6.776726448921e0 -1.017555021328e0 2.673256712792e0 5.800785481885e0 1.206416509482e1 4.103245053534e1 4.331419951217e1 4.540248640105e1 5.321269845141e1 6.067743185347e1 1.079977273262e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.610609422812e0 -9.150511522821e0 -8.788781964913e0 -6.858105643127e0 -6.668243483728e0 -3.933128986092e-1 2.474153348714e0 4.268208294642e0 1.710526087956e1 3.808366387086e1 3.987221535677e1 4.246017501602e1 5.552761965751e1 5.909233844596e1 8.611554185495e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.558443065101e0 -9.087532776706e0 -9.043477186885e0 -6.829313640240e0 -6.450103283992e0 -8.891315307568e-3 1.838732814940e0 4.587848953109e0 2.445553892816e1 3.236134489202e1 3.563460247012e1 4.162346590843e1 5.520458154492e1 6.036922871668e1 9.233080646822e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767220213425e0 -9.396531599519e0 -8.570083280610e0 -6.912962094535e0 -6.144658661553e0 -8.794794343260e-1 2.820036719245e0 5.815174325324e0 2.554070219940e1 3.051445724778e1 3.134101768724e1 4.006566726910e1 5.433163654353e1 6.071510863676e1 9.667619548792e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952572994678e0 -9.707961500338e0 -7.868212979405e0 -7.023673107882e0 -6.030120783049e0 -1.829911329028e0 4.666765372739e0 7.635292030432e0 1.926751825198e1 2.449612318881e1 3.601060304607e1 3.979903898031e1 5.320462695134e1 5.913896674358e1 6.799355447184e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007521637361e1 -9.859145302028e0 -7.222353485371e0 -7.060432650834e0 -6.219532678586e0 -2.380220041932e0 7.002160656968e0 8.745173415911e0 1.615000066516e1 1.877140824122e1 3.647715739616e1 4.414200330246e1 5.306164962762e1 5.609094461632e1 5.921831708333e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007533738452e1 -9.859272677170e0 -7.224068025039e0 -7.059976918248e0 -6.217391859427e0 -2.380408723857e0 7.002960728480e0 8.745002090939e0 1.614996616662e1 1.877040180155e1 3.647715496230e1 4.414977171205e1 5.306300278297e1 5.608040299769e1 5.921612608407e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952957631020e0 -9.708311108165e0 -7.870210888349e0 -7.022492317901e0 -6.027006778711e0 -1.830250061318e0 4.667369655578e0 7.635768333729e0 1.926689265841e1 2.449488171063e1 3.601384853761e1 3.980732074570e1 5.320157344359e1 5.912237719069e1 6.799222048284e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -1.069391739897e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001663999208e1 -9.704294874825e0 -7.915581725205e0 -6.944155328976e0 -5.861505075288e0 1.709993963101e-1 2.035999105649e0 7.257395737799e0 1.877827223669e1 2.753326690001e1 3.452657304443e1 3.920887165989e1 5.303213059080e1 6.144954452216e1 6.543992645149e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -9.802757615725e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767857533984e0 -9.397091200133e0 -8.571579897534e0 -6.911311277460e0 -6.141623039823e0 -8.799038109397e-1 2.820400971409e0 5.815715576057e0 2.554012560368e1 3.051565558814e1 3.134640036254e1 4.006818274302e1 5.432858884839e1 6.069726843399e1 9.667651416728e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.626633521195e0 -9.345442263987e0 -8.699799212979e0 -6.980360384611e0 -6.420217249413e0 -1.947291652848e0 4.055593532021e0 5.358452010303e0 2.474641015983e1 3.161011119867e1 3.565137790837e1 4.172292863413e1 5.404171040713e1 5.870067209194e1 9.473444823175e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.917466809464e0 -9.194308869921e0 -8.495295757871e0 -7.014272180131e0 -6.610228365226e0 -2.723464626552e0 3.856193666200e0 7.261667650625e0 1.782121093995e1 3.559733565020e1 3.972512033542e1 4.322512529436e1 5.175491709714e1 5.951056081471e1 9.130740524548e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008856185465e1 -9.263270355272e0 -8.174486859181e0 -6.949815106934e0 -6.815048835018e0 -3.140884353133e0 3.587727477635e0 9.866822330781e0 1.319725503255e1 3.779538965711e1 4.031530805518e1 4.599210967440e1 5.089470358369e1 6.162841351986e1 1.050424165234e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008836550708e1 -9.263276043833e0 -8.173851417474e0 -6.950405486294e0 -6.815900858790e0 -3.140418139072e0 3.588067327813e0 9.864078408165e0 1.319917599256e1 3.779657032566e1 4.031305140460e1 4.599268404210e1 5.089708747471e1 6.162861031891e1 1.050427252539e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916941462939e0 -9.194123101067e0 -8.494238524600e0 -7.015693019977e0 -6.612159753887e0 -2.722308259838e0 3.857340032195e0 7.258298032309e0 1.782128793797e1 3.560052145999e1 3.972075465361e1 4.322458726050e1 5.176304831289e1 5.951072943851e1 9.130782215424e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.625855570757e0 -9.345140583123e0 -8.698482547973e0 -6.982582518305e0 -6.422437299519e0 -1.945835503307e0 4.057215920673e0 5.354976143209e0 2.474247278905e1 3.161218730040e1 3.565232393821e1 4.171934487014e1 5.405287212489e1 5.870284749733e1 9.473349066999e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767254247680e0 -9.396869750914e0 -8.569708999439e0 -6.913397582039e0 -6.144306344233e0 -8.782545844812e-1 2.819059234241e0 5.815244587602e0 2.554068612430e1 3.051308442835e1 3.134380658763e1 4.006524243383e1 5.433615338549e1 6.070766841403e1 9.667573137206e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001623249137e1 -9.704065551460e0 -7.913344251386e0 -6.945761956234e0 -5.864484088125e0 1.730131566276e-1 2.033740805753e0 7.257238358354e0 1.877869095429e1 2.753425221405e1 3.452557334677e1 3.919880146945e1 5.303680200010e1 6.146427266782e1 6.544153767552e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015372292754e1 -1.000052202219e1 -7.232168610058e0 -6.917939038726e0 -5.841963825240e0 2.220888423395e-2 3.420137116532e0 7.975625820085e0 1.535053063306e1 2.293556294679e1 3.233416862112e1 4.393933425199e1 5.087227744272e1 5.604541227898e1 6.022675167105e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017399072706e1 -1.013517000925e1 -7.125521192499e0 -6.579718075816e0 -6.009842134623e0 -2.172172703286e-1 5.863981338147e0 5.961609360033e0 1.774107248246e1 1.780489855283e1 3.146150193368e1 4.543347807337e1 5.150005457699e1 5.573607982123e1 5.801522761004e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015394931805e1 -1.000063024495e1 -7.234172680045e0 -6.917348707340e0 -5.839224078745e0 2.150490663135e-2 3.421462078230e0 7.975329594953e0 1.535052774914e1 2.293457963729e1 3.233355504538e1 4.394891078467e1 5.087636770651e1 5.604022933315e1 6.021244945778e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041333515055e1 -1.039626083910e1 -6.460311125661e0 -6.335934624697e0 -5.892347438056e0 1.849220435811e0 4.781204686883e0 6.344186852907e0 1.467229709819e1 1.712119907220e1 2.354685197482e1 4.703927321627e1 5.166089164914e1 5.647702776598e1 5.856363625531e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017408381858e1 -1.013527293773e1 -7.128366610962e0 -6.577253841142e0 -6.008521594172e0 -2.176367719178e-1 5.861174980605e0 5.965145043842e0 1.774056164974e1 1.780437944049e1 3.146134201585e1 4.544717530944e1 5.149618495748e1 5.572348837145e1 5.801454611722e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952958207831e0 -9.708310339361e0 -7.870210917301e0 -7.022492292972e0 -6.027006822203e0 -1.830250196315e0 4.667369581198e0 7.635768330189e0 1.926689229654e1 2.449488015054e1 3.601385003643e1 3.980732124648e1 5.320157338261e1 5.912237719656e1 6.799222083616e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006551068577e1 -9.106315012423e0 -8.425943253619e0 -7.290122109512e0 -6.005233467283e0 -3.161190462635e0 3.781675913726e0 9.979301410615e0 2.226817100253e1 3.152292504991e1 3.287175298155e1 3.870115956997e1 5.134759272702e1 6.139388451620e1 1.001977150144e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043584514897e1 -8.943001366975e0 -8.240057275098e0 -7.170777355805e0 -6.063919931496e0 -4.295546836669e0 3.273656284339e0 1.296755031019e1 2.463485641341e1 2.735771693057e1 3.546411953721e1 4.095371658967e1 5.060795370206e1 6.335024833171e1 9.558208218163e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070647548153e1 -9.181557426233e0 -7.366125087642e0 -6.985608887679e0 -6.458580551965e0 -4.998829046883e0 3.009253815526e0 1.623089697095e1 2.000414554752e1 2.811945629010e1 3.365319317355e1 4.555071618656e1 5.013606294354e1 6.444034253417e1 8.020703267596e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070643405800e1 -9.181501709939e0 -7.365451483940e0 -6.985483523587e0 -6.460296499163e0 -4.998073181574e0 3.009341805902e0 1.622947756740e1 2.000383435131e1 2.812196506266e1 3.365285110950e1 4.555080255352e1 5.013576722589e1 6.444039234800e1 8.020695209430e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043573685063e1 -8.942680329026e0 -8.239647833763e0 -7.171281043308e0 -6.065607247761e0 -4.294385704921e0 3.273923053336e0 1.296555011725e1 2.463285984683e1 2.736077805065e1 3.546450832926e1 4.095424671727e1 5.060876375479e1 6.335027483074e1 9.558205051326e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006540289437e1 -9.105948674666e0 -8.424972850482e0 -7.291552434003e0 -6.006398023858e0 -3.160335322574e0 3.782065042657e0 9.977393069166e0 2.227045623056e1 3.152023220260e1 3.286966767164e1 3.870252135197e1 5.135229766192e1 6.139378413102e1 1.001979515913e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.020438049230e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952877717709e0 -9.708104345588e0 -7.868089363961e0 -7.024972646312e0 -6.027912318712e0 -1.829622617668e0 4.667801521694e0 7.634280597677e0 1.926849503993e1 2.449496363623e1 3.601160391484e1 3.980167302684e1 5.321213810042e1 5.912205896141e1 6.799280686987e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017399072706e1 -1.013517000924e1 -7.125521192498e0 -6.579718075814e0 -6.009842134622e0 -2.172172703280e-1 5.863981338145e0 5.961609360034e0 1.774107248241e1 1.780489855270e1 3.146150193490e1 4.543347807336e1 5.150005457669e1 5.573607982197e1 5.801522761021e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 9.802757615725e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041327803236e1 -1.039621732819e1 -6.457954919503e0 -6.336139369197e0 -5.894994164938e0 1.849484263247e0 4.780563671317e0 6.344330779536e0 1.467233928322e1 1.712170590947e1 2.354700940007e1 4.703809401049e1 5.164946513265e1 5.647850927287e1 5.857708539351e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.069391739897e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.049523524848e1 -1.049522701478e1 -6.380052075082e0 -5.957189633735e0 -5.953698194469e0 4.281369126478e0 4.285026492643e0 4.509209767490e0 1.665866900675e1 1.665937438749e1 1.818394303442e1 4.627139888927e1 5.315191219282e1 5.832145384849e1 5.833993346708e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041327793695e1 -1.039621734962e1 -6.457954948176e0 -6.336139281022e0 -5.894994220931e0 1.849484264584e0 4.780563666720e0 6.344330756636e0 1.467233738997e1 1.712170652845e1 2.354701073840e1 4.703809400338e1 5.164946508613e1 5.647850934094e1 5.857708536350e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.027905040537e1 -1.020379070274e1 -6.602958661218e0 -6.600712455033e0 -6.180395568172e0 -5.529281799528e-1 7.186395940491e0 7.189513744876e0 1.476803830160e1 1.538234825971e1 3.087247990840e1 4.961469293952e1 5.031686165652e1 5.541998204093e1 5.543264071946e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007533820844e1 -9.859271602782e0 -7.224067982570e0 -7.059976933496e0 -6.217391905861e0 -2.380408907793e0 7.002960624636e0 8.745002093561e0 1.614996610322e1 1.877039974781e1 3.647715723982e1 4.414977167547e1 5.306300277655e1 5.608040303382e1 5.921612638301e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003966180444e1 -9.382821693057e0 -7.964973236880e0 -7.397136873980e0 -6.149310942285e0 -3.747917850908e0 5.966686918960e0 1.090339915845e1 1.848932083920e1 2.632992968569e1 3.753251641312e1 3.806612873236e1 5.125634038995e1 5.832881357642e1 8.004821599959e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036547753291e1 -8.742790734972e0 -8.588755113538e0 -7.324392943895e0 -6.072418875988e0 -4.884053785424e0 5.219394501738e0 1.363763575346e1 2.232029427757e1 3.180630462895e1 3.363684533205e1 3.827528295188e1 5.067060398537e1 6.068544746437e1 9.389980049512e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075593048439e1 -8.994690753227e0 -7.955293647774e0 -7.080415435881e0 -6.015439369043e0 -5.939980870463e0 4.741281460384e0 1.694374027827e1 2.460014128258e1 2.678983798993e1 3.313078402508e1 4.329451619642e1 5.012346182684e1 6.234007355184e1 6.964234899761e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091482511672e1 -9.134784317968e0 -7.259049528471e0 -6.897764863853e0 -6.795282042810e0 -5.994558190846e0 4.551826218047e0 1.966209104549e1 2.349056508364e1 2.410738723789e1 3.252391593414e1 4.644135594607e1 4.863691683676e1 6.168326135485e1 6.290425547505e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075593039871e1 -8.994690758492e0 -7.955294310573e0 -7.080415016079e0 -6.015439362552e0 -5.939980698533e0 4.741281475532e0 1.694374027544e1 2.460014190375e1 2.678983799942e1 3.313078406391e1 4.329451593509e1 5.012346134490e1 6.234007354852e1 6.964234892249e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036547729404e1 -8.742791464192e0 -8.588755125293e0 -7.324392692073e0 -6.072418861831e0 -4.884053536432e0 5.219394562054e0 1.363763575147e1 2.232029524210e1 3.180630464364e1 3.363684720451e1 3.827528020620e1 5.067060373713e1 6.068544745520e1 9.389980032805e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003966125250e1 -9.382822618294e0 -7.964973258690e0 -7.397136756771e0 -6.149310917046e0 -3.747917611476e0 5.966687025220e0 1.090339915633e1 1.848932151365e1 2.632993145748e1 3.753251643488e1 3.806612621216e1 5.125634040172e1 5.832881355759e1 8.004821556179e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.020438049230e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007533738452e1 -9.859272677169e0 -7.224068025043e0 -7.059976918238e0 -6.217391859427e0 -2.380408723854e0 7.002960728457e0 8.745002090942e0 1.614996616659e1 1.877040180153e1 3.647715496449e1 4.414977171176e1 5.306300278554e1 5.608040299790e1 5.921612608077e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.027904959933e1 -1.020379167515e1 -6.602958703429e0 -6.600712496840e0 -6.180395482365e0 -5.529280838472e-1 7.186395950520e0 7.189513754917e0 1.476803722163e1 1.538235130072e1 3.087247775437e1 4.961469291012e1 5.031686172291e1 5.541998201184e1 5.543264069045e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 9.802757615725e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041327709409e1 -1.039621825448e1 -6.457954971975e0 -6.336139280849e0 -5.894994195720e0 1.849484264100e0 4.780563728910e0 6.344330755549e0 1.467233714028e1 1.712170848307e1 2.354700893475e1 4.703809400845e1 5.164946510529e1 5.647850934514e1 5.857708534383e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024713518629e1 -1.020292267743e1 -7.128814713639e0 -6.373850591184e0 -5.916044378874e0 2.206030298976e0 2.969012907286e0 5.532894399520e0 1.745883346600e1 2.147652061815e1 2.631377414550e1 4.501344914166e1 5.017585183012e1 5.664810687450e1 5.955344566727e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017394509533e1 -1.013508631498e1 -7.125826037421e0 -6.577746157421e0 -6.011901990610e0 -2.173590301088e-1 5.861925950655e0 5.963520884649e0 1.774040618556e1 1.780591121722e1 3.146180704962e1 4.543177971053e1 5.149677563381e1 5.572326897876e1 5.803526894017e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007521686791e1 -9.859144578731e0 -7.222353501711e0 -7.060432553634e0 -6.219532744655e0 -2.380220238082e0 7.002160643507e0 8.745173392930e0 1.614999878893e1 1.877140821587e1 3.647715938771e1 4.414200325191e1 5.306164973570e1 5.609094459233e1 5.921831732975e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001312244393e1 -9.500273158707e0 -7.781791432379e0 -7.299791223213e0 -6.388765770698e0 -3.921033336217e0 8.549732346579e0 8.879370370743e0 2.012325350433e1 2.166020465857e1 3.765032260785e1 4.025177933009e1 5.300890751189e1 5.509238826984e1 7.449233868505e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022727856202e1 -9.116845237212e0 -8.256575228364e0 -7.442218922671e0 -6.423466452333e0 -4.959689528473e0 7.786838748055e0 1.116091832280e1 2.368652673380e1 2.971108231699e1 3.327292768011e1 4.014768932674e1 5.147297107241e1 5.671975126569e1 8.770509584867e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066152667780e1 -8.858319448721e0 -8.458243824787e0 -7.271543880085e0 -6.496283190161e0 -5.658228389494e0 7.115079262330e0 1.418392756978e1 2.628673493429e1 2.859748734862e1 3.527198837264e1 4.145762332701e1 5.051415680457e1 5.798740920751e1 6.901952775829e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096670683982e1 -9.032243078070e0 -8.051989007933e0 -7.084120499899e0 -6.820543711908e0 -5.930905241932e0 6.708297133101e0 1.754715286737e1 2.151424853175e1 2.998147439291e1 3.482807593064e1 4.515978752408e1 4.859483315516e1 5.501282185745e1 6.110065908339e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096675460513e1 -9.032265103309e0 -8.052398025786e0 -7.083877808850e0 -6.819634541517e0 -5.931514199025e0 6.708145740582e0 1.754872087596e1 2.151445663471e1 2.997832644332e1 3.482900610847e1 4.516003770767e1 4.859513348758e1 5.501253149107e1 6.110085096324e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066165984343e1 -8.858488995233e0 -8.458750973056e0 -7.271059177080e0 -6.494264055864e0 -5.659723128630e0 7.114612686843e0 1.418609489691e1 2.628940820108e1 2.859318701945e1 3.527284633604e1 4.145689441396e1 5.051230678423e1 5.798697628005e1 6.902104636082e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022745040820e1 -9.117134650476e0 -8.257649410813e0 -7.440916319949e0 -6.421842041819e0 -4.960750611601e0 7.786047698781e0 1.116321937817e1 2.368435161901e1 2.971119971010e1 3.327732199537e1 4.014742176768e1 5.146648737098e1 5.672001897049e1 8.770580431211e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001327733738e1 -9.500473481711e0 -7.784107677375e0 -7.297661959806e0 -6.387186324953e0 -3.921653869935e0 8.547141242597e0 8.883060418038e0 2.012246693338e1 2.165929089253e1 3.765350719074e1 4.025600740183e1 5.299805353880e1 5.509303096252e1 7.449202171507e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007533771456e1 -9.859272325475e0 -7.224067965811e0 -7.059977031030e0 -6.217391840234e0 -2.380408711559e0 7.002960638537e0 8.745002116511e0 1.614996797825e1 1.877039977384e1 3.647715525036e1 4.414977172668e1 5.306300266509e1 5.608040306201e1 5.921612613499e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017399072843e1 -1.013517000776e1 -7.125521192102e0 -6.579718076436e0 -6.009842134697e0 -2.172172701157e-1 5.863981339106e0 5.961609359252e0 1.774107245412e1 1.780489858081e1 3.146150193486e1 4.543347807323e1 5.150005457671e1 5.573607982218e1 5.801522761010e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921724485542e0 -9.892129858806e0 -7.949571975036e0 -6.521649490102e0 -6.100092814292e0 6.569334448843e-1 3.670925855505e0 4.270011597922e0 2.273811437720e1 2.420660667352e1 3.334359843204e1 3.929016403441e1 5.667032384290e1 5.911761320233e1 6.188645177390e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921567585460e0 -9.892118647574e0 -7.949732071301e0 -6.520004806574e0 -6.101905161586e0 6.564502993929e-1 3.669752098041e0 4.271514139377e0 2.273716289619e1 2.420713828666e1 3.334368191075e1 3.928993309925e1 5.665721513550e1 5.913127037825e1 6.188916532495e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952572786226e0 -9.707961582067e0 -7.868213000528e0 -7.023672961612e0 -6.030120863542e0 -1.829911492520e0 4.666765356476e0 7.635291938820e0 1.926751610714e1 2.449612425912e1 3.601060397087e1 3.979903927389e1 5.320462700194e1 5.913896670354e1 6.799355468601e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003930031861e1 -9.382572664219e0 -7.963358391686e0 -7.398205369684e0 -6.151752341756e0 -3.747519431375e0 5.965658397447e0 1.090369447889e1 1.848894362145e1 2.633171292339e1 3.752521998354e1 3.806538916788e1 5.125839132954e1 5.834152137143e1 8.004814711317e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022708878656e1 -9.116848642006e0 -8.255523135901e0 -7.443099406532e0 -6.424437760501e0 -4.959503442237e0 7.785574157022e0 1.116226171815e1 2.368480624835e1 2.971248013202e1 3.327198924363e1 4.014519972798e1 5.147344914414e1 5.672685261162e1 8.770402885057e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057687175766e1 -9.003968915865e0 -8.439282846420e0 -7.428225582177e0 -6.630384866344e0 -5.553653015011e0 9.388335497211e0 1.142111441247e1 2.714761255252e1 2.965166502292e1 3.483449284406e1 4.245327755137e1 5.075262332354e1 5.514672184685e1 6.933461122939e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091962025981e1 -8.958817768082e0 -8.635326519312e0 -7.237676677968e0 -6.798659556658e0 -5.787699366914e0 9.375614530887e0 1.375841952070e1 2.122422026320e1 3.418387238437e1 3.759298915299e1 4.365905590037e1 4.911226747594e1 5.196264931685e1 6.063590542456e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105619349665e1 -9.011776451948e0 -8.634619049890e0 -7.089242148076e0 -6.942880401614e0 -5.835251668372e0 9.224299028221e0 1.620340038732e1 1.763179141748e1 3.612325502432e1 3.781472944550e1 4.612486198265e1 4.658390280087e1 5.101355483489e1 6.005126478010e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091979463961e1 -8.958630523374e0 -8.636282923887e0 -7.236545913956e0 -6.797836554896e0 -5.788456487770e0 9.374430224223e0 1.376188603866e1 2.122395552941e1 3.417876222923e1 3.759705876161e1 4.365926948983e1 4.910869473807e1 5.196386215416e1 6.063598889440e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057717982838e1 -9.004142635046e0 -8.440814462730e0 -7.426338984726e0 -6.628351762823e0 -5.555041284824e0 9.386201993530e0 1.142514381386e1 2.715067600264e1 2.964904829501e1 3.483481601757e1 4.245493776422e1 5.074385127976e1 5.514640366175e1 6.933713991219e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022745063051e1 -9.117134304228e0 -8.257649340838e0 -7.440916602849e0 -6.421841997378e0 -4.960750551326e0 7.786047641400e0 1.116321943748e1 2.368435238501e1 2.971119874849e1 3.327732189240e1 4.014742226989e1 5.146648699850e1 5.672001905906e1 8.770580437427e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003966178610e1 -9.382821913493e0 -7.964973211535e0 -7.397137054677e0 -6.149310887235e0 -3.747917546996e0 5.966686952904e0 1.090339918251e1 1.848932290617e1 2.632992924640e1 3.753251645662e1 3.806612709622e1 5.125634014938e1 5.832881361499e1 8.004821575916e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952878503392e0 -9.708103494127e0 -7.868089370883e0 -7.024972769013e0 -6.027912282169e0 -1.829622589040e0 4.667801464156e0 7.634280685854e0 1.926849682261e1 2.449496100524e1 3.601160448579e1 3.980167323721e1 5.321213798589e1 5.912205900968e1 6.799280701082e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767711968135e0 -9.396590963691e0 -8.569844382817e0 -6.913911687382e0 -6.143095266718e0 -8.787557515945e-1 2.821489516457e0 5.813206765226e0 2.554253792422e1 3.051366736202e1 3.134291141658e1 4.006638915987e1 5.433991551475e1 6.069700754634e1 9.667633608708e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.555022383013e0 -9.554690213327e0 -8.717103854414e0 -6.461678542616e0 -6.460051335722e0 1.664456041868e0 1.665186261254e0 3.472094209986e0 2.887101908382e1 2.887209602973e1 3.057366881961e1 4.031162470861e1 5.824754479503e1 5.826581417329e1 9.482361160699e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767219697548e0 -9.396532091274e0 -8.570083324848e0 -6.912961835125e0 -6.144658825313e0 -8.794795442576e-1 2.820036718186e0 5.815174278079e0 2.554069942616e1 3.051445819343e1 3.134101966036e1 4.006566735147e1 5.433163650746e1 6.071510862266e1 9.667619550807e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006493263146e1 -9.105612155686e0 -8.424555752739e0 -7.291765422106e0 -6.008132444583e0 -3.160909211022e0 3.780868309472e0 9.978818584524e0 2.226880145186e1 3.151927920607e1 3.286818677132e1 3.870025930811e1 5.135175186456e1 6.141030548651e1 1.001973205501e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036507251561e1 -8.742431617145e0 -8.587331441079e0 -7.325792660716e0 -6.074949613899e0 -4.883532069128e0 5.218280278898e0 1.363802276021e1 2.231966432592e1 3.179996164175e1 3.363775334007e1 3.827531084293e1 5.067370740558e1 6.069931320553e1 9.389732293813e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066130996943e1 -8.857734097751e0 -8.457503124504e0 -7.273060235985e0 -6.496784898769e0 -5.658475840996e0 7.113786911005e0 1.418539289309e1 2.628819334081e1 2.859036010907e1 3.527284799240e1 4.145694926953e1 5.051685096719e1 5.799648934791e1 6.901763288320e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952842752e1 -8.958185968149e0 -8.635565989072e0 -7.238288213678e0 -6.798534558622e0 -5.787993942384e0 9.374568408361e0 1.375939965895e1 2.122434646088e1 3.417858829035e1 3.759506491633e1 4.365840971345e1 4.911452736311e1 5.196488888963e1 6.063736033131e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106959648941e1 -8.968419780339e0 -8.926877648102e0 -7.098318550980e0 -6.946030933477e0 -5.788052577033e0 1.154839673595e1 1.346427153157e1 1.713835453946e1 3.918516369792e1 3.977942241896e1 4.489027517324e1 4.697682743252e1 4.911827641532e1 5.999082378145e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106970054290e1 -8.967973701899e0 -8.927648392326e0 -7.097229889930e0 -6.946416424003e0 -5.788144814998e0 1.154617987402e1 1.346919334222e1 1.713610036711e1 3.917983649883e1 3.978730751174e1 4.489205031069e1 4.697128961339e1 4.911842166934e1 5.999033027393e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091979469808e1 -8.958630456725e0 -8.636282955735e0 -7.236546022894e0 -6.797836414534e0 -5.788456469662e0 9.374430245729e0 1.376188600905e1 2.122395552676e1 3.417876256043e1 3.759705971364e1 4.365926882998e1 4.910869373342e1 5.196386239386e1 6.063598893596e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066166003641e1 -8.858488889759e0 -8.458750643805e0 -7.271059652309e0 -6.494263883357e0 -5.659723022572e0 7.114612663828e0 1.418609492642e1 2.628940796575e1 2.859318784055e1 3.527284714902e1 4.145689344027e1 5.051230609682e1 5.798697635911e1 6.902104639060e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036547766038e1 -8.742790741603e0 -8.588755084463e0 -7.324393240303e0 -6.072418826328e0 -4.884053374585e0 5.219394519626e0 1.363763578028e1 2.232029601774e1 3.180630466681e1 3.363684699324e1 3.827527967058e1 5.067060339488e1 6.068544750920e1 9.389980053355e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006540342928e1 -9.105947895236e0 -8.424972811745e0 -7.291552836851e0 -6.006397953397e0 -3.160335242563e0 3.782065007953e0 9.977393141799e0 2.227045750271e1 3.152023194841e1 3.286966532973e1 3.870252252412e1 5.135229746389e1 6.139378417562e1 1.001979519123e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002893378092e1 -8.987862136030e0 -8.606743002915e0 -7.104585684636e0 -6.204660088770e0 -2.209448916831e0 2.266782889033e0 8.227497869873e0 2.480976139022e1 2.918256350292e1 3.774787710132e1 3.990138371079e1 5.157173029823e1 6.268589469450e1 1.016924151408e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.558963592266e0 -9.087648478981e0 -9.043074117331e0 -6.829637479180e0 -6.449442443788e0 -8.906398616215e-3 1.841237443661e0 4.585460774720e0 2.445569363820e1 3.236355064227e1 3.563412090593e1 4.162416872489e1 5.521302683931e1 6.035472473329e1 9.233116394505e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.558442696373e0 -9.087532606058e0 -9.043477791151e0 -6.829313265413e0 -6.450103582216e0 -8.891369282419e-3 1.838732833087e0 4.587848942343e0 2.445553892025e1 3.236134181183e1 3.563460599391e1 4.162346562428e1 5.520458147370e1 6.036922874187e1 9.233080643558e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002847857269e1 -8.987051891313e0 -8.607167114773e0 -7.104873797217e0 -6.205465139546e0 -2.210576427257e0 2.265165852269e0 8.229785416052e0 2.480971782974e1 2.917826987683e1 3.774700548690e1 3.989991102161e1 5.157023148353e1 6.270160703878e1 1.016934107190e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043536215868e1 -8.941443014887e0 -8.239680426585e0 -7.172335673852e0 -6.066394462381e0 -4.295752105549e0 3.272576774365e0 1.296709459973e1 2.463388014576e1 2.735411075604e1 3.546255179031e1 4.095487689713e1 5.061028704302e1 6.336531416338e1 9.558344983393e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075561566605e1 -8.993394844055e0 -7.954813345936e0 -7.081845632674e0 -6.018008219451e0 -5.939464002310e0 4.739992659607e0 1.694456314110e1 2.459972557087e1 2.678382338273e1 3.313063796270e1 4.329564475838e1 5.012500261729e1 6.235463742880e1 6.964155845910e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096648976502e1 -9.031113917661e0 -8.051952120135e0 -7.085746064120e0 -6.820160147432e0 -5.931929313149e0 6.706990182606e0 1.754867743859e1 2.151358869157e1 2.997460199394e1 3.482856097750e1 4.516058848333e1 4.859565573827e1 5.501895187032e1 6.110625380011e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105602133189e1 -9.010808551581e0 -8.634986681709e0 -7.090626222802e0 -6.942460080636e0 -5.835534604769e0 9.223511132999e0 1.620034643782e1 1.763517150077e1 3.611525233273e1 3.781718388019e1 4.612490248960e1 4.658561152011e1 5.101884393280e1 6.005364385733e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106959647248e1 -8.968419972347e0 -8.926877568762e0 -7.098319364819e0 -6.946030014166e0 -5.788052569159e0 1.154839689572e1 1.346427141579e1 1.713835451375e1 3.918516639203e1 3.977942177047e1 4.489027254072e1 4.697682837330e1 4.911827591908e1 5.999082379173e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.105619353644e1 -9.011776388889e0 -8.634619258223e0 -7.089242904088e0 -6.942879424343e0 -5.835251658602e0 9.224299091292e0 1.620340024840e1 1.763179150647e1 3.612325472492e1 3.781473284439e1 4.612485845548e1 4.658390276724e1 5.101355498686e1 6.005126484428e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096675474467e1 -9.032265058136e0 -8.052398012984e0 -7.083878288204e0 -6.819633942613e0 -5.931514162872e0 6.708145730141e0 1.754872087889e1 2.151445659026e1 2.997832633696e1 3.482900925714e1 4.516003509933e1 4.859513271018e1 5.501253148656e1 6.110085106504e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075593063904e1 -8.994690721630e0 -7.955293705329e0 -7.080415694327e0 -6.015439323054e0 -5.939980378014e0 4.741281433669e0 1.694374031260e1 2.460014188284e1 2.678983801839e1 3.313078693650e1 4.329451295639e1 5.012346098940e1 6.234007359972e1 6.964234909903e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043573717344e1 -8.942680278125e0 -8.239647095795e0 -7.171281696347e0 -6.065607096528e0 -4.294385599403e0 3.273923015855e0 1.296555016412e1 2.463285992180e1 2.736077894805e1 3.546450992179e1 4.095424388738e1 5.060876358918e1 6.335027487375e1 9.558205079097e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035489545754e1 -9.178779090625e0 -7.861893419372e0 -7.020861697051e0 -6.447681497048e0 -3.190104189020e0 1.995947153362e0 1.107168814684e1 1.837072223016e1 3.179086834635e1 3.743084823025e1 4.405681920309e1 5.080405038675e1 6.453046085976e1 9.668399356511e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.911942977445e0 -9.164009860618e0 -8.432173596046e0 -6.955229544604e0 -6.554504135588e0 -1.263177655018e0 1.680055573115e0 6.800608614337e0 1.741117157072e1 3.536360033890e1 4.117147314721e1 4.210207359488e1 5.207935914047e1 6.249769090540e1 9.140390790506e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.610609422615e0 -9.150511523486e0 -8.788781963595e0 -6.858105643102e0 -6.668243484928e0 -3.933128984364e-1 2.474153348889e0 4.268208294656e0 1.710526087954e1 3.808366386857e1 3.987221536319e1 4.246017501250e1 5.552761965590e1 5.909233844692e1 8.611554185399e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.911607856769e0 -9.163210405902e0 -8.432871546314e0 -6.955825355503e0 -6.554480786895e0 -1.263594918321e0 1.677357664407e0 6.803362756843e0 1.741119382839e1 3.535971848565e1 4.117030545144e1 4.210228165524e1 5.207516523153e1 6.251298402845e1 9.140386045376e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035454149203e1 -9.177678385067e0 -7.862456037245e0 -7.021893833875e0 -6.447582839006e0 -3.191740732623e0 1.994225696153e0 1.107381167279e1 1.837071653129e1 3.178523781698e1 3.742926354079e1 4.405708451451e1 5.080405172038e1 6.454554404475e1 9.668779205518e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070612105606e1 -9.180254054912e0 -7.365635200494e0 -6.986765562417e0 -6.459686307294e0 -5.000610289359e0 3.007875066595e0 1.623087846003e1 2.000332538470e1 2.811553817387e1 3.365311005254e1 4.555125241938e1 5.013612574595e1 6.445331839786e1 8.021352707194e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091455053721e1 -9.133530079063e0 -7.258874523145e0 -6.897739543451e0 -6.795875412424e0 -5.997135581465e0 4.550425945796e0 1.966575765966e1 2.348199728322e1 2.410716088576e1 3.252402783117e1 4.644170803091e1 4.863673928143e1 6.168528323672e1 6.291910685156e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096648971754e1 -9.031113935379e0 -8.051952438232e0 -7.085746223513e0 -6.820159704420e0 -5.931929300159e0 6.706990201966e0 1.754867749772e1 2.151358865603e1 2.997460250445e1 3.482856099451e1 4.516058827183e1 4.859565530021e1 5.501895188004e1 6.110625378091e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091952834144e1 -8.958186200700e0 -8.635566064514e0 -7.238288812400e0 -6.798533773345e0 -5.787993886904e0 9.374568506653e0 1.375939969755e1 2.122434638128e1 3.417859032495e1 3.759506510339e1 4.365840727943e1 4.911452768849e1 5.196488853221e1 6.063736032469e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091962023224e1 -8.958817933368e0 -8.635326627373e0 -7.237677385129e0 -6.798658631525e0 -5.787699293140e0 9.375614650817e0 1.375841952954e1 2.122422018100e1 3.418387475315e1 3.759299028923e1 4.365905280365e1 4.911226680062e1 5.196264919801e1 6.063590545944e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.096670693192e1 -9.032243050558e0 -8.051989313575e0 -7.084121137181e0 -6.820542671665e0 -5.930905192280e0 6.708297142082e0 1.754715292929e1 2.151424845194e1 2.998147479669e1 3.482807909658e1 4.515978470377e1 4.859483194028e1 5.501282186276e1 6.110065916587e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.091482529833e1 -9.134784283959e0 -7.259050142168e0 -6.897763846919e0 -6.795282233374e0 -5.994558148078e0 4.551826168484e0 1.966209110193e1 2.349056508743e1 2.410738703944e1 3.252391933772e1 4.644135211586e1 4.863691682244e1 6.168326156176e1 6.290425552375e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070643429117e1 -9.181501673643e0 -7.365450869870e0 -6.985484235192e0 -6.460296125934e0 -4.998073156812e0 3.009341751823e0 1.622947759804e1 2.000383433558e1 2.812196516179e1 3.365285423070e1 4.555079882400e1 5.013576722287e1 6.444039239068e1 8.020695232062e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048189000387e1 -9.281800798122e0 -7.229514300857e0 -6.947622756812e0 -6.860066899655e0 -3.559996586430e0 1.909770464121e0 1.396013366447e1 1.435300306232e1 3.288051728402e1 3.615905742105e1 4.652875307742e1 5.132079718150e1 6.533930607730e1 1.011819832947e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010660170947e1 -9.297983972203e0 -7.877013681447e0 -6.917440759646e0 -6.785722707763e0 -1.955560862523e0 1.580660616315e0 9.444502456722e0 1.273416120187e1 3.733629309678e1 4.008477644130e1 4.634034320957e1 5.223076372714e1 6.389702954577e1 1.101342367007e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715463753454e0 -9.213500270576e0 -8.523110066408e0 -6.888949060530e0 -6.776725968083e0 -1.017555027663e0 2.673256710364e0 5.800785480932e0 1.206416509846e1 4.103245249069e1 4.331419955538e1 4.540248437198e1 5.321269837118e1 6.067743186848e1 1.079977273228e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715329955182e0 -9.212686917142e0 -8.523939112057e0 -6.889544468433e0 -6.776390619040e0 -1.017327324272e0 2.670100289050e0 5.803560506826e0 1.206430806153e1 4.102834884414e1 4.331571309504e1 4.540151843520e1 5.321071170876e1 6.068662984119e1 1.079970773682e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010624148812e1 -9.296949872281e0 -7.878041726717e0 -6.918606568154e0 -6.785267088469e0 -1.956063334080e0 1.578041547053e0 9.446785766099e0 1.273462496552e1 3.732981339777e1 4.008409895320e1 4.634055981940e1 5.223079945814e1 6.391277582082e1 1.101345973856e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048151092657e1 -9.280609146882e0 -7.229972640778e0 -6.949002464926e0 -6.860120002123e0 -3.561537851524e0 1.908102002024e0 1.395833165972e1 1.435629449874e1 3.287358184759e1 3.615967933734e1 4.652920012517e1 5.132109697785e1 6.535491824824e1 1.011865954140e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070612102900e1 -9.180254061343e0 -7.365635818992e0 -6.986764970947e0 -6.459686304665e0 -5.000610274597e0 3.007875064455e0 1.623087848879e1 2.000332536976e1 2.811553836138e1 3.365311007026e1 4.555125248279e1 5.013612543059e1 6.445331839679e1 8.021352705222e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075561558027e1 -8.993394849326e0 -7.954814009539e0 -7.081845213232e0 -6.018008212941e0 -5.939463829234e0 4.739992674632e0 1.694456313836e1 2.459972619196e1 2.678382339223e1 3.313063800165e1 4.329564449785e1 5.012500213520e1 6.235463742367e1 6.964155838605e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066130979662e1 -8.857734340931e0 -8.457503534387e0 -7.273060254564e0 -6.496784580476e0 -5.658475646093e0 7.113786989955e0 1.418539293640e1 2.628819401059e1 2.859036085504e1 3.527284886928e1 4.145694685975e1 5.051685075790e1 5.799648932156e1 6.901763289233e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.057687158722e1 -9.003969453196e0 -8.439282777222e0 -7.428226045013e0 -6.630384332219e0 -5.553652763687e0 9.388335699497e0 1.142111439942e1 2.714761247603e1 2.965166800868e1 3.483449270199e1 4.245327418741e1 5.075262359807e1 5.514672163775e1 6.933461127070e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066152669811e1 -8.858319585169e0 -8.458243906357e0 -7.271544372943e0 -6.496282700427e0 -5.658228088663e0 7.115079318425e0 1.418392764248e1 2.628673536875e1 2.859748891620e1 3.527199006288e1 4.145761994139e1 5.051415590952e1 5.798740926003e1 6.901952779647e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.075593063904e1 -8.994690721631e0 -7.955293705329e0 -7.080415694325e0 -6.015439323056e0 -5.939980378011e0 4.741281433667e0 1.694374031267e1 2.460014188248e1 2.678983801845e1 3.313078693653e1 4.329451295788e1 5.012346098912e1 6.234007359793e1 6.964234910026e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070647568770e1 -9.181557396371e0 -7.366125090016e0 -6.985609009897e0 -6.458580175215e0 -4.998829008229e0 3.009253759368e0 1.623089703036e1 2.000414551690e1 2.811945657714e1 3.365319631164e1 4.555071252090e1 5.013606262518e1 6.444034257580e1 8.020703288216e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035505554745e1 -9.178999751904e0 -7.862989642944e0 -7.020219676863e0 -6.445612438418e0 -3.191110142436e0 1.995609162887e0 1.107409872164e1 1.837077450449e1 3.178789469303e1 3.743164466862e1 4.405629606446e1 5.080299709706e1 6.453060925340e1 9.668303498822e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010676812248e1 -9.298026051086e0 -7.877907549524e0 -6.917042320671e0 -6.784378726986e0 -1.956067358455e0 1.580389362963e0 9.447201973877e0 1.273222128839e1 3.733538163725e1 4.008630319688e1 4.633996328483e1 5.222845057643e1 6.389719308320e1 1.101333361240e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711498657163e0 -9.323892030035e0 -8.372250562182e0 -6.873639095281e0 -6.843603893724e0 -1.256457837500e0 2.606788705802e0 8.180298232517e0 8.876566678276e0 4.294531823534e1 4.321921506689e1 4.723541988933e1 5.241545517320e1 6.151504145629e1 1.255540477729e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.437789956942e0 -9.219961772470e0 -8.826422830148e0 -6.864529971817e0 -6.837843510984e0 -1.135387647512e0 4.599762366284e0 5.571649376037e0 8.309642402832e0 4.538460402250e1 4.630555779871e1 4.687924067883e1 5.110922725027e1 6.028534413288e1 1.324590334415e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711086862313e0 -9.323007977060e0 -8.373062141301e0 -6.874844528073e0 -6.843431795394e0 -1.255911663309e0 2.603645093899e0 8.179361863439e0 8.880290779613e0 4.293565107642e1 4.321994834059e1 4.723561186202e1 5.242058661571e1 6.152510800894e1 1.255538378897e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010624148812e1 -9.296949872286e0 -7.878041726997e0 -6.918606568288e0 -6.785267087974e0 -1.956063334134e0 1.578041547052e0 9.446785766024e0 1.273462496554e1 3.732981339729e1 4.008409895400e1 4.634055981910e1 5.223079945808e1 6.391277582085e1 1.101345973857e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035454146229e1 -9.177678409831e0 -7.862456188886e0 -7.021893776312e0 -6.447582757777e0 -3.191740708034e0 1.994225691972e0 1.107381168282e1 1.837071651959e1 3.178523805070e1 3.742926378839e1 4.405708410768e1 5.080405158367e1 6.454554405253e1 9.668779205535e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043536205724e1 -8.941443073179e0 -8.239680834070e0 -7.172335446367e0 -6.066394397111e0 -4.295752008956e0 3.272576781970e0 1.296709462165e1 2.463388047183e1 2.735411097766e1 3.546255240286e1 4.095487587085e1 5.061028682306e1 6.336531416343e1 9.558344972880e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036507227650e1 -8.742432346988e0 -8.587331452861e0 -7.325792409056e0 -6.074949599722e0 -4.883531819455e0 5.218280339010e0 1.363802275830e1 2.231966529062e1 3.179996165641e1 3.363775521263e1 3.827530809696e1 5.067370715684e1 6.069931319363e1 9.389732278029e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022708839132e1 -9.116849514250e0 -8.255523103403e0 -7.443099428586e0 -6.424437625792e0 -4.959503110704e0 7.785574308897e0 1.116226174298e1 2.368480812092e1 2.971248093643e1 3.327198892642e1 4.014519692359e1 5.147344927137e1 5.672685255418e1 8.770402873674e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.022727838934e1 -9.116845762764e0 -8.256575125940e0 -7.442219227111e0 -6.423466273708e0 -4.959689136854e0 7.786838842746e0 1.116091840683e1 2.368652937260e1 2.971108216012e1 3.327292725945e1 4.014768702330e1 5.147297082841e1 5.671975129667e1 8.770509579578e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.036547766038e1 -8.742790741603e0 -8.588755084466e0 -7.324393240301e0 -6.072418826332e0 -4.884053374582e0 5.219394519617e0 1.363763578035e1 2.232029601752e1 3.180630466683e1 3.363684699496e1 3.827527966868e1 5.067060339457e1 6.068544750651e1 9.389980053970e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043584537049e1 -8.943001374453e0 -8.240056944140e0 -7.170777781786e0 -6.063919713871e0 -4.295546635653e0 3.273656254612e0 1.296755037904e1 2.463485681534e1 2.735771804823e1 3.546412174275e1 4.095371273362e1 5.060795331633e1 6.335024837484e1 9.558208235225e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002917163915e1 -8.988630197020e0 -8.607531461230e0 -7.102981306043e0 -6.202790557795e0 -2.210697484413e0 2.266077068654e0 8.230078524987e0 2.481356180031e1 2.917850208615e1 3.774789273567e1 3.990149963976e1 5.156679435130e1 6.268619751071e1 1.016916568143e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.912377947292e0 -9.164346350672e0 -8.433271091900e0 -6.953896629856e0 -6.552384418433e0 -1.264369095512e0 1.679163100840e0 6.803732777351e0 1.741109732482e1 3.536092170392e1 4.117620347649e1 4.210118236755e1 5.207157501139e1 6.249810561709e1 9.140251150471e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.716188947537e0 -9.213242947896e0 -8.523961961063e0 -6.887984876244e0 -6.775304316329e0 -1.018373760434e0 2.672189349373e0 5.804614056664e0 1.206196800664e1 4.103164891042e1 4.332086912522e1 4.540237314938e1 5.320246847149e1 6.067706879094e1 1.079966996429e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.438724866678e0 -9.219553429179e0 -8.826352283305e0 -6.863716993026e0 -6.837762009413e0 -1.135781893893e0 4.598958420584e0 5.575986780288e0 8.306266104231e0 4.538337018501e1 4.631508493724e1 4.688145413379e1 5.109800068832e1 6.028316074164e1 1.324586574575e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.437789983630e0 -9.219961663916e0 -8.826422868140e0 -6.864529079081e0 -6.837844464852e0 -1.135387643155e0 4.599762335429e0 5.571649414163e0 8.309642396114e0 4.538460017536e1 4.630555814754e1 4.687924429492e1 5.110922719349e1 6.028534412588e1 1.324590334487e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715329988704e0 -9.212686821110e0 -8.523939143607e0 -6.889544029275e0 -6.776391097642e0 -1.017327331902e0 2.670100284595e0 5.803560513192e0 1.206430806338e1 4.102834837282e1 4.331571144145e1 4.540152069353e1 5.321071164598e1 6.068662982221e1 1.079970773720e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.911607856767e0 -9.163210405759e0 -8.432871547110e0 -6.955825354854e0 -6.554480786704e0 -1.263594918446e0 1.677357664404e0 6.803362756703e0 1.741119382837e1 3.535971848512e1 4.117030545767e1 4.210228164951e1 5.207516523156e1 6.251298402848e1 9.140386045393e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002847848946e1 -8.987052126353e0 -8.607167053950e0 -7.104873808255e0 -6.205465068671e0 -2.210576369459e0 2.265165851609e0 8.229785421608e0 2.480971783513e1 2.917827040929e1 3.774700704452e1 3.989990880743e1 5.157023153846e1 6.270160704638e1 1.016934106538e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006493237155e1 -9.105612736476e0 -8.424555682834e0 -7.291765340909e0 -6.008132400204e0 -3.160909067614e0 3.780868346321e0 9.978818598475e0 2.226880207673e1 3.151928003873e1 3.286818740842e1 3.870025718306e1 5.135175187908e1 6.141030548586e1 1.001973202260e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003929976623e1 -9.382573590009e0 -7.963358413545e0 -7.398205252664e0 -6.151752316466e0 -3.747519191512e0 5.965658503446e0 1.090369447682e1 1.848894429635e1 2.633171469540e1 3.752522000514e1 3.806538664528e1 5.125839134138e1 5.834152134991e1 8.004814668318e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001312187221e1 -9.500274081145e0 -7.781791396686e0 -7.299791316732e0 -6.388765689712e0 -3.921033035985e0 8.549732533513e0 8.879370344886e0 2.012325644927e1 2.166020380738e1 3.765032119266e1 4.025177845441e1 5.300890754787e1 5.509238823790e1 7.449233831075e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.003966178610e1 -9.382821913493e0 -7.964973211540e0 -7.397137054673e0 -6.149310887239e0 -3.747917546994e0 5.966686952889e0 1.090339918256e1 1.848932290613e1 2.632992924723e1 3.753251645651e1 3.806612709299e1 5.125634014978e1 5.832881361237e1 8.004821576566e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006551096108e1 -9.106314813646e0 -8.425943144829e0 -7.290122431290e0 -6.005233351791e0 -3.161190239949e0 3.781675916062e0 9.979301497285e0 2.226817289926e1 3.152292563283e1 3.287175127117e1 3.870115861826e1 5.134759254336e1 6.139388456024e1 1.001977150090e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767858049527e0 -9.397090708679e0 -8.571579852484e0 -6.911311538057e0 -6.141622875923e0 -8.799037012140e-1 2.820400972942e0 5.815715623411e0 2.554012837684e1 3.051565462794e1 3.134639840326e1 4.006818266131e1 5.432858888448e1 6.069726844814e1 9.667651414733e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.559358546204e0 -9.088750464311e0 -9.043906932588e0 -6.827253687248e0 -6.447522899516e0 -1.027421750944e-2 1.839441952191e0 4.589030533500e0 2.445977317153e1 3.236059445052e1 3.563319952875e1 4.162778275994e1 5.520016088533e1 6.035524269916e1 9.233181948562e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.611661166736e0 -9.150709983435e0 -8.789672183798e0 -6.856198764409e0 -6.666225862690e0 -3.947098457652e-1 2.472982079866e0 4.271820655267e0 1.710512571601e1 3.808173757597e1 3.987272464389e1 4.246693237281e1 5.551560886776e1 5.908859899796e1 8.611545047807e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.716188848834e0 -9.213242904548e0 -8.523962099734e0 -6.887984422688e0 -6.775304802135e0 -1.018373753955e0 2.672189351939e0 5.804614057591e0 1.206196800300e1 4.103164695233e1 4.332086909167e1 4.540237517168e1 5.320246855132e1 6.067706877632e1 1.079966996452e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.711498505134e0 -9.323892064608e0 -8.372250575080e0 -6.873638239478e0 -6.843604907699e0 -1.256457819752e0 2.606788708088e0 8.180298272488e0 8.876566638040e0 4.294531824239e1 4.321921123695e1 4.723542388191e1 5.241545520099e1 6.151504141778e1 1.255540477776e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.715463688172e0 -9.213500131589e0 -8.523110236275e0 -6.888948164997e0 -6.776726935304e0 -1.017555028877e0 2.673256708345e0 5.800785488385e0 1.206416509666e1 4.103245006402e1 4.331419786073e1 4.540248865805e1 5.321269838759e1 6.067743183480e1 1.079977273289e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.610609455204e0 -9.150511132630e0 -8.788782340588e0 -6.858105074740e0 -6.668244037477e0 -3.933129276238e-1 2.474153345058e0 4.268208304651e0 1.710526088121e1 3.808366034026e1 3.987221790122e1 4.246017619222e1 5.552761954688e1 5.909233845849e1 8.611554184767e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.558442696213e0 -9.087532599809e0 -9.043477798319e0 -6.829313264146e0 -6.450103582472e0 -8.891369433976e-3 1.838732833064e0 4.587848942156e0 2.445553892023e1 3.236134181183e1 3.563460599446e1 4.162346562366e1 5.520458147393e1 6.036922874174e1 9.233080643569e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767219531325e0 -9.396532399960e0 -8.570083231671e0 -6.912961903074e0 -6.144658758952e0 -8.794794712556e-1 2.820036734323e0 5.815174275756e0 2.554070020239e1 3.051445896639e1 3.134101877800e1 4.006566659658e1 5.433163657787e1 6.071510862859e1 9.667619534271e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952572208805e0 -9.707962351618e0 -7.868212972050e0 -7.023672985948e0 -6.030120820059e0 -1.829911357251e0 4.666765430526e0 7.635291942195e0 1.926751646971e1 2.449612581901e1 3.601060247534e1 3.979903876977e1 5.320462706436e1 5.913896669652e1 6.799355433196e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007521604390e1 -9.859145653209e0 -7.222353544353e0 -7.060432538485e0 -6.219532698053e0 -2.380220053950e0 7.002160747087e0 8.745173390335e0 1.614999885348e1 1.877141026869e1 3.647715711027e1 4.414200328794e1 5.306164974488e1 5.609094455421e1 5.921831703022e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.007533771456e1 -9.859272325475e0 -7.224067965818e0 -7.059977031025e0 -6.217391840237e0 -2.380408711560e0 7.002960638523e0 8.745002116541e0 1.614996797825e1 1.877039977400e1 3.647715524807e1 4.414977172652e1 5.306300266564e1 5.608040305988e1 5.921612613723e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952958416595e0 -9.708310257055e0 -7.870210895581e0 -7.022492440123e0 -6.027006741872e0 -1.830250032902e0 4.667369597953e0 7.635768421838e0 1.926689444092e1 2.449487908025e1 3.601384910915e1 3.980732095538e1 5.320157333045e1 5.912237723784e1 6.799222062275e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -9.802757615725e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921944956815e0 -9.892376303731e0 -7.951859615424e0 -6.519020367906e0 -6.098460977181e0 6.558207448634e-1 3.668675533164e0 4.273536231926e0 2.273700002285e1 2.420593744989e1 3.334421105782e1 3.930127203804e1 5.665760721762e1 5.911317753952e1 6.188552894539e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.555276195590e0 -9.555275230250e0 -8.718866801472e0 -6.458576829602e0 -6.458576595182e0 1.663179357725e0 1.663179383366e0 3.475509812719e0 2.887041741656e1 2.887042177121e1 3.058035198781e1 4.031450761174e1 5.824804237604e1 5.824804242726e1 9.482492011286e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.559358178151e0 -9.088750290570e0 -9.043907540091e0 -6.827253310927e0 -6.447523198143e0 -1.027427130518e-2 1.839441969893e0 4.589030522639e0 2.445977316374e1 3.236059136897e1 3.563320305299e1 4.162778247695e1 5.520016081456e1 6.035524272352e1 9.233181945463e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.912377739743e0 -9.164346255805e0 -8.433271534323e0 -6.953896001010e0 -6.552384933605e0 -1.264369128861e0 1.679163122425e0 6.803732764389e0 1.741109731935e1 3.536091940462e1 4.117620215970e1 4.210118615323e1 5.207157503810e1 6.249810560996e1 9.140251149404e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010676792593e1 -9.298026068260e0 -7.877907683190e0 -6.917041561526e0 -6.784379613599e0 -1.956067347362e0 1.580389386025e0 9.447201973062e0 1.273222127625e1 3.733538075466e1 4.008630040661e1 4.633996724856e1 5.222845056570e1 6.389719304975e1 1.101333361411e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.010660151292e1 -9.297983989423e0 -7.877013815021e0 -6.917440000471e0 -6.785723594228e0 -1.955560851671e0 1.580660639370e0 9.444502455944e0 1.273416118971e1 3.733629221568e1 4.008477364945e1 4.634034717333e1 5.223076371647e1 6.389702951227e1 1.101342367179e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.911942769851e0 -9.164009765934e0 -8.432174039227e0 -6.955228915667e0 -6.554504649524e0 -1.263177688851e0 1.680055594675e0 6.800608601440e0 1.741117156524e1 3.536359803955e1 4.117147183051e1 4.210207738062e1 5.207935916707e1 6.249769089819e1 9.140390789468e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.558963223819e0 -9.087648305684e0 -9.043074725621e0 -6.829637102873e0 -6.449442741179e0 -8.906452884678e-3 1.841237461311e0 4.585460763927e0 2.445569363045e1 3.236354756001e1 3.563412443022e1 4.162416844242e1 5.521302676856e1 6.035472475760e1 9.233116391433e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.555021659270e0 -9.554690937434e0 -8.717103854670e0 -6.461678366876e0 -6.460051510556e0 1.664456022240e0 1.665186280507e0 3.472094209927e0 2.887102234662e1 2.887209276702e1 3.057366881957e1 4.031162470858e1 5.824754483307e1 5.826581413530e1 9.482361160703e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921568418708e0 -9.892117861967e0 -7.949732064641e0 -6.520004907888e0 -6.101905076120e0 6.564503493768e-1 3.669752161123e0 4.271514123920e0 2.273716594800e1 2.420713579687e1 3.334368131032e1 3.928993303186e1 5.665721515798e1 5.913127040536e1 6.188916523696e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017394429255e1 -1.013508724495e1 -7.125826039763e0 -6.577746214808e0 -6.011901933026e0 -2.173589476692e-1 5.861926062415e0 5.963520858517e0 1.774040913545e1 1.780590989882e1 3.146180519632e1 4.543177972536e1 5.149677559861e1 5.572326896736e1 5.803526893913e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.027904959933e1 -1.020379167515e1 -6.602958703431e0 -6.600712496842e0 -6.180395482366e0 -5.529280838483e-1 7.186395950528e0 7.189513754924e0 1.476803722165e1 1.538235130072e1 3.087247775343e1 4.961469291043e1 5.031686172291e1 5.541998201107e1 5.543264068968e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017408301592e1 -1.013527386747e1 -7.128366612826e0 -6.577253898882e0 -6.008521536914e0 -2.176366895402e-1 5.861175092617e0 5.965145017954e0 1.774056459953e1 1.780437812186e1 3.146134016255e1 4.544717532428e1 5.149618492226e1 5.572348836003e1 5.801454611624e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -1.069391739897e0 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024730863283e1 -1.020304670735e1 -7.131615027255e0 -6.372572077512e0 -5.913151845572e0 2.203614426583e0 2.971445944336e0 5.533197093440e0 1.745856421153e1 2.147564219586e1 2.631333242690e1 4.502896304342e1 5.017451351926e1 5.664234109114e1 5.953928575048e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -9.802757615725e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921944124009e0 -9.892377089071e0 -7.951859622485e0 -6.519020265915e0 -6.098461062557e0 6.558206949784e-1 3.668675469754e0 4.273536247176e0 2.273699697109e1 2.420593993993e1 3.334421165861e1 3.930127210496e1 5.665760719515e1 5.911317751258e1 6.188552903320e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.911597832478e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767857533980e0 -9.397091200135e0 -8.571579897535e0 -6.911311277459e0 -6.141623039824e0 -8.799038109402e-1 2.820400971403e0 5.815715576073e0 2.554012560285e1 3.051565558958e1 3.134640036220e1 4.006818274367e1 5.432858884806e1 6.069726843351e1 9.667651416814e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002917134389e1 -8.988630094618e0 -8.607532033651e0 -7.102980812691e0 -6.202790834833e0 -2.210697600730e0 2.266077091659e0 8.230078478048e0 2.481356180507e1 2.917849968170e1 3.774789435753e1 3.990150070673e1 5.156679439907e1 6.268619748671e1 1.016916567045e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035505532311e1 -9.178999749092e0 -7.862990053095e0 -7.020219044189e0 -6.445612938528e0 -3.191110189830e0 1.995609202916e0 1.107409868808e1 1.837077450475e1 3.178789340978e1 3.743164222234e1 4.405630003858e1 5.080299726289e1 6.453060921254e1 9.668303490312e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048188978647e1 -9.281800831805e0 -7.229514266977e0 -6.947622073989e0 -6.860067914822e0 -3.559996571390e0 1.909770507664e0 1.396013371184e1 1.435300298577e1 3.288051730981e1 3.615905390804e1 4.652875704510e1 5.132079710496e1 6.533930603202e1 1.011819832507e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035489520353e1 -9.178779112609e0 -7.861893981347e0 -7.020861007259e0 -6.447681914668e0 -3.190104212473e0 1.995947189287e0 1.107168812343e1 1.837072221873e1 3.179086729710e1 3.743084603068e1 4.405682277072e1 5.080405041603e1 6.453046082669e1 9.668399347992e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002893340256e1 -8.987862268587e0 -8.606743514716e0 -7.104585202822e0 -6.204660293744e0 -2.209448976026e0 2.266782911493e0 8.227497828683e0 2.480976140049e1 2.918256163044e1 3.774788027659e1 3.990138256809e1 5.157173040069e1 6.268589467820e1 1.016924149655e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767711286724e0 -9.396591763977e0 -8.569844334120e0 -6.913911495363e0 -6.143095363451e0 -8.787557888676e-1 2.821489531186e0 5.813206715813e0 2.554253592640e1 3.051366908574e1 3.134291250279e1 4.006638848864e1 5.433991554848e1 6.069700753771e1 9.667633594246e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921724480993e0 -9.892129863608e0 -7.949571975262e0 -6.521649489257e0 -6.100092814380e0 6.569334445860e-1 3.670925855179e0 4.270011598077e0 2.273811438004e1 2.420660667070e1 3.334359843210e1 3.929016403458e1 5.667032384276e1 5.911761320244e1 6.188645177392e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024713606904e1 -1.020292182525e1 -7.128814712641e0 -6.373850656818e0 -5.916044328328e0 2.206030285617e0 2.969012917790e0 5.532894467051e0 1.745883574381e1 2.147651754899e1 2.631377485886e1 4.501344915198e1 5.017585183856e1 5.664810683693e1 5.955344569994e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041327803236e1 -1.039621732819e1 -6.457954919506e0 -6.336139369195e0 -5.894994164940e0 1.849484263250e0 4.780563671309e0 6.344330779543e0 1.467233928322e1 1.712170590958e1 2.354700939969e1 4.703809401045e1 5.164946513253e1 5.647850927290e1 5.857708539304e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041333430843e1 -1.039626174324e1 -6.460311149238e0 -6.335934624525e0 -5.892347413056e0 1.849220435227e0 4.781204749213e0 6.344186851821e0 1.467229684796e1 1.712120102744e1 2.354685017079e1 4.703927322128e1 5.166089166824e1 5.647702777027e1 5.856363623507e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.059297551133e1 -1.059026589282e1 -5.971358906185e0 -5.968579949456e0 -5.906749269465e0 3.934716477029e0 5.444160936859e0 5.447691070930e0 1.441376855747e1 1.448719845030e1 1.705314431654e1 4.581788115490e1 5.719889892528e1 5.790680384665e1 5.792061738909e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041333515055e1 -1.039626083910e1 -6.460311125661e0 -6.335934624697e0 -5.892347438055e0 1.849220435810e0 4.781204686875e0 6.344186852912e0 1.467229709818e1 1.712119907228e1 2.354685197483e1 4.703927321646e1 5.166089164871e1 5.647702776670e1 5.856363625494e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015394964768e1 -1.000062982645e1 -7.234172668547e0 -6.917348718559e0 -5.839224091828e0 2.150484539802e-2 3.421462037906e0 7.975329596059e0 1.535052774905e1 2.293457796973e1 3.233355683720e1 4.394891077403e1 5.087636773292e1 5.604022936488e1 6.021244946814e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006361194906e1 -9.394969607673e0 -8.027624576237e0 -7.342290859656e0 -5.773842690107e0 -1.629255672432e0 2.485036499367e0 1.020271617299e1 1.718576739944e1 2.993201954770e1 3.654374227388e1 3.689150224386e1 5.091155135242e1 6.243949780166e1 7.871389599535e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032034879664e1 -8.679016726913e0 -8.586342735590e0 -7.319256177160e0 -5.711618835217e0 -3.199910493309e0 2.023135125234e0 1.298641874488e1 2.075742664899e1 3.099763674579e1 3.471576145658e1 3.763742924849e1 5.064266528567e1 6.479633326207e1 1.201457130909e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066325176827e1 -9.099289121767e0 -7.619234509398e0 -7.089647863981e0 -5.667153818283e0 -4.642702761734e0 1.806234505767e0 1.628265707111e1 2.295154280427e1 2.600834962425e1 3.219260620347e1 4.361770563976e1 5.055378881820e1 6.663165461395e1 9.876427055692e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.080610464560e1 -9.243937562194e0 -7.003952764669e0 -6.867974493993e0 -5.651038886950e0 -5.528807754600e0 1.728153970817e0 1.888233667717e1 2.238272909439e1 2.286284337300e1 3.142344126950e1 4.620575190017e1 5.045779935563e1 6.732764070113e1 8.465537591169e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066325174044e1 -9.099289123441e0 -7.619234881848e0 -7.089647544195e0 -5.667153816152e0 -4.642702723214e0 1.806234498740e0 1.628265707017e1 2.295154298115e1 2.600834962723e1 3.219260618282e1 4.361770568235e1 5.055378862238e1 6.663165461334e1 9.876427048960e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032034872047e1 -8.679016730575e0 -8.586343013348e0 -7.319256031694e0 -5.711618830639e0 -3.199910417425e0 2.023135122532e0 1.298641874417e1 2.075742690279e1 3.099763675032e1 3.471576240403e1 3.763742819762e1 5.064266516224e1 6.479633325969e1 1.201457128995e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.020438049230e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006361177831e1 -9.394969911316e0 -8.027624582738e0 -7.342290799890e0 -5.773842682271e0 -1.629255587217e0 2.485036509336e0 1.020271617215e1 1.718576754429e1 2.993202107259e1 3.654374069162e1 3.689150225033e1 5.091155133263e1 6.243949779622e1 7.871389571140e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015394931804e1 -1.000063024495e1 -7.234172680048e0 -6.917348707334e0 -5.839224078744e0 2.150490663416e-2 3.421462078219e0 7.975329594961e0 1.535052774909e1 2.293457963727e1 3.233355504667e1 4.394891078406e1 5.087636770932e1 5.604022933051e1 6.021244945808e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 9.802757615725e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041333430842e1 -1.039626174324e1 -6.460311149239e0 -6.335934624521e0 -5.892347413056e0 1.849220435226e0 4.781204749206e0 6.344186851825e0 1.467229684793e1 1.712120102743e1 2.354685017116e1 4.703927322153e1 5.166089166795e1 5.647702777090e1 5.856363623520e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.069391739897e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.059297458038e1 -1.059026684746e1 -5.971358949323e0 -5.968579992288e0 -5.906749183123e0 3.934716428131e0 5.444160947677e0 5.447691081786e0 1.441376716305e1 1.448720144465e1 1.705314273522e1 4.581788115850e1 5.719889900099e1 5.790680380914e1 5.792061735166e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.049523613628e1 -1.049522612696e1 -6.380052074462e0 -5.957189679091e0 -5.953698149821e0 4.281369056046e0 4.285026563472e0 4.509209767384e0 1.665866605963e1 1.665937733442e1 1.818394303439e1 4.627139888923e1 5.315191219269e1 5.832145388423e1 5.833993343150e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041327793695e1 -1.039621734962e1 -6.457954948176e0 -6.336139281022e0 -5.894994220932e0 1.849484264585e0 4.780563666727e0 6.344330756631e0 1.467233738998e1 1.712170652836e1 2.354701073840e1 4.703809400318e1 5.164946508656e1 5.647850934022e1 5.857708536387e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017399153049e1 -1.013516907864e1 -7.125521190627e0 -6.579718018167e0 -6.009842191980e0 -2.172173526589e-1 5.863981226585e0 5.961609385558e0 1.774106951879e1 1.780489988529e1 3.146150378698e1 4.543347805861e1 5.150005461208e1 5.573607983268e1 5.801522761107e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952878294434e0 -9.708103576737e0 -7.868089392849e0 -7.024972621721e0 -6.027912362096e0 -1.829622752694e0 4.667801447406e0 7.634280594087e0 1.926849467829e1 2.449496207619e1 3.601160540912e1 3.980167352989e1 5.321213803779e1 5.912205896696e1 6.799280722756e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006540315393e1 -9.105948094487e0 -8.424972920361e0 -7.291552515202e0 -6.006398068166e0 -3.160335465623e0 3.782065005586e0 9.977393055092e0 2.227045560601e1 3.152023136590e1 3.286966704014e1 3.870252347469e1 5.135229764672e1 6.139378412990e1 1.001979519251e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043573695194e1 -8.942680270865e0 -8.239647426548e0 -7.171281270922e0 -6.065607312907e0 -4.294385801113e0 3.273923045583e0 1.296555009528e1 2.463285952079e1 2.736077782866e1 3.546450771704e1 4.095424774449e1 5.060876397406e1 6.335027482870e1 9.558205062550e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070643408502e1 -9.181501703543e0 -7.365450865959e0 -6.985484115586e0 -6.460296500748e0 -4.998073196310e0 3.009341808010e0 1.622947753866e1 2.000383436605e1 2.812196487508e1 3.365285109231e1 4.555080249033e1 5.013576754119e1 6.444039234801e1 8.020695211600e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070647545452e1 -9.181557432667e0 -7.366125703899e0 -6.985608297404e0 -6.458580549988e0 -4.998829032570e0 3.009253813493e0 1.623089699966e1 2.000414553268e1 2.811945647793e1 3.365319319086e1 4.555071624959e1 5.013606262811e1 6.444034253406e1 8.020703265459e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043584504767e1 -8.943001425286e0 -8.240057681450e0 -7.170777128983e0 -6.063919866038e0 -4.295546740780e0 3.273656292156e0 1.296755033215e1 2.463485674011e1 2.735771715185e1 3.546412014925e1 4.095371556304e1 5.060795348243e1 6.335024833373e1 9.558208206959e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 7.129278265982e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006551042619e1 -9.106315592544e0 -8.425943183288e0 -7.290122028965e0 -6.005233422779e0 -3.161190319721e0 3.781675950844e0 9.979301424695e0 2.226817162709e1 3.152292589038e1 3.287175360881e1 3.870115744802e1 5.134759274193e1 6.139388451736e1 1.001977146807e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.020438049230e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952957631019e0 -9.708311108165e0 -7.870210888350e0 -7.022492317897e0 -6.027006778711e0 -1.830250061314e0 4.667369655564e0 7.635768333746e0 1.926689265819e1 2.449488171053e1 3.601384854017e1 3.980732074557e1 5.320157344516e1 5.912237719102e1 6.799222047844e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017408301592e1 -1.013527386747e1 -7.128366612826e0 -6.577253898880e0 -6.008521536913e0 -2.176366895396e-1 5.861175092615e0 5.965145017955e0 1.774056459948e1 1.780437812174e1 3.146134016377e1 4.544717532427e1 5.149618492196e1 5.572348836077e1 5.801454611640e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 9.802757615725e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041333524715e1 -1.039626081643e1 -6.460311096508e0 -6.335934713009e0 -5.892347382586e0 1.849220434529e0 4.781204691817e0 6.344186875831e0 1.467229899077e1 1.712119845354e1 2.354685063662e1 4.703927322351e1 5.166089169523e1 5.647702769868e1 5.856363628498e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024723592738e1 -1.020293684891e1 -7.128830271046e0 -6.375887120631e0 -5.913545066076e0 2.204069835596e0 2.971950222122e0 5.531994593789e0 1.745947199154e1 2.147566715755e1 2.631339536746e1 4.501434400984e1 5.018107944512e1 5.665402267721e1 5.953914080574e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024713518629e1 -1.020292267743e1 -7.128814713639e0 -6.373850591186e0 -5.916044378874e0 2.206030298976e0 2.969012907293e0 5.532894399509e0 1.745883346614e1 2.147652061804e1 2.631377414513e1 4.501344914164e1 5.017585182989e1 5.664810687445e1 5.955344566736e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015372231157e1 -1.000052255984e1 -7.232168642192e0 -6.917938912703e0 -5.841963875241e0 2.220879860247e-2 3.420137111214e0 7.975625795758e0 1.535052877535e1 2.293556443128e1 3.233416912363e1 4.393933421236e1 5.087227750504e1 5.604541230368e1 6.022675163619e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952602812090e0 -9.708147913711e0 -7.867814158707e0 -7.024452155299e0 -6.029524482165e0 -1.829295119804e0 4.666277813425e0 7.635612824440e0 1.926713063451e1 2.449647583196e1 3.601144433097e1 3.979905093942e1 5.320769291144e1 5.913284897345e1 6.799323457293e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.806715094176e0 -9.458532120060e0 -8.348225632598e0 -7.151958861790e0 -6.266946658582e0 -3.147470709945e0 6.107423524926e0 6.888312650927e0 2.541723241153e1 2.862407463709e1 3.200623775009e1 4.051632885907e1 5.325471265200e1 5.812116503667e1 9.339604038046e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008305342975e1 -9.137595839099e0 -8.487620227041e0 -7.217626873511e0 -6.425621646986e0 -4.053490709658e0 5.567510615148e0 9.124601671618e0 2.559478547233e1 2.963092282988e1 3.589376207851e1 4.141652917452e1 5.143115499498e1 5.833291815223e1 8.878728742216e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041362141904e1 -9.109353019798e0 -8.242197843763e0 -7.088319438778e0 -6.664938382773e0 -4.604945581556e0 5.086751093332e0 1.199033185169e1 1.931753630630e1 3.275890711527e1 3.773007577437e1 4.368313814860e1 5.016420930875e1 5.933235473883e1 7.967090526346e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054213552506e1 -9.187685240052e0 -7.958761396106e0 -7.000289373615e0 -6.889032667318e0 -4.783138519629e0 4.909294099546e0 1.470154876334e1 1.550621095659e1 3.408726901994e1 3.690970752536e1 4.640859204200e1 4.917373002789e1 6.018801086647e1 7.987142974746e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041382570175e1 -9.109469587975e0 -8.243050505952e0 -7.087589740260e0 -6.663275803070e0 -4.605926702278e0 5.086253203852e0 1.199293706100e1 1.931752613780e1 3.275521225752e1 3.773227731129e1 4.368243184642e1 5.016262685948e1 5.933214993671e1 7.967129205524e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008340714272e1 -9.137997085449e0 -8.488676158507e0 -7.216079153095e0 -6.423531696761e0 -4.054856017672e0 5.566423401171e0 9.127586454307e0 2.559843004693e1 2.962686071747e1 3.589487877384e1 4.141684360981e1 5.142445685960e1 5.833301087704e1 8.878803276459e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 7.129278265982e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.807109475338e0 -9.458832695071e0 -8.350084350944e0 -7.149677645183e0 -6.264805244299e0 -3.148730681484e0 6.105376312138e0 6.891867230633e0 2.541557563455e1 2.862353890245e1 3.201200875961e1 4.051842940503e1 5.324391248100e1 5.811920923762e1 9.339635882113e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.020438049230e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952958416595e0 -9.708310257054e0 -7.870210895580e0 -7.022492440123e0 -6.027006741870e0 -1.830250032903e0 4.667369597965e0 7.635768421822e0 1.926689444093e1 2.449487907954e1 3.601384911160e1 3.980732095572e1 5.320157333042e1 5.912237723928e1 6.799222061951e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015395026365e1 -1.000062928858e1 -7.234172636004e0 -6.917348845051e0 -5.839224042280e0 2.150493115902e-2 3.421462043666e0 7.975329620407e0 1.535052960643e1 2.293457648467e1 3.233355633563e1 4.394891081450e1 5.087636766666e1 5.604022934243e1 6.021244950436e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001656884461e1 -9.704110584293e0 -7.913466599140e0 -6.946808127336e0 -5.862143028819e0 1.715955472536e-1 2.036399956608e0 7.255976188986e0 1.877986314270e1 2.753344633309e1 3.452554872772e1 3.920149246586e1 5.304271630381e1 6.144935187120e1 6.544053025763e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921724485543e0 -9.892129858806e0 -7.949571975036e0 -6.521649490104e0 -6.100092814291e0 6.569334448841e-1 3.670925855507e0 4.270011597917e0 2.273811437733e1 2.420660667399e1 3.334359843032e1 3.929016403458e1 5.667032384219e1 5.911761320176e1 6.188645177566e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001623173304e1 -9.704066338173e0 -7.913344242665e0 -6.945761801730e0 -5.864484149059e0 1.730130762415e-1 2.033740819087e0 7.257238273230e0 1.877868905538e1 2.753425549767e1 3.452557234905e1 3.919880129047e1 5.303680204022e1 6.146427263607e1 6.544153757074e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006314351417e1 -9.394781671641e0 -8.025966630346e0 -7.343424856211e0 -5.776605580616e0 -1.628219143678e0 2.483298821647e0 1.020309114276e1 1.718560472738e1 2.993307929909e1 3.654336113375e1 3.688369212572e1 5.091453319075e1 6.245458738520e1 7.871441572149e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006496378496e1 -9.106123348445e0 -8.423900103170e0 -7.292150503740e0 -6.008220591727e0 -3.159791577433e0 3.780240655158e0 9.979062367191e0 2.226846316439e1 3.151798842233e1 3.287159810685e1 3.869892983293e1 5.135367658583e1 6.140622043438e1 1.001967061017e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008281379704e1 -9.137684576188e0 -8.487075603809e0 -7.218301674119e0 -6.425993571154e0 -4.053406562612e0 5.565658893758e0 9.126501205067e0 2.559514226808e1 2.962696769591e1 3.589585332166e1 4.141403781052e1 5.143208845127e1 5.833999491158e1 8.878577977754e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017249547090e1 -9.157913805752e0 -8.618398347806e0 -7.153052598387e0 -6.704092916066e0 -4.474644776069e0 7.197447144403e0 9.136057762727e0 1.909015226365e1 3.556421026679e1 3.837640659297e1 4.383399926594e1 5.020844194258e1 5.600177827193e1 7.928263698978e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024095875013e1 -9.156832030545e0 -8.780792857152e0 -7.030734519245e0 -6.869113580856e0 -4.633678619092e0 7.381284104029e0 1.109369012499e1 1.466000015661e1 3.890512773973e1 4.051934710574e1 4.520607980502e1 4.830063781007e1 5.674535774594e1 8.251357006501e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024118084038e1 -9.156607445148e0 -8.781299847467e0 -7.029835867630e0 -6.869013575537e0 -4.634017183715e0 7.380541362337e0 1.109686727008e1 1.465805468993e1 3.890239253875e1 4.052451148520e1 4.520568034755e1 4.829688266187e1 5.674492154997e1 8.251407472041e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017301644250e1 -9.157927348946e0 -8.619400215736e0 -7.151386893448e0 -6.702770444180e0 -4.475634727453e0 7.195765239799e0 9.140025866371e0 1.908998351712e1 3.556117271599e1 3.838133630253e1 4.383549937170e1 5.019939854754e1 5.600068318650e1 7.928375180390e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008340739766e1 -9.137996850271e0 -8.488675955992e0 -7.216079478256e0 -6.423531564150e0 -4.054855985006e0 5.566423372862e0 9.127586493008e0 2.559842998930e1 2.962686185567e1 3.589487740290e1 4.141684406785e1 5.142445650795e1 5.833301093799e1 8.878803283376e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006551096108e1 -9.106314813645e0 -8.425943144829e0 -7.290122431291e0 -6.005233351789e0 -3.161190239951e0 3.781675916071e0 9.979301497264e0 2.226817289934e1 3.152292563170e1 3.287175127077e1 3.870115862080e1 5.134759254380e1 6.139388456193e1 1.001977150018e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006361248107e1 -9.394969031118e0 -8.027624543506e0 -7.342291122717e0 -5.773842643121e0 -1.629255500536e0 2.485036487093e0 1.020271619932e1 1.718576902085e1 2.993201751237e1 3.654374247236e1 3.689150228092e1 5.091155124963e1 6.243949784193e1 7.871389607943e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008856551329e1 -9.000401545335e0 -8.523946872039e0 -7.265213937656e0 -5.825776238852e0 -1.663317944538e0 1.587236542721e0 9.573134126140e0 2.165878604091e1 3.141121652177e1 3.434788832268e1 3.781790833497e1 5.139998148904e1 6.376904462236e1 1.073163235128e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767711968135e0 -9.396590963693e0 -8.569844382815e0 -6.913911687383e0 -6.143095266717e0 -8.787557515946e-1 2.821489516452e0 5.813206765230e0 2.554253792413e1 3.051366736433e1 3.134291141498e1 4.006638915828e1 5.433991551419e1 6.069700754630e1 9.667633609031e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767253565698e0 -9.396870550709e0 -8.569708950439e0 -6.913397391559e0 -6.144306441523e0 -8.782546211390e-1 2.819059249263e0 5.815244538248e0 2.554068412674e1 3.051308614745e1 3.134380767926e1 4.006524175946e1 5.433615341923e1 6.070766840586e1 9.667573123005e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806489175e1 -9.000348080784e0 -8.523257230047e0 -7.265526207062e0 -5.827852911184e0 -1.662355775881e0 1.584782658340e0 9.574795009563e0 2.165697455839e1 3.140857949473e1 3.434851292116e1 3.781483692202e1 5.140137975833e1 6.378474002114e1 1.073157580219e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.031986424713e1 -8.677608233962e0 -8.586073407698e0 -7.320667271920e0 -5.714390921856e0 -3.198777410838e0 2.021239292452e0 1.298681942555e1 2.075709405659e1 3.099110511164e1 3.471519736407e1 3.763804838736e1 5.064672901840e1 6.481221426176e1 1.201449464769e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043538058459e1 -8.941789419816e0 -8.239344377991e0 -7.172576814528e0 -6.067002273599e0 -4.294015476485e0 3.271957243999e0 1.296732055943e1 2.463379137785e1 2.735413245487e1 3.546291958841e1 4.095456956686e1 5.061157454290e1 6.336476558756e1 9.557962576761e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041337461301e1 -9.108550303243e0 -8.242577450552e0 -7.089543528797e0 -6.664705452314e0 -4.605086786725e0 5.084806847560e0 1.199209236013e1 1.931768827971e1 3.275274051357e1 3.773000507346e1 4.368295101462e1 5.016694174300e1 5.934256228511e1 7.966917309630e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024078551584e1 -9.156070839091e0 -8.781521251991e0 -7.031296827995e0 -6.868937681824e0 -4.633699234877e0 7.379870181816e0 1.109440986176e1 1.466061846525e1 3.889761379201e1 4.052230941339e1 4.520578111812e1 4.830452657419e1 5.674918294403e1 8.251271519010e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006757055766e1 -9.156973731387e0 -9.156225330678e0 -6.953114909060e0 -6.951993348182e0 -4.624379260788e0 9.799548566023e0 9.801845651372e0 1.259476016646e1 4.250540352933e1 4.251600048088e1 4.571730227981e1 4.572098073624e1 5.578685647153e1 8.540030717407e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024118092494e1 -9.156607356538e0 -8.781299914933e0 -7.029836068531e0 -6.869013281369e0 -4.634017185852e0 7.380541379554e0 1.109686722720e1 1.465805471722e1 3.890239289767e1 4.052451338010e1 4.520567851167e1 4.829688198381e1 5.674492169231e1 8.251407472049e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041382590616e1 -9.109469531741e0 -8.243050223935e0 -7.087590220950e0 -6.663275421078e0 -4.605926682307e0 5.086253183640e0 1.199293706945e1 1.931752614576e1 3.275521307222e1 3.773227895538e1 4.368242964410e1 5.016262630129e1 5.933215001462e1 7.967129209550e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043584537049e1 -8.943001374451e0 -8.240056944142e0 -7.170777781787e0 -6.063919713870e0 -4.295546635655e0 3.273656254616e0 1.296755037901e1 2.463485681562e1 2.735771804821e1 3.546412174232e1 4.095371273295e1 5.060795331693e1 6.335024837674e1 9.558208234749e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032034914808e1 -8.679016694364e0 -8.586342164343e0 -7.319256606600e0 -5.711618789798e0 -3.199910269674e0 2.023135088185e0 1.298641877481e1 2.075742790162e1 3.099763677894e1 3.471576374222e1 3.763742530342e1 5.064266517550e1 6.479633330555e1 1.201457134424e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042645234338e1 -8.975439687446e0 -8.114130195508e0 -7.173097547470e0 -5.864585415079e0 -3.225032501566e0 1.404943959647e0 1.253766765101e1 2.404115031677e1 2.689347425865e1 3.530998388958e1 4.106520412659e1 5.063183220241e1 6.596403557666e1 1.136961433753e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002893378092e1 -8.987862136035e0 -8.606743002910e0 -7.104585684636e0 -6.204660088770e0 -2.209448916830e0 2.266782889030e0 8.227497869877e0 2.480976139008e1 2.918256350285e1 3.774787710416e1 3.990138370830e1 5.157173029783e1 6.268589469350e1 1.016924151454e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.625855571105e0 -9.345140582409e0 -8.698482547424e0 -6.982582519398e0 -6.422437299750e0 -1.945835503008e0 4.057215920899e0 5.354976143157e0 2.474247278867e1 3.161218729952e1 3.565232394281e1 4.171934486628e1 5.405287212375e1 5.870284749766e1 9.473349067381e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002850719470e1 -8.987711755501e0 -8.606501929289e0 -7.105057438301e0 -6.205575438778e0 -2.209012910393e0 2.264101099780e0 8.229859544939e0 2.480993281079e1 2.917800541216e1 3.774917033861e1 3.989822553072e1 5.157180953840e1 6.270003519374e1 1.016901355014e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042605148313e1 -8.974340758633e0 -8.114154021958e0 -7.174180161821e0 -5.866122913870e0 -3.224612658040e0 1.402577572001e0 1.253945435976e1 2.404200874625e1 2.688702685044e1 3.530760061268e1 4.106565713270e1 5.063435255113e1 6.598044498582e1 1.136959989745e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066288476437e1 -9.098016554991e0 -7.618980242295e0 -7.091066637950e0 -5.669930144726e0 -4.641530348900e0 1.804186392154e0 1.628339738766e1 2.295136782439e1 2.600225166902e1 3.219244729116e1 4.361831790091e1 5.055566965617e1 6.664814025902e1 9.876564246399e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070613190650e1 -9.180362368589e0 -7.365717350156e0 -6.986972047492e0 -6.460600293167e0 -4.998366754768e0 3.007297493563e0 1.623117954507e1 2.000345731225e1 2.811529391069e1 3.365269494218e1 4.555131650275e1 5.013747033974e1 6.445668734708e1 8.020584773345e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054182464132e1 -9.186661704640e0 -7.959412251488e0 -7.001841421409e0 -6.888764892484e0 -4.783139267648e0 4.907469341548e0 1.469915527691e1 1.550981786509e1 3.407971130112e1 3.691037742537e1 4.640886092245e1 4.917767287805e1 6.019921595767e1 7.986957267215e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024078545887e1 -9.156070967819e0 -8.781521271646e0 -7.031297477419e0 -6.868936932993e0 -4.633699225275e0 7.379870212032e0 1.109440986842e1 1.466061843407e1 3.889761488995e1 4.052230993837e1 4.520577908069e1 4.830452701652e1 5.674918280871e1 8.251271520188e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024095877778e1 -9.156832070333e0 -8.780792944649e0 -7.030735370035e0 -6.869112537335e0 -4.633678611594e0 7.381284151542e0 1.109369008871e1 1.466000015270e1 3.890512919684e1 4.051934952594e1 4.520607592669e1 4.830063757921e1 5.674535775262e1 8.251357007684e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.054213568421e1 -9.187685195623e0 -7.958761506664e0 -7.000290072320e0 -6.889031663202e0 -4.783138520765e0 4.909294082946e0 1.470154868614e1 1.550621104737e1 3.408726894571e1 3.690971107477e1 4.640858817614e1 4.917373001040e1 6.018801094130e1 7.987142977951e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070647568770e1 -9.181557396370e0 -7.366125090016e0 -6.985609009897e0 -6.458580175216e0 -4.998829008229e0 3.009253759369e0 1.623089703035e1 2.000414551694e1 2.811945657719e1 3.365319631165e1 4.555071252021e1 5.013606262519e1 6.444034257678e1 8.020703288085e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066325202468e1 -9.099289089108e0 -7.619233978952e0 -7.089648282600e0 -5.667153774043e0 -4.642702571813e0 1.806234438362e0 1.628265710959e1 2.295154320207e1 2.600834964888e1 3.219260902390e1 4.361770187421e1 5.055378869249e1 6.663165465935e1 9.876427099602e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068283886226e1 -9.234205299491e0 -7.149302573499e0 -7.003868152477e0 -6.157266533223e0 -4.248593446150e0 1.320360110411e0 1.577166515952e1 1.949302611829e1 2.748962495809e1 3.318423011120e1 4.561431438260e1 5.085329931637e1 6.733020281814e1 9.600922315744e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035489545754e1 -9.178779090626e0 -7.861893419370e0 -7.020861697051e0 -6.447681497047e0 -3.190104189020e0 1.995947153361e0 1.107168814685e1 1.837072223012e1 3.179086834631e1 3.743084823031e1 4.405681920357e1 5.080405038665e1 6.453046085873e1 9.668399356832e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916941651088e0 -9.194123065703e0 -8.494238266812e0 -7.015693372063e0 -6.612159487969e0 -2.722308252419e0 3.857340019643e0 7.258298044649e0 1.782128794422e1 3.560052305185e1 3.972075342336e1 4.322458700451e1 5.176304806551e1 5.951072947570e1 9.130782216643e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916719389190e0 -9.193751239376e0 -8.494556760107e0 -7.016241640782e0 -6.612080404150e0 -2.722195215863e0 3.854839024256e0 7.260634910191e0 1.782133548733e1 3.559671360361e1 3.972254416710e1 4.322268788695e1 5.176200297179e1 5.951981700053e1 9.130634177980e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035456065612e1 -9.177825221344e0 -7.862449416206e0 -7.022014879170e0 -6.447797749406e0 -3.189984788818e0 1.993244762467e0 1.107389360374e1 1.837082065470e1 3.178496453304e1 3.742932665328e1 4.405708426862e1 5.080550936415e1 6.454619023639e1 9.668239789927e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068250849140e1 -9.233025277040e0 -7.149618309015e0 -7.005228840205e0 -6.157849656043e0 -4.248857232006e0 1.317990969895e0 1.577331340071e1 1.949271081626e1 2.748310040367e1 3.318416785561e1 4.561473237914e1 5.085438189986e1 6.734701800833e1 9.601190952722e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.080578811535e1 -9.242709502073e0 -7.005360463858e0 -6.867945920937e0 -5.653819502610e0 -5.527404158879e0 1.726019799309e0 1.888551235346e1 2.238269051739e1 2.285457516219e1 3.142362951081e1 4.620621826440e1 5.045813487089e1 6.734435280581e1 8.465888850818e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070613187945e1 -9.180362375006e0 -7.365717967669e0 -6.986971457499e0 -6.460600290154e0 -4.998366739918e0 3.007297491429e0 1.623117957389e1 2.000345729736e1 2.811529409839e1 3.365269495945e1 4.555131656636e1 5.013747002436e1 6.445668734601e1 8.020584771364e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041337451854e1 -9.108550407174e0 -8.242577698041e0 -7.089543738004e0 -6.664705008395e0 -4.605086740452e0 5.084806869194e0 1.199209239438e1 1.931768823800e1 3.275274137469e1 3.773000574071e1 4.368294950965e1 5.016694156759e1 5.934256227047e1 7.966917311245e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017249535540e1 -9.157914168357e0 -8.618398261381e0 -7.153053218239e0 -6.704092157123e0 -4.474644709903e0 7.197447238938e0 9.136057734784e0 1.909015221886e1 3.556421345976e1 3.837640642613e1 4.383399576914e1 5.020844227517e1 5.600177812326e1 7.928263702354e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041362152908e1 -9.109353067157e0 -8.242197809727e0 -7.088320127353e0 -6.664937558134e0 -4.604945515167e0 5.086751094887e0 1.199033189424e1 1.931753627260e1 3.275890879181e1 3.773007808591e1 4.368313443890e1 5.016420857702e1 5.933235480195e1 7.967090531926e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.070643429117e1 -9.181501673644e0 -7.365450869870e0 -6.985484235191e0 -6.460296125934e0 -4.998073156812e0 3.009341751822e0 1.622947759805e1 2.000383433554e1 2.812196516174e1 3.365285423069e1 4.555079882470e1 5.013576722285e1 6.444039238970e1 8.020695232195e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.080610488360e1 -9.243937528972e0 -7.003953447047e0 -6.867973473665e0 -5.651038843758e0 -5.528807802983e0 1.728153892636e0 1.888233673734e1 2.238272900379e1 2.286284337547e1 3.142344451210e1 4.620574794637e1 5.045779939133e1 6.732764074687e1 8.465537639749e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068287458912e1 -9.234267374433e0 -7.150124345661e0 -7.003690578975e0 -6.155772072959e0 -4.249286723315e0 1.320291573109e0 1.577306812863e1 1.949334742929e1 2.748730988458e1 3.318440335979e1 4.561417342402e1 5.085359501903e1 6.733027963166e1 9.600901039664e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048189000387e1 -9.281800798122e0 -7.229514300857e0 -6.947622756812e0 -6.860066899655e0 -3.559996586430e0 1.909770464121e0 1.396013366447e1 1.435300306232e1 3.288051728402e1 3.615905742104e1 4.652875307742e1 5.132079718150e1 6.533930607730e1 1.011819832947e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008836569210e1 -9.263275997600e0 -8.173851333260e0 -6.950405953137e0 -6.815900272360e0 -3.140418150776e0 3.588067314237e0 9.864078398310e0 1.319917601278e1 3.779657106944e1 4.031305394555e1 4.599268062162e1 5.089708733760e1 6.162861039286e1 1.050427252452e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767414082753e0 -9.222560995105e0 -8.723774614527e0 -6.962421220217e0 -6.802052270985e0 -3.017612051903e0 5.623559552402e0 7.043332491430e0 1.287619851365e1 4.112169251615e1 4.167595360118e1 4.547262784257e1 5.038075468327e1 5.936294491031e1 1.054771806777e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806448049e1 -9.262380501173e0 -8.174865113403e0 -6.951421346748e0 -6.815497806398e0 -3.140202228544e0 3.585438878901e0 9.865907645190e0 1.319973411971e1 3.778966088894e1 4.031301734625e1 4.599264364815e1 5.090085226585e1 6.163869957788e1 1.050408047919e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048152685173e1 -9.280701413716e0 -7.230404370587e0 -6.949166587758e0 -6.859965500420e0 -3.559724324727e0 1.907160925408e0 1.395817316064e1 1.435663035548e1 3.287336885511e1 3.615945904757e1 4.652914654301e1 5.132307946099e1 6.535504480854e1 1.011812356003e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068250849140e1 -9.233025277052e0 -7.149618310221e0 -7.005228838854e0 -6.157849656130e0 -4.248857232052e0 1.317990969894e0 1.577331340068e1 1.949271081624e1 2.748310040358e1 3.318416785579e1 4.561473237912e1 5.085438189983e1 6.734701800833e1 9.601190952723e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066288473650e1 -9.098016556666e0 -7.618980615417e0 -7.091066317839e0 -5.669930142593e0 -4.641530309977e0 1.804186385026e0 1.628339738676e1 2.295136800124e1 2.600225167201e1 3.219244727058e1 4.361831794377e1 5.055566946024e1 6.664814025761e1 9.876564239885e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043538048317e1 -8.941789478326e0 -8.239344784532e0 -7.172576588052e0 -6.067002208156e0 -4.294015379804e0 3.271957251614e0 1.296732058155e1 2.463379170381e1 2.735413267700e1 3.546292019937e1 4.095456854182e1 5.061157432279e1 6.336476558761e1 9.557962566232e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008281354244e1 -9.137685126699e0 -8.487075535308e0 -7.218301857000e0 -6.425993267845e0 -4.053406424486e0 5.565658960868e0 9.126501217155e0 2.559514227242e1 2.962696952526e1 3.589585402335e1 4.141403480732e1 5.143208867308e1 5.833999490633e1 8.878577971917e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008305343041e1 -9.137596153724e0 -8.487619956357e0 -7.217627380775e0 -6.425621211940e0 -4.053490538889e0 5.567510654168e0 9.124601722207e0 2.559478541944e1 2.963092579850e1 3.589376140853e1 4.141652662733e1 5.143115486652e1 5.833291820796e1 8.878728743204e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.043573717344e1 -8.942680278127e0 -8.239647095793e0 -7.171281696346e0 -6.065607096529e0 -4.294385599401e0 3.273923015851e0 1.296555016414e1 2.463285992152e1 2.736077894807e1 3.546450992221e1 4.095424388805e1 5.060876358857e1 6.335027487185e1 9.558205079568e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.066325202468e1 -9.099289089109e0 -7.619233978953e0 -7.089648282600e0 -5.667153774044e0 -4.642702571810e0 1.806234438360e0 1.628265710962e1 2.295154320195e1 2.600834964890e1 3.219260902390e1 4.361770187491e1 5.055378869224e1 6.663165465855e1 9.876427099685e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042654339278e1 -8.975764767250e0 -8.114639143398e0 -7.172448404362e0 -5.863154512750e0 -3.226016281700e0 1.404728818223e0 1.253966342280e1 2.404286246021e1 2.689088619690e1 3.530900744883e1 4.106488731832e1 5.063127048431e1 6.596421794286e1 1.136954622348e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035505554745e1 -9.178999751903e0 -7.862989642946e0 -7.020219676863e0 -6.445612438418e0 -3.191110142436e0 1.995609162888e0 1.107409872164e1 1.837077450453e1 3.178789469307e1 3.743164466856e1 4.405629606398e1 5.080299709716e1 6.453060925443e1 9.668303498505e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008856200672e1 -9.263270353038e0 -8.174486840026e0 -6.949815971394e0 -6.815047770887e0 -3.140884354958e0 3.587727467212e0 9.866822328907e0 1.319725503932e1 3.779539071258e1 4.031531096286e1 4.599210561657e1 5.089470334822e1 6.162841359147e1 1.050424165174e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633599224385e0 -9.271511983038e0 -8.879979962506e0 -6.911882504789e0 -6.874769834741e0 -3.111444009613e0 5.915408183405e0 8.707755446342e0 9.988623352780e0 4.327661338436e1 4.346862205460e1 4.629761095035e1 4.858917225156e1 5.985207020336e1 1.163186430819e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633233761294e0 -9.270798618211e0 -8.880818778242e0 -6.912980269047e0 -6.874256654951e0 -3.111217279475e0 5.913695178288e0 8.706464200315e0 9.991502399732e0 4.326631205731e1 4.347037465320e1 4.629780531056e1 4.859751416371e1 5.985520896454e1 1.163178312572e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806451350e1 -9.262380457150e0 -8.174865048612e0 -6.951420955796e0 -6.815498276722e0 -3.140202238849e0 3.585438875784e0 9.865907637127e0 1.319973413322e1 3.778966057963e1 4.031301697733e1 4.599264428419e1 5.090085236499e1 6.163869958080e1 1.050408047851e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035456068584e1 -9.177825196602e0 -7.862449265724e0 -7.022014935197e0 -6.447797830772e0 -3.189984813594e0 1.993244766642e0 1.107389359353e1 1.837082066635e1 3.178496429875e1 3.742932640723e1 4.405708467455e1 5.080550950086e1 6.454619022864e1 9.668239789934e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042605148312e1 -8.974340758601e0 -8.114154022423e0 -7.174180161289e0 -5.866122913877e0 -3.224612658127e0 1.402577572000e0 1.253945435966e1 2.404200874630e1 2.688702685018e1 3.530760061338e1 4.106565713229e1 5.063435255109e1 6.598044498583e1 1.136959989746e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.031986417086e1 -8.677608237638e0 -8.586073685697e0 -7.320667126501e0 -5.714390917271e0 -3.198777334586e0 2.021239289565e0 1.298681942486e1 2.075709431045e1 3.099110511615e1 3.471519831087e1 3.763804733709e1 5.064672889460e1 6.481221425821e1 1.201449462929e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006496352509e1 -9.106123928809e0 -8.423900032718e0 -7.292150423715e0 -6.008220547285e0 -3.159791433920e0 3.780240692014e0 9.979062381503e0 2.226846378886e1 3.151798925692e1 3.287159874191e1 3.869892770829e1 5.135367660018e1 6.140622043375e1 1.001967057776e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.806714620809e0 -9.458532874915e0 -8.348225484594e0 -7.151959078484e0 -6.266946479110e0 -3.147470521893e0 6.107423656339e0 6.888312624929e0 2.541723543571e1 2.862407357606e1 3.200623713984e1 4.051632720622e1 5.325471277792e1 5.812116504711e1 9.339604012492e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006540342928e1 -9.105947895237e0 -8.424972811745e0 -7.291552836850e0 -6.006397953399e0 -3.160335242561e0 3.782065007945e0 9.977393141819e0 2.227045750263e1 3.152023194953e1 3.286966533013e1 3.870252252157e1 5.135229746345e1 6.139378417394e1 1.001979519194e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.032034914808e1 -8.679016694365e0 -8.586342164343e0 -7.319256606599e0 -5.711618789800e0 -3.199910269670e0 2.023135088180e0 1.298641877484e1 2.075742790155e1 3.099763677895e1 3.471576374317e1 3.763742530254e1 5.064266517506e1 6.479633330439e1 1.201457134462e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008864952668e1 -9.000701069785e0 -8.525051727584e0 -7.263658478984e0 -5.824807235596e0 -1.664090191098e0 1.586897571245e0 9.575004722187e0 2.165649334862e1 3.141584933462e1 3.434758005561e1 3.781666628062e1 5.139580264889e1 6.376925659630e1 1.073158605958e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002917163915e1 -8.988630197014e0 -8.607531461235e0 -7.102981306043e0 -6.202790557796e0 -2.210697484413e0 2.266077068657e0 8.230078524983e0 2.481356180045e1 2.917850208622e1 3.774789273283e1 3.990149964224e1 5.156679435171e1 6.268619751171e1 1.016916568097e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.917466885578e0 -9.194309092726e0 -8.495295444187e0 -7.014272880163e0 -6.610227671536e0 -2.723464573144e0 3.856193670935e0 7.261667660688e0 1.782121092906e1 3.559733863038e1 3.972512044047e1 4.322512195374e1 5.175491703713e1 5.951056087108e1 9.130740526686e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.768178208342e0 -9.222387711637e0 -8.724172895943e0 -6.961114169794e0 -6.801400948651e0 -3.018299274785e0 5.622308913955e0 7.047381690712e0 1.287398528029e1 4.111917869970e1 4.168458339027e1 4.547399702766e1 5.037079686706e1 5.936018847603e1 1.054776718976e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.633599118834e0 -9.271512051702e0 -8.879979928680e0 -6.911881630730e0 -6.874770809164e0 -3.111444003722e0 5.915408167864e0 8.707755498166e0 9.988623317924e0 4.327661350029e1 4.346861832086e1 4.629761478072e1 4.858917217745e1 5.985207016392e1 1.163186430851e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767414139975e0 -9.222560771807e0 -8.723774685733e0 -6.962420453632e0 -6.802053157661e0 -3.017612062490e0 5.623559509147e0 7.043332528126e0 1.287619852135e1 4.112168900298e1 4.167595375788e1 4.547263154362e1 5.038075445702e1 5.936294494495e1 1.054771806755e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916719501418e0 -9.193750980908e0 -8.494556817488e0 -7.016241292770e0 -6.612080829717e0 -2.722195262779e0 3.854839007057e0 7.260634912333e0 1.782133550459e1 3.559671221662e1 3.972254282077e1 4.322269097958e1 5.176200278579e1 5.951981698307e1 9.130634176288e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002850727785e1 -8.987711520177e0 -8.606501991797e0 -7.105057425543e0 -6.205575509697e0 -2.209012968432e0 2.264101100434e0 8.229859539044e0 2.480993280538e1 2.917800487927e1 3.774916878264e1 3.989822774366e1 5.157180948361e1 6.270003518614e1 1.016901355666e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008806489172e1 -9.000348080589e0 -8.523257230764e0 -7.265526206462e0 -5.827852911179e0 -1.662355775965e0 1.584782658343e0 9.574795009379e0 2.165697455852e1 3.140857949385e1 3.434851292326e1 3.781483692079e1 5.140137975830e1 6.378474002117e1 1.073157580218e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006314334322e1 -9.394781975515e0 -8.025966636860e0 -7.343424796532e0 -5.776605572766e0 -1.628219058136e0 2.483298831367e0 1.020309114193e1 1.718560487238e1 2.993308082443e1 3.654335955015e1 3.688369213213e1 5.091453317085e1 6.245458737867e1 7.871441544089e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952602234718e0 -9.708148683036e0 -7.867814129411e0 -7.024452180843e0 -6.029524438682e0 -1.829294984420e0 4.666277887471e0 7.635612828335e0 1.926713099604e1 2.449647739256e1 3.601144283478e1 3.979905043586e1 5.320769297389e1 5.913284896646e1 6.799323421884e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.952878503392e0 -9.708103494128e0 -7.868089370884e0 -7.024972769013e0 -6.027912282171e0 -1.829622589040e0 4.667801464144e0 7.634280685870e0 1.926849682260e1 2.449496100595e1 3.601160448334e1 3.980167323687e1 5.321213798592e1 5.912205900823e1 6.799280701407e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.006361248107e1 -9.394969031118e0 -8.027624543508e0 -7.342291122715e0 -5.773842643123e0 -1.629255500533e0 2.485036487086e0 1.020271619934e1 1.718576902084e1 2.993201751346e1 3.654374247021e1 3.689150228087e1 5.091155124970e1 6.243949784086e1 7.871389608190e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001664075001e1 -9.704294088205e0 -7.915581733492e0 -6.944155484358e0 -5.861505014566e0 1.709994768081e-1 2.035999092687e0 7.257395823025e0 1.877827413540e1 2.753326361634e1 3.452657404275e1 3.920887183831e1 5.303213055063e1 6.144954455389e1 6.543992655635e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.020438049230e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767858049527e0 -9.397090708678e0 -8.571579852486e0 -6.911311538056e0 -6.141622875924e0 -8.799037012139e-1 2.820400972947e0 5.815715623406e0 2.554012837692e1 3.051565462562e1 3.134639840487e1 4.006818266290e1 5.432858888504e1 6.069726844819e1 9.667651414417e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -7.129278265982e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.626633286042e0 -9.345442836102e0 -8.699798882273e0 -6.980360759882e0 -6.420216916225e0 -1.947291562017e0 4.055593573497e0 5.358451995268e0 2.474641014508e1 3.161011444211e1 3.565137552118e1 4.172292745621e1 5.404171056620e1 5.870067209462e1 9.473444820058e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.917466697488e0 -9.194309127892e0 -8.495295701192e0 -7.014272527748e0 -6.610227939099e0 -2.723464580296e0 3.856193683641e0 7.261667648338e0 1.782121092273e1 3.559733703928e1 3.972512167618e1 4.322512220369e1 5.175491728452e1 5.951056083305e1 9.130740525866e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008856182170e1 -9.263270399268e0 -8.174486924190e0 -6.949815498464e0 -6.815048363615e0 -3.140884343224e0 3.587727480906e0 9.866822338762e0 1.319725501909e1 3.779538996736e1 4.031530842384e1 4.599210903668e1 5.089470348539e1 6.162841351724e1 1.050424165283e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008836554003e1 -9.263275999927e0 -8.173851352248e0 -6.950405088395e0 -6.815901336510e0 -3.140418149401e0 3.588067324738e0 9.864078400201e0 1.319917600603e1 3.779657001641e1 4.031305103550e1 4.599268467954e1 5.089708757263e1 6.162861032160e1 1.050427252496e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.916941575012e0 -9.194122843061e0 -8.494238580794e0 -7.015692672141e0 -6.612160180462e0 -2.722308306532e0 3.857340014950e0 7.258298034636e0 1.782128795514e1 3.560052007160e1 3.972075331264e1 4.322459035060e1 5.176304812560e1 5.951072942014e1 9.130782214156e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.625855806596e0 -9.345140010242e0 -8.698482878528e0 -6.982582143802e0 -6.422437632083e0 -1.945835594471e0 4.057215879485e0 5.354976158184e0 2.474247280364e1 3.161218405629e1 3.565232632589e1 4.171934604817e1 5.405287196603e1 5.870284749470e1 9.473349070155e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767253731508e0 -9.396870242641e0 -8.569709044667e0 -6.913397321829e0 -6.144306508007e0 -8.782546943763e-1 2.819059233109e0 5.815244540081e0 2.554068335138e1 3.051308537456e1 3.134380856162e1 4.006524251356e1 5.433615334896e1 6.070766839991e1 9.667573139535e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001623173293e1 -9.704066338338e0 -7.913344243095e0 -6.945761801106e0 -5.864484149086e0 1.730130761573e-1 2.033740819096e0 7.257238272982e0 1.877868905571e1 2.753425549759e1 3.452557234919e1 3.919880129028e1 5.303680204016e1 6.146427263623e1 6.544153757062e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015372198159e1 -1.000052297868e1 -7.232168653733e0 -6.917938901533e0 -5.841963862116e0 2.220886007377e-2 3.420137151282e0 7.975625794667e0 1.535052877567e1 2.293556609886e1 3.233416733210e1 4.393933422225e1 5.087227748169e1 5.604541226982e1 6.022675162533e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.017399072843e1 -1.013517000777e1 -7.125521192103e0 -6.579718076438e0 -6.009842134697e0 -2.172172701164e-1 5.863981339108e0 5.961609359251e0 1.774107245417e1 1.780489858094e1 3.146150193364e1 4.543347807324e1 5.150005457700e1 5.573607982145e1 5.801522760993e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.015395026365e1 -1.000062928858e1 -7.234172636006e0 -6.917348845049e0 -5.839224042281e0 2.150493116118e-2 3.421462043657e0 7.975329620417e0 1.535052960643e1 2.293457648509e1 3.233355633435e1 4.394891081439e1 5.087636766722e1 5.604022934257e1 6.021244950358e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -9.802757615725e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024730951564e1 -1.020304585499e1 -7.131615025854e0 -6.372572143669e0 -5.913151795239e0 2.203614413388e0 2.971445955101e0 5.533197161049e0 1.745856648876e1 2.147563912691e1 2.631333314067e1 4.502896305366e1 5.017451352789e1 5.664234105371e1 5.953928578310e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.911597832478e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921944956814e0 -9.892376303732e0 -7.951859615424e0 -6.519020367903e0 -6.098460977182e0 6.558207448636e-1 3.668675533162e0 4.273536231931e0 2.273700002272e1 2.420593744943e1 3.334421105954e1 3.930127203786e1 5.665760721832e1 5.911317754009e1 6.188552894363e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.020438049230e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767857368158e0 -9.397091508401e0 -8.571579803667e0 -6.911311346378e0 -6.141622973298e0 -8.799037381701e-1 2.820400987823e0 5.815715573977e0 2.554012637882e1 3.051565636095e1 3.134639947996e1 4.006818199129e1 5.432858891892e1 6.069726843960e1 9.667651399927e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002917126082e1 -8.988630329179e0 -8.607531972341e0 -7.102980824631e0 -6.202790763852e0 -2.210697543225e0 2.266077091231e0 8.230078483764e0 2.481356181069e1 2.917850021446e1 3.774789590932e1 3.990149849761e1 5.156679445430e1 6.268619749544e1 1.016916566341e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035505529342e1 -9.178999773827e0 -7.862990203840e0 -7.020218987283e0 -6.445612857430e0 -3.191110165498e0 1.995609198889e0 1.107409869819e1 1.837077449311e1 3.178789364408e1 3.743164246897e1 4.405629963158e1 5.080299712629e1 6.453060922138e1 9.668303489959e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.048188978647e1 -9.281800831822e0 -7.229514267666e0 -6.947622069441e0 -6.860067918592e0 -3.559996571520e0 1.909770507716e0 1.396013371178e1 1.435300298583e1 3.288051730989e1 3.615905390810e1 4.652875704500e1 5.132079710491e1 6.533930603201e1 1.011819832508e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.035489523322e1 -9.178779087918e0 -7.861893829953e0 -7.020861064609e0 -6.447681995784e0 -3.190104237067e0 1.995947193418e0 1.107168811333e1 1.837072223034e1 3.179086706300e1 3.743084578393e1 4.405682317788e1 5.080405055240e1 6.453046081780e1 9.668399348366e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.002893348562e1 -8.987862034038e0 -8.606743575695e0 -7.104585191345e0 -6.204660364508e0 -2.209449033737e0 2.266782912015e0 8.227497822991e0 2.480976139479e1 2.918256109766e1 3.774787872411e1 3.990138477812e1 5.157173034535e1 6.268589466944e1 1.016924150362e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.767711452426e0 -9.396591455760e0 -8.569844427931e0 -6.913911426843e0 -6.143095429696e0 -8.787558617454e-1 2.821489514838e0 5.813206717927e0 2.554253515021e1 3.051366831372e1 3.134291338553e1 4.006638924140e1 5.433991547763e1 6.069700753168e1 9.667633611136e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.921723650220e0 -9.892130646796e0 -7.949571982375e0 -6.521649387653e0 -6.100092899498e0 6.569333946943e-1 3.670925791960e0 4.270011613195e0 2.273811132707e1 2.420660916258e1 3.334359903093e1 3.929016410188e1 5.667032381961e1 5.911761317488e1 6.188645186353e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024713518576e1 -1.020292267801e1 -7.128814714031e0 -6.373850590454e0 -5.916044379060e0 2.206030298896e0 2.969012907314e0 5.532894399221e0 1.745883346689e1 2.147652061759e1 2.631377414507e1 4.501344914176e1 5.017585182980e1 5.664810687437e1 5.955344566743e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041327709409e1 -1.039621825448e1 -6.457954971973e0 -6.336139280852e0 -5.894994195720e0 1.849484264101e0 4.780563728917e0 6.344330755545e0 1.467233714031e1 1.712170848308e1 2.354700893438e1 4.703809400819e1 5.164946510559e1 5.647850934450e1 5.857708534370e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.041333524715e1 -1.039626081643e1 -6.460311096510e0 -6.335934713007e0 -5.892347382587e0 1.849220434531e0 4.781204691810e0 6.344186875838e0 1.467229899078e1 1.712119845365e1 2.354685063623e1 4.703927322347e1 5.166089169511e1 5.647702769870e1 5.856363628450e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -1.069391739897e0 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.049527913000e1 -1.049527790021e1 -6.383405634599e0 -5.953509055027e0 -5.953508995338e0 4.281072355151e0 4.281072449199e0 4.513671505038e0 1.665873834727e1 1.665874228223e1 1.818387576723e1 4.627325803219e1 5.316598493925e1 5.832153199326e1 5.832153204099e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -9.802757615725e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024730863283e1 -1.020304670735e1 -7.131615027255e0 -6.372572077510e0 -5.913151845572e0 2.203614426583e0 2.971445944329e0 5.533197093451e0 1.745856421139e1 2.147564219598e1 2.631333242726e1 4.502896304344e1 5.017451351950e1 5.664234109119e1 5.953928575039e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -8.911597832478e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001663999207e1 -9.704294874826e0 -7.915581725206e0 -6.944155328974e0 -5.861505075288e0 1.709993963114e-1 2.035999105641e0 7.257395737817e0 1.877827223645e1 2.753326690019e1 3.452657304610e1 3.920887165934e1 5.303213059215e1 6.144954452206e1 6.543992644921e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008864902077e1 -9.000701813088e0 -8.525051718378e0 -7.263658094401e0 -5.824807317701e0 -1.664090329728e0 1.586897601591e0 9.575004646138e0 2.165649184335e1 3.141584900261e1 3.434758358676e1 3.781666498514e1 5.139580269580e1 6.376925656183e1 1.073158602476e2</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042654307609e1 -8.975764786070e0 -8.114639872243e0 -7.172447810069e0 -5.863154646607e0 -3.226016412645e0 1.404728868477e0 1.253966336795e1 2.404286217372e1 2.689088526617e1 3.530900542839e1 4.106489109578e1 5.063127048330e1 6.596421790345e1 1.136954618355e2</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068287434348e1 -9.234267406039e0 -7.150125163241e0 -7.003689901525e0 -6.155772249645e0 -4.249286740858e0 1.320291640163e0 1.577306808327e1 1.949334743664e1 2.748730968523e1 3.318440027068e1 4.561417737035e1 5.085359496131e1 6.733027958794e1 9.600901005681e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.068283861663e1 -9.234205331114e0 -7.149303392354e0 -7.003867475000e0 -6.157266708159e0 -4.248593464169e0 1.320360177462e0 1.577166511421e1 1.949302612557e1 2.748962475892e1 3.318422702182e1 4.561431832894e1 5.085329925872e1 6.733020277439e1 9.600922281769e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.042645202671e1 -8.975439706373e0 -8.114130924905e0 -7.173096953060e0 -5.864585547955e0 -3.225032632942e0 1.404944009885e0 1.253766759617e1 2.404115003116e1 2.689347332652e1 3.530998186945e1 4.106520790407e1 5.063183220150e1 6.596403553723e1 1.136961429763e2</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.008856500736e1 -9.000402288963e0 -8.523946863131e0 -7.265213552795e0 -5.825776320368e0 -1.663318083441e0 1.587236573021e0 9.573134050062e0 2.165878453572e1 3.141121618959e1 3.434789185384e1 3.781790703957e1 5.139998153594e1 6.376904458786e1 1.073163231648e2</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.001656808663e1 -9.704111371122e0 -7.913466591138e0 -6.946807971717e0 -5.862143089159e0 1.715954665624e-1 2.036399969488e0 7.255976103716e0 1.877986124383e1 2.753344961696e1 3.452554773144e1 3.920149228666e1 5.304271634523e1 6.144935183936e1 6.544053015056e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.024723504451e1 -1.020293770140e1 -7.128830272832e0 -6.375887054147e0 -5.913545116169e0 2.204069848644e0 2.971950211297e0 5.531994526064e0 1.745946971434e1 2.147567022664e1 2.631339465407e1 4.501434399978e1 5.018107943665e1 5.665402271461e1 5.953914077303e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.049523524848e1 -1.049522701478e1 -6.380052075082e0 -5.957189633735e0 -5.953698194469e0 4.281369126476e0 4.285026492645e0 4.509209767490e0 1.665866900679e1 1.665937438746e1 1.818394303442e1 4.627139888926e1 5.315191219282e1 5.832145384839e1 5.833993346718e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.059297458038e1 -1.059026684747e1 -5.971358949322e0 -5.968579992287e0 -5.906749183124e0 3.934716428134e0 5.444160947678e0 5.447691081786e0 1.441376716306e1 1.448720144465e1 1.705314273514e1 4.581788115849e1 5.719889900098e1 5.790680380903e1 5.792061735155e1</array>
+        </property>
+      </propertyList>
+      <propertyList dictRef="siesta:kpt_band">
+        <property dictRef="siesta:spin">
+          <scalar dataType="xsd:string">down</scalar>
+        </property>
+        <kpoint coords="-5.346958699487e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.399880559467e0 -7.266679898210e0 -5.238656008357e0 -4.204112125124e0 -3.828929399449e0 -3.139765262252e0 3.144093151274e0 1.944659948479e1 2.286224159143e1 2.375611210491e1 3.256245274987e1 4.734423370508e1 5.155804957519e1 6.828390865764e1 8.646495691686e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416090044996e0 -7.204669978236e0 -5.950309671359e0 -4.249608124330e0 -3.765802999753e0 -2.941127529705e0 4.229527296828e0 1.686088598543e1 2.063949574991e1 2.888383870079e1 3.478919026520e1 4.667854836410e1 5.119877824000e1 6.542092841555e1 8.185399173857e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309828764527e0 -7.150208623810e0 -6.650139808141e0 -4.356676572159e0 -3.798856914882e0 -2.563803207064e0 6.099534958328e0 1.267423814715e1 1.999329056110e1 3.363672782046e1 3.876708267995e1 4.479725687794e1 5.118135269671e1 6.038559947085e1 8.107943199419e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.229671374333e0 -7.213477479861e0 -6.840592861374e0 -4.421417498556e0 -3.819479825343e0 -2.417131589462e0 8.129315385752e0 9.840136906601e0 1.978461134396e1 3.659986991233e1 3.919791238121e1 4.499545484752e1 5.116860552600e1 5.713439677098e1 8.061065908170e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.308648586151e0 -7.145829680435e0 -6.651848868794e0 -4.361163670791e0 -3.797404548453e0 -2.567028714021e0 6.098728367016e0 1.267623095007e1 1.999356714242e1 3.363340017383e1 3.876556765830e1 4.479859382792e1 5.118341338133e1 6.039310963036e1 8.107745526491e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414264626881e0 -7.198799019859e0 -5.950663975926e0 -4.256525040897e0 -3.763711732951e0 -2.948392820181e0 4.229813923660e0 1.686282166151e1 2.063937560935e1 2.887959590045e1 3.479031223600e1 4.667927540610e1 5.119894271305e1 6.543418427913e1 8.185278587345e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.397735518840e0 -7.260413771121e0 -5.236377210179e0 -4.211234406637e0 -3.828829376140e0 -3.149815560844e0 3.145241617652e0 1.944934784615e1 2.285999194120e1 2.375283712884e1 3.256494570968e1 4.734489890887e1 5.155644293870e1 6.829747228608e1 8.646891100699e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214524169895e0 -7.262142790631e0 -5.533064519756e0 -4.232732369704e0 -3.686984737869e0 -2.602844889851e0 2.796586824876e0 1.639658496697e1 2.012050978394e1 2.824885719957e1 3.432756328171e1 4.675027264106e1 5.190911045362e1 6.830074478390e1 9.760143226236e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874635132026e0 -7.232224402862e0 -6.307752836117e0 -4.267313845230e0 -3.720367315095e0 -1.617978461533e0 3.304556835571e0 1.174956098956e1 1.905247305740e1 3.264303018207e1 3.851023881611e1 4.518295526294e1 5.181941689663e1 6.550449691389e1 9.792935089654e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.482503503155e0 -7.316682252313e0 -6.839250762208e0 -4.282699896629e0 -3.812515408205e0 -1.046624553523e0 4.916178284833e0 8.024237355539e0 1.853993197265e1 3.658928780187e1 4.065917494713e1 4.433767407462e1 5.274133861611e1 6.051998419620e1 9.242634847148e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 8.911597832478e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483787785773e0 -7.318356845790e0 -6.837837676383e0 -4.280284549933e0 -3.813488059983e0 -1.045213234601e0 4.918378774403e0 8.021240668406e0 1.853973671852e1 3.659092520762e1 4.066022057107e1 4.433797652814e1 5.274108331843e1 6.051357789752e1 9.242777085126e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 9.802757615725e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876841964330e0 -7.237231220120e0 -6.304974954507e0 -4.261814438959e0 -3.722243285674e0 -1.612910322905e0 3.305050786165e0 1.174651221137e1 1.905200371331e1 3.264644511122e1 3.851204441303e1 4.518204844782e1 5.181845941949e1 6.549213320049e1 9.793086585906e1</array>
+        </property>
+        <kpoint coords="-5.346958699487e-1 1.069391739897e0 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.216816739443e0 -7.268181891248e0 -5.532347091416e0 -4.226083804063e0 -3.689273455655e0 -2.593226853264e0 2.795536209293e0 1.639435194907e1 2.012035393836e1 2.825323130181e1 3.432621320247e1 4.674956837695e1 5.190977342907e1 6.828714318527e1 9.759838589107e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416090079356e0 -7.204669971876e0 -5.950309491741e0 -4.249607958327e0 -3.765803319010e0 -2.941127555328e0 4.229527316275e0 1.686088596036e1 2.063949576114e1 2.888383853084e1 3.478919023422e1 4.667854830961e1 5.119877853797e1 6.542092841664e1 8.185399176391e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.874855651664e0 -7.136339937007e0 -6.044700508265e0 -4.252899882566e0 -3.869483055667e0 -3.535940487513e0 5.636826016733e0 2.023429596054e1 2.437344388892e1 2.461157282556e1 3.366043553874e1 4.758101093910e1 4.978543257274e1 6.352084176008e1 6.384949895077e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020532432269e1 -7.023935838561e0 -6.466112057125e0 -4.351997807697e0 -3.867477279140e0 -3.603038834582e0 7.649361534763e0 1.819403329224e1 2.217178073338e1 3.074822077055e1 3.594905978575e1 4.625639348763e1 4.974782429885e1 5.662144691374e1 6.221599229231e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037227435161e1 -6.942223734505e0 -6.743974276147e0 -4.487704704639e0 -3.886093334647e0 -3.488580339087e0 1.021422490388e1 1.443716311141e1 2.189396579747e1 3.512771655242e1 3.855098486291e1 4.481107981308e1 5.011960841499e1 5.347737485948e1 6.185593830277e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037203348619e1 -6.938518019920e0 -6.745293655040e0 -4.489965855444e0 -3.885556692191e0 -3.490625355111e0 1.021410238758e1 1.443777936927e1 2.189410299427e1 3.512494866659e1 3.855080152666e1 4.481207878979e1 5.012107262574e1 5.347916521716e1 6.185639279891e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020462445174e1 -7.018034404500e0 -6.465170250130e0 -4.358042219752e0 -3.865581458956e0 -3.609807705626e0 7.649812630795e0 1.819529776906e1 2.217138063058e1 3.074390108239e1 3.594962348911e1 4.625754546091e1 4.974769903547e1 5.662786194077e1 6.221846209278e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.873737087818e0 -7.129966446984e0 -6.040820853743e0 -4.260150153815e0 -3.869351794083e0 -3.545571612758e0 5.637947165378e0 2.023720986287e1 2.436982170066e1 2.460916640592e1 3.366219177236e1 4.758144086796e1 4.978388101787e1 6.352313466758e1 6.386144037701e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414565569528e0 -7.198271777941e0 -5.948113879064e0 -4.256118097385e0 -3.763682019473e0 -2.953627620785e0 4.231171991270e0 1.686296633329e1 2.063991250514e1 2.887896759764e1 3.479025052326e1 4.667934558705e1 5.119764577416e1 6.543094792504e1 8.186110488011e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874950488378e0 -7.231409018977e0 -6.306589575593e0 -4.267148247908e0 -3.720282925507e0 -1.622649752653e0 3.306701068267e0 1.174978166215e1 1.905272584861e1 3.264282936212e1 3.851007755512e1 4.518279460816e1 5.181809406325e1 6.550407961070e1 9.793504768809e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.302576862671e0 -7.273541182557e0 -6.808105177676e0 -4.208135164696e0 -3.808850006698e0 6.314784017483e-2 2.970482879012e0 7.575193017819e0 1.813919993246e1 3.633298885523e1 4.214459606625e1 4.321830039309e1 5.306656731895e1 6.346301129698e1 9.244272410621e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.020438049230e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.919042981553e0 -7.377538247640e0 -7.086155771056e0 -4.120312348176e0 -3.911965621296e0 9.471243759341e-1 3.607653679031e0 5.137138787430e0 1.785004337855e1 3.916492353527e1 4.088814061903e1 4.343166100968e1 5.647849563438e1 6.005994032225e1 8.712007986292e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.911597832478e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.304484462833e0 -7.278049829744e0 -6.804500783198e0 -4.204474907149e0 -3.810519725449e0 6.925436153355e-2 2.970179203047e0 7.571160556564e0 1.813874070243e1 3.633500720982e1 4.214806313604e1 4.321736504171e1 5.306841717105e1 6.345119270176e1 9.244258244608e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 9.802757615725e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876842006548e0 -7.237231195205e0 -6.304974835865e0 -4.261814270878e0 -3.722243534738e0 -1.612910385094e0 3.305050815209e0 1.174651220463e1 1.905200372358e1 3.264644489568e1 3.851204414259e1 4.518204886922e1 5.181845954217e1 6.549213319315e1 9.793086586389e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309828851973e0 -7.150208512068e0 -6.650139639330e0 -4.356675961915e0 -3.798857655248e0 -2.563803327796e0 6.099534971471e0 1.267423812011e1 1.999329059909e1 3.363672702408e1 3.876708193259e1 4.479725842761e1 5.118135283518e1 6.038559948470e1 8.107943198727e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020532435891e1 -7.023935821133e0 -6.466111903191e0 -4.351997260155e0 -3.867477900816e0 -3.603038917454e0 7.649361531933e0 1.819403323864e1 2.217178076250e1 3.074822030670e1 3.594905972280e1 4.625639375296e1 4.974782467523e1 5.662144690903e1 6.221599231332e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.098385004163e1 -6.900231125300e0 -6.402523251536e0 -4.347770995497e0 -4.184569323369e0 -3.931927267955e0 9.705727024999e0 2.196301701345e1 2.560765139752e1 2.806624913810e1 3.523614756552e1 4.580601315555e1 4.766443732951e1 4.952968390351e1 5.836954648818e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149251743498e1 -6.755755837780e0 -6.489390842370e0 -4.457741904887e0 -4.378582763762e0 -3.906211779120e0 1.239900132236e1 2.030267758395e1 2.459024472825e1 3.348847189744e1 3.674817365935e1 4.353106119934e1 4.666447376182e1 4.939862268877e1 5.601820741793e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166662801605e1 -6.619091655905e0 -6.615212658268e0 -4.524948106875e0 -4.423796946867e0 -3.870560190202e0 1.484210152602e1 1.742090698241e1 2.459584507450e1 3.569453925767e1 3.793165976406e1 4.303334285292e1 4.669381973444e1 4.976575206221e1 5.473281431717e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149236603900e1 -6.749844880305e0 -6.488855742864e0 -4.460927402608e0 -4.383843580283e0 -3.906397467854e0 1.239988703614e1 2.030309070806e1 2.458957859747e1 3.348443486474e1 3.674862497274e1 4.352790341988e1 4.666728705126e1 4.940207287174e1 5.602231200248e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.098358723056e1 -6.893651826190e0 -6.397730522066e0 -4.354532056240e0 -4.193339533681e0 -3.931980137184e0 9.706987716635e0 2.196626335425e1 2.560336137191e1 2.806363726996e1 3.523644868899e1 4.580055383055e1 4.766431751276e1 4.953674661893e1 5.837877375107e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020501389959e1 -7.016999277324e0 -6.461283023796e0 -4.357674182972e0 -3.866425217576e0 -3.616085039371e0 7.650993901469e0 1.819577571073e1 2.217240772025e1 3.074259476342e1 3.594896012508e1 4.625745570122e1 4.974609610471e1 5.661880927792e1 6.223374002307e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309470583357e0 -7.143168754020e0 -6.648724087961e0 -4.361093977150e0 -3.797898595177e0 -2.575857730715e0 6.101432727493e0 1.267686955320e1 1.999424316278e1 3.363264093643e1 3.876458038298e1 4.479835536822e1 5.117958535042e1 6.039336589775e1 8.108943524444e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483444386864e0 -7.312290113862e0 -6.839436470951e0 -4.283271472740e0 -3.812404279111e0 -1.055150799721e0 4.920428329275e0 8.024879934366e0 1.854046954889e1 3.658840426473e1 4.065925435380e1 4.433622008465e1 5.273657777825e1 6.052452465199e1 9.243540018283e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 7.129278265982e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.919300250746e0 -7.372449981327e0 -7.089561310978e0 -4.121874529147e0 -3.910939918046e0 9.398367178652e-1 3.612136950627e0 5.138617672344e0 1.785032112163e1 3.916328814713e1 4.088983281979e1 4.342976178389e1 5.646948538435e1 6.007115970276e1 8.712300892605e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.020438049230e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.919043026591e0 -7.377537933826e0 -7.086156010598e0 -4.120311492468e0 -3.911966489141e0 9.471242487030e-1 3.607653755845e0 5.137138795649e0 1.785004338102e1 3.916492006792e1 4.088814296661e1 4.343166231963e1 5.647849552208e1 6.005994033591e1 8.712007985571e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483787908133e0 -7.318356587258e0 -6.837837680881e0 -4.280283914086e0 -3.813488779804e0 -1.045213371858e0 4.918378810821e0 8.021240675202e0 1.853973673527e1 3.659092391094e1 4.066021915302e1 4.433797961463e1 5.274108311469e1 6.051357787995e1 9.242777083991e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.229671451229e0 -7.213477169170e0 -6.840592893751e0 -4.421416585942e0 -3.819480841860e0 -2.417131776201e0 8.129315347257e0 9.840136930494e0 1.978461138774e1 3.659986678092e1 3.919791253836e1 4.499545831800e1 5.116860518154e1 5.713439689635e1 8.061065905621e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037227439934e1 -6.942223533645e0 -6.743974246590e0 -4.487703804402e0 -3.886094131607e0 -3.488580667422e0 1.021422483619e1 1.443716307667e1 2.189396587203e1 3.512771462170e1 3.855098457023e1 4.481108234617e1 5.011960801717e1 5.347737518660e1 6.185593830990e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149251745066e1 -6.755755814344e0 -6.489390760086e0 -4.457741191509e0 -4.378582720434e0 -3.906212634627e0 1.239900126927e1 2.030267751142e1 2.459024478059e1 3.348847069427e1 3.674817398002e1 4.353106103880e1 4.666447534001e1 4.939862230973e1 5.601820746063e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.232242623210e1 -6.606407582849e0 -6.298202794092e0 -4.890602351034e0 -4.392541693520e0 -3.993485984606e0 1.519636424723e1 2.466020635097e1 2.738923774307e1 3.275674659306e1 3.570994101846e1 3.928633871227e1 4.745916434928e1 4.842849714573e1 5.416377007748e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275257597437e1 -6.457075444564e0 -6.302943267231e0 -5.080106470929e0 -4.428603527862e0 -3.977430239587e0 1.863657530471e1 2.312245697546e1 2.749581122537e1 3.554144144548e1 3.617525505946e1 3.914212789454e1 4.694390398858e1 4.955352277593e1 5.256044920675e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275255483097e1 -6.451798295141e0 -6.304199005801e0 -5.082697449652e0 -4.431001744578e0 -3.977324772898e0 1.863784311354e1 2.312205492230e1 2.749497307681e1 3.554142498738e1 3.617338023447e1 3.914076122602e1 4.694425484025e1 4.955629017479e1 5.256229511512e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.232238749586e1 -6.599552309969e0 -6.294042104457e0 -4.898773944963e0 -4.397900598149e0 -3.993480899927e0 1.519781989647e1 2.466408392053e1 2.738402650074e1 3.275425700421e1 3.570962964612e1 3.928239477970e1 4.745795828556e1 4.843492956480e1 5.417040351092e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149255855728e1 -6.748490966539e0 -6.483802409659e0 -4.461808078369e0 -4.389580132973e0 -3.907909557980e0 1.240057309031e1 2.030421932604e1 2.459097622469e1 3.348245865066e1 3.674624863476e1 4.352734575487e1 4.666733649611e1 4.939909700758e1 5.603111827961e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037259991295e1 -6.933963417548e0 -6.741297920997e0 -4.490848723554e0 -3.887546669285e0 -3.499750095157e0 1.021605261613e1 1.443894211283e1 2.189508755666e1 3.512305776124e1 3.854777919871e1 4.481266659937e1 5.011613373022e1 5.347654073109e1 6.187324831142e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.230506773183e0 -7.206943949889e0 -6.839240238908e0 -4.423189866953e0 -3.819772599413e0 -2.427993485225e0 8.132283394341e0 9.841592536897e0 1.978551092085e1 3.659711576960e1 3.919678081990e1 4.499460755896e1 5.116221273145e1 5.714225226399e1 8.062250912506e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 6.238118482734e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483444239377e0 -7.312290166707e0 -6.839436591012e0 -4.283271103270e0 -3.812404624246e0 -1.055150838254e0 4.920428339814e0 8.024879935024e0 1.854046954503e1 3.658840273513e1 4.065925550988e1 4.433622034641e1 5.273657803760e1 6.052452460863e1 9.243540017197e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 7.129278265982e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.302576669991e0 -7.273541117715e0 -6.808105451274e0 -4.208134276677e0 -3.808850867572e0 6.314770019225e-2 2.970482944739e0 7.575193028236e0 1.813919993006e1 3.633298668447e1 4.214459468806e1 4.321830411180e1 5.306656734873e1 6.346301128654e1 9.244272409211e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.020438049230e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.482503477946e0 -7.316682045599e0 -6.839250887927e0 -4.282698895232e0 -3.812516469189e0 -1.046624729352e0 4.916178331854e0 8.024237362967e0 1.853993198555e1 3.658928497602e1 4.065917468457e1 4.433767742354e1 5.274133867116e1 6.051998413532e1 9.242634844952e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.308648532642e0 -7.145829620616e0 -6.651848765095e0 -4.361162638386e0 -3.797405734055e0 -2.567028909436e0 6.098728411996e0 1.267623091543e1 1.999356717790e1 3.363339863556e1 3.876556527821e1 4.479859747306e1 5.118341410894e1 6.039310955725e1 8.107745521598e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037203350273e1 -6.938517868246e0 -6.745293554738e0 -4.489964818881e0 -3.885557619137e0 -3.490625775653e0 1.021410230973e1 1.443777935758e1 2.189410307469e1 3.512494643898e1 3.855080032014e1 4.481208187886e1 5.012107323806e1 5.347916532365e1 6.185639276812e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166662803055e1 -6.619091505596e0 -6.615212646764e0 -4.524947014704e0 -4.423796972873e0 -3.870561427259e0 1.484210127094e1 1.742090703550e1 2.459584519033e1 3.569453648641e1 3.793166025118e1 4.303334304099e1 4.669382261448e1 4.976575150956e1 5.473281441772e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275257597931e1 -6.457075431362e0 -6.302943229779e0 -5.080106481322e0 -4.428602559776e0 -3.977431240897e0 1.863657517311e1 2.312245690492e1 2.749581130349e1 3.554143899779e1 3.617525548847e1 3.914212901855e1 4.694390569300e1 4.955352216981e1 5.256044925964e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.344149617441e1 -6.320741304903e0 -6.125469513261e0 -5.493865213868e0 -4.309227197885e0 -4.038887385113e0 2.237599183541e1 2.792944273132e1 2.944542536670e1 3.462212779604e1 3.692539136139e1 3.718703781660e1 4.794925818273e1 4.935178204505e1 5.181967490025e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367532108894e1 -6.209737461955e0 -6.153642913833e0 -5.606488523246e0 -4.284342759079e0 -4.034977959132e0 2.589656616701e1 2.664001373018e1 3.005052646219e1 3.444989010253e1 3.643586189661e1 3.881702974060e1 4.821069357011e1 5.024877627037e1 5.104395623529e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.344149660551e1 -6.313577462641e0 -6.123228082726e0 -5.501520332907e0 -4.312169707134e0 -4.038882014774e0 2.237756910306e1 2.793446719294e1 2.943920357452e1 3.462195973412e1 3.692402099596e1 3.718367833137e1 4.794606796223e1 4.935800093987e1 5.182360549952e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275261602048e1 -6.450509067338e0 -6.297182746447e0 -5.090298183356e0 -4.431703638040e0 -3.978725704267e0 1.863760839493e1 2.312425837673e1 2.749660451955e1 3.553834248678e1 3.617117523710e1 3.913925140692e1 4.694506363873e1 4.955308994295e1 5.257101527648e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166682597695e1 -6.613935841250e0 -6.609447850107e0 -4.526969204127e0 -4.433477038237e0 -3.872851873707e0 1.484295318648e1 1.742294491069e1 2.459719664806e1 3.569079393572e1 3.792713502733e1 4.303222929784e1 4.669496354678e1 4.976092155632e1 5.474860474753e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037259988175e1 -6.933963470527e0 -6.741297846216e0 -4.490848583898e0 -3.887546802517e0 -3.499750187680e0 1.021605260598e1 1.443894213585e1 2.189508756251e1 3.512305746275e1 3.854777828672e1 4.481266715368e1 5.011613474141e1 5.347654051090e1 6.187324827345e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309470442448e0 -7.143168806561e0 -6.648724152297e0 -4.361093548508e0 -3.797899046935e0 -2.575857805445e0 6.101432759296e0 1.267686954560e1 1.999424316027e1 3.363264019398e1 3.876457875087e1 4.479835746199e1 5.117958594148e1 6.039336581062e1 8.108943520194e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874950255532e0 -7.231409044037e0 -6.306589821797e0 -4.267147435325e0 -3.720283710004e0 -1.622649865989e0 3.306701128062e0 1.174978164992e1 1.905272584274e1 3.264282840793e1 3.851007533628e1 4.518279809473e1 5.181809410455e1 6.550407957216e1 9.793504760057e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874634941400e0 -7.232224403010e0 -6.307752963708e0 -4.267312866972e0 -3.720368346220e0 -1.617978637113e0 3.304556924474e0 1.174956097059e1 1.905247306180e1 3.264302901249e1 3.851023632669e1 4.518295917148e1 5.181941705993e1 6.550449686808e1 9.792935081440e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414264458455e0 -7.198799049632e0 -5.950663866880e0 -4.256524083019e0 -3.763713001269e0 -2.948392927516e0 4.229814025323e0 1.686282160482e1 2.063937564205e1 2.887959564617e1 3.479030914622e1 4.667927899867e1 5.119894302592e1 6.543418423109e1 8.185278567818e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020462439788e1 -7.018034431159e0 -6.465169974769e0 -4.358041155656e0 -3.865582713597e0 -3.609807936605e0 7.649812661761e0 1.819529770592e1 2.217138071074e1 3.074390072548e1 3.594962034322e1 4.625754824135e1 4.974770022664e1 5.662786192582e1 6.221846201043e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149236603624e1 -6.749844910278e0 -6.488855476952e0 -4.460926363029e0 -4.383843472266e0 -3.906398908765e0 1.239988691305e1 2.030309066517e1 2.458957872443e1 3.348443421296e1 3.674862257892e1 4.352790342039e1 4.666728986493e1 4.940207355645e1 5.602231192796e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275255483459e1 -6.451798336379e0 -6.304198848169e0 -5.082697478703e0 -4.431000427316e0 -3.977326181575e0 1.863784280873e1 2.312205492173e1 2.749497321250e1 3.554142237959e1 3.617338086110e1 3.914076137003e1 4.694425728725e1 4.955629002827e1 5.256229504596e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367532109051e1 -6.209737482502e0 -6.153642862387e0 -5.606488543389e0 -4.284341503743e0 -4.034979217397e0 2.589656586926e1 2.664001379447e1 3.005052651769e1 3.444989016668e1 3.643585885929e1 3.881703234012e1 4.821069453564e1 5.024877597688e1 5.104395622101e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.415244690045e1 -6.113246865636e0 -6.047391749258e0 -5.891505308976e0 -4.150546854218e0 -4.064417134858e0 2.943080967965e1 3.075532069466e1 3.119108724207e1 3.369979469867e1 3.768252646960e1 3.853148921695e1 4.991271707366e1 5.040621683809e1 5.107275760852e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.415244946531e1 -6.105617527751e0 -6.047333174873e0 -5.898726977583e0 -4.151324383911e0 -4.064414680725e0 2.943203487539e1 3.076188751692e1 3.118403500656e1 3.369920305652e1 3.768121091690e1 3.853125471028e1 4.990791087436e1 5.041173862405e1 5.107403503923e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367533596716e1 -6.207364630336e0 -6.145849425192e0 -5.615634799178e0 -4.285348108479e0 -4.035892180171e0 2.589334307109e1 2.664531126359e1 3.005138630147e1 3.444854548210e1 3.643315363016e1 3.881491303269e1 4.821049352741e1 5.024395845823e1 5.105411503011e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275261601916e1 -6.450509118671e0 -6.297182628980e0 -5.090298201750e0 -4.431703284634e0 -3.978726116521e0 1.863760822189e1 2.312425844657e1 2.749660457692e1 3.553834233214e1 3.617117542904e1 3.913925042749e1 4.694506438132e1 4.955309040176e1 5.257101515508e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149255853883e1 -6.748491018570e0 -6.483802226909e0 -4.461807760968e0 -4.389580055010e0 -3.907910148359e0 1.240057302036e1 2.030421935560e1 2.459097629919e1 3.348245920095e1 3.674624592185e1 4.352734591543e1 4.666733772875e1 4.939909807443e1 5.603111816250e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020501380952e1 -7.016999320975e0 -6.461282902540e0 -4.357673657536e0 -3.866425858035e0 -3.616085189111e0 7.650993935261e0 1.819577570115e1 2.217240777122e1 3.074259486998e1 3.594895704273e1 4.625745821385e1 4.974609692213e1 5.661880926744e1 6.223373991973e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414565366746e0 -7.198271813960e0 -5.948113949814e0 -4.256117301352e0 -3.763682972611e0 -2.953627702482e0 4.231172073458e0 1.686296630167e1 2.063991252658e1 2.887896751318e1 3.479024746469e1 4.667934923318e1 5.119764579010e1 6.543094787581e1 8.186110465905e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214523937401e0 -7.262142822390e0 -5.533064652302e0 -4.232731455787e0 -3.686985794868e0 -2.602844991756e0 2.796586931531e0 1.639658492511e1 2.012050979524e1 2.824885702401e1 3.432756025200e1 4.675027651296e1 5.190911039365e1 6.830074473523e1 9.760143193599e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.397735296056e0 -7.260413804522e0 -5.236377136215e0 -4.211233516372e0 -3.828830668981e0 -3.149815603192e0 3.145241734958e0 1.944934778100e1 2.285999204063e1 2.375283711904e1 3.256494255947e1 4.734490278761e1 5.155644289405e1 6.829747223527e1 8.646891054314e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.873736950116e0 -7.129966481065e0 -6.040820660855e0 -4.260149266724e0 -3.869353083821e0 -3.545571654658e0 5.637947251271e0 2.023720980106e1 2.436982168986e1 2.460916660892e1 3.366218845451e1 4.758144462919e1 4.978388101911e1 6.352313447125e1 6.386144032229e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.098358719218e1 -6.893651861499e0 -6.397730250866e0 -4.354531093746e0 -4.193339574819e0 -3.931981420960e0 9.706987702179e0 2.196626329805e1 2.560336135903e1 2.806363773120e1 3.523644522383e1 4.580055385746e1 4.766432097726e1 4.953674664987e1 5.837877368940e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.232238749196e1 -6.599552346789e0 -6.294041887300e0 -4.898773985321e0 -4.397899497509e0 -3.993482175188e0 1.519781972399e1 2.466408387182e1 2.738402648470e1 3.275425806593e1 3.570962690547e1 3.928239425751e1 4.745796108231e1 4.843492953265e1 5.417040343931e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.344149660651e1 -6.313577500902e0 -6.123227963894e0 -5.501520372626e0 -4.312168481986e0 -4.038883280003e0 2.237756883965e1 2.793446715393e1 2.943920355465e1 3.462195912999e1 3.692402333629e1 3.718367583395e1 4.794606940204e1 4.935800080351e1 5.182360541493e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.415244946571e1 -6.105617567035e0 -6.047333093836e0 -5.898727016778e0 -4.151323126601e0 -4.064415937194e0 2.943203481995e1 3.076188748809e1 3.118403498332e1 3.369920302917e1 3.768120748820e1 3.853125812949e1 4.990791117589e1 5.041173860579e1 5.107403494116e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 0.000000000000e0" weight="4.551661356395e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.439415561515e1 -6.040518911966e0 -6.029548551127e0 -6.029548498256e0 -4.072356738156e0 -4.072355067627e0 3.188468848736e1 3.188468852018e1 3.189572802655e1 3.342882433469e1 3.871354703084e1 3.871355189370e1 5.103195498557e1 5.103195505522e1 5.103971439891e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.217219205399e0 -7.110288543689e0 -5.866366363914e0 -4.375864705404e0 -3.158218930178e0 -3.051288280565e0 3.192336083096e0 1.691562840851e1 2.355840149248e1 2.683416557401e1 3.335064050466e1 4.473496530167e1 5.154621102986e1 6.758157034508e1 1.000846401655e2</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416243355661e0 -7.204858508926e0 -5.951922304565e0 -4.248780964377e0 -3.760087354671e0 -2.945474774866e0 4.229403644217e0 1.686169500037e1 2.064028238164e1 2.888211460772e1 3.478858431136e1 4.667865125296e1 5.119887768098e1 6.542079720268e1 8.185410681799e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.470513467522e0 -7.230749860591e0 -6.576577064184e0 -4.181444290094e0 -3.863801584712e0 -2.718435355580e0 5.934876179617e0 1.539334457329e1 1.611544017436e1 3.487413815438e1 3.806163599456e1 4.755565526715e1 5.018605349291e1 6.126036343542e1 8.148462761104e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436083105987e0 -7.229714689044e0 -7.052615755519e0 -4.168580917939e0 -3.876508574433e0 -2.545966327680e0 8.262672683522e0 1.180856680210e1 1.530343218238e1 3.981234524183e1 4.153149777659e1 4.634918243741e1 4.927676302023e1 5.790610098458e1 8.407692272966e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.435504222106e0 -7.225550069926e0 -7.055633081043e0 -4.171464687726e0 -3.875352786151e0 -2.547000741000e0 8.261590924926e0 1.180961243969e1 1.530405426557e1 3.980848499284e1 4.153173712229e1 4.635008421725e1 4.927988749582e1 5.790828370476e1 8.407603918309e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.469055835013e0 -7.225345378037e0 -6.578166337609e0 -4.188186203973e0 -3.862692635710e0 -2.721182116948e0 5.934332247038e0 1.539202102984e1 1.611864993508e1 3.486906102137e1 3.806325179979e1 4.755577972404e1 5.018906854855e1 6.126867529270e1 8.148261212555e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414264626880e0 -7.198799019858e0 -5.950663975928e0 -4.256525040898e0 -3.763711732951e0 -2.948392820181e0 4.229813923661e0 1.686282166149e1 2.063937560939e1 2.887959590049e1 3.479031223601e1 4.667927540540e1 5.119894271307e1 6.543418428011e1 8.185278587213e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214883728663e0 -7.103940510237e0 -5.864878551207e0 -4.383006909420e0 -3.168047702045e0 -3.050590981062e0 3.193492816541e0 1.691743029997e1 2.355656429684e1 2.683155705073e1 3.335199802861e1 4.473582343040e1 5.154701545465e1 6.759491601715e1 1.000856655386e2</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.873797136643e0 -6.979405434310e0 -6.337495244286e0 -4.518113361814e0 -3.365701034563e0 -1.805534961097e0 2.828030575777e0 1.319719111897e1 2.473170043108e1 2.778404915793e1 3.643092673351e1 4.217736537509e1 5.156599478373e1 6.692205898583e1 1.144969278728e2</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429329307879e0 -7.062824794310e0 -6.769926853466e0 -4.510075192607e0 -3.649639988041e0 -7.355605300552e-1 3.492141138871e0 8.971295697560e0 2.566407216535e1 3.010471510199e1 3.878287351536e1 4.097173515488e1 5.249435917674e1 6.363509641526e1 1.023842892466e2</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 8.911597832478e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.103967415931e0 -7.404325240636e0 -6.789669344812e0 -4.427819813134e0 -3.829385621151e0 -3.962368134737e-1 5.128486650678e0 6.162537815019e0 2.563946187031e1 3.266195272247e1 3.659402820629e1 4.272897310768e1 5.499908129490e1 5.962549409570e1 9.543780204536e1</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 9.802757615725e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.431912307417e0 -7.062380408786e0 -6.771782744959e0 -4.506723875488e0 -3.648384542392e0 -7.331679900685e-1 3.493110618965e0 8.968220410139e0 2.566400367736e1 3.010737022320e1 3.878298275714e1 4.097403973342e1 5.249185116912e1 6.362448791555e1 1.023870739817e2</array>
+        </property>
+        <kpoint coords="-4.455798916239e-1 1.069391739897e0 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876402936370e0 -6.984939707401e0 -6.336830542817e0 -4.512370206704e0 -3.363103271346e0 -1.800777679077e0 2.827112945534e0 1.319452747710e1 2.473232141892e1 2.778647398844e1 3.643321503619e1 4.217648967497e1 5.156324274839e1 6.690894941872e1 1.144978340150e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.070716623353e0 -6.949758275719e0 -6.476341944748e0 -4.534669642196e0 -3.539159968850e0 -2.444484562596e0 4.443214250832e0 1.363021692521e1 2.535078019019e1 2.825339529847e1 3.657111606989e1 4.203740010972e1 5.155915511905e1 6.429465075866e1 9.642460074768e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.682617569090e0 -6.985582731052e0 -6.297625444977e0 -4.433202232713e0 -3.560697881967e0 -3.518298033894e0 5.807014831164e0 1.758585851507e1 2.527030165527e1 2.760613557456e1 3.427636612380e1 4.436013831188e1 5.114716073946e1 6.328204389087e1 7.109013379755e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020544248330e1 -7.023789814702e0 -6.467539150066e0 -4.350443199403e0 -3.861284348257e0 -3.609135385616e0 7.649200306741e0 1.819465849721e1 2.217282721985e1 3.074618371164e1 3.594869101866e1 4.625681039120e1 4.974757275991e1 5.662134445590e1 6.221645186110e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055177342601e1 -7.010035454784e0 -6.790773762037e0 -4.250363423773e0 -3.945088085543e0 -3.581290247806e0 1.005316593421e1 1.690266049734e1 1.824037025858e1 3.692086100008e1 3.892805143853e1 4.725225639428e1 4.772100303686e1 5.265953131712e1 6.125829406040e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067102931476e1 -6.971978307366e0 -6.950970813788e0 -4.221364893470e0 -3.974697692434e0 -3.541590209833e0 1.232762346929e1 1.416482180975e1 1.775788120370e1 4.018197801806e1 4.064677389538e1 4.606773622007e1 4.795521764378e1 5.089244197397e1 6.126568986360e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055134798019e1 -7.004862260726e0 -6.791924533333e0 -4.256245863077e0 -3.943343057366e0 -3.583469396632e0 1.005342204853e1 1.690042824944e1 1.824282445143e1 3.691603244573e1 3.892948539445e1 4.725150271826e1 4.772388125652e1 5.266362810282e1 6.125887186178e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020462445174e1 -7.018034404499e0 -6.465170250133e0 -4.358042219752e0 -3.865581458956e0 -3.609807705625e0 7.649812630796e0 1.819529776903e1 2.217138063065e1 3.074390108249e1 3.594962348914e1 4.625754545992e1 4.974769903531e1 5.662786194087e1 6.221846209292e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.681408985182e0 -6.979146810935e0 -6.294251833418e0 -4.440504492165e0 -3.569733585118e0 -3.518069949850e0 5.808152641877e0 1.758753024205e1 2.526817150475e1 2.760343194815e1 3.427700667245e1 4.436190971934e1 5.114785568904e1 6.329357686463e1 7.108895900819e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.069024729544e0 -6.943100796198e0 -6.476155911249e0 -4.540298869861e0 -3.539955693802e0 -2.452531628571e0 4.444715104400e0 1.363267683278e1 2.535060912552e1 2.825048754050e1 3.656869321380e1 4.203854398298e1 5.156095803119e1 6.430660757939e1 9.642535164959e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429632679056e0 -7.058100572684e0 -6.773660635776e0 -4.509632610095e0 -3.649335366100e0 -7.398804483858e-1 3.494541055452e0 8.971503312457e0 2.566436164850e1 3.010445664807e1 3.878354200181e1 4.097016662266e1 5.249309567996e1 6.363692496157e1 1.023875235263e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.801213684528e0 -7.233164643408e0 -7.174363095522e0 -4.261165754465e0 -3.884140251675e0 1.245947493883e0 3.050382972783e0 5.460978437121e0 2.537025096743e1 3.339123510334e1 3.671723126776e1 4.253650536747e1 5.614120704348e1 6.130517428507e1 9.305783705093e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.804022199618e0 -7.230072933587e0 -7.176000545430e0 -4.260698563399e0 -3.883421251958e0 1.250245163688e0 3.049655539107e0 5.457959807910e0 2.537009476701e1 3.339344728321e1 3.671581438098e1 4.253861997555e1 5.614568662303e1 6.129425541941e1 9.305843864316e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 9.802757615725e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.431912436816e0 -7.062380058742e0 -6.771782834895e0 -4.506723763013e0 -3.648384708888e0 -7.331681472776e-1 3.493110675178e0 8.968220408353e0 2.566400366887e1 3.010736973112e1 3.878298108436e1 4.097404202082e1 5.249185110753e1 6.362448790918e1 1.023870740568e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886795852538e0 -7.154856583955e0 -6.583420820059e0 -4.652924502194e0 -3.789214406239e0 -2.113977855126e0 6.546563923547e0 9.857956669769e0 2.643666442007e1 3.060649364874e1 3.678012853591e1 4.254949858874e1 5.237977110405e1 5.927225763919e1 8.948003146062e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833873080060e0 -6.830146410430e0 -6.555197960024e0 -4.698511405274e0 -3.868957508342e0 -3.288360939693e0 8.038673123649e0 1.485988474365e1 2.706755161259e1 2.950617401730e1 3.632576760748e1 4.252821493107e1 5.150250474447e1 5.895501560286e1 7.003716638433e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076915275940e1 -6.759682990348e0 -6.441208185442e0 -4.612753988963e0 -4.216189897711e0 -3.730082244344e0 9.954212225783e0 1.901939320797e1 2.822691476587e1 2.905568982886e1 3.528936163734e1 4.434669755656e1 5.043794243459e1 5.192584261898e1 5.798383328227e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149257183739e1 -6.755702057309e0 -6.490699924298e0 -4.454639494494e0 -4.378708516670e0 -3.907616828350e0 1.239866933901e1 2.030325051074e1 2.459148313378e1 3.348618340356e1 3.674787848778e1 4.353306164876e1 4.666508801422e1 4.939628124083e1 5.601867387355e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187674939948e1 -6.718561203550e0 -6.630786173723e0 -4.398921902556e0 -4.262845000540e0 -4.052156838111e0 1.540069428159e1 1.921715751985e1 2.103854420352e1 3.864924254243e1 3.871987570842e1 4.154873299307e1 4.719465577200e1 4.813196949730e1 5.444630406219e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187667477335e1 -6.713386834979e0 -6.633470885515e0 -4.399884101465e0 -4.267266424186e0 -4.050121668281e0 1.540219701123e1 1.921387999813e1 2.104022422736e1 3.864580338385e1 3.872279016006e1 4.154565105695e1 4.719191067393e1 4.813951978887e1 5.444677342049e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149236603900e1 -6.749844880304e0 -6.488855742866e0 -4.460927402608e0 -4.383843580282e0 -3.906397467853e0 1.239988703614e1 2.030309070805e1 2.458957859752e1 3.348443486490e1 3.674862497283e1 4.352790341923e1 4.666728705066e1 4.940207287141e1 5.602231200307e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076886592624e1 -6.753089362005e0 -6.436467410598e0 -4.619247558392e0 -4.224888347167e0 -3.730162448635e0 9.955515008439e0 1.902079110797e1 2.822441259633e1 2.905293545362e1 3.528891649647e1 4.434962233808e1 5.043563790069e1 5.192661591839e1 5.799275089151e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833541734444e0 -6.822157759056e0 -6.553364077902e0 -4.703232811864e0 -3.872148581433e0 -3.295311924114e0 8.040184334324e0 1.486184140272e1 2.706805945061e1 2.950216378340e1 3.632339188505e1 4.253018240304e1 5.150227680555e1 5.896408856637e1 7.003874976230e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886414848792e0 -7.149296033077e0 -6.583388302475e0 -4.655226088251e0 -3.789593171222e0 -2.122540278222e0 6.548201108701e0 9.860453568092e0 2.643743699010e1 3.060315030546e1 3.678048959344e1 4.254650153258e1 5.237711435682e1 5.928501575619e1 8.948305313552e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.104035011869e0 -7.399668392373e0 -6.792100654478e0 -4.427891621994e0 -3.829747111275e0 -4.032009274518e-1 5.131840997732e0 6.163782569742e0 2.563990875465e1 3.265970501305e1 3.659534195805e1 4.272599322608e1 5.499083886700e1 5.963947917661e1 9.544142661286e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.020438049230e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.801213376242e0 -7.233165153668e0 -7.174362922745e0 -4.261165142117e0 -3.884140780268e0 1.245947292702e0 3.050383064093e0 5.460978457226e0 2.537025096146e1 3.339123208003e1 3.671723473825e1 4.253650507729e1 5.614120697532e1 6.130517430697e1 9.305783702457e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.103967636509e0 -7.404324707766e0 -6.789669556240e0 -4.427819193428e0 -3.829386205351e0 -3.962370778793e-1 5.128486703602e0 6.162537827173e0 2.563946188517e1 3.266194952259e1 3.659403047043e1 4.272897435434e1 5.499908113502e1 5.962549409425e1 9.543780208726e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.885897177364e0 -7.154786017068e0 -6.581467321117e0 -4.655873046021e0 -3.789550177937e0 -2.114948603746e0 6.545470519097e0 9.859918751149e0 2.643665827509e1 3.060434896571e1 3.678061963074e1 4.254841209105e1 5.238212802110e1 5.927669157652e1 8.947819856157e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.881475183185e0 -6.901164702933e0 -6.481732336879e0 -4.860568652069e0 -3.956815460151e0 -3.198729512148e0 1.026275059172e1 1.210563041881e1 2.796424578599e1 3.066571490349e1 3.571739947962e1 4.361123677928e1 5.170968792198e1 5.612940204819e1 7.020473184693e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106511432322e1 -6.554872702999e0 -6.418952564963e0 -4.894214655759e0 -4.451408144459e0 -3.650804310811e0 1.278835241667e1 1.679884639332e1 2.941028485634e1 3.068146451115e1 3.572365888830e1 4.409873976368e1 5.131524082153e1 5.242242830526e1 5.585876628762e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208970061772e1 -6.479010531832e0 -6.260489088517e0 -4.927485139011e0 -4.712249919568e0 -3.815267711347e0 1.541617951847e1 2.129343036133e1 3.083300304622e1 3.115037495211e1 3.543124305467e1 4.245927986881e1 4.599388153513e1 5.050721497299e1 5.400069674203e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275259496329e1 -6.458893040639e0 -6.302485812393e0 -5.079459921879e0 -4.427039208390e0 -3.977981635478e0 1.863556041343e1 2.312344073636e1 2.749711591877e1 3.554127127788e1 3.617220913242e1 3.914545444295e1 4.694455419044e1 4.955008204479e1 5.256137530623e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.297912961610e1 -6.409319918094e0 -6.402177272614e0 -5.090479617769e0 -4.174529719567e0 -4.171871129822e0 2.234385094442e1 2.234980739366e1 2.428891515614e1 3.639866274190e1 3.837702597875e1 3.837878515590e1 4.838269432589e1 4.838944480687e1 5.168865779070e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275255483097e1 -6.451798295140e0 -6.304199005801e0 -5.082697449652e0 -4.431001744578e0 -3.977324772897e0 1.863784311353e1 2.312205492231e1 2.749497307681e1 3.554142498738e1 3.617338023468e1 3.914076122582e1 4.694425483935e1 4.955629017475e1 5.256229511539e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208965619184e1 -6.472263791384e0 -6.256293387330e0 -4.935382374768e0 -4.717090795723e0 -3.815679258256e0 1.541766593564e1 2.129444033414e1 3.083056974990e1 3.114790043677e1 3.543086587759e1 4.245567616582e1 4.599685462378e1 5.050879836465e1 5.400672347813e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106515237797e1 -6.546014935063e0 -6.416830739282e0 -4.897609647048e0 -4.460446586928e0 -3.652364382612e0 1.278969163750e1 1.680055354942e1 2.941105030276e1 3.067775541752e1 3.572051635387e1 4.410120739869e1 5.131189725945e1 5.241995489597e1 5.587110433545e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.881724960297e0 -6.894543777345e0 -6.481072320245e0 -4.861648540181e0 -3.959840024188e0 -3.205347436739e0 1.026473680636e1 1.210673327720e1 2.796543094731e1 3.066279462144e1 3.571614682984e1 4.361072493293e1 5.170324836193e1 5.614121438155e1 7.020762668841e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886414702478e0 -7.149296189569e0 -6.583388396745e0 -4.655225760288e0 -3.789593335484e0 -2.122540367451e0 6.548201126841e0 9.860453540372e0 2.643743704560e1 3.060314916438e1 3.678049097815e1 4.254650106626e1 5.237711471883e1 5.928501569101e1 8.948305306752e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429632335722e0 -7.058100841703e0 -6.773660889087e0 -4.509631945716e0 -3.649335750267e0 -7.398806386148e-1 3.494541083889e0 8.971503297379e0 2.566436165765e1 3.010445483306e1 3.878354509620e1 4.097016550952e1 5.249309578974e1 6.363692494078e1 1.023875233591e2</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.020438049230e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429329094143e0 -7.062824711844e0 -6.769927198266e0 -4.510074415425e0 -3.649640538762e0 -7.355608775580e-1 3.492141223649e0 8.971295680663e0 2.566407216601e1 3.010471279508e1 3.878287493216e1 4.097173633392e1 5.249435922483e1 6.363509638808e1 1.023842891555e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.068754936201e0 -6.945332271123e0 -6.475400951028e0 -4.540987391973e0 -3.541245601999e0 -2.447395949637e0 4.443295330136e0 1.363251036629e1 2.535006817315e1 2.825077655097e1 3.656900968072e1 4.203899253042e1 5.156211071684e1 6.430584769346e1 9.642135075981e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833233190246e0 -6.826416165881e0 -6.552623155584e0 -4.704178986615e0 -3.870938063721e0 -3.290288540804e0 8.038934296094e0 1.486134263984e1 2.706717099253e1 2.950296185693e1 3.632482929915e1 4.253012502196e1 5.150502715694e1 5.896138406295e1 7.003448807068e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106501333235e1 -6.550931891820e0 -6.418055640052e0 -4.897335262647e0 -4.454228797462e0 -3.651041658248e0 1.278890109549e1 1.679931857637e1 2.941083238177e1 3.067826889673e1 3.572361737038e1 4.410013840244e1 5.131633383541e1 5.242075877934e1 5.586187485598e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229174886049e1 -6.271052599935e0 -6.236239774280e0 -5.114023367011e0 -4.864942554743e0 -3.771111005375e0 1.816575234551e1 1.974465121721e1 3.089685550221e1 3.181612832905e1 3.547787176191e1 4.323769723941e1 4.670251904306e1 5.143524409524e1 5.273558323344e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237927026e1 -6.209084672476e0 -6.093019598163e0 -5.530358081477e0 -4.590035566308e0 -3.886672943073e0 2.220869668288e1 2.438414345888e1 3.222356008894e1 3.271964396265e1 3.480105045862e1 4.049630962062e1 4.666845611022e1 5.094189048893e1 5.186949684877e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367532450670e1 -6.217820522564e0 -6.147667661221e0 -5.604985597511e0 -4.283082479409e0 -4.035330767828e0 2.589076809302e1 2.664469957140e1 3.005241619554e1 3.444959898079e1 3.643584795037e1 3.881798926559e1 4.821234530305e1 5.024293657205e1 5.104614848448e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367532108894e1 -6.209737461955e0 -6.153642913832e0 -5.606488523246e0 -4.284342759080e0 -4.034977959132e0 2.589656616698e1 2.664001373020e1 3.005052646217e1 3.444989010252e1 3.643586189662e1 3.881702974061e1 4.821069356961e1 5.024877627035e1 5.104395623527e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237715537e1 -6.202489481786e0 -6.091235684964e0 -5.537228952629e0 -4.592116143261e0 -3.886979385966e0 2.221007911665e1 2.438471319438e1 3.222207227813e1 3.271806774762e1 3.480052262297e1 4.049449892819e1 4.666910907153e1 5.094350143111e1 5.187238874530e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229178073013e1 -6.270279385094e0 -6.227897158778e0 -5.121910441481e0 -4.866829398202e0 -3.771813768846e0 1.816513062761e1 1.974764429140e1 3.089416524251e1 3.181754172575e1 3.547471816519e1 4.323687434980e1 4.670330602696e1 5.142942357111e1 5.274623301743e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106515235800e1 -6.546014971419e0 -6.416830695963e0 -4.897609566931e0 -4.460446589436e0 -3.652364508829e0 1.278969162016e1 1.680055354315e1 2.941105085468e1 3.067775480050e1 3.572051586895e1 4.410120752713e1 5.131189799602e1 5.241995475755e1 5.587110426554e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833541621173e0 -6.822157832424e0 -6.553364187330e0 -4.703232431595e0 -3.872148678112e0 -3.295312193863e0 8.040184361997e0 1.486184136845e1 2.706805965416e1 2.950216300651e1 3.632339115076e1 4.253018327916e1 5.150227751817e1 5.896408848050e1 7.003874973000e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.069024454219e0 -6.943100855458e0 -6.476156370436e0 -4.540298108467e0 -3.539956004619e0 -2.452531933475e0 4.444715147213e0 1.363267678889e1 2.535060903192e1 2.825048671191e1 3.656869165681e1 4.203854673242e1 5.156095821531e1 6.430660753094e1 9.642535138096e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.873796841622e0 -6.979405453950e0 -6.337495747563e0 -4.518112531450e0 -3.365701382576e0 -1.805535389963e0 2.828030669802e0 1.319719107315e1 2.473170013811e1 2.778404830958e1 3.643092471477e1 4.217736908886e1 5.156599478713e1 6.692205894179e1 1.144969275006e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214883500548e0 -7.103940542947e0 -5.864878777075e0 -4.383006090692e0 -3.168047745670e0 -3.050591918783e0 3.193492935486e0 1.691743025445e1 2.355656393545e1 2.683155702104e1 3.335199527062e1 4.473582712263e1 5.154701557892e1 6.759491596678e1 1.000856651303e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.681408889590e0 -6.979146842362e0 -6.294251607948e0 -4.440503597375e0 -3.569733631960e0 -3.518071241893e0 5.808152719732e0 1.758753020062e1 2.526817094767e1 2.760343191427e1 3.427700380318e1 4.436191287925e1 5.114785653124e1 6.329357681104e1 7.108895892448e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076886592271e1 -6.753089392162e0 -6.436467022741e0 -4.619246565348e0 -4.224888394504e0 -3.730163838696e0 9.955514954925e0 1.902079107237e1 2.822441169611e1 2.905293541465e1 3.528891391133e1 4.434962502737e1 5.043563913053e1 5.192661612275e1 5.799275083317e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208965620222e1 -6.472263819262e0 -6.256293115079e0 -4.935382424941e0 -4.717089646128e0 -3.815680608619e0 1.541766569666e1 2.129444030501e1 3.083056970569e1 3.114789852445e1 3.543086515697e1 4.245567608402e1 4.599685738121e1 5.050879908605e1 5.400672341328e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237716130e1 -6.202489503142e0 -6.091235572592e0 -5.537229009787e0 -4.592114851848e0 -3.886980689505e0 2.221007886444e1 2.438471317220e1 3.222207223002e1 3.271806468360e1 3.480052299514e1 4.049450001422e1 4.666911132208e1 5.094350147257e1 5.187238867109e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.391128857091e1 -6.052183346043e0 -6.044796722359e0 -5.890505502693e0 -4.332553061511e0 -3.969984662477e0 2.793655236560e1 2.794254857519e1 3.243921750005e1 3.390089081054e1 3.499506656159e1 3.985886938891e1 4.814061544265e1 5.116149053597e1 5.116713487264e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.415244690045e1 -6.113246865637e0 -6.047391749257e0 -5.891505308976e0 -4.150546854219e0 -4.064417134857e0 2.943080967966e1 3.075532069465e1 3.119108724207e1 3.369979469867e1 3.768252646959e1 3.853148921695e1 4.991271707374e1 5.040621683789e1 5.107275760843e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.391128856879e1 -6.052183385145e0 -6.044796761994e0 -5.890505423579e0 -4.332554332963e0 -3.969983407223e0 2.793655235772e1 2.794254856762e1 3.243921754935e1 3.390089073695e1 3.499507012173e1 3.985886644983e1 4.814061463177e1 5.116149057216e1 5.116713490875e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237715490e1 -6.202489536612e0 -6.091235591101e0 -5.537228974805e0 -4.592116063181e0 -3.886979486125e0 2.221007902768e1 2.438471315498e1 3.222207227427e1 3.271806791187e1 3.480052262938e1 4.049449855353e1 4.666910927762e1 5.094350168850e1 5.187238865164e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208965618241e1 -6.472263837062e0 -6.256293251601e0 -4.935382405139e0 -4.717090664634e0 -3.815679481519e0 1.541766584661e1 2.129444029494e1 3.083056973806e1 3.114790114754e1 3.543086441083e1 4.245567617554e1 4.599685482337e1 5.050879925344e1 5.400672339761e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076886586806e1 -6.753089402586e0 -6.436467336109e0 -4.619247273007e0 -4.224888381970e0 -3.730162854585e0 9.955515008591e0 1.902079106622e1 2.822441300715e1 2.905293543504e1 3.528891404010e1 4.434962373298e1 5.043563867705e1 5.192661615173e1 5.799275082428e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.681408801967e0 -6.979146847967e0 -6.294252029145e0 -4.440503810962e0 -3.569733624040e0 -3.518070651128e0 5.808152699118e0 1.758753019710e1 2.526817152697e1 2.760343192523e1 3.427700387487e1 4.436191261664e1 5.114785607664e1 6.329357680765e1 7.108895883120e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214883459684e0 -7.103940544724e0 -5.864879019151e0 -4.383006009289e0 -3.168047743254e0 -3.050591764240e0 3.193492905247e0 1.691743025328e1 2.355656409866e1 2.683155702449e1 3.335199525687e1 4.473582716847e1 5.154701539267e1 6.759491596618e1 1.000856650549e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214523937403e0 -7.262142822534e0 -5.533064651938e0 -4.232731456527e0 -3.686985794150e0 -2.602844991967e0 2.796586931545e0 1.639658492514e1 2.012050979524e1 2.824885702394e1 3.432756025210e1 4.675027651289e1 5.190911039366e1 6.830074473522e1 9.760143193578e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414565401116e0 -7.198271807671e0 -5.948113769583e0 -4.256117140188e0 -3.763683287283e0 -2.953627728386e0 4.231172092916e0 1.686296627662e1 2.063991253780e1 2.887896734334e1 3.479024743338e1 4.667934918012e1 5.119764608724e1 6.543094787603e1 8.186110468606e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020501384570e1 -7.016999303979e0 -6.461282747350e0 -4.357673119190e0 -3.866426469364e0 -3.616085273992e0 7.650993932443e0 1.819577564761e1 2.217240780034e1 3.074259440655e1 3.594895697899e1 4.625745848182e1 4.974609729689e1 5.661880926278e1 6.223373994052e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149255855450e1 -6.748490996571e0 -6.483802142212e0 -4.461807061081e0 -4.389580003561e0 -3.907910999490e0 1.240057296726e1 2.030421928316e1 2.459097635160e1 3.348245799908e1 3.674624624113e1 4.352734575576e1 4.666733930895e1 4.939909769341e1 5.603111820466e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275261602410e1 -6.450509107977e0 -6.297182587914e0 -5.090298213108e0 -4.431702321878e0 -3.978727112648e0 1.863760809019e1 2.312425837627e1 2.749660465516e1 3.553833987832e1 3.617117586520e1 3.913925155062e1 4.694506608605e1 4.955308979578e1 5.257101520760e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367533596874e1 -6.207364653399e0 -6.145849369519e0 -5.615634820727e0 -4.285346856343e0 -4.035893435541e0 2.589334277386e1 2.664531132777e1 3.005138635688e1 3.444854554605e1 3.643315059347e1 3.881491563154e1 4.821049449298e1 5.024395816527e1 5.105411501566e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.415244946571e1 -6.105617567035e0 -6.047333093837e0 -5.898727016777e0 -4.151323126600e0 -4.064415937195e0 2.943203481994e1 3.076188748810e1 3.118403498332e1 3.369920302917e1 3.768120748821e1 3.853125812949e1 4.990791117582e1 5.041173860600e1 5.107403494125e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.415244690004e1 -6.113246827437e0 -6.047391830229e0 -5.891505269203e0 -4.150548111095e0 -4.064415878389e0 2.943080973535e1 3.075532072388e1 3.119108726485e1 3.369979472620e1 3.768252989801e1 3.853148579757e1 4.991271677260e1 5.040621685585e1 5.107275770658e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367532108894e1 -6.209737455428e0 -6.153642922230e0 -5.606488522156e0 -4.284342751513e0 -4.034977965932e0 2.589656616749e1 2.664001373011e1 3.005052646144e1 3.444989010335e1 3.643586189539e1 3.881702974108e1 4.821069357168e1 5.024877626850e1 5.104395623549e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275255482966e1 -6.451798347744e0 -6.304198888692e0 -5.082697467460e0 -4.431001386419e0 -3.977325188878e0 1.863784294050e1 2.312205499233e1 2.749497313382e1 3.554142483549e1 3.617338042403e1 3.914076024579e1 4.694425558395e1 4.955629063315e1 5.256229499320e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149236602057e1 -6.749844933462e0 -6.488855560168e0 -4.460927074218e0 -4.383843509875e0 -3.906398060492e0 1.239988696620e1 2.030309073775e1 2.458957867184e1 3.348443541496e1 3.674862225962e1 4.352790357992e1 4.666728828584e1 4.940207393638e1 5.602231188585e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020462436167e1 -7.018034448964e0 -6.465170128572e0 -4.358041693652e0 -3.865582101511e0 -3.609807853443e0 7.649812664602e0 1.819529775956e1 2.217138068154e1 3.074390118888e1 3.594962040695e1 4.625754797384e1 4.974769985146e1 5.662786193030e1 6.221846198970e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414264424071e0 -7.198799056327e0 -5.950664046005e0 -4.256524245813e0 -3.763712685425e0 -2.948392901882e0 4.229814005874e0 1.686282162993e1 2.063937563082e1 2.887959581591e1 3.479030917766e1 4.667927905171e1 5.119894272874e1 6.543418423086e1 8.185278565101e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.040041073352e0 -7.343098928208e0 -6.022160417128e0 -4.137040053643e0 -3.818432727661e0 -1.943679661890e0 3.246888968000e0 1.464512140305e1 1.495777558446e1 3.366217636103e1 3.733042481552e1 4.767359372849e1 5.235762173525e1 6.631921033523e1 1.025796605956e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.040364817039e0 -7.342663509607e0 -6.019829709203e0 -4.136911029616e0 -3.819104451799e0 -1.948289211556e0 3.248923365632e0 1.464566201969e1 1.495769857270e1 3.366194623669e1 3.733030864013e1 4.767374895187e1 5.235579321662e1 6.631925466130e1 1.025854839081e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.469950956446e0 -7.224064960541e0 -6.572562550017e0 -4.187955573158e0 -3.864625406635e0 -2.729888466408e0 5.936992320742e0 1.539356677069e1 1.611841390524e1 3.486827155924e1 3.806262029932e1 4.755632508695e1 5.018441505895e1 6.126812372931e1 8.149572356031e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055199806876e1 -7.002831912594e0 -6.784889329680e0 -4.256242085646e0 -3.946285456029e0 -3.593088010669e0 1.005522730721e1 1.690276849927e1 1.824271908546e1 3.691434346090e1 3.892705363588e1 4.725270035743e1 4.771948737998e1 5.265714603098e1 6.127802759185e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187691392024e1 -6.710828813247e0 -6.625128679601e0 -4.410048848489e0 -4.267601801118e0 -4.053641507660e0 1.540264219673e1 1.921671762168e1 2.104114865610e1 3.864284572125e1 3.871729071175e1 4.154432134497e1 4.719400152998e1 4.813388346609e1 5.446309192539e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.297919172070e1 -6.399557305544e0 -6.399557205906e0 -5.100987376426e0 -4.175285414391e0 -4.175283777162e0 2.234684434355e1 2.234684477905e1 2.429283913842e1 3.639667480411e1 3.837366646724e1 3.837366950194e1 4.838467927979e1 4.838468076398e1 5.170296161955e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367533596716e1 -6.207364630336e0 -6.145849425193e0 -5.615634799178e0 -4.285348108478e0 -4.035892180172e0 2.589334307112e1 2.664531126357e1 3.005138630149e1 3.444854548211e1 3.643315363015e1 3.881491303268e1 4.821049352791e1 5.024395845826e1 5.105411503013e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.391128856879e1 -6.052183385146e0 -6.044796761995e0 -5.890505423578e0 -4.332554332962e0 -3.969983407223e0 2.793655235775e1 2.794254856764e1 3.243921754935e1 3.390089073698e1 3.499507012173e1 3.985886644975e1 4.814061463256e1 5.116149057218e1 5.116713490877e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367532450513e1 -6.217820499504e0 -6.147667718315e0 -5.604985575571e0 -4.283083730136e0 -4.035329512856e0 2.589076839053e1 2.664469950739e1 3.005241613957e1 3.444959891656e1 3.643585098734e1 3.881798666655e1 4.821234433915e1 5.024293686470e1 5.104614849864e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.297912961610e1 -6.409319843634e0 -6.402177349047e0 -5.090479617082e0 -4.174528492263e0 -4.171872355874e0 2.234385127117e1 2.234980706667e1 2.428891515619e1 3.639866274196e1 3.837702825442e1 3.837878287967e1 4.838269543851e1 4.838944369502e1 5.168865779091e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187667477274e1 -6.713386909293e0 -6.633470734204e0 -4.399884111623e0 -4.267265283133e0 -4.050122896332e0 1.540219682695e1 1.921388022035e1 2.104022416699e1 3.864580444197e1 3.872278768693e1 4.154565090387e1 4.719191320636e1 4.813951903908e1 5.444677335090e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055134795778e1 -7.004862319745e0 -6.791924336143e0 -4.256244823249e0 -3.943344306379e0 -3.583469412487e0 1.005342201292e1 1.690042838039e1 1.824282436502e1 3.691603272627e1 3.892948207457e1 4.725150619778e1 4.772388127444e1 5.266362794147e1 6.125887180323e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.469055727502e0 -7.225345420893e0 -6.578166204509e0 -4.188185227537e0 -3.862693909042e0 -2.721182131670e0 5.934332295614e0 1.539202110274e1 1.611864985343e1 3.486906109433e1 3.806324832492e1 4.755578351919e1 5.018906856970e1 6.126867520683e1 8.148261209172e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.720711005424e0 -7.368497264740e0 -6.771714203502e0 -4.098557259264e0 -3.818609433777e0 -1.418565956264e0 4.670837820946e0 1.057842756837e1 1.386071660506e1 3.868871155325e1 4.139600307243e1 4.713621230267e1 5.188867732235e1 6.264121500871e1 1.062350242106e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.577174672707e0 -7.414429733969e0 -6.487278625474e0 -4.064570871242e0 -3.799838677298e0 -6.009465394999e-1 2.918221697264e0 1.015395499097e1 1.340179074512e1 3.822811942032e1 4.118182848834e1 4.748588005961e1 5.324038663344e1 6.487140842533e1 1.111381550720e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.721830012166e0 -7.366951721555e0 -6.767587914722e0 -4.098767986797e0 -3.820028132879e0 -1.427397777576e0 4.675017800899e0 1.057922209381e1 1.386125303888e1 3.868835896838e1 4.139548286491e1 4.713618477781e1 5.188291561642e1 6.264662165953e1 1.062440987750e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436901600655e0 -7.221939505204e0 -7.049720789044e0 -4.172300002654e0 -3.877913774810e0 -2.557972556747e0 8.264825276549e0 1.181118623609e1 1.530472923436e1 3.980723950305e1 4.152934153119e1 4.635019143719e1 4.927349406679e1 5.791456836031e1 8.408930579847e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067163886744e1 -6.964295247114e0 -6.947014264925e0 -4.223426722882e0 -3.977530246208e0 -3.553171556908e0 1.232934659617e1 1.416706416519e1 1.775874877017e1 4.017753866440e1 4.064244361953e1 4.606914153636e1 4.795157546885e1 5.089065155073e1 6.128567268167e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187691392086e1 -6.710828740374e0 -6.625128831352e0 -4.410048838824e0 -4.267602941234e0 -4.053640278199e0 1.540264238098e1 1.921671739957e1 2.104114871639e1 3.864284466314e1 3.871729318289e1 4.154432149835e1 4.719399899773e1 4.813388421773e1 5.446309199492e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275261602048e1 -6.450509067339e0 -6.297182746447e0 -5.090298183356e0 -4.431703638040e0 -3.978725704267e0 1.863760839495e1 2.312425837673e1 2.749660451954e1 3.553834248678e1 3.617117523688e1 3.913925140712e1 4.694506363963e1 4.955308994299e1 5.257101527621e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237715537e1 -6.202489481789e0 -6.091235684963e0 -5.537228952630e0 -4.592116143260e0 -3.886979385966e0 2.221007911667e1 2.438471319446e1 3.222207227815e1 3.271806774757e1 3.480052262296e1 4.049449892803e1 4.666910907287e1 5.094350143143e1 5.187238874465e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237926385e1 -6.209084705202e0 -6.093019617531e0 -5.530358047153e0 -4.590036778250e0 -3.886671738325e0 2.220869684619e1 2.438414344178e1 3.222356013321e1 3.271964719077e1 3.480105009335e1 4.049630815941e1 4.666845406724e1 5.094189070502e1 5.186949682860e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275259495834e1 -6.458893049376e0 -6.302485857381e0 -5.079459909918e0 -4.427040170616e0 -3.977980638568e0 1.863556054528e1 2.312344080662e1 2.749711584021e1 3.554127373054e1 3.617220869815e1 3.914545331920e1 4.694455248751e1 4.955008265073e1 5.256137525288e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187674939947e1 -6.718561197470e0 -6.630786181761e0 -4.398921900275e0 -4.262844982825e0 -4.052156856212e0 1.540069428179e1 1.921715751955e1 2.103854420358e1 3.864924255592e1 3.871987569545e1 4.154873299180e1 4.719465577944e1 4.813196949089e1 5.444630406223e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067102932176e1 -6.971978133728e0 -6.950970899186e0 -4.221363776169e0 -3.974698891125e0 -3.541590238094e0 1.232762333853e1 1.416482191176e1 1.775788122783e1 4.018197543735e1 4.064677446775e1 4.606773900908e1 4.795521665913e1 5.089244231618e1 6.126568985431e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.435504213349e0 -7.225550018128e0 -7.055632996288e0 -4.171463493738e0 -3.875354167195e0 -2.547000772667e0 8.261590912889e0 1.180961246997e1 1.530405427109e1 3.980848383941e1 4.153173449223e1 4.635008800850e1 4.927988773282e1 5.790828368255e1 8.407603917055e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.488849142800e0 -7.403943503617e0 -7.137054064699e0 -4.090760512549e0 -3.825480967686e0 -1.239316734732e0 6.591154113413e0 7.788441068923e0 1.355261504481e1 4.220650208693e1 4.256349427794e1 4.661568025347e1 5.133275765279e1 6.041205316092e1 1.066115340919e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.114660281127e0 -7.433101558788e0 -7.011345534332e0 -4.008040589554e0 -3.826521278214e0 3.691175868245e-1 3.788112438988e0 6.608234702167e0 1.275981606616e1 4.204888245525e1 4.431956466237e1 4.653396512120e1 5.417961685121e1 6.166121461652e1 1.088501522672e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115384729051e0 -7.431004011807e0 -7.010669394715e0 -4.008834197930e0 -3.826673063989e0 3.619120507628e-1 3.793138795403e0 6.608786697096e0 1.276020275956e1 4.204863570572e1 4.431962873604e1 4.653314644772e1 5.417406156694e1 6.166851034012e1 1.088534551817e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.490475514047e0 -7.397669208409e0 -7.135589334720e0 -4.092907433396e0 -3.826343896719e0 -1.250085911392e0 6.594804820125e0 7.790880776702e0 1.355360566694e1 4.220458575479e1 4.256242995227e1 4.661491370406e1 5.132568540005e1 6.042414200790e1 1.066206629657e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436901639188e0 -7.221939430284e0 -7.049720892098e0 -4.172300399619e0 -3.877913275463e0 -2.557972553091e0 8.264825276971e0 1.181118620214e1 1.530472925699e1 3.980723971736e1 4.152934347741e1 4.635018975266e1 4.927349333011e1 5.791456850451e1 8.408930580061e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055199809120e1 -7.002831854624e0 -6.784889527340e0 -4.256243125397e0 -3.946284206001e0 -3.593087994399e0 1.005522734281e1 1.690276836843e1 1.824271917183e1 3.691434318019e1 3.892705695506e1 4.725269687821e1 4.771948736245e1 5.265714619251e1 6.127802765054e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149255855728e1 -6.748490966540e0 -6.483802409657e0 -4.461808078369e0 -4.389580132974e0 -3.907909557981e0 1.240057309031e1 2.030421932605e1 2.459097622464e1 3.348245865051e1 3.674624863467e1 4.352734575550e1 4.666733649671e1 4.939909700791e1 5.603111827903e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208965619184e1 -6.472263791387e0 -6.256293387327e0 -4.935382374769e0 -4.717090795723e0 -3.815679258257e0 1.541766593564e1 2.129444033424e1 3.083056974997e1 3.114790043640e1 3.543086587739e1 4.245567616692e1 4.599685462428e1 5.050879836553e1 5.400672347681e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229174884297e1 -6.271052600672e0 -6.236239926800e0 -5.114023327730e0 -4.864943719792e0 -3.771109754895e0 1.816575266626e1 1.974465120839e1 3.089685845578e1 3.181612828002e1 3.547787135130e1 4.323769709381e1 4.670251593430e1 5.143524428572e1 5.273558312399e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208970059788e1 -6.479010549451e0 -6.260489226375e0 -4.927485119413e0 -4.712250938935e0 -3.815266582085e0 1.541617966843e1 2.129343035141e1 3.083300307871e1 3.115037757591e1 3.543124230815e1 4.245927996115e1 4.599387897898e1 5.050721513930e1 5.400069672498e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149257182166e1 -6.755702078560e0 -6.490700011367e0 -4.454640199652e0 -4.378708563801e0 -3.907615974751e0 1.239866939217e1 2.030325058320e1 2.459148308120e1 3.348618460642e1 3.674787816781e1 4.353306180927e1 4.666508643645e1 4.939628161985e1 5.601867383065e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055177342595e1 -7.010035453252e0 -6.790773765236e0 -4.250363410588e0 -3.945088096579e0 -3.581290248416e0 1.005316593426e1 1.690266049728e1 1.824037025864e1 3.692086100030e1 3.892805143833e1 4.725225639639e1 4.772100303534e1 5.265953131648e1 6.125829406063e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436083135715e0 -7.229714564787e0 -7.052615771402e0 -4.168580106809e0 -3.876509470102e0 -2.545966355837e0 8.262672671916e0 1.180856679838e1 1.530343221055e1 3.981234430063e1 4.153149709592e1 4.634918454032e1 4.927676252340e1 5.790610110640e1 8.407692271915e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.722531120792e0 -7.373395590621e0 -6.767706233194e0 -4.093762043930e0 -3.820436635765e0 -1.416497932049e0 4.672871516938e0 1.057558804809e1 1.385986281605e1 3.869271659500e1 4.139678906452e1 4.713559212452e1 5.188562066949e1 6.263401132674e1 1.062367764714e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.020438049230e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115670668903e0 -7.437389703763e0 -7.007362267796e0 -4.005121855048e0 -3.828176934177e0 3.709430752878e-1 3.791133111649e0 6.604015472481e0 1.275941999966e1 4.205012755416e1 4.432165608820e1 4.653350107071e1 5.418021102920e1 6.165450538936e1 1.088507373005e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -7.129278265982e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.870200953029e0 -7.291655579980e0 -7.285013586239e0 -3.904921548338e0 -3.901947983468e0 2.537935987355e0 2.544852621967e0 4.654289408779e0 1.242521949591e1 4.492674332666e1 4.492786246761e1 4.502019698437e1 5.826511272706e1 5.827855408385e1 1.058782932061e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115384832547e0 -7.431004017885e0 -7.010669317697e0 -4.008834812553e0 -3.826672384888e0 3.619120615831e-1 3.793138783548e0 6.608786687133e0 1.276020276033e1 4.204863746768e1 4.431962897271e1 4.653314442191e1 5.417406147975e1 6.166851035805e1 1.088534551841e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.721830154524e0 -7.366951676565e0 -6.767587910795e0 -4.098768680162e0 -3.820027269446e0 -1.427397774563e0 4.675017768906e0 1.057922208287e1 1.386125305087e1 3.868835956122e1 4.139548547422e1 4.713618145588e1 5.188291545727e1 6.264662173994e1 1.062440987718e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.469951063927e0 -7.224064918316e0 -6.572562683477e0 -4.187956549503e0 -3.864624132698e0 -2.729888451478e0 5.936992272184e0 1.539356669787e1 1.611841398689e1 3.486827148623e1 3.806262377426e1 4.755632129194e1 5.018441503754e1 6.126812381528e1 8.149572359436e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020501389959e1 -7.016999277325e0 -6.461283023793e0 -4.357674182972e0 -3.866425217576e0 -3.616085039372e0 7.650993901469e0 1.819577571076e1 2.217240772019e1 3.074259476332e1 3.594896012505e1 4.625745570221e1 4.974609610487e1 5.661880927781e1 6.223374002293e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076886592624e1 -6.753089362007e0 -6.436467410594e0 -4.619247558391e0 -4.224888347169e0 -3.730162448635e0 9.955515008437e0 1.902079110807e1 2.822441259579e1 2.905293545370e1 3.528891649653e1 4.434962233956e1 5.043563790034e1 5.192661591995e1 5.799275088967e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106501329897e1 -6.550932092743e0 -6.418055788496e0 -4.897336228913e0 -4.454228748859e0 -3.651040389574e0 1.278890128377e1 1.679931862379e1 2.941083302429e1 3.067827082588e1 3.572361782684e1 4.410013550448e1 5.131633334149e1 5.242075847184e1 5.586187487839e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106511426983e1 -6.554872934615e0 -6.418952676533e0 -4.894215543068e0 -4.451408096761e0 -3.650803168070e0 1.278835258762e1 1.679884643451e1 2.941028605042e1 3.068146582452e1 3.572365885925e1 4.409873699488e1 5.131524106375e1 5.242242785882e1 5.585876623986e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076915270465e1 -6.759683000699e0 -6.441208499403e0 -4.612754698934e0 -4.216189885125e0 -3.730081257601e0 9.954212279477e0 1.901939320196e1 2.822691607723e1 2.905568984928e1 3.528936176571e1 4.434669626475e1 5.043794197947e1 5.192584264918e1 5.798383327150e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020544244698e1 -7.023789831825e0 -6.467539306188e0 -4.350443737323e0 -3.861283724821e0 -3.609135312412e0 7.649200309612e0 1.819465855081e1 2.217282719064e1 3.074618417546e1 3.594869108194e1 4.625681012607e1 4.974757238344e1 5.662134446017e1 6.221645184043e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.470513467400e0 -7.230749860638e0 -6.576577065447e0 -4.181444280954e0 -3.863801592432e0 -2.718435355891e0 5.934876179658e0 1.539334457325e1 1.611544017443e1 3.487413815434e1 3.806163599477e1 4.755565526714e1 5.018605349294e1 6.126036343516e1 8.148462761128e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -9.802757615725e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.042383823929e0 -7.348862356512e0 -6.019979293825e0 -4.130170966217e0 -3.818837921769e0 -1.939275694726e0 3.247137299592e0 1.464569288958e1 1.495402824004e1 3.366729239242e1 3.732854459196e1 4.767307216035e1 5.235693161805e1 6.630664241229e1 1.025800504812e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.579208129858e0 -7.419942277659e0 -6.484009640097e0 -4.058969445459e0 -3.801648189619e0 -5.944157565139e-1 2.917961344098e0 1.015010727095e1 1.340066596653e1 3.823219273455e1 4.118277937613e1 4.748528635592e1 5.324067881331e1 6.485889966710e1 1.111375010674e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.020438049230e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115670630630e0 -7.437389784253e0 -7.007362266983e0 -4.005122466039e0 -3.828176275399e0 3.709431161079e-1 3.791133085995e0 6.604015464367e0 1.275941999780e1 4.205012795666e1 4.432165775861e1 4.653349885477e1 5.418021110111e1 6.165450540840e1 1.088507372976e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.114660346518e0 -7.433101645868e0 -7.011345455824e0 -4.008041801609e0 -3.826519953890e0 3.691176385034e-1 3.788112401435e0 6.608234684096e0 1.275981606507e1 4.204888461925e1 4.431956656781e1 4.653396088124e1 5.417961683636e1 6.166121465337e1 1.088501522667e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.577174847630e0 -7.414429713553e0 -6.487278585795e0 -4.064571882653e0 -3.799837456005e0 -6.009465148769e-1 2.918221640166e0 1.015395498294e1 1.340179074900e1 3.822812014238e1 4.118183136320e1 4.748587617243e1 5.324038663858e1 6.487140846346e1 1.111381550655e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.040365011708e0 -7.342663476621e0 -6.019829738207e0 -4.136911991418e0 -3.819103162826e0 -1.948289199816e0 3.248923286237e0 1.464566197441e1 1.495769863378e1 3.366194620941e1 3.733031207725e1 4.767374506047e1 5.235579328958e1 6.631925471236e1 1.025854839581e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414565569529e0 -7.198271777942e0 -5.948113879061e0 -4.256118097385e0 -3.763682019473e0 -2.953627620786e0 4.231171991269e0 1.686296633331e1 2.063991250509e1 2.887896759759e1 3.479025052325e1 4.667934558776e1 5.119764577414e1 6.543094792405e1 8.186110488140e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.681408985183e0 -6.979146810937e0 -6.294251833414e0 -4.440504492164e0 -3.569733585120e0 -3.518069949850e0 5.808152641874e0 1.758753024212e1 2.526817150439e1 2.760343194821e1 3.427700667250e1 4.436190972082e1 5.114785568877e1 6.329357686281e1 7.108895900943e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833233178621e0 -6.826416350012e0 -6.552623308613e0 -4.704179868305e0 -3.870937638224e0 -3.290287654661e0 8.038934302985e0 1.486134271153e1 2.706717140948e1 2.950296336924e1 3.632483099632e1 4.253012171694e1 5.150502625878e1 5.896138412256e1 7.003448808649e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.881475081148e0 -6.901165173455e0 -6.481732312967e0 -4.860569431635e0 -3.956815010282e0 -3.198728776433e0 1.026275073747e1 1.210563040886e1 2.796424571467e1 3.066571785473e1 3.571739933803e1 4.361123345333e1 5.170968820131e1 5.612940185520e1 7.020473186423e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833872955044e0 -6.830146665043e0 -6.555198225671e0 -4.698511909658e0 -3.868957174647e0 -3.288360325069e0 8.038673158273e0 1.485988478105e1 2.706755223307e1 2.950617475331e1 3.632576857007e1 4.252821250314e1 5.150250455759e1 5.895501557654e1 7.003716636859e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.682617481351e0 -6.985582736623e0 -6.297625866272e0 -4.433202447134e0 -3.560697867490e0 -3.518297448969e0 5.807014810603e0 1.758585851164e1 2.527030223468e1 2.760613558554e1 3.427636619491e1 4.436013805197e1 5.114716028327e1 6.328204388564e1 7.109013370658e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416243321202e0 -7.204858515474e0 -5.951922485059e0 -4.248781123787e0 -3.760087039863e0 -2.945474750504e0 4.229403624816e0 1.686169502546e1 2.064028237039e1 2.888211477765e1 3.478858434255e1 4.667865130744e1 5.119887738297e1 6.542079720134e1 8.185410679293e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.069391739897e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.216960100540e0 -7.268483236073e0 -5.534592722056e0 -4.225393852153e0 -3.682356577728e0 -2.597943737482e0 2.795453172309e0 1.639525630028e1 2.012102127835e1 2.825163033549e1 3.432553561525e1 4.674959028598e1 5.190997063746e1 6.828709104977e1 9.759807830412e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -9.802757615725e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.042383823991e0 -7.348862356408e0 -6.019979293316e0 -4.130170969907e0 -3.818837918721e0 -1.939275694585e0 3.247137299559e0 1.464569288962e1 1.495402823998e1 3.366729239244e1 3.732854459188e1 4.767307216037e1 5.235693161805e1 6.630664241238e1 1.025800504810e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.722531084803e0 -7.373395630793e0 -6.767706288490e0 -4.093762533998e0 -3.820436084431e0 -1.416497901404e0 4.672871503118e0 1.057558805090e1 1.385986280502e1 3.869271686743e1 4.139678947862e1 4.713559146030e1 5.188562058997e1 6.263401132486e1 1.062367764764e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.488849101064e0 -7.403943687762e0 -7.137054029106e0 -4.090761570261e0 -3.825479779804e0 -1.239316687183e0 6.591154112534e0 7.788441039408e0 1.355261503686e1 4.220650552012e1 4.256349414086e1 4.661567658652e1 5.133275789734e1 6.041205313463e1 1.066115340949e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.720711111835e0 -7.368497259859e0 -6.771714254945e0 -4.098558427347e0 -3.818608034251e0 -1.418565922655e0 4.670837775122e0 1.057842756022e1 1.386071660603e1 3.868871241798e1 4.139600609657e1 4.713620831524e1 5.188867708507e1 6.264121508695e1 1.062350242121e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.040041268065e0 -7.343098895011e0 -6.022160446004e0 -4.137041015467e0 -3.818431438888e0 -1.943679650169e0 3.246888888568e0 1.464512135774e1 1.495777564554e1 3.366217633377e1 3.733042825257e1 4.767358983704e1 5.235762180834e1 6.631921038625e1 1.025796606455e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214524169895e0 -7.262142790631e0 -5.533064519756e0 -4.232732369705e0 -3.686984737869e0 -2.602844889851e0 2.796586824876e0 1.639658496697e1 2.012050978394e1 2.824885719957e1 3.432756328172e1 4.675027264106e1 5.190911045362e1 6.830074478390e1 9.760143226231e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214883728664e0 -7.103940510238e0 -5.864878551205e0 -4.383006909420e0 -3.168047702046e0 -3.050590981062e0 3.193492816539e0 1.691743030000e1 2.355656429673e1 2.683155705075e1 3.335199802861e1 4.473582343110e1 5.154701545439e1 6.759491601633e1 1.000856655394e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.068755081562e0 -6.945332292781e0 -6.475400867528e0 -4.540988208206e0 -3.541245082382e0 -2.447395400864e0 4.443295243709e0 1.363251042779e1 2.535006857538e1 2.825077758325e1 3.656901190535e1 4.203898873836e1 5.156211033035e1 6.430584774132e1 9.642135090026e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.885897110250e0 -7.154786400927e0 -6.581467205787e0 -4.655873847289e0 -3.789549486978e0 -2.114948173208e0 6.545470502846e0 9.859918785137e0 2.643665822821e1 3.060435185015e1 3.678061903475e1 4.254840956055e1 5.238212789404e1 5.927669163755e1 8.947819854466e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886795639085e0 -7.154857123222e0 -6.583420800455e0 -4.652924976399e0 -3.789213878292e0 -2.113977513853e0 6.546563925528e0 9.857956675967e0 2.643666442872e1 3.060649539266e1 3.678012932314e1 4.254949559308e1 5.237977133894e1 5.927225763485e1 8.948003137668e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.070716493391e0 -6.949758356444e0 -6.476342320726e0 -4.534669696993e0 -3.539159760010e0 -2.444484318786e0 4.443214207308e0 1.363021694281e1 2.535078049889e1 2.825339550225e1 3.657111673758e1 4.203739906756e1 5.155915491592e1 6.429465075812e1 9.642460062198e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.217219164531e0 -7.110288545457e0 -5.866366605858e0 -4.375864623562e0 -3.158218927545e0 -3.051288126874e0 3.192336052901e0 1.691562840737e1 2.355840165572e1 2.683416557747e1 3.335064049067e1 4.473496534861e1 5.154621084293e1 6.758157034366e1 1.000846400924e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.740325414985e0 -6.736464429316e0 -6.652645941473e0 -4.769666184624e0 -3.208337525392e0 -1.746984232226e0 3.320971471819e0 1.362941758828e1 2.150244994169e1 3.181182798584e1 3.593916429355e1 3.873919393467e1 5.154603215690e1 6.572966794622e1 1.203940982395e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.071126383693e0 -6.950480502131e0 -6.479111914346e0 -4.532344210803e0 -3.529808012083e0 -2.451543765504e0 4.442797552470e0 1.363148234998e1 2.535283444206e1 2.825196371110e1 3.656856853119e1 4.203725462603e1 5.155872110341e1 6.429433245217e1 9.642425480766e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.310494035861e0 -7.149802276020e0 -6.654179759926e0 -4.352973428906e0 -3.792076850227e0 -2.569032380278e0 6.098939606574e0 1.267597573495e1 1.999349420496e1 3.363528669741e1 3.876620251670e1 4.479698670889e1 5.117968482137e1 6.038558532816e1 8.107975901375e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436593771589e0 -7.227669465149e0 -7.056300739186e0 -4.165208471128e0 -3.875510719207e0 -2.547499042817e0 8.262066685010e0 1.181076337958e1 1.530186212767e1 3.981249207076e1 4.153285517328e1 4.634919255058e1 4.927257818220e1 5.790665896165e1 8.407728777092e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.469043144898e0 -7.244579766901e0 -7.240006043378e0 -4.000315496632e0 -3.995688415572e0 -2.520292145598e0 1.060085733990e1 1.060198992919e1 1.319260604826e1 4.345486936083e1 4.345947942669e1 4.678140376453e1 4.678710194749e1 5.697950175486e1 8.700642462431e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.435504222105e0 -7.225550069920e0 -7.055633081052e0 -4.171464687726e0 -3.875352786151e0 -2.547000740998e0 8.261590924923e0 1.180961243970e1 1.530405426559e1 3.980848499274e1 4.153173712210e1 4.635008421687e1 4.927988749634e1 5.790828370470e1 8.407603918172e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.308648586150e0 -7.145829680429e0 -6.651848868803e0 -4.361163670791e0 -3.797404548453e0 -2.567028714018e0 6.098728367017e0 1.267623095007e1 1.999356714250e1 3.363340017396e1 3.876556765801e1 4.479859382705e1 5.118341338148e1 6.039310963171e1 8.107745526078e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.068755081560e0 -6.945332292777e0 -6.475400867535e0 -4.540988208207e0 -3.541245082381e0 -2.447395400864e0 4.443295243713e0 1.363251042777e1 2.535006857565e1 2.825077758323e1 3.656901190487e1 4.203898873775e1 5.156211033097e1 6.430584774325e1 9.642135089551e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.737472161545e0 -6.735544405642e0 -6.645945121528e0 -4.776855094594e0 -3.218284414180e0 -1.745562738056e0 3.321945328803e0 1.363116245247e1 2.150115529486e1 3.180843160891e1 3.593889351324e1 3.874022042857e1 5.155086616614e1 6.574242874033e1 1.203927283693e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.342755318855e0 -7.129876132019e0 -6.482796364831e0 -4.818835874783e0 -3.337893870751e0 -3.983573141390e-1 2.898041927501e0 1.027300390493e1 2.246010016513e1 3.236802647857e1 3.543648378429e1 3.890170422645e1 5.229252105065e1 6.470686021235e1 1.078821453144e2</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 8.911597832478e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.946806433814e0 -7.474429110101e0 -6.574206006930e0 -4.501106805911e0 -3.672917926266e0 4.484974516899e-1 3.915834358573e0 6.644768714888e0 2.650128145532e1 3.150949286542e1 3.238388181406e1 4.104006612836e1 5.525208217338e1 6.161933749128e1 9.740265619589e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 9.802757615725e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.949748520563e0 -7.472399443263e0 -6.575047161614e0 -4.501646513379e0 -3.669695857071e0 4.489045453293e-1 3.917447084166e0 6.642299766051e0 2.650366661889e1 3.150749165321e1 3.238405396685e1 4.104188787512e1 5.525244691879e1 6.161178764949e1 9.740353776812e1</array>
+        </property>
+        <kpoint coords="-3.564639132991e-1 1.069391739897e0 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.346040561331e0 -7.129393037324e0 -6.486424040475e0 -4.815593481151e0 -3.331733180212e0 -3.970642711255e-1 2.897643205609e0 1.027057727444e1 2.246217768379e1 3.236820769976e1 3.543536205548e1 3.890569372781e1 5.228837352547e1 6.469449652658e1 1.078832658564e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534512496870e0 -7.152743892321e0 -6.378274919727e0 -4.850046770884e0 -3.528689917270e0 -1.526496056085e0 4.852594970289e0 1.067884128017e1 2.309970503349e1 3.248436535839e1 3.379600409262e1 3.985500141184e1 5.226632111356e1 6.231450512504e1 1.005719921415e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.180282714195e0 -6.778988678064e0 -6.545658286294e0 -4.819066537072e0 -3.625934760278e0 -2.813235433759e0 6.230408350735e0 1.429370148487e1 2.315045263280e1 3.261287111952e1 3.470426051757e1 3.941906617472e1 5.162157808181e1 6.161740176138e1 9.406858089751e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.834208993161e0 -6.828952649604e0 -6.559950132141e0 -4.695356284841e0 -3.860441952887e0 -3.295403036491e0 8.038147482808e0 1.486107324618e1 2.707050911740e1 2.950407983236e1 3.632414841648e1 4.252737447060e1 5.150085022329e1 5.895468855986e1 7.003879085295e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037263871521e1 -6.940124217811e0 -6.749701735276e0 -4.483045691579e0 -3.879280964431e0 -3.495081748013e0 1.021315204065e1 1.443909889486e1 2.189455688907e1 3.512587158374e1 3.855136345021e1 4.481065449792e1 5.011528022990e1 5.347957797305e1 6.185682501698e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067123752136e1 -6.968819994070e0 -6.956041837415e0 -4.216966122115e0 -3.975449905245e0 -3.542391632259e0 1.232575068003e1 1.416803066614e1 1.775663165033e1 4.018045237367e1 4.065028441241e1 4.606885657114e1 4.794888961612e1 5.089407563035e1 6.126582433937e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067102931476e1 -6.971978307362e0 -6.950970813792e0 -4.221364893470e0 -3.974697692434e0 -3.541590209832e0 1.232762346926e1 1.416482180980e1 1.775788120372e1 4.018197801814e1 4.064677389510e1 4.606773621938e1 4.795521764449e1 5.089244197368e1 6.126568986316e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037203348619e1 -6.938518019915e0 -6.745293655047e0 -4.489965855444e0 -3.885556692190e0 -3.490625355109e0 1.021410238757e1 1.443777936928e1 2.189410299437e1 3.512494866676e1 3.855080152638e1 4.481207878883e1 5.012107262592e1 5.347916521693e1 6.185639279804e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833233178620e0 -6.826416350008e0 -6.552623308619e0 -4.704179868306e0 -3.870937638222e0 -3.290287654659e0 8.038934302990e0 1.486134271148e1 2.706717140996e1 2.950296336918e1 3.632483099559e1 4.253012171652e1 5.150502625889e1 5.896138412460e1 7.003448808345e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.178879829316e0 -6.776223925200e0 -6.539008653913e0 -4.826272011293e0 -3.635242111379e0 -2.811806587359e0 6.231391254405e0 1.429515497152e1 2.314869022907e1 3.260948228286e1 3.470463062650e1 3.942039942448e1 5.162525689431e1 6.162830638530e1 9.406519098723e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532544974218e0 -7.150333756165e0 -6.376088774159e0 -4.852944880088e0 -3.533662863251e0 -1.529753082474e0 4.853612082786e0 1.068103744209e1 2.309760196850e1 3.248443041357e1 3.379730833225e1 3.985064494192e1 5.226859071978e1 6.232797439524e1 1.005707632121e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947282078294e0 -7.471667801400e0 -6.576288847677e0 -4.499865701270e0 -3.673774160975e0 4.449939126275e-1 3.918317076282e0 6.644921237801e0 2.650099220538e1 3.150762947638e1 3.238614741973e1 4.103864411447e1 5.524860590372e1 6.162648334904e1 9.740299605409e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.601777629242e0 -7.598731346801e0 -6.833459704301e0 -4.017381281277e0 -4.013253809162e0 2.800412946882e0 2.803804151919e0 4.402321737343e0 2.994173585844e1 2.994414130607e1 3.159436469822e1 4.117789884306e1 5.917163877767e1 5.918515756663e1 9.563399991202e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 9.802757615725e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.949748967836e0 -7.472398755348e0 -6.575047292603e0 -4.501646380877e0 -3.669695984660e0 4.489043211691e-1 3.917447160328e0 6.642299771006e0 2.650366592563e1 3.150749076800e1 3.238405481829e1 4.104188868516e1 5.525244684740e1 6.161178764411e1 9.740353793545e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.417369674879e0 -7.340642725039e0 -6.290632248068e0 -4.774911890690e0 -3.783064094750e0 -1.442538910304e0 7.077113615305e0 7.636358000460e0 2.647408678591e1 2.933995429376e1 3.298814313451e1 4.162229162233e1 5.419435050257e1 5.901719510441e1 9.384361734260e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232095348105e0 -6.936595507800e0 -6.193549637825e0 -5.063200349490e0 -3.956492916735e0 -2.787015104036e0 8.662450466234e0 1.186373117036e1 2.464123142186e1 3.051223799965e1 3.413437393371e1 4.134139790604e1 5.242463151542e1 5.764605252630e1 8.778523283236e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018270426497e1 -6.533755718107e0 -6.355110797196e0 -5.082722835043e0 -4.296896095371e0 -3.397470111629e0 1.053909004660e1 1.563616371015e1 2.538879379802e1 3.313102165199e1 3.385932420500e1 4.182646202239e1 5.190772893758e1 5.668063495941e1 7.205941714199e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106526798379e1 -6.552589358444e0 -6.425581141008e0 -4.890034082649e0 -4.448445452443e0 -3.652686019507e0 1.278714454018e1 1.680038683945e1 2.941378283517e1 3.068009473554e1 3.572134535454e1 4.409824995937e1 5.131051121844e1 5.242442184207e1 5.586085274679e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166676875736e1 -6.623844366702e0 -6.614546769386e0 -4.520313692504e0 -4.421226093699e0 -3.872496673113e0 1.483924984892e1 1.742422272154e1 2.459682629477e1 3.569374537975e1 3.793010869138e1 4.303805365140e1 4.669409966786e1 4.975894088207e1 5.473374977959e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187674939948e1 -6.718561203552e0 -6.630786173721e0 -4.398921902556e0 -4.262845000540e0 -4.052156838111e0 1.540069428157e1 1.921715751991e1 2.103854420352e1 3.864924254215e1 3.871987570874e1 4.154873299264e1 4.719465577206e1 4.813196949741e1 5.444630406184e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166662801605e1 -6.619091655906e0 -6.615212658266e0 -4.524948106876e0 -4.423796946866e0 -3.870560190202e0 1.484210152599e1 1.742090698246e1 2.459584507456e1 3.569453925762e1 3.793165976439e1 4.303334285142e1 4.669381973391e1 4.976575206284e1 5.473281431702e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106501329897e1 -6.550932092739e0 -6.418055788499e0 -4.897336228914e0 -4.454228748857e0 -3.651040389573e0 1.278890128377e1 1.679931862374e1 2.941083302475e1 3.067827082569e1 3.572361782680e1 4.410013550283e1 5.131633334109e1 5.242075847205e1 5.586187487950e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018236709884e1 -6.529196141666e0 -6.348565710966e0 -5.089370008721e0 -4.305119620485e0 -3.396852102835e0 1.054027127924e1 1.563715129036e1 2.538631380253e1 3.313191017428e1 3.385627393700e1 4.182819836848e1 5.190965557972e1 5.668854510237e1 7.205547176229e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231677733332e0 -6.931775864166e0 -6.192009660019e0 -5.065160353469e0 -3.961435852322e0 -2.790207614633e0 8.663499728617e0 1.186530159879e1 2.463850531228e1 3.051427215968e1 3.413403583022e1 4.133822198674e1 5.242250430024e1 5.765980932563e1 8.778307601934e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.417092818071e0 -7.336883625577e0 -6.292922970924e0 -4.773023151524e0 -3.785345818940e0 -1.447346394808e0 7.079199949974e0 7.637040397572e0 2.647167649482e1 2.934135578193e1 3.298939878399e1 4.161869785263e1 5.418633490724e1 5.903473202520e1 9.384323794177e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947281455531e0 -7.471668575122e0 -6.576288763769e0 -4.499865382230e0 -3.673774332591e0 4.449937926685e-1 3.918317064789e0 6.644921235247e0 2.650099021240e1 3.150763122260e1 3.238614850911e1 4.103864341951e1 5.524860594126e1 6.162648333704e1 9.740299591653e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.946806260905e0 -7.474429191916e0 -6.574206055685e0 -4.501106353803e0 -3.672918225801e0 4.484971074877e-1 3.915834423406e0 6.644768717229e0 2.650127876932e1 3.150949372564e1 3.238388375507e1 4.104006624387e1 5.525208213956e1 6.161933747389e1 9.740265622614e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532351419582e0 -7.153253544664e0 -6.373400905386e0 -4.854233177401e0 -3.533955668591e0 -1.526316010198e0 4.852228886993e0 1.068089872293e1 2.309754825792e1 3.248518316837e1 3.379587866548e1 3.985241155176e1 5.227000404495e1 6.232360476386e1 1.005702706483e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231601283541e0 -6.935782119059e0 -6.189371283988e0 -5.067359239039e0 -3.959441936527e0 -2.786848599973e0 8.662295792375e0 1.186490276500e1 2.463925273916e1 3.051395777670e1 3.413352526766e1 4.134013928722e1 5.242643193179e1 5.765071010147e1 8.778382785281e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030375549283e1 -6.475706785310e0 -6.068183172370e0 -5.368584078809e0 -4.516645323133e0 -3.378934073526e0 1.299187094623e1 1.407357023180e1 2.520958084504e1 3.110795991341e1 3.525913047824e1 4.287533700869e1 5.255162756295e1 5.443654263356e1 7.362099485323e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142149468649e1 -6.135936519810e0 -6.129363724143e0 -5.311100325297e0 -5.000258849622e0 -3.596650317432e0 1.578412669553e1 1.770147680108e1 2.635848291788e1 3.365795285628e1 3.470277849808e1 4.433003531785e1 5.219701941609e1 5.339756080118e1 5.681722378028e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229179702396e1 -6.280000056149e0 -6.232475137234e0 -5.111277051011e0 -4.861389940605e0 -3.771360517849e0 1.816191518562e1 1.974814652239e1 3.089694819643e1 3.181956219198e1 3.547532394260e1 4.323975762100e1 4.670232766339e1 5.142831828826e1 5.273869635754e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275259496329e1 -6.458893040640e0 -6.302485812391e0 -5.079459921879e0 -4.427039208390e0 -3.977981635478e0 1.863556041339e1 2.312344073641e1 2.749711591874e1 3.554127127789e1 3.617220913235e1 3.914545444300e1 4.694455419045e1 4.955008204499e1 5.256137530579e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275257597437e1 -6.457075444565e0 -6.302943267228e0 -5.080106470929e0 -4.428603527862e0 -3.977430239586e0 1.863657530470e1 2.312245697546e1 2.749581122537e1 3.554144144540e1 3.617525505956e1 3.914212789438e1 4.694390398784e1 4.955352277609e1 5.256044920659e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229174884297e1 -6.271052600672e0 -6.236239926798e0 -5.114023327730e0 -4.864943719792e0 -3.771109754895e0 1.816575266622e1 1.974465120837e1 3.089685845573e1 3.181612828003e1 3.547787135152e1 4.323769709202e1 4.670251593445e1 5.143524428632e1 5.273558312428e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142144341332e1 -6.130210558182e0 -6.124747234913e0 -5.316319295630e0 -5.006692859599e0 -3.596685832170e0 1.578538553552e1 1.770195270049e1 2.635656138378e1 3.365811369242e1 3.470095370579e1 4.433151302128e1 5.219756094516e1 5.340162305693e1 5.681499734567e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030374216912e1 -6.469412199483e0 -6.069135550206e0 -5.368564236250e0 -4.522819212761e0 -3.379798213787e0 1.299243417224e1 1.407496026321e1 2.520729821555e1 3.110940769220e1 3.525763242450e1 4.287516721014e1 5.254464522152e1 5.444913199957e1 7.361903902082e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231677630336e0 -6.931776075283e0 -6.192009715597e0 -5.065160040478e0 -3.961435892859e0 -2.790207741976e0 8.663499774556e0 1.186530154176e1 2.463850449940e1 3.051427321332e1 3.413403591142e1 4.133822146892e1 5.242250468127e1 5.765980923240e1 8.778307596042e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532544560235e0 -7.150334425651e0 -6.376088799686e0 -4.852944305100e0 -3.533662978021e0 -1.529753308399e0 4.853612092224e0 1.068103738495e1 2.309760072197e1 3.248443068664e1 3.379731066998e1 3.985064374991e1 5.226859092723e1 6.232797434603e1 1.005707629051e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.020438049230e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.342754839640e0 -7.129876829629e0 -6.482796348226e0 -4.818835270234e0 -3.337894012609e0 -3.983577345315e-1 2.898042004084e0 1.027300385243e1 2.246009872848e1 3.236802618099e1 3.543648726743e1 3.890170289975e1 5.229252110288e1 6.470686017361e1 1.078821449902e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.737471878989e0 -6.735544796092e0 -6.645945154139e0 -4.776854403536e0 -3.218284459066e0 -1.745563430430e0 3.321945426799e0 1.363116241546e1 2.150115412223e1 3.180843157147e1 3.593889122500e1 3.874022433476e1 5.155086628044e1 6.574242869225e1 1.203927280607e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.178879814714e0 -6.776223654476e0 -6.539008682368e0 -4.826271344308e0 -3.635242161031e0 -2.811807583149e0 6.231391289828e0 1.429515493746e1 2.314868856086e1 3.260948224008e1 3.470462902694e1 3.942040258005e1 5.162525748580e1 6.162830633555e1 9.406519099257e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018236716976e1 -6.529195563353e0 -6.348565734305e0 -5.089369268054e0 -4.305119675650e0 -3.396853316886e0 1.054027117751e1 1.563715126006e1 2.538631137019e1 3.313190946895e1 3.385627388905e1 4.182820140233e1 5.190965636009e1 5.668854504944e1 7.205547174142e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142144345753e1 -6.130210465472e0 -6.124746987864e0 -5.316318269341e0 -5.006692924586e0 -3.596687073634e0 1.578538534197e1 1.770195267359e1 2.635655839313e1 3.365811368970e1 3.470095365462e1 4.433151612743e1 5.219756121814e1 5.340162299884e1 5.681499774700e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.250248093246e1 -6.024690422050e0 -6.017612096131e0 -5.489991157865e0 -5.059968620036e0 -3.726840220428e0 2.059778715173e1 2.060141696426e1 2.793220446508e1 3.422568299524e1 3.469559213438e1 4.416510816912e1 4.776328179530e1 5.213545329957e1 5.214205986445e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237927026e1 -6.209084672477e0 -6.093019598162e0 -5.530358081478e0 -4.590035566308e0 -3.886672943073e0 2.220869668281e1 2.438414345895e1 3.222356008891e1 3.271964396267e1 3.480105045861e1 4.049630962064e1 4.666845611017e1 5.094189048982e1 5.186949684789e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.344149617441e1 -6.320741304903e0 -6.125469513259e0 -5.493865213869e0 -4.309227197885e0 -4.038887385113e0 2.237599183541e1 2.792944273127e1 2.944542536670e1 3.462212779603e1 3.692539136140e1 3.718703781659e1 4.794925818289e1 4.935178204458e1 5.181967490006e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237926385e1 -6.209084705203e0 -6.093019617527e0 -5.530358047154e0 -4.590036778251e0 -3.886671738325e0 2.220869684616e1 2.438414344174e1 3.222356013317e1 3.271964719070e1 3.480105009333e1 4.049630815958e1 4.666845406596e1 5.094189070551e1 5.186949682844e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.250248091430e1 -6.024690461179e0 -6.017612135698e0 -5.489991077679e0 -5.059969921112e0 -3.726838971699e0 2.059778715922e1 2.060141697187e1 2.793220785163e1 3.422568304643e1 3.469559171227e1 4.416510764067e1 4.776327882997e1 5.213545331538e1 5.214205988042e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142144340639e1 -6.130210587149e0 -6.124747215984e0 -5.316319244556e0 -5.006692875061e0 -3.596685872204e0 1.578538553482e1 1.770195266775e1 2.635656145327e1 3.365811351547e1 3.470095370060e1 4.433151298397e1 5.219756129147e1 5.340162296756e1 5.681499730089e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018236703532e1 -6.529196276097e0 -6.348565758717e0 -5.089369707231e0 -4.305119647179e0 -3.396852288037e0 1.054027130919e1 1.563715125589e1 2.538631351003e1 3.313191024140e1 3.385627392044e1 4.182819812492e1 5.190965622693e1 5.668854502869e1 7.205547176799e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.178879582590e0 -6.776224428999e0 -6.539008694939e0 -4.826271352793e0 -3.635242145272e0 -2.811806972670e0 6.231391287319e0 1.429515493468e1 2.314868945698e1 3.260948225691e1 3.470463102677e1 3.942039979049e1 5.162525725241e1 6.162830632578e1 9.406519079022e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.737471756345e0 -6.735545156327e0 -6.645945158351e0 -4.776854310819e0 -3.218284453924e0 -1.745563220924e0 3.321945373693e0 1.363116241445e1 2.150115435269e1 3.180843157668e1 3.593889230618e1 3.874022317815e1 5.155086616254e1 6.574242868970e1 1.203927278573e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.873796841639e0 -6.979405454970e0 -6.337495746141e0 -4.518112532254e0 -3.365701381955e0 -1.805535390218e0 2.828030669839e0 1.319719107323e1 2.473170013808e1 2.778404830938e1 3.643092471526e1 4.217736908851e1 5.156599478719e1 6.692205894176e1 1.144969275000e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.069024584154e0 -6.943100775242e0 -6.476155993881e0 -4.540298054628e0 -3.539956209734e0 -2.452532180210e0 4.444715190805e0 1.363267677136e1 2.535060872280e1 2.825048650833e1 3.656869098975e1 4.203854777545e1 5.156095841728e1 6.430660752953e1 9.642535151325e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833541745955e0 -6.822157577646e0 -6.553363921407e0 -4.703231930762e0 -3.872148998789e0 -3.295312818678e0 8.040184327450e0 1.486184133112e1 2.706805903250e1 2.950216227195e1 3.632339018869e1 4.253018570830e1 5.150227770347e1 5.896408850476e1 7.003874974916e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106515241129e1 -6.546014741723e0 -6.416830581547e0 -4.897608682082e0 -4.460446635097e0 -3.652365652199e0 1.278969144930e1 1.680055350207e1 2.941104965610e1 3.067775349243e1 3.572051589780e1 4.410121029821e1 5.131189775197e1 5.241995520413e1 5.587110431221e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229178074764e1 -6.270279387662e0 -6.227897002033e0 -5.121910481651e0 -4.866828233839e0 -3.771815018702e0 1.816513030726e1 1.974764430012e1 3.089416228971e1 3.181754177367e1 3.547471857638e1 4.323687449667e1 4.670330913613e1 5.142942338000e1 5.274623312585e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237716130e1 -6.202489503141e0 -6.091235572594e0 -5.537229009787e0 -4.592114851848e0 -3.886980689505e0 2.221007886451e1 2.438471317213e1 3.222207223004e1 3.271806468358e1 3.480052299515e1 4.049450001420e1 4.666911132213e1 5.094350147168e1 5.187238867197e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367532109051e1 -6.209737482502e0 -6.153642862387e0 -5.606488543389e0 -4.284341503743e0 -4.034979217397e0 2.589656586926e1 2.664001379447e1 3.005052651769e1 3.444989016668e1 3.643585885929e1 3.881703234012e1 4.821069453564e1 5.024877597688e1 5.104395622101e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367532450513e1 -6.217820499504e0 -6.147667718314e0 -5.604985575572e0 -4.283083730136e0 -4.035329512856e0 2.589076839050e1 2.664469950741e1 3.005241613955e1 3.444959891654e1 3.643585098735e1 3.881798666657e1 4.821234433865e1 5.024293686467e1 5.104614849862e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237926433e1 -6.209084651273e0 -6.093019712275e0 -5.530358024266e0 -4.590036854432e0 -3.886671641020e0 2.220869693533e1 2.438414348116e1 3.222356013690e1 3.271964702704e1 3.480105008562e1 4.049630853457e1 4.666845386114e1 5.094189044717e1 5.186949692230e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229174884299e1 -6.271052593740e0 -6.236239935463e0 -5.114023326951e0 -4.864943716929e0 -3.771109756825e0 1.816575266643e1 1.974465120840e1 3.089685845445e1 3.181612828156e1 3.547787135070e1 4.323769709212e1 4.670251593515e1 5.143524428618e1 5.273558312424e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106501327905e1 -6.550932129623e0 -6.418055745144e0 -4.897336148170e0 -4.454228750234e0 -3.651040517052e0 1.278890126651e1 1.679931861760e1 2.941083357605e1 3.067827020884e1 3.572361734196e1 4.410013563177e1 5.131633407826e1 5.242075833299e1 5.586187480945e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833233065404e0 -6.826416426359e0 -6.552623414400e0 -4.704179489649e0 -3.870937735606e0 -3.290287922738e0 8.038934330704e0 1.486134267732e1 2.706717161334e1 2.950296259191e1 3.632483026170e1 4.253012259324e1 5.150502697088e1 5.896138403882e1 7.003448805126e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.068754806210e0 -6.945332355386e0 -6.475401322626e0 -4.540987448066e0 -3.541245394083e0 -2.447395704447e0 4.443295286556e0 1.363251038398e1 2.535006848206e1 2.825077675428e1 3.656901034844e1 4.203899148724e1 5.156211051477e1 6.430584769481e1 9.642135062662e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874634899137e0 -7.232224429070e0 -6.307753080758e0 -4.267313032563e0 -3.720368100415e0 -1.617978574697e0 3.304556895448e0 1.174956097743e1 1.905247305155e1 3.264302922760e1 3.851023659772e1 4.518295874904e1 5.181941693783e1 6.550449687635e1 9.792935080555e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874950297794e0 -7.231409019544e0 -6.306589702722e0 -4.267147269657e0 -3.720283956249e0 -1.622649928582e0 3.306701157142e0 1.174978164323e1 1.905272585297e1 3.264282819223e1 3.851007506613e1 4.518279851683e1 5.181809422674e1 6.550407956380e1 9.793504760860e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309470529752e0 -7.143168695226e0 -6.648723982769e0 -4.361092945311e0 -3.797899779628e0 -2.575857927256e0 6.101432772476e0 1.267686951856e1 1.999424319818e1 3.363263939782e1 3.876457800359e1 4.479835901360e1 5.117958607833e1 6.039336582322e1 8.108943519909e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037259992939e1 -6.933963269996e0 -6.741297815272e0 -4.490847689359e0 -3.887547586095e0 -3.499750524860e0 1.021605253835e1 1.443894210105e1 2.189508763702e1 3.512305553321e1 3.854777799380e1 4.481266968837e1 5.011613434161e1 5.347654083833e1 6.187324828134e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166682599143e1 -6.613935876927e0 -6.609447651078e0 -4.526968116637e0 -4.433477062151e0 -3.872853109742e0 1.484295293160e1 1.742294496359e1 2.459719676392e1 3.569079116439e1 3.792713551547e1 4.303222948664e1 4.669496642709e1 4.976092100318e1 5.474860484755e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275261602410e1 -6.450509107977e0 -6.297182587915e0 -5.090298213107e0 -4.431702321878e0 -3.978727112648e0 1.863760809023e1 2.312425837622e1 2.749660465518e1 3.553833987830e1 3.617117586527e1 3.913925155057e1 4.694506608604e1 4.955308979558e1 5.257101520804e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.344149660651e1 -6.313577500901e0 -6.123227963897e0 -5.501520372625e0 -4.312168481986e0 -4.038883280004e0 2.237756883965e1 2.793446715398e1 2.943920355465e1 3.462195913000e1 3.692402333628e1 3.718367583396e1 4.794606940187e1 4.935800080399e1 5.182360541512e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.367532108894e1 -6.209737455428e0 -6.153642922231e0 -5.606488522156e0 -4.284342751513e0 -4.034977965932e0 2.589656616751e1 2.664001373010e1 3.005052646146e1 3.444989010336e1 3.643586189538e1 3.881702974107e1 4.821069357218e1 5.024877626853e1 5.104395623551e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.344149617342e1 -6.320741267115e0 -6.125469633633e0 -5.493865173720e0 -4.309228421485e0 -4.038886119888e0 2.237599209905e1 2.792944277058e1 2.944542538613e1 3.462212840107e1 3.692538902042e1 3.718704031334e1 4.794925674393e1 4.935178218052e1 5.181967498492e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275257597571e1 -6.457075391571e0 -6.302943388538e0 -5.080106451822e0 -4.428603872045e0 -3.977429835142e0 1.863657547809e1 2.312245690569e1 2.749581116736e1 3.554144161001e1 3.617525485658e1 3.914212887483e1 4.694390324851e1 4.955352231369e1 5.256044932907e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166662801609e1 -6.619091551927e0 -6.615212764106e0 -4.524948096247e0 -4.423796950305e0 -3.870560195574e0 1.484210152627e1 1.742090698246e1 2.459584507433e1 3.569453925962e1 3.793165976177e1 4.303334285130e1 4.669381973620e1 4.976575206135e1 5.473281431736e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037203345507e1 -6.938518073325e0 -6.745293580762e0 -4.489965710543e0 -3.885556832041e0 -3.490625445334e0 1.021410237752e1 1.443777939243e1 2.189410300013e1 3.512494836799e1 3.855080061429e1 4.481207934461e1 5.012107363627e1 5.347916499651e1 6.185639276029e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.308648445228e0 -7.145829734935e0 -6.651848931064e0 -4.361163240373e0 -3.797405002904e0 -2.567028788031e0 6.098728398869e0 1.267623094259e1 1.999356713996e1 3.363339943107e1 3.876556602625e1 4.479859592193e1 5.118341397141e1 6.039310954466e1 8.107745521833e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.720710969316e0 -7.368497305965e0 -6.771714258438e0 -4.098557727521e0 -3.818608903976e0 -1.418565925419e0 4.670837807162e0 1.057842757130e1 1.386071659405e1 3.868871182455e1 4.139600348772e1 4.713621163750e1 5.188867724363e1 6.264121500704e1 1.062350242136e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.577174672717e0 -7.414429734358e0 -6.487278625155e0 -4.064570868499e0 -3.799838680040e0 -6.009465394769e-1 2.918221697306e0 1.015395499103e1 1.340179074510e1 3.822811941987e1 4.118182848886e1 4.748588005946e1 5.324038663359e1 6.487140842527e1 1.111381550717e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.721830048207e0 -7.366951681495e0 -6.767587858732e0 -4.098767510990e0 -3.820028670395e0 -1.427397808258e0 4.675017814712e0 1.057922209099e1 1.386125304986e1 3.868835869607e1 4.139548245069e1 4.713618544312e1 5.188291569491e1 6.264662166124e1 1.062440987716e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436901630341e0 -7.221939381375e0 -7.049720803334e0 -4.172299207863e0 -3.877914655211e0 -2.557972584973e0 8.264825264969e0 1.181118623227e1 1.530472926249e1 3.980723856329e1 4.152934084984e1 4.635019354192e1 4.927349356746e1 5.791456848227e1 8.408930578905e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067163887442e1 -6.964295083329e0 -6.947014338775e0 -4.223425617008e0 -3.977531435083e0 -3.553171585212e0 1.232934646554e1 1.416706426696e1 1.775874879432e1 4.017753608060e1 4.064244419791e1 4.606914432352e1 4.795157448284e1 5.089065189368e1 6.128567267253e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187691392024e1 -6.710828813245e0 -6.625128679604e0 -4.410048848489e0 -4.267601801118e0 -4.053641507660e0 1.540264219675e1 1.921671762161e1 2.104114865611e1 3.864284572153e1 3.871729071143e1 4.154432134539e1 4.719400152992e1 4.813388346598e1 5.446309192575e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275261601916e1 -6.450509118670e0 -6.297182628983e0 -5.090298201749e0 -4.431703284634e0 -3.978726116522e0 1.863760822190e1 2.312425844657e1 2.749660457692e1 3.553834233222e1 3.617117542894e1 3.913925042766e1 4.694506438206e1 4.955309040160e1 5.257101515524e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237715490e1 -6.202489536610e0 -6.091235591105e0 -5.537228974803e0 -4.592116063181e0 -3.886979486125e0 2.221007902771e1 2.438471315502e1 3.222207227431e1 3.271806791195e1 3.480052262939e1 4.049449855336e1 4.666910927891e1 5.094350168802e1 5.187238865180e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.320237926433e1 -6.209084651276e0 -6.093019712274e0 -5.530358024267e0 -4.590036854432e0 -3.886671641020e0 2.220869693536e1 2.438414348124e1 3.222356013693e1 3.271964702698e1 3.480105008561e1 4.049630853442e1 4.666845386249e1 5.094189044750e1 5.186949692166e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275259495967e1 -6.458892999493e0 -6.302485974039e0 -5.079459891741e0 -4.427040521473e0 -3.977980228040e0 1.863556071847e1 2.312344073688e1 2.749711578267e1 3.554127388848e1 3.617220850289e1 3.914545429864e1 4.694455174653e1 4.955008218980e1 5.256137537474e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187674940011e1 -6.718561127715e0 -6.630786330687e0 -4.398921892438e0 -4.262846129189e0 -4.052155618421e0 1.540069446622e1 1.921715729739e1 2.103854426390e1 3.864924148976e1 3.871987817383e1 4.154873314604e1 4.719465324442e1 4.813197024451e1 5.444630413200e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067102931480e1 -6.971978283183e0 -6.950970839761e0 -4.221364869496e0 -3.974697716037e0 -3.541590208491e0 1.232762346954e1 1.416482180975e1 1.775788120367e1 4.018197802829e1 4.064677388368e1 4.606773622284e1 4.795521764241e1 5.089244197354e1 6.126568986350e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.435504183628e0 -7.225550145359e0 -7.055632978644e0 -4.171464277725e0 -3.875353298014e0 -2.547000744067e0 8.261590924567e0 1.180961247381e1 1.530405424295e1 3.980848477780e1 4.153173517547e1 4.635008590526e1 4.927988823012e1 5.790828356068e1 8.407603917983e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.470743373788e0 -7.415873644689e0 -7.302682797165e0 -3.974353636720e0 -3.859800880809e0 -1.302883242749e0 6.824326256447e0 9.521134378297e0 1.061091171860e1 4.414091902994e1 4.459302698394e1 4.745433716753e1 4.953666692839e1 6.090812368787e1 1.174210011232e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.176266452699e0 -7.500377853782e0 -6.955117798921e0 -3.942181333311e0 -3.797776836070e0 1.392411926254e-1 3.731724546869e0 8.999820568087e0 9.515043488326e0 4.381539871662e1 4.437374299055e1 4.839237065240e1 5.339532210082e1 6.250435852893e1 1.262928552477e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.177019243339e0 -7.499599975348e0 -6.952713867766e0 -3.942242085427e0 -3.799061166065e0 1.322089446505e-1 3.736548960511e0 9.000553614390e0 9.515311425955e0 4.381534403372e1 4.437352629529e1 4.839256616730e1 5.338916563680e1 6.251163106520e1 1.262964463266e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.473318015244e0 -7.413616757993e0 -7.295584889432e0 -3.974645646981e0 -3.863436462519e0 -1.313612749943e0 6.828958700454e0 9.523198708802e0 1.061152524939e1 4.414005832362e1 4.459164172788e1 4.745551727806e1 4.952734022884e1 6.092027422301e1 1.174306627816e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.470381708456e0 -7.236472978606e0 -7.236472833179e0 -4.001109343535e0 -4.001107786415e0 -2.531873213799e0 1.060390581522e1 1.060390589925e1 1.319393700222e1 4.345187290885e1 4.345187506289e1 4.678462092626e1 4.678462377137e1 5.698840336281e1 8.701905856938e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067163886744e1 -6.964295247118e0 -6.947014264921e0 -4.223426722882e0 -3.977530246208e0 -3.553171556909e0 1.232934659620e1 1.416706416514e1 1.775874877016e1 4.017753866433e1 4.064244361980e1 4.606914153705e1 4.795157546815e1 5.089065155099e1 6.128567268210e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166682597695e1 -6.613935841248e0 -6.609447850110e0 -4.526969204127e0 -4.433477038237e0 -3.872851873708e0 1.484295318652e1 1.742294491064e1 2.459719664800e1 3.569079393577e1 3.792713502699e1 4.303222929931e1 4.669496354731e1 4.976092155569e1 5.474860474768e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229178073013e1 -6.270279385094e0 -6.227897158780e0 -5.121910441480e0 -4.866829398202e0 -3.771813768846e0 1.816513062765e1 1.974764429143e1 3.089416524256e1 3.181754172574e1 3.547471816496e1 4.323687435159e1 4.670330602680e1 5.142942357051e1 5.274623301713e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.250248091430e1 -6.024690461182e0 -6.017612135700e0 -5.489991077678e0 -5.059969921112e0 -3.726838971699e0 2.059778715931e1 2.060141697195e1 2.793220785163e1 3.422568304643e1 3.469559171209e1 4.416510764327e1 4.776327882884e1 5.213545331476e1 5.214205987980e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229179700643e1 -6.280000053322e0 -6.232475297795e0 -5.111277010893e0 -4.861391101212e0 -3.771359268230e0 1.816191550626e1 1.974814651371e1 3.089695114962e1 3.181956214381e1 3.547532353131e1 4.323975747513e1 4.670232455600e1 5.142831847845e1 5.273869624780e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166676874285e1 -6.623844331028e0 -6.614546971053e0 -4.520314777461e0 -4.421226070483e0 -3.872495436432e0 1.483925010402e1 1.742422266857e1 2.459682617872e1 3.569374815199e1 3.793010820288e1 4.303805346301e1 4.669409678998e1 4.975894143394e1 5.473374967907e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067123751430e1 -6.968820159842e0 -6.956041763649e0 -4.216967226136e0 -3.975448713168e0 -3.542391607140e0 1.232575081091e1 1.416803056423e1 1.775663162623e1 4.018045495863e1 4.065028383317e1 4.606885378581e1 4.794889060044e1 5.089407528735e1 6.126582434928e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.469043144872e0 -7.244579657920e0 -7.240006153960e0 -4.000314329103e0 -3.995689581941e0 -2.520292145326e0 1.060085740314e1 1.060198986615e1 1.319260604827e1 4.345487097619e1 4.345947780610e1 4.678140589777e1 4.678709981939e1 5.697950175504e1 8.700642462459e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.472178721842e0 -7.420003698252e0 -7.298777359779e0 -3.969585604838e0 -3.861939598273e0 -1.302913362547e0 6.826654533597e0 9.520933140687e0 1.060814326538e1 4.414784858769e1 4.459231790785e1 4.745476525399e1 4.952889629879e1 6.090647933121e1 1.174215720811e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.853006660266e0 -7.495001291426e0 -7.355179627892e0 -3.882830375234e0 -3.811427802804e0 3.220393613305e-1 5.585299012211e0 6.375409061873e0 9.015144414522e0 4.652216236237e1 4.724050724129e1 4.801567655629e1 5.205004928541e1 6.129277944766e1 1.331097841930e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.790442424347e0 -7.497002331256e0 -7.212928301842e0 -3.852004116187e0 -3.794635992736e0 1.980469538126e0 3.427644227707e0 5.779381020395e0 8.651023294351e0 4.688584827505e1 4.803375518256e1 4.841343900148e1 5.516998498824e1 5.956269331496e1 1.364591089790e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.855015619437e0 -7.489187838339e0 -7.354653734841e0 -3.884750923344e0 -3.812891066081e0 3.126488406737e-1 5.589178698479e0 6.378710834882e0 9.016209053098e0 4.652146644908e1 4.723925430770e1 4.801493412525e1 5.204178371546e1 6.130751690995e1 1.331144382896e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.473318051769e0 -7.413616697926e0 -7.295584976236e0 -3.974646779893e0 -3.863435226266e0 -1.313612751075e0 6.828958695528e0 9.523198670076e0 1.061152527553e1 4.414005822325e1 4.459164535587e1 4.745551351400e1 4.952734032294e1 6.092027426622e1 1.174306627814e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436901639189e0 -7.221939430290e0 -7.049720892089e0 -4.172300399619e0 -3.877913275463e0 -2.557972553093e0 8.264825276974e0 1.181118620213e1 1.530472925697e1 3.980723971746e1 4.152934347760e1 4.635018975303e1 4.927349332958e1 5.791456850456e1 8.408930580195e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037259991295e1 -6.933963417554e0 -6.741297920991e0 -4.490848723554e0 -3.887546669286e0 -3.499750095159e0 1.021605261614e1 1.443894211282e1 2.189508755656e1 3.512305776107e1 3.854777919899e1 4.481266660033e1 5.011613373004e1 5.347654073132e1 6.187324831230e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106515237797e1 -6.546014935068e0 -6.416830739278e0 -4.897609647048e0 -4.460446586930e0 -3.652364382612e0 1.278969163751e1 1.680055354947e1 2.941105030231e1 3.067775541772e1 3.572051635391e1 4.410120740035e1 5.131189725985e1 5.241995489580e1 5.587110433435e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142144341332e1 -6.130210558187e0 -6.124747234913e0 -5.316319295629e0 -5.006692859600e0 -3.596685832171e0 1.578538553552e1 1.770195270062e1 2.635656138371e1 3.365811369225e1 3.470095370581e1 4.433151302335e1 5.219756094597e1 5.340162305449e1 5.681499734447e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142149463531e1 -6.135936625734e0 -6.129363970999e0 -5.311101297685e0 -5.000258800584e0 -3.596649115439e0 1.578412688851e1 1.770147679540e1 2.635848597830e1 3.365795268183e1 3.470277854407e1 4.433003217700e1 5.219701948923e1 5.339756076731e1 5.681722333314e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106526793038e1 -6.552589588217e0 -6.425581257388e0 -4.890034966028e0 -4.448445407824e0 -3.652684874740e0 1.278714471120e1 1.680038688061e1 2.941378403335e1 3.068009604429e1 3.572134532585e1 4.409824719096e1 5.131051146170e1 5.242442139455e1 5.586085269921e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037263866737e1 -6.940124418665e0 -6.749701767949e0 -4.483046584438e0 -3.879280163820e0 -3.495081427834e0 1.021315210844e1 1.443909892966e1 2.189455681441e1 3.512587351411e1 3.855136374303e1 4.481065196579e1 5.011528062791e1 5.347957764504e1 6.185682501036e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436593741616e0 -7.227669588558e0 -7.056300727214e0 -4.165209262528e0 -3.875509839793e0 -2.547499015543e0 8.262066696728e0 1.181076338343e1 1.530186209955e1 3.981249301366e1 4.153285585164e1 4.634919044892e1 4.927257867874e1 5.790665883946e1 8.407728778200e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.723298969174e0 -7.373110656129e0 -6.769806493378e0 -4.091554118981e0 -3.817234854269e0 -1.418678772095e0 4.672461383892e0 1.057805766025e1 1.385776515880e1 3.869341656541e1 4.139622811991e1 4.713556297979e1 5.188355400381e1 6.263393993145e1 1.062360841361e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.178612328334e0 -7.505269127026e0 -6.951163487848e0 -3.936794568477e0 -3.798488584835e0 1.404598290831e-1 3.734684463099e0 8.998645830089e0 9.511013715907e0 4.382267645120e1 4.437285372091e1 4.839208175301e1 5.339089615052e1 6.249689177851e1 1.262927566581e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.790364593885e0 -7.503100429351e0 -7.208726871819e0 -3.848739122339e0 -3.795895045526e0 1.985342633075e0 3.428435725720e0 5.774209549587e0 8.650410578823e0 4.688584009353e1 4.803793993412e1 4.841310440702e1 5.517427167993e1 5.955178615081e1 1.364581089209e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.790442472878e0 -7.497002347000e0 -7.212928273602e0 -3.852005296893e0 -3.794634748006e0 1.980469533193e0 3.427644228793e0 5.779381007406e0 8.651023294990e0 4.688585174265e1 4.803375556918e1 4.841343508980e1 5.516998496289e1 5.956269333807e1 1.364591089800e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.177019363194e0 -7.499599943844e0 -6.952713871747e0 -3.942243200398e0 -3.799059885988e0 1.322089379810e-1 3.736548936553e0 9.000553581004e0 9.515311449600e0 4.381534402590e1 4.437353004720e1 4.839256225320e1 5.338916560420e1 6.251163110821e1 1.262964463293e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.721830154526e0 -7.366951676568e0 -6.767587910788e0 -4.098768680162e0 -3.820027269446e0 -1.427397774565e0 4.675017768906e0 1.057922208287e1 1.386125305086e1 3.868835956136e1 4.139548547417e1 4.713618145621e1 5.188291545704e1 6.264662173963e1 1.062440987737e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309470583358e0 -7.143168754026e0 -6.648724087952e0 -4.361093977150e0 -3.797898595177e0 -2.575857730717e0 6.101432727492e0 1.267686955321e1 1.999424316269e1 3.363264093630e1 3.876458038326e1 4.479835536910e1 5.117958535028e1 6.039336589639e1 8.108943524852e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833541734445e0 -6.822157759060e0 -6.553364077896e0 -4.703232811863e0 -3.872148581435e0 -3.295311924116e0 8.040184334319e0 1.486184140276e1 2.706805945013e1 2.950216378346e1 3.632339188578e1 4.253018240345e1 5.150227680543e1 5.896408856433e1 7.003874976527e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018236709884e1 -6.529196141661e0 -6.348565710972e0 -5.089370008718e0 -4.305119620489e0 -3.396852102836e0 1.054027127923e1 1.563715129047e1 2.538631380225e1 3.313191017503e1 3.385627393704e1 4.182819836762e1 5.190965558054e1 5.668854509938e1 7.205547176498e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030375537757e1 -6.475707485606e0 -6.068183172791e0 -5.368584684213e0 -4.516645254217e0 -3.378932947739e0 1.299187117400e1 1.407357023539e1 2.520958378505e1 3.110795983857e1 3.525913042191e1 4.287533361305e1 5.255162766553e1 5.443654246290e1 7.362099489010e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018270413031e1 -6.533756430411e0 -6.355110821427e0 -5.082723275947e0 -4.296896067063e0 -3.397469081786e0 1.053909017837e1 1.563616370611e1 2.538879593815e1 3.313102242464e1 3.385932423639e1 4.182645874541e1 5.190772880405e1 5.668063493556e1 7.205941717168e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.834208868081e0 -6.828952904510e0 -6.559950398173e0 -4.695356786417e0 -3.860441626267e0 -3.295402417064e0 8.038147517467e0 1.486107328363e1 2.707050973911e1 2.950408056657e1 3.632414937923e1 4.252737204365e1 5.150085003609e1 5.895468853328e1 7.003879083755e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.310493948226e0 -7.149802387934e0 -6.654179930243e0 -4.352974030513e0 -3.792076115204e0 -2.569032261508e0 6.098939593506e0 1.267597576208e1 1.999349416695e1 3.363528749385e1 3.876620326361e1 4.479698516036e1 5.117968468251e1 6.038558531386e1 8.107975902118e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -9.802757615725e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.877515149204e0 -7.238114541227e0 -6.308538915667e0 -4.259125960889e0 -3.713398587388e0 -1.618498172203e0 3.304603368206e0 1.174840036455e1 1.905192724942e1 3.264529938597e1 3.851023410686e1 4.518211590510e1 5.181777239375e1 6.549188867557e1 9.792943408661e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.579935111198e0 -7.420165996251e0 -6.486030484227e0 -4.057437660981e0 -3.797168819113e0 -5.969977025189e-1 2.917715777967e0 1.015278904439e1 1.339833682986e1 3.823295648562e1 4.118176409752e1 4.748533921073e1 5.323913092436e1 6.485874414019e1 1.111361605889e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.178612328521e0 -7.505269126808e0 -6.951163487441e0 -3.936794579007e0 -3.798488574703e0 1.404598291252e-1 3.734684463052e0 8.998645830033e0 9.511013715908e0 4.382267645128e1 4.437285372083e1 4.839208175292e1 5.339089615062e1 6.249689177847e1 1.262927566579e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.853006650504e0 -7.495001377604e0 -7.355179590684e0 -3.882831588257e0 -3.811426526957e0 3.220393665306e-1 5.585299017497e0 6.375409035278e0 9.015144418810e0 4.652216612251e1 4.724050709959e1 4.801567280620e1 5.205004935376e1 6.129277945641e1 1.331097841874e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.176266572768e0 -7.500377821931e0 -6.955117802689e0 -3.942182448194e0 -3.797775556297e0 1.392411858801e-1 3.731724522901e0 8.999820534640e0 9.515043511964e0 4.381539870884e1 4.437374674250e1 4.839236673821e1 5.339532206838e1 6.250435857178e1 1.262928552502e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.577174847630e0 -7.414429713553e0 -6.487278585795e0 -4.064571882653e0 -3.799837456005e0 -6.009465148769e-1 2.918221640166e0 1.015395498294e1 1.340179074901e1 3.822812014238e1 4.118183136320e1 4.748587617243e1 5.324038663858e1 6.487140846346e1 1.111381550655e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874950488378e0 -7.231409018979e0 -6.306589575588e0 -4.267148247908e0 -3.720282925508e0 -1.622649752654e0 3.306701068266e0 1.174978166215e1 1.905272584858e1 3.264282936208e1 3.851007755520e1 4.518279460864e1 5.181809406314e1 6.550407960966e1 9.793504769130e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.069024729546e0 -6.943100796202e0 -6.476155911243e0 -4.540298869860e0 -3.539955693803e0 -2.452531628572e0 4.444715104396e0 1.363267683280e1 2.535060912524e1 2.825048754052e1 3.656869321428e1 4.203854398360e1 5.156095803058e1 6.430660757746e1 9.642535165436e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.178879829318e0 -6.776223925195e0 -6.539008653917e0 -4.826272011290e0 -3.635242111383e0 -2.811806587359e0 6.231391254396e0 1.429515497159e1 2.314869022884e1 3.260948228288e1 3.470463062835e1 3.942039942240e1 5.162525689398e1 6.162830638257e1 9.406519099351e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231601122458e0 -6.935782777598e0 -6.189371223327e0 -5.067359811128e0 -3.959441722056e0 -2.786847743358e0 8.662295837366e0 1.186490284078e1 2.463925530904e1 3.051395764684e1 3.413352491508e1 4.134013698134e1 5.242643168605e1 5.765071013856e1 8.778382776024e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232095083892e0 -6.936596376421e0 -6.193549634601e0 -5.063200608508e0 -3.956492742294e0 -2.787014374695e0 8.662450557310e0 1.186373118900e1 2.464123317914e1 3.051223892272e1 3.413437366212e1 4.134139508322e1 5.242463165095e1 5.764605246977e1 8.778523268209e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.180282481878e0 -6.778989452121e0 -6.545658298740e0 -4.819066546478e0 -3.625934744585e0 -2.813234823169e0 6.230408348332e0 1.429370148217e1 2.315045352874e1 3.261287113633e1 3.470426251869e1 3.941906338435e1 5.162157784753e1 6.161740174881e1 9.406858070471e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.071126253647e0 -6.950480583408e0 -6.479112289324e0 -4.532344265266e0 -3.529807804506e0 -2.451543521375e0 4.442797508983e0 1.363148236762e1 2.535283475125e1 2.825196391421e1 3.656856919836e1 4.203725358487e1 5.155872090007e1 6.429433245151e1 9.642425468225e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.069391739897e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876758872950e0 -6.986305363547e0 -6.339260821718e0 -4.509914115271e0 -3.354272229492e0 -1.807320649131e0 2.826810414858e0 1.319585485836e1 2.473402363298e1 2.778536073758e1 3.643026389227e1 4.217659479050e1 5.156308922259e1 6.690880028039e1 1.144963944604e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -9.802757615725e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.877515191534e0 -7.238114515990e0 -6.308538796991e0 -4.259125796705e0 -3.713398833113e0 -1.618498233967e0 3.304603397179e0 1.174840035777e1 1.905192725970e1 3.264529917041e1 3.851023383662e1 4.518211632608e1 5.181777251658e1 6.549188866841e1 9.792943409117e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.723299005494e0 -7.373110615557e0 -6.769806436541e0 -4.091553646664e0 -3.817235389713e0 -1.418678802282e0 4.672461397604e0 1.057805765734e1 1.385776516978e1 3.869341629271e1 4.139622770626e1 4.713556364335e1 5.188355408366e1 6.263393993356e1 1.062360841305e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.472178722100e0 -7.420003699908e0 -7.298777356734e0 -3.969585641493e0 -3.861939562589e0 -1.302913362568e0 6.826654533540e0 9.520933140573e0 1.060814326536e1 4.414784858678e1 4.459231790921e1 4.745476525272e1 4.952889629963e1 6.090647933114e1 1.174215720806e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.470743410397e0 -7.415873583638e0 -7.302682883851e0 -3.974354769406e0 -3.859799645430e0 -1.302883244134e0 6.824326251507e0 9.521134339411e0 1.061091174473e1 4.414091893038e1 4.459303061310e1 4.745433340253e1 4.953666702167e1 6.090812373082e1 1.174210011224e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.720711111834e0 -7.368497259855e0 -6.771714254951e0 -4.098558427347e0 -3.818608034251e0 -1.418565922653e0 4.670837775122e0 1.057842756022e1 1.386071660604e1 3.868871241784e1 4.139600609662e1 4.713620831491e1 5.188867708529e1 6.264121508726e1 1.062350242101e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874635132025e0 -7.232224402860e0 -6.307752836121e0 -4.267313845230e0 -3.720367315095e0 -1.617978461532e0 3.304556835572e0 1.174956098956e1 1.905247305743e1 3.264303018212e1 3.851023881603e1 4.518295526247e1 5.181941689674e1 6.550449691492e1 9.792935089330e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.873797136643e0 -6.979405434310e0 -6.337495244286e0 -4.518113361814e0 -3.365701034563e0 -1.805534961097e0 2.828030575777e0 1.319719111897e1 2.473170043108e1 2.778404915793e1 3.643092673351e1 4.217736537509e1 5.156599478373e1 6.692205898583e1 1.144969278726e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.737472161547e0 -6.735544405640e0 -6.645945121530e0 -4.776855094593e0 -3.218284414182e0 -1.745562738054e0 3.321945328798e0 1.363116245250e1 2.150115529478e1 3.180843160892e1 3.593889351435e1 3.874022042751e1 5.155086616569e1 6.574242873916e1 1.203927283733e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532351485482e0 -7.153253658902e0 -6.373400822803e0 -4.854233745269e0 -3.533955459214e0 -1.526315421736e0 4.852228835769e0 1.068089878861e1 2.309755006104e1 3.248518374007e1 3.379587710404e1 3.985241054901e1 5.227000385994e1 6.232360481160e1 1.005702706145e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.417369302691e0 -7.340643523312e0 -6.290632120599e0 -4.774912284579e0 -3.783063777506e0 -1.442538446989e0 7.077113657045e0 7.636357977903e0 2.647408978749e1 2.933995327565e1 3.298814258113e1 4.162228990802e1 5.419435062838e1 5.901719511699e1 9.384361707099e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534512149271e0 -7.152744673233e0 -6.378274865831e0 -4.850046762553e0 -3.528689823258e0 -1.526495693422e0 4.852594928653e0 1.067884128862e1 2.309970559005e1 3.248436620304e1 3.379600486720e1 3.985499921919e1 5.226632113594e1 6.231450512360e1 1.005719918035e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.740325292509e0 -6.736464789348e0 -6.652645945354e0 -4.769666092111e0 -3.208337520268e0 -1.746984022948e0 3.320971418798e0 1.362941758730e1 2.150245017205e1 3.181182799103e1 3.593916537556e1 3.873919277751e1 5.154603203842e1 6.572966794248e1 1.203940980437e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.247668715958e0 -7.450899111163e0 -5.932934530808e0 -5.023715501754e0 -3.278629238626e0 -3.406126132929e-1 3.625527870077e0 1.083221236852e1 1.805149897880e1 3.096168988460e1 3.770275259125e1 3.771983512595e1 5.182387409226e1 6.335189355753e1 7.995435517160e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534995973776e0 -7.154202729831e0 -6.382685132519e0 -4.844569390013e0 -3.522334101843e0 -1.530809456641e0 4.851847704609e0 1.067970160446e1 2.309854357302e1 3.248862430078e1 3.379670584581e1 3.985106606211e1 5.226347494710e1 6.231422695552e1 1.005710343283e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.888010044115e0 -7.155561151271e0 -6.589584086120e0 -4.646281637416e0 -3.779729167272e0 -2.120181531259e0 6.545233331590e0 9.859633551892e0 2.643982444740e1 3.060487197407e1 3.677995929441e1 4.254727587926e1 5.237475865106e1 5.927219941285e1 8.948038592311e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231095623425e0 -7.212698296791e0 -6.846519621379e0 -4.414572529354e0 -3.813558500084e0 -2.421314302297e0 8.127828847045e0 9.842388177665e0 1.978448760789e1 3.659911577142e1 3.920057861397e1 4.499420241471e1 5.116045989442e1 5.713507118703e1 8.061172859550e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436593771589e0 -7.227669465154e0 -7.056300739183e0 -4.165208471128e0 -3.875510719207e0 -2.547499042815e0 8.262066684999e0 1.181076337960e1 1.530186212767e1 3.981249206982e1 4.153285517366e1 4.634919255072e1 4.927257818240e1 5.790665896154e1 8.407728777379e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436083105986e0 -7.229714689044e0 -7.052615755524e0 -4.168580917939e0 -3.876508574433e0 -2.545966327676e0 8.262672683508e0 1.180856680213e1 1.530343218240e1 3.981234524097e1 4.153149777645e1 4.634918243689e1 4.927676302150e1 5.790610098434e1 8.407692273100e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.229671374331e0 -7.213477479854e0 -6.840592861385e0 -4.421417498556e0 -3.819479825343e0 -2.417131589457e0 8.129315385737e0 9.840136906618e0 1.978461134407e1 3.659986991217e1 3.919791238005e1 4.499545484769e1 5.116860552734e1 5.713439677080e1 8.061065907847e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.885897110248e0 -7.154786400922e0 -6.581467205796e0 -4.655873847288e0 -3.789549486978e0 -2.114948173204e0 6.545470502851e0 9.859918785126e0 2.643665822854e1 3.060435185024e1 3.678061903241e1 4.254840956246e1 5.238212789494e1 5.927669163871e1 8.947819853763e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532351485480e0 -7.153253658903e0 -6.373400822803e0 -4.854233745270e0 -3.533955459211e0 -1.526315421737e0 4.852228835778e0 1.068089878858e1 2.309755006112e1 3.248518373895e1 3.379587710355e1 3.985241055170e1 5.227000386039e1 6.232360481332e1 1.005702706073e2</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.244674501603e0 -7.450096974566e0 -5.925817630988e0 -5.030335982868e0 -3.288502383223e0 -3.388725967738e-1 3.625961332986e0 1.083386934498e1 1.805069420575e1 3.096281401986e1 3.769840469731e1 3.771885119416e1 5.182833029055e1 6.336388538612e1 7.995501824231e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 8.911597832478e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.024074764523e0 -7.751020836183e0 -5.837881793797e0 -4.647742251968e0 -3.391014158188e0 1.265562786922e0 3.161447644026e0 7.985584881277e0 1.971475350914e1 2.862300406897e1 3.548206494314e1 4.002914246031e1 5.398482758446e1 6.236592740342e1 6.712758470628e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 9.802757615725e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947605796530e0 -7.849134574334e0 -5.923215612231e0 -4.162536107019e0 -3.665430070434e0 1.775354374562e0 4.642489301076e0 5.110531432611e0 2.384508364736e1 2.516408950437e1 3.420205523778e1 4.015767163128e1 5.757710711090e1 6.006320106556e1 6.367191674294e1</array>
+        </property>
+        <kpoint coords="-2.673479349743e-1 1.069391739897e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.026924458042e0 -7.750653296731e0 -5.838009836230e0 -4.650172160826e0 -3.383381105040e0 1.265260151831e0 3.162003853145e0 7.983723541081e0 1.971599640810e1 2.862168913672e1 3.548118439790e1 4.003234550144e1 5.398762188537e1 6.235432996201e1 6.712632769634e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202272677677e0 -7.607136195720e0 -5.767075743981e0 -4.741186660656e0 -3.575116540346e0 -4.595376256355e-1 5.592564010205e0 8.369300069514e0 2.018726372384e1 2.539905999177e1 3.711401546240e1 4.066293877223e1 5.414314382449e1 6.003253369685e1 6.950378562122e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.637388933707e0 -7.222947050154e0 -5.860961621257e0 -5.090759243467e0 -3.713651291904e0 -2.004025513975e0 6.874935370125e0 1.155571367866e1 1.935059048049e1 2.714705619888e1 3.833512686508e1 3.934920440334e1 5.219551190887e1 5.924573076660e1 8.086498912298e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232590105113e0 -6.937564492808e0 -6.199305234959e0 -5.057368297755e0 -3.949514122811e0 -2.791440916135e0 8.661510907185e0 1.186480024055e1 2.464041041492e1 3.051294197836e1 3.413801414062e1 4.133843115356e1 5.241977167421e1 5.764647167244e1 8.778574024162e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.882169706313e0 -6.901181662453e0 -6.489704022502e0 -4.852814394827e0 -3.947765136058e0 -3.204969248169e0 1.026039545653e1 1.210811500162e1 2.796777223795e1 3.066541647781e1 3.571583201178e1 4.360972422143e1 5.170174553993e1 5.613072690731e1 7.020759575188e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037263871521e1 -6.940124217813e0 -6.749701735275e0 -4.483045691579e0 -3.879280964431e0 -3.495081748013e0 1.021315204063e1 1.443909889491e1 2.189455688905e1 3.512587158326e1 3.855136345073e1 4.481065449773e1 5.011528023014e1 5.347957797343e1 6.185682501686e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055177342601e1 -7.010035454786e0 -6.790773762035e0 -4.250363423773e0 -3.945088085543e0 -3.581290247804e0 1.005316593420e1 1.690266049740e1 1.824037025858e1 3.692086099964e1 3.892805143849e1 4.725225639434e1 4.772100303622e1 5.265953131851e1 6.125829405976e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037227435161e1 -6.942223734504e0 -6.743974276147e0 -4.487704704638e0 -3.886093334647e0 -3.488580339084e0 1.021422490387e1 1.443716311144e1 2.189396579756e1 3.512771655190e1 3.855098486318e1 4.481107981175e1 5.011960841600e1 5.347737485950e1 6.185593830167e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.881475081148e0 -6.901165173451e0 -6.481732312970e0 -4.860569431634e0 -3.956815010282e0 -3.198728776430e0 1.026275073745e1 1.210563040887e1 2.796424571492e1 3.066571785458e1 3.571739933743e1 4.361123345341e1 5.170968820258e1 5.612940185549e1 7.020473186102e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231601122457e0 -6.935782777598e0 -6.189371223325e0 -5.067359811129e0 -3.959441722054e0 -2.786847743357e0 8.662295837380e0 1.186490284073e1 2.463925530915e1 3.051395764562e1 3.413352491551e1 4.134013698364e1 5.242643168626e1 5.765071014082e1 8.778382775270e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.636132668148e0 -7.220646357678e0 -5.854091365280e0 -5.096885401698e0 -3.722537454493e0 -2.002427462202e0 6.875426958486e0 1.155692676707e1 1.934961879624e1 2.714847874021e1 3.833061205157e1 3.934857444528e1 5.219873851590e1 5.925560371898e1 8.086499053571e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201136761164e0 -7.605365833876e0 -5.768127950499e0 -4.737747606042e0 -3.582139751538e0 -4.607085034729e-1 5.592914023703e0 8.370870009436e0 2.018623935521e1 2.540025792820e1 3.711574068084e1 4.065804114064e1 5.413895847323e1 6.004625018515e1 6.950471469583e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947929070062e0 -7.847598992793e0 -5.924347620952e0 -4.157435195473e0 -3.671028762990e0 1.773459479745e0 4.643484656280e0 5.111468596893e0 2.384319524116e1 2.516571626312e1 3.420295429913e1 4.015644171331e1 5.756742154085e1 6.007452271695e1 6.367394413288e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 9.802757615725e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947606646946e0 -7.849133615151e0 -5.923215630612e0 -4.162535938723e0 -3.665430207332e0 1.775354143543e0 4.642489363358e0 5.110531440282e0 2.384508061400e1 2.516409191549e1 3.420205591533e1 4.015767168945e1 5.757710709108e1 6.006320104188e1 6.367191681469e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201075446310e0 -7.606885466818e0 -5.765890958954e0 -4.740553770099e0 -3.580371286905e0 -4.588527870909e-1 5.591797991844e0 8.370791301071e0 2.018598605328e1 2.540056137535e1 3.711410391165e1 4.066076723623e1 5.414115862169e1 6.004041557222e1 6.950436404389e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.687649370135e0 -7.220022147068e0 -5.644822884654e0 -5.075783475779e0 -3.976317893962e0 -2.124932041500e0 9.366670269821e0 9.566966056368e0 2.125701094202e1 2.215998893337e1 3.877260066044e1 4.121157885281e1 5.394183421161e1 5.601389695145e1 7.548060308928e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430401426238e0 -6.723102317375e0 -5.758338156611e0 -5.398084581695e0 -4.374071357701e0 -2.996835605513e0 1.118205692433e1 1.294361008505e1 2.126526533526e1 2.538408710634e1 3.881703607174e1 4.109067396034e1 5.279695650786e1 5.474334800627e1 8.165276398369e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030398821057e1 -6.476595049908e0 -6.077616554184e0 -5.360200942769e0 -4.511588282976e0 -3.380610986481e0 1.298885110832e1 1.407626294711e1 2.521002837957e1 3.110817098850e1 3.526122842816e1 4.287401326321e1 5.254376317330e1 5.443913111349e1 7.362306860682e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106526798379e1 -6.552589358444e0 -6.425581141007e0 -4.890034082649e0 -4.448445452443e0 -3.652686019507e0 1.278714454012e1 1.680038683955e1 2.941378283482e1 3.068009473584e1 3.572134535468e1 4.409824995914e1 5.131051121977e1 5.242442184234e1 5.586085274556e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149257183739e1 -6.755702057310e0 -6.490699924296e0 -4.454639494494e0 -4.378708516671e0 -3.907616828350e0 1.239866933899e1 2.030325051081e1 2.459148313375e1 3.348618340336e1 3.674787848806e1 4.353306164856e1 4.666508801428e1 4.939628124130e1 5.601867387280e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149251743498e1 -6.755755837781e0 -6.489390842366e0 -4.457741904888e0 -4.378582763762e0 -3.906211779120e0 1.239900132236e1 2.030267758394e1 2.459024472829e1 3.348847189724e1 3.674817365949e1 4.353106119868e1 4.666447376133e1 4.939862268927e1 5.601820741775e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106511426983e1 -6.554872934615e0 -6.418952676529e0 -4.894215543067e0 -4.451408096762e0 -3.650803168069e0 1.278835258759e1 1.679884643451e1 2.941028605019e1 3.068146582455e1 3.572365885958e1 4.409873699289e1 5.131524106515e1 5.242242785921e1 5.585876623970e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030375537757e1 -6.475707485604e0 -6.068183172790e0 -5.368584684211e0 -4.516645254216e0 -3.378932947738e0 1.299187117397e1 1.407357023536e1 2.520958378497e1 3.110795983839e1 3.525913042190e1 4.287533361354e1 5.255162766689e1 5.443654246390e1 7.362099488779e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430103262205e0 -6.720174328948e0 -5.752651645469e0 -5.402712983275e0 -4.380667594336e0 -2.996052943235e0 1.118263389436e1 1.294419728745e1 2.126347969530e1 2.538577966340e1 3.881398918215e1 4.109045155998e1 5.279845815272e1 5.474907104048e1 8.165203333830e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.687354900029e0 -7.217860145676e0 -5.647567939878e0 -5.071362681209e0 -3.980964834619e0 -2.126072426048e0 9.367184200606e0 9.567578453982e0 2.125514575865e1 2.216200899830e1 3.877484777473e1 4.120648888013e1 5.393358987727e1 5.602875865099e1 7.548066965266e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201136355087e0 -7.605366337746e0 -5.768127924491e0 -4.737747404351e0 -3.582139800972e0 -4.607085881927e-1 5.592914029371e0 8.370869953637e0 2.018623761626e1 2.540026053835e1 3.711574012248e1 4.065804091323e1 5.413895859197e1 6.004625013331e1 6.950471456241e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.024073936835e0 -7.751021683575e0 -5.837881762543e0 -4.647741993175e0 -3.391014242388e0 1.265562482960e0 3.161447703878e0 7.985584835888e0 1.971475170318e1 2.862300732288e1 3.548206391595e1 4.002914227784e1 5.398482763042e1 6.236592736768e1 6.712758459932e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.244674165931e0 -7.450097297942e0 -5.925817663084e0 -5.030335545602e0 -3.288502429913e0 -3.388731081538e-1 3.625961403734e0 1.083386931210e1 1.805069271970e1 3.096281593437e1 3.769840465604e1 3.771885105057e1 5.182833039545e1 6.336388534177e1 7.995501816293e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.636132888545e0 -7.220645723291e0 -5.854091389463e0 -5.096885057184e0 -3.722537510110e0 -2.002428202314e0 6.875426965248e0 1.155692673635e1 1.934961690904e1 2.714847899972e1 3.833061200309e1 3.934857612545e1 5.219873875362e1 5.925560367665e1 8.086499078080e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430103493409e0 -6.720173280915e0 -5.752651657198e0 -5.402712715520e0 -4.380667662439e0 -2.996053949569e0 1.118263382616e1 1.294419725890e1 2.126347668756e1 2.538578019643e1 3.881398912733e1 4.109045435699e1 5.279845832926e1 5.474907099747e1 8.165203345808e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.044803171654e1 -6.085615422089e0 -5.785861699030e0 -5.778769543038e0 -4.910768243739e0 -3.383361418031e0 1.496513031406e1 1.496737158622e1 2.221645098575e1 2.944881531285e1 3.765490305559e1 4.309040182634e1 5.295111681596e1 5.295869612906e1 7.544641831518e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142149468649e1 -6.135936519811e0 -6.129363724142e0 -5.311100325297e0 -5.000258849622e0 -3.596650317432e0 1.578412669542e1 1.770147680122e1 2.635848291793e1 3.365795285626e1 3.470277849800e1 4.433003531778e1 5.219701941889e1 5.339756079852e1 5.681722378042e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208970061772e1 -6.479010531832e0 -6.260489088516e0 -4.927485139012e0 -4.712249919567e0 -3.815267711347e0 1.541617951841e1 2.129343036143e1 3.083300304612e1 3.115037495207e1 3.543124305487e1 4.245927986884e1 4.599388153502e1 5.050721497425e1 5.400069674078e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.232242623210e1 -6.606407582850e0 -6.298202794089e0 -4.890602351035e0 -4.392541693520e0 -3.993485984606e0 1.519636424723e1 2.466020635089e1 2.738923774307e1 3.275674659314e1 3.570994101849e1 3.928633871220e1 4.745916434942e1 4.842849714516e1 5.416377007731e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208970059788e1 -6.479010549453e0 -6.260489226369e0 -4.927485119415e0 -4.712250938934e0 -3.815266582085e0 1.541617966842e1 2.129343035137e1 3.083300307857e1 3.115037757572e1 3.543124230848e1 4.245927996048e1 4.599387897831e1 5.050721513994e1 5.400069672511e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142149463531e1 -6.135936625734e0 -6.129363970993e0 -5.311101297683e0 -5.000258800586e0 -3.596649115438e0 1.578412688844e1 1.770147679537e1 2.635848597818e1 3.365795268211e1 3.470277854397e1 4.433003217476e1 5.219701949134e1 5.339756076723e1 5.681722333448e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.044803159692e1 -6.085616720640e0 -5.785861738056e0 -5.778769582657e0 -4.910768162153e0 -3.383360269973e0 1.496513032540e1 1.496737159765e1 2.221645420018e1 2.944881519963e1 3.765490311083e1 4.309039820106e1 5.295111681671e1 5.295869613016e1 7.544641835734e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430103225335e0 -6.720174449391e0 -5.752651705657e0 -5.402712776635e0 -4.380667608178e0 -2.996052998339e0 1.118263396132e1 1.294419725492e1 2.126347902049e1 2.538578044282e1 3.881398917336e1 4.109045131409e1 5.279845837696e1 5.474907095865e1 8.165203331819e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.636132391031e0 -7.220646846638e0 -5.854091412631e0 -5.096884965720e0 -3.722537482213e0 -2.002427629764e0 6.875426997355e0 1.155692673315e1 1.934961744997e1 2.714848094497e1 3.833061202777e1 3.934857356196e1 5.219873877670e1 5.925560365606e1 8.086499034869e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.020438049230e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.244673788413e0 -7.450097910013e0 -5.925817670036e0 -5.030335467569e0 -3.288502421097e0 -3.388728683948e-1 3.625961333076e0 1.083386931082e1 1.805069283412e1 3.096281755593e1 3.769840466172e1 3.771884939460e1 5.182833038341e1 6.336388533579e1 7.995501789030e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.342754839812e0 -7.129876830325e0 -6.482796346844e0 -4.818835271119e0 -3.337894012184e0 -3.983577346617e-1 2.898042004135e0 1.027300385257e1 2.246009872822e1 3.236802618017e1 3.543648726931e1 3.890170289876e1 5.229252110303e1 6.470686017354e1 1.078821449899e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532544908133e0 -7.150333642585e0 -6.376088855601e0 -4.852944313461e0 -3.533663070710e0 -1.529753672289e0 4.853612133993e0 1.068103737658e1 2.309760016485e1 3.248442984363e1 3.379730989422e1 3.985064594153e1 5.226859090456e1 6.232797434565e1 1.005707632527e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231677894101e0 -6.931775203969e0 -6.192009721479e0 -5.065159782789e0 -3.961436063137e0 -2.790208474697e0 8.663499683660e0 1.186530152317e1 2.463850274173e1 3.051427229146e1 3.413403618173e1 4.133822429090e1 5.242250454529e1 5.765980928656e1 8.778307611918e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030374228424e1 -6.469411494684e0 -6.069135550821e0 -5.368563634490e0 -4.522819280762e0 -3.379799340478e0 1.299243394480e1 1.407496025958e1 2.520729527573e1 3.110940776721e1 3.525763248041e1 4.287517060599e1 5.254464511759e1 5.444913216870e1 7.361903898603e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142144345753e1 -6.130210465472e0 -6.124746987865e0 -5.316318269341e0 -5.006692924586e0 -3.596687073634e0 1.578538534209e1 1.770195267345e1 2.635655839308e1 3.365811368971e1 3.470095365470e1 4.433151612750e1 5.219756121535e1 5.340162300151e1 5.681499774682e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229174886049e1 -6.271052599935e0 -6.236239774280e0 -5.114023367011e0 -4.864942554743e0 -3.771111005375e0 1.816575234551e1 1.974465121721e1 3.089685550221e1 3.181612832905e1 3.547787176191e1 4.323769723939e1 4.670251904306e1 5.143524409524e1 5.273558323345e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275257597931e1 -6.457075431362e0 -6.302943229777e0 -5.080106481323e0 -4.428602559776e0 -3.977431240897e0 1.863657517307e1 2.312245690497e1 2.749581130347e1 3.554143899780e1 3.617525548840e1 3.914212901860e1 4.694390569300e1 4.955352217001e1 5.256044925920e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275259495834e1 -6.458893049377e0 -6.302485857378e0 -5.079459909919e0 -4.427040170616e0 -3.977980638568e0 1.863556054528e1 2.312344080661e1 2.749711584022e1 3.554127373046e1 3.617220869824e1 3.914545331904e1 4.694455248677e1 4.955008265089e1 5.256137525272e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229179700643e1 -6.280000053322e0 -6.232475297793e0 -5.111277010893e0 -4.861391101212e0 -3.771359268229e0 1.816191550622e1 1.974814651368e1 3.089695114957e1 3.181956214383e1 3.547532353153e1 4.323975747334e1 4.670232455617e1 5.142831847904e1 5.273869624809e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142149464229e1 -6.135936593448e0 -6.129363995132e0 -5.311101346372e0 -5.000258784564e0 -3.596649076454e0 1.578412688941e1 1.770147682813e1 2.635848590853e1 3.365795285887e1 3.470277854903e1 4.433003221229e1 5.219701914475e1 5.339756085686e1 5.681722337948e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030375537772e1 -6.475707486295e0 -6.068183171662e0 -5.368584684548e0 -4.516645253741e0 -3.378932948225e0 1.299187117424e1 1.407357023534e1 2.520958378466e1 3.110795983850e1 3.525913042183e1 4.287533361333e1 5.255162766719e1 5.443654246397e1 7.362099488792e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231601019730e0 -6.935782987737e0 -6.189371279008e0 -5.067359499608e0 -3.959441762159e0 -2.786847870305e0 8.662295883368e0 1.186490278383e1 2.463925449569e1 3.051395869973e1 3.413352499665e1 4.134013646575e1 5.242643206753e1 5.765071004755e1 8.778382769383e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 7.129278265982e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532351071556e0 -7.153254326496e0 -6.373400849866e0 -4.854233171064e0 -3.533955574062e0 -1.526315647126e0 4.852228845217e0 1.068089873158e1 2.309754881435e1 3.248518400981e1 3.379587944321e1 3.985240936017e1 5.227000406773e1 6.232360476419e1 1.005702703002e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429328964522e0 -7.062825068111e0 -6.769927101257e0 -4.510074529378e0 -3.649640372151e0 -7.355607201051e-1 3.492141167420e0 8.971295682619e0 2.566407217459e1 3.010471328641e1 3.878287660660e1 4.097173404529e1 5.249435928685e1 6.363509639545e1 1.023842890744e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429632465415e0 -7.058100487321e0 -6.773660983087e0 -4.509631833707e0 -3.649335915765e0 -7.398807964128e-1 3.494541140172e0 8.971503295673e0 2.566436164898e1 3.010445434060e1 3.878354342325e1 4.097016779776e1 5.249309572786e1 6.363692493329e1 1.023875234390e2</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886414915414e0 -7.149295648123e0 -6.583388419213e0 -4.655225287606e0 -3.789593859323e0 -2.122540711192e0 6.548201124976e0 9.860453534159e0 2.643743703664e1 3.060314742073e1 3.678049019151e1 4.254650406177e1 5.237711448285e1 5.928501569397e1 8.948305315872e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.881725062069e0 -6.894543305193e0 -6.481072345043e0 -4.861647762566e0 -3.959840465135e0 -3.205348180467e0 1.026473666078e1 1.210673328706e1 2.796543101851e1 3.066279167085e1 3.571614697132e1 4.361072825967e1 5.170324808118e1 5.614121457358e1 7.020762667396e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106515241129e1 -6.546014741722e0 -6.416830581548e0 -4.897608682082e0 -4.460446635096e0 -3.652365652199e0 1.278969144936e1 1.680055350197e1 2.941104965646e1 3.067775349213e1 3.572051589767e1 4.410121029844e1 5.131189775065e1 5.241995520391e1 5.587110431344e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208965620222e1 -6.472263819261e0 -6.256293115080e0 -4.935382424941e0 -4.717089646128e0 -3.815680608619e0 1.541766569671e1 2.129444030491e1 3.083056970579e1 3.114789852448e1 3.543086515677e1 4.245567608397e1 4.599685738132e1 5.050879908479e1 5.400672341453e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275255483459e1 -6.451798336378e0 -6.304198848171e0 -5.082697478702e0 -4.431000427316e0 -3.977326181575e0 1.863784280876e1 2.312205492168e1 2.749497321252e1 3.554142237957e1 3.617338086116e1 3.914076136998e1 4.694425728725e1 4.955629002807e1 5.256229504640e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.297912961610e1 -6.409319843635e0 -6.402177349045e0 -5.090479617082e0 -4.174528492262e0 -4.171872355874e0 2.234385127112e1 2.234980706672e1 2.428891515619e1 3.639866274197e1 3.837702825450e1 3.837878287958e1 4.838269543848e1 4.838944369504e1 5.168865779091e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275259495967e1 -6.458892999492e0 -6.302485974039e0 -5.079459891741e0 -4.427040521473e0 -3.977980228040e0 1.863556071846e1 2.312344073688e1 2.749711578267e1 3.554127388848e1 3.617220850311e1 3.914545429844e1 4.694455174563e1 4.955008218976e1 5.256137537502e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208970060736e1 -6.479010504285e0 -6.260489363588e0 -4.927485088522e0 -4.712251064655e0 -3.815266362761e0 1.541617975775e1 2.129343039061e1 3.083300309020e1 3.115037686488e1 3.543124377483e1 4.245927995065e1 4.599387878037e1 5.050721425011e1 5.400069680602e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106511428993e1 -6.554872898502e0 -6.418952721462e0 -4.894215617686e0 -4.451408095627e0 -3.650803044109e0 1.278835260529e1 1.679884644077e1 2.941028549888e1 3.068146644156e1 3.572365934339e1 4.409873686449e1 5.131524032745e1 5.242242799888e1 5.585876631021e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.881475081434e0 -6.901165174030e0 -6.481732312422e0 -4.860569429787e0 -3.956815011748e0 -3.198728776604e0 1.026275073777e1 1.210563040884e1 2.796424571468e1 3.066571785443e1 3.571739933776e1 4.361123345301e1 5.170968820276e1 5.612940185580e1 7.020473186113e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 6.238118482734e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.885896964232e0 -7.154786558457e0 -6.581467297770e0 -4.655873520321e0 -3.789549651923e0 -2.114948261794e0 6.545470521064e0 9.859918757548e0 2.643665828393e1 3.060435070824e1 3.678062041839e1 4.254840909598e1 5.238212825682e1 5.927669157354e1 8.947819846965e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.482503355734e0 -7.316682308250e0 -6.839250878849e0 -4.282699522913e0 -3.812515758372e0 -1.046624591674e0 4.916178295469e0 8.024237356337e0 1.853993196886e1 3.658928627120e1 4.065917610270e1 4.433767433748e1 5.274133887584e1 6.051998415371e1 9.242634845657e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.302576670049e0 -7.273541120136e0 -6.808105448680e0 -4.208134274544e0 -3.808850869925e0 6.314770011117e-2 2.970482944890e0 7.575193028342e0 1.813919993005e1 3.633298668359e1 4.214459469100e1 4.321830410975e1 5.306656734886e1 6.346301128645e1 9.244272409162e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483444361373e0 -7.312289907056e0 -6.839436597165e0 -4.283270472176e0 -3.812405338656e0 -1.055150976017e0 4.920428376298e0 8.024879941817e0 1.854046956171e1 3.658840143807e1 4.065925409329e1 4.433622343309e1 5.273657783277e1 6.052452459019e1 9.243540016415e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.230506849696e0 -7.206943638589e0 -6.839240271770e0 -4.423188957837e0 -3.819773611621e0 -2.427993673282e0 8.132283355972e0 9.841592560668e0 1.978551096452e1 3.659711263933e1 3.919678097704e1 4.499461103021e1 5.116221238524e1 5.714225238917e1 8.062250910216e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037259992939e1 -6.933963269994e0 -6.741297815273e0 -4.490847689359e0 -3.887547586095e0 -3.499750524861e0 1.021605253838e1 1.443894210099e1 2.189508763704e1 3.512305553369e1 3.854777799328e1 4.481266968857e1 5.011613434138e1 5.347654083795e1 6.187324828146e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149255855450e1 -6.748490996570e0 -6.483802142214e0 -4.461807061081e0 -4.389580003560e0 -3.907910999490e0 1.240057296728e1 2.030421928309e1 2.459097635163e1 3.348245799928e1 3.674624624086e1 4.352734575594e1 4.666733930889e1 4.939909769294e1 5.603111820541e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.232238749196e1 -6.599552346789e0 -6.294041887303e0 -4.898773985320e0 -4.397899497509e0 -3.993482175188e0 1.519781972400e1 2.466408387190e1 2.738402648470e1 3.275425806585e1 3.570962690544e1 3.928239425757e1 4.745796108217e1 4.843492953322e1 5.417040343949e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275255482966e1 -6.451798347743e0 -6.304198888695e0 -5.082697467459e0 -4.431001386419e0 -3.977325188878e0 1.863784294051e1 2.312205499233e1 2.749497313382e1 3.554142483557e1 3.617338042393e1 3.914076024596e1 4.694425558469e1 4.955629063299e1 5.256229499336e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.275257597571e1 -6.457075391572e0 -6.302943388538e0 -5.080106451822e0 -4.428603872045e0 -3.977429835142e0 1.863657547810e1 2.312245690569e1 2.749581116736e1 3.554144161001e1 3.617525485637e1 3.914212887504e1 4.694390324941e1 4.955352231373e1 5.256044932879e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.232242623603e1 -6.606407546450e0 -6.298203013210e0 -4.890602310240e0 -4.392542792284e0 -3.993484709368e0 1.519636442002e1 2.466020639984e1 2.738923775871e1 3.275674553113e1 3.570994375869e1 3.928633923519e1 4.745916155316e1 4.842849717687e1 5.416377014935e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149251745350e1 -6.755755785427e0 -6.489391027460e0 -4.457742208796e0 -4.378582846012e0 -3.906211196015e0 1.239900139269e1 2.030267755450e1 2.459024465347e1 3.348847134738e1 3.674817637214e1 4.353106103765e1 4.666447253099e1 4.939862162027e1 5.601820753557e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037227438301e1 -6.942223681390e0 -6.743974352606e0 -4.487704834355e0 -3.886093208767e0 -3.488580247578e0 1.021422491440e1 1.443716308842e1 2.189396579163e1 3.512771685203e1 3.855098577351e1 4.481107925657e1 5.011960740527e1 5.347737508013e1 6.185593834003e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 5.346958699487e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.229671374763e0 -7.213477480225e0 -6.840592861262e0 -4.421417491798e0 -3.819479832220e0 -2.417131588824e0 8.129315386055e0 9.840136906598e0 1.978461134406e1 3.659986991183e1 3.919791238065e1 4.499545484707e1 5.116860552753e1 5.713439677108e1 8.061065907869e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.488849101607e0 -7.403943687762e0 -7.137054029475e0 -4.090761550233e0 -3.825479799656e0 -1.239316686646e0 6.591154112806e0 7.788441039410e0 1.355261503691e1 4.220650551806e1 4.256349414165e1 4.661567658619e1 5.133275789890e1 6.041205313444e1 1.066115340978e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.114660242936e0 -7.433101641984e0 -7.011345531102e0 -4.008041167863e0 -3.826520652122e0 3.691176278854e-1 3.788112413408e0 6.608234694171e0 1.275981606432e1 4.204888285574e1 4.431956633257e1 4.653396290679e1 5.417961692412e1 6.166121463522e1 1.088501522654e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115384767177e0 -7.431003931598e0 -7.010669395485e0 -4.008833599841e0 -3.826673709824e0 3.619120099512e-1 3.793138821127e0 6.608786705227e0 1.276020276139e1 4.204863530214e1 4.431962706875e1 4.653314866241e1 5.417406149416e1 6.166851032136e1 1.088534551831e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.490475555337e0 -7.397669024234e0 -7.135589370295e0 -4.092906385327e0 -3.826345075264e0 -1.250085959085e0 6.594804821132e0 7.790880806068e0 1.355360567484e1 4.220458232374e1 4.256243008844e1 4.661491737185e1 5.132568515344e1 6.042414203461e1 1.066206629595e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436901630341e0 -7.221939381370e0 -7.049720803336e0 -4.172299207863e0 -3.877914655211e0 -2.557972584975e0 8.264825264980e0 1.181118623225e1 1.530472926250e1 3.980723856423e1 4.152934084945e1 4.635019354178e1 4.927349356726e1 5.791456848236e1 8.408930578615e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055199806876e1 -7.002831912592e0 -6.784889329683e0 -4.256242085646e0 -3.946285456030e0 -3.593088010670e0 1.005522730722e1 1.690276849921e1 1.824271908546e1 3.691434346135e1 3.892705363592e1 4.725270035737e1 4.771948738062e1 5.265714602958e1 6.127802759248e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149255853883e1 -6.748491018569e0 -6.483802226913e0 -4.461807760968e0 -4.389580055010e0 -3.907910148360e0 1.240057302036e1 2.030421935560e1 2.459097629915e1 3.348245920114e1 3.674624592172e1 4.352734591612e1 4.666733772925e1 4.939909807393e1 5.603111816269e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208965618241e1 -6.472263837061e0 -6.256293251607e0 -4.935382405137e0 -4.717090664635e0 -3.815679481520e0 1.541766584662e1 2.129444029499e1 3.083056973820e1 3.114790114773e1 3.543086441050e1 4.245567617621e1 4.599685482405e1 5.050879925281e1 5.400672339748e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.229174884299e1 -6.271052593741e0 -6.236239935465e0 -5.114023326951e0 -4.864943716928e0 -3.771109756826e0 1.816575266648e1 1.974465120842e1 3.089685845450e1 3.181612828154e1 3.547787135047e1 4.323769709393e1 4.670251593499e1 5.143524428558e1 5.273558312395e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.208970060736e1 -6.479010504288e0 -6.260489363586e0 -4.927485088523e0 -4.712251064655e0 -3.815266362762e0 1.541617975775e1 2.129343039071e1 3.083300309027e1 3.115037686451e1 3.543124377463e1 4.245927995177e1 4.599387878087e1 5.050721425100e1 5.400069680471e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149257184019e1 -6.755702026787e0 -6.490700194454e0 -4.454640529657e0 -4.378708626483e0 -3.907615386505e0 1.239866946244e1 2.030325055373e1 2.459148300654e1 3.348618405593e1 3.674788088071e1 4.353306164834e1 4.666508520568e1 4.939628055195e1 5.601867394762e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055177344854e1 -7.010035396041e0 -6.790773962290e0 -4.250364455901e0 -3.945086841613e0 -3.581290231377e0 1.005316597020e1 1.690266036637e1 1.824037034508e1 3.692086071873e1 3.892805475812e1 4.725225291625e1 4.772100301754e1 5.265953147977e1 6.125829411895e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 4.455798916239e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436083144826e0 -7.229714614020e0 -7.052615859922e0 -4.168581294132e0 -3.876508095382e0 -2.545966323177e0 8.262672684299e0 1.180856676815e1 1.530343220503e1 3.981234545795e1 4.153149972058e1 4.634918075070e1 4.927676228554e1 5.790610112908e1 8.407692273338e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.472178758974e0 -7.420003639009e0 -7.298777445331e0 -3.969586755064e0 -3.861938344917e0 -1.302913363399e0 6.826654528941e0 9.520933101767e0 1.060814329159e1 4.414784848534e1 4.459232153753e1 4.745476148908e1 4.952889639388e1 6.090647937423e1 1.174215720884e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.853006650996e0 -7.495001377273e0 -7.355179591349e0 -3.882831524669e0 -3.811426590186e0 3.220393668315e-1 5.585299017687e0 6.375409035293e0 9.015144418842e0 4.652216612227e1 4.724050709800e1 4.801567280642e1 5.205004935544e1 6.129277945610e1 1.331097841945e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.790442424270e0 -7.497002332238e0 -7.212928301173e0 -3.852004089001e0 -3.794636019845e0 1.980469538195e0 3.427644227795e0 5.779381020431e0 8.651023294342e0 4.688584827224e1 4.803375519082e1 4.841343899594e1 5.516998498846e1 5.956269331489e1 1.364591089789e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.855015628748e0 -7.489187752382e0 -7.354653771827e0 -3.884749740551e0 -3.812892312029e0 3.126488353953e-1 5.589178693355e0 6.378710861298e0 9.016209048761e0 4.652146268988e1 4.723925444551e1 4.801493788017e1 5.204178364514e1 6.130751690166e1 1.331144382880e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.473318015250e0 -7.413616757985e0 -7.295584889429e0 -3.974645646981e0 -3.863436462520e0 -1.313612749947e0 6.828958700465e0 9.523198708775e0 1.061152524941e1 4.414005832494e1 4.459164172797e1 4.745551727804e1 4.952734022746e1 6.092027422353e1 1.174306627741e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436901600656e0 -7.221939505204e0 -7.049720789040e0 -4.172300002654e0 -3.877913774810e0 -2.557972556752e0 8.264825276563e0 1.181118623607e1 1.530472923434e1 3.980723950390e1 4.152934153133e1 4.635019143771e1 4.927349406553e1 5.791456836055e1 8.408930579709e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037259988175e1 -6.933963470528e0 -6.741297846215e0 -4.490848583898e0 -3.887546802517e0 -3.499750187683e0 1.021605260599e1 1.443894213582e1 2.189508756242e1 3.512305746327e1 3.854777828645e1 4.481266715501e1 5.011613474040e1 5.347654051090e1 6.187324827455e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106515235800e1 -6.546014971419e0 -6.416830695967e0 -4.897609566932e0 -4.460446589436e0 -3.652364508830e0 1.278969162019e1 1.680055354316e1 2.941105085492e1 3.067775480046e1 3.572051586862e1 4.410120752912e1 5.131189799462e1 5.241995475716e1 5.587110426570e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142144340639e1 -6.130210587149e0 -6.124747215989e0 -5.316319244558e0 -5.006692875059e0 -3.596685872205e0 1.578538553489e1 1.770195266777e1 2.635656145339e1 3.365811351520e1 3.470095370070e1 4.433151298622e1 5.219756128937e1 5.340162296764e1 5.681499729962e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.142149464229e1 -6.135936593452e0 -6.129363995131e0 -5.311101346370e0 -5.000258784565e0 -3.596649076455e0 1.578412688942e1 1.770147682826e1 2.635848590846e1 3.365795285870e1 3.470277854906e1 4.433003221436e1 5.219701914556e1 5.339756085442e1 5.681722337834e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106526795043e1 -6.552589551084e0 -6.425581302142e0 -4.890035044980e0 -4.448445404858e0 -3.652684749477e0 1.278714472877e1 1.680038688683e1 2.941378348055e1 3.068009666185e1 3.572134581090e1 4.409824706214e1 5.131051072723e1 5.242442153302e1 5.586085276810e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037263869870e1 -6.940124365020e0 -6.749701843419e0 -4.483046723967e0 -3.879280026728e0 -3.495081339231e0 1.021315211883e1 1.443909890657e1 2.189455680855e1 3.512587381282e1 3.855136465517e1 4.481065140994e1 5.011527961830e1 5.347957786547e1 6.185682504819e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 3.564639132991e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436593780410e0 -7.227669512967e0 -7.056300830719e0 -4.165209661892e0 -3.875509338067e0 -2.547499011923e0 8.262066697396e0 1.181076334936e1 1.530186212220e1 3.981249323037e1 4.153285779599e1 4.634918876198e1 4.927257794356e1 5.790665898391e1 8.407728778685e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.491373789695e0 -7.402247891923e0 -7.140508531803e0 -4.085375610028e0 -3.822841788912e0 -1.241443668580e0 6.590785811591e0 7.790724288481e0 1.354997208138e1 4.220582486762e1 4.256972678628e1 4.661499217487e1 5.132411326521e1 6.041101551697e1 1.066113864422e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.857149045762e0 -7.492203383823e0 -7.355909104911e0 -3.879461267096e0 -3.811119455573e0 3.212338302301e-1 5.586299005937e0 6.378125542922e0 9.010804073092e0 4.652193822619e1 4.724885655712e1 4.801549578912e1 5.204083248965e1 6.129141574086e1 1.331090795484e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.526316918755e0 -7.521066062526e0 -7.437339187733e0 -3.787764889499e0 -3.786361766192e0 2.400880631875e0 5.085000760336e0 5.088201046759e0 6.088518644459e0 4.880226631339e1 4.880234214481e1 5.269349650945e1 5.270595473380e1 5.827290551354e1 1.544581107553e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.520003164150e0 -7.520003125421e0 -7.442579975108e0 -3.788287078809e0 -3.788285384788e0 2.393504749690e0 5.089258864267e0 5.089258891859e0 6.090862181671e0 4.880230414646e1 4.880230937429e1 5.269374702165e1 5.269374703076e1 5.828743472841e1 1.544601396880e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.855015619449e0 -7.489187838352e0 -7.354653734811e0 -3.884750923344e0 -3.812891066081e0 3.126488406687e-1 5.589178698498e0 6.378710834864e0 9.016209053099e0 4.652146644916e1 4.723925430918e1 4.801493412524e1 5.204178371363e1 6.130751691063e1 1.331144382828e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.490475514052e0 -7.397669208419e0 -7.135589334699e0 -4.092907433396e0 -3.826343896719e0 -1.250085911398e0 6.594804820142e0 7.790880776686e0 1.355360566693e1 4.220458575492e1 4.256242995366e1 4.661491370393e1 5.132568539848e1 6.042414200846e1 1.066206629631e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.230506773185e0 -7.206943949896e0 -6.839240238897e0 -4.423189866954e0 -3.819772599413e0 -2.427993485231e0 8.132283394356e0 9.841592536880e0 1.978551092074e1 3.659711576977e1 3.919678082106e1 4.499460755879e1 5.116221273011e1 5.714225226417e1 8.062250912827e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.881724960298e0 -6.894543777349e0 -6.481072320241e0 -4.861648540182e0 -3.959840024189e0 -3.205347436742e0 1.026473680637e1 1.210673327720e1 2.796543094706e1 3.066279462159e1 3.571614683045e1 4.361072493284e1 5.170324836066e1 5.614121438126e1 7.020762669167e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030374216912e1 -6.469412199485e0 -6.069135550208e0 -5.368564236252e0 -4.522819212762e0 -3.379798213788e0 1.299243417227e1 1.407496026324e1 2.520729821563e1 3.110940769238e1 3.525763242451e1 4.287516720965e1 5.254464522015e1 5.444913199857e1 7.361903902309e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.044803159692e1 -6.085616720639e0 -5.785861738060e0 -5.778769582661e0 -4.910768162152e0 -3.383360269974e0 1.496513032547e1 1.496737159771e1 2.221645420018e1 2.944881519973e1 3.765490311083e1 4.309039820071e1 5.295111681526e1 5.295869612870e1 7.544641835921e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030398809533e1 -6.476595754067e0 -6.077616553883e0 -5.360201545279e0 -4.511588215516e0 -3.380609859062e0 1.298885133617e1 1.407626295076e1 2.521003131958e1 3.110817091356e1 3.526122837198e1 4.287400986777e1 5.254376327561e1 5.443913094291e1 7.362306864391e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.882169604283e0 -6.901182135857e0 -6.489703998202e0 -4.852815171377e0 -3.947764688991e0 -3.204968510325e0 1.026039560241e1 1.210811499174e1 2.796777216636e1 3.066541942912e1 3.571583187043e1 4.360972089586e1 5.170174581897e1 5.613072671437e1 7.020759576960e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 2.673479349743e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231095546531e0 -7.212698609689e0 -6.846519588842e0 -4.414573437119e0 -3.813557484174e0 -2.421314117994e0 8.127828885735e0 9.842388153858e0 1.978448756411e1 3.659911890266e1 3.920057845713e1 4.499419894448e1 5.116046023867e1 5.713507106159e1 8.061172862163e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.485926419174e0 -7.318295254880e0 -6.842937721117e0 -4.274408853074e0 -3.805412480571e0 -1.050066177906e0 4.917059834226e0 8.023583773622e0 1.853915398001e1 3.659017257693e1 4.066188356783e1 4.433704173239e1 5.273482525534e1 6.051331923461e1 9.242670325333e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.118937283415e0 -7.435940066619e0 -7.010568918732e0 -4.001372715396e0 -3.822494630170e0 3.678042080012e-1 3.790282907644e0 6.607386469955e0 1.275634134411e1 4.205169155566e1 4.432395897404e1 4.653341277481e1 5.417241303317e1 6.165393737917e1 1.088490031187e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.794896977610e0 -7.499505683883e0 -7.210145110434e0 -3.847414987253e0 -3.793062532112e0 1.983757098297e0 3.428486982403e0 5.778750467971e0 8.645732621845e0 4.688644717466e1 4.804317483914e1 4.841315226871e1 5.516612334205e1 5.955155548048e1 1.364566792494e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.526316946590e0 -7.521066033013e0 -7.437339189074e0 -3.787766159465e0 -3.786360496408e0 2.400880631750e0 5.085000781078e0 5.088201025934e0 6.088518644486e0 4.880227030206e1 4.880233815603e1 5.269349651726e1 5.270595472637e1 5.827290551322e1 1.544581107552e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.790442472878e0 -7.497002347000e0 -7.212928273602e0 -3.852005296893e0 -3.794634748006e0 1.980469533193e0 3.427644228794e0 5.779381007406e0 8.651023294990e0 4.688585174265e1 4.803375556918e1 4.841343508980e1 5.516998496288e1 5.956269333808e1 1.364591089800e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115384832549e0 -7.431004017893e0 -7.010669317683e0 -4.008834812553e0 -3.826672384888e0 3.619120615785e-1 3.793138783552e0 6.608786687132e0 1.276020276032e1 4.204863746780e1 4.431962897354e1 4.653314442151e1 5.417406147899e1 6.166851035838e1 1.088534551830e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483444386867e0 -7.312290113873e0 -6.839436470934e0 -4.283271472741e0 -3.812404279111e0 -1.055150799725e0 4.920428329275e0 8.024879934366e0 1.854046954882e1 3.658840426457e1 4.065925435595e1 4.433622008346e1 5.273657777755e1 6.052452465115e1 9.243540018684e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886414848794e0 -7.149296033082e0 -6.583388302466e0 -4.655226088252e0 -3.789593171222e0 -2.122540278226e0 6.548201108696e0 9.860453568103e0 2.643743698977e1 3.060315030536e1 3.678048959578e1 4.254650153067e1 5.237711435593e1 5.928501575504e1 8.948305314262e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231677733334e0 -6.931775864166e0 -6.192009660021e0 -5.065160353468e0 -3.961435852324e0 -2.790207614635e0 8.663499728604e0 1.186530159884e1 2.463850531216e1 3.051427216090e1 3.413403582979e1 4.133822198444e1 5.242250430002e1 5.765980932337e1 8.778307602684e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430103262206e0 -6.720174328946e0 -5.752651645482e0 -5.402712983269e0 -4.380667594338e0 -2.996052943236e0 1.118263389435e1 1.294419728753e1 2.126347969528e1 2.538577966370e1 3.881398918210e1 4.109045155745e1 5.279845815317e1 5.474907103718e1 8.165203334518e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430401157910e0 -6.723103483764e0 -5.758338204607e0 -5.398084645688e0 -4.374071303880e0 -2.996834653812e0 1.118205705971e1 1.294361008116e1 2.126526766795e1 2.538408735301e1 3.881703611770e1 4.109067091533e1 5.279695655591e1 5.474334796397e1 8.165276385100e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232589840949e0 -6.937565362662e0 -6.199305229235e0 -5.057368558040e0 -3.949513950940e0 -2.791440184249e0 8.661510998305e0 1.186480025924e1 2.464041217176e1 3.051294290182e1 3.413801386944e1 4.133842833077e1 5.241977180938e1 5.764647161600e1 8.778574009154e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 1.782319566496e-1 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.888009830721e0 -7.155561692846e0 -6.589584064184e0 -4.646282110174e0 -3.779728640524e0 -2.120181190347e0 6.545233333620e0 9.859633558216e0 2.643982445598e1 3.060487371734e1 3.677996008278e1 4.254727288365e1 5.237475888557e1 5.927219940850e1 8.948038583971e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -9.802757615725e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.432941935368e0 -7.064961833070e0 -6.776225398583e0 -4.500568306591e0 -3.638824739274e0 -7.391679664647e-1 3.492047944029e0 8.969820945545e0 2.566691381805e1 3.010548449310e1 3.878283470528e1 4.097141004330e1 5.248888930367e1 6.362404176228e1 1.023850519842e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.306419481327e0 -7.279407508641e0 -6.808816860889e0 -4.199432111843e0 -3.801036300016e0 6.370186571106e-2 2.969391477732e0 7.573590919835e0 1.813797201228e1 3.633449323377e1 4.214799763590e1 4.321763560701e1 5.306297719800e1 6.345074621879e1 9.244037167390e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.118937321702e0 -7.435939985242e0 -7.010568919869e0 -4.001372122341e0 -3.822495271595e0 3.678041674187e-1 3.790282933165e0 6.607386477992e0 1.275634134593e1 4.205169115131e1 4.432395730549e1 4.653341499057e1 5.417241296154e1 6.165393736000e1 1.088490031213e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.857149055641e0 -7.492203296657e0 -7.355909141645e0 -3.879460085240e0 -3.811120701209e0 3.212338249089e-1 5.586299000508e0 6.378125569387e0 9.010804068720e0 4.652193446611e1 4.724885670066e1 4.801549953718e1 5.204083242181e1 6.129141573155e1 1.331090795534e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.853006650492e0 -7.495001377591e0 -7.355179590714e0 -3.882831588257e0 -3.811426526956e0 3.220393665356e-1 5.585299017478e0 6.375409035297e0 9.015144418809e0 4.652216612244e1 4.724050709812e1 4.801567280621e1 5.205004935560e1 6.129277945573e1 1.331097841941e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.114660346515e0 -7.433101645860e0 -7.011345455838e0 -4.008041801608e0 -3.826519953890e0 3.691176385080e-1 3.788112401432e0 6.608234684097e0 1.275981606508e1 4.204888461912e1 4.431956656698e1 4.653396088165e1 5.417961683712e1 6.166121465304e1 1.088501522678e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.302576862671e0 -7.273541182557e0 -6.808105177676e0 -4.208135164696e0 -3.808850006698e0 6.314784017481e-2 2.970482879012e0 7.575193017818e0 1.813919993246e1 3.633298885523e1 4.214459606625e1 4.321830039309e1 5.306656731895e1 6.346301129698e1 9.244272410621e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429632679058e0 -7.058100572694e0 -6.773660635765e0 -4.509632610095e0 -3.649335366100e0 -7.398804483866e-1 3.494541055449e0 8.971503312462e0 2.566436164836e1 3.010445664800e1 3.878354200475e1 4.097016662006e1 5.249309567955e1 6.363692496055e1 1.023875235308e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532544974220e0 -7.150333756163e0 -6.376088774160e0 -4.852944880086e0 -3.533662863253e0 -1.529753082473e0 4.853612082777e0 1.068103744212e1 2.309760196842e1 3.248443041469e1 3.379730833274e1 3.985064493923e1 5.226859071933e1 6.232797439352e1 1.005707632193e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.636132668150e0 -7.220646357675e0 -5.854091365288e0 -5.096885401693e0 -3.722537454498e0 -2.002427462201e0 6.875426958470e0 1.155692676712e1 1.934961879620e1 2.714847874103e1 3.833061205146e1 3.934857444198e1 5.219873851629e1 5.925560371631e1 8.086499054230e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.687648924987e0 -7.220023243774e0 -5.644822844013e0 -5.075783639411e0 -3.976317788707e0 -2.124931352370e0 9.366670392806e0 9.566966033655e0 2.125701387163e1 2.215998813168e1 3.877259941766e1 4.121157776556e1 5.394183424611e1 5.601389692362e1 7.548060272760e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.637388435949e0 -7.222948172591e0 -5.860961644235e0 -5.090759153395e0 -3.713651264182e0 -2.004024941293e0 6.874935402430e0 1.155571367550e1 1.935059102050e1 2.714705814548e1 3.833512688961e1 3.934920183731e1 5.219551193223e1 5.924573074324e1 8.086498869880e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 8.911597832478e-2 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534995626079e0 -7.154203511640e0 -6.382685076450e0 -4.844569383376e0 -3.522334008138e0 -1.530809093398e0 4.851847662968e0 1.067970161299e1 2.309854412946e1 3.248862514834e1 3.379670661817e1 3.985106386920e1 5.226347496919e1 6.231422695408e1 1.005710339905e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.069391739897e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.346331282236e0 -7.131199071471e0 -6.490747460278e0 -4.809740500232e0 -3.326179390787e0 -4.010641863029e-1 2.897036968778e0 1.027142862080e1 2.246099200301e1 3.237312631143e1 3.543562187650e1 3.890132359004e1 5.228610290115e1 6.469427302003e1 1.078817286612e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -9.802757615725e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.432942064898e0 -7.064961480480e0 -6.776225491360e0 -4.500568194044e0 -3.638824905382e0 -7.391681235942e-1 3.492048000181e0 8.969820943696e0 2.566691380956e1 3.010548400121e1 3.878283303072e1 4.097141233209e1 5.248888924221e1 6.362404175599e1 1.023850520591e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.485926541504e0 -7.318294994457e0 -6.842937726946e0 -4.274408223782e0 -3.805413194868e0 -1.050066314508e0 4.917059870534e0 8.023583780298e0 1.853915399675e1 3.659017127979e1 4.066188215005e1 4.433704481872e1 5.273482505187e1 6.051331921718e1 9.242670324143e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.491373831444e0 -7.402247706177e0 -7.140508567217e0 -4.085374563239e0 -3.822842967834e0 -1.241443715626e0 6.590785812253e0 7.790724317885e0 1.354997208925e1 4.220582143549e1 4.256972692247e1 4.661499584151e1 5.132411302092e1 6.041101554302e1 1.066113864384e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.472178722094e0 -7.420003699915e0 -7.298777356737e0 -3.969585641493e0 -3.861939562589e0 -1.302913362564e0 6.826654533530e0 9.520933140600e0 1.060814326534e1 4.414784858546e1 4.459231790912e1 4.745476525275e1 4.952889630101e1 6.090647933062e1 1.174215720881e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.488849101058e0 -7.403943687753e0 -7.137054029127e0 -4.090761570261e0 -3.825479779804e0 -1.239316687176e0 6.591154112517e0 7.788441039424e0 1.355261503688e1 4.220650551999e1 4.256349413947e1 4.661567658665e1 5.133275789891e1 6.041205313407e1 1.066115340975e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.482503503152e0 -7.316682252302e0 -6.839250762226e0 -4.282699896628e0 -3.812515408205e0 -1.046624553518e0 4.916178284832e0 8.024237355538e0 1.853993197272e1 3.658928780203e1 4.065917494498e1 4.433767407582e1 5.274133861681e1 6.051998419704e1 9.242634846745e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429329307878e0 -7.062824794301e0 -6.769926853477e0 -4.510075192607e0 -3.649639988041e0 -7.355605300545e-1 3.492141138874e0 8.971295697555e0 2.566407216549e1 3.010471510206e1 3.878287351242e1 4.097173515749e1 5.249435917715e1 6.363509641628e1 1.023842892420e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.342755318855e0 -7.129876132019e0 -6.482796364831e0 -4.818835874783e0 -3.337893870751e0 -3.983573141390e-1 2.898041927501e0 1.027300390493e1 2.246010016513e1 3.236802647857e1 3.543648378429e1 3.890170422645e1 5.229252105064e1 6.470686021235e1 1.078821453144e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.244674501605e0 -7.450096974564e0 -5.925817630991e0 -5.030335982867e0 -3.288502383225e0 -3.388725967708e-1 3.625961332979e0 1.083386934499e1 1.805069420574e1 3.096281402099e1 3.769840469726e1 3.771885119193e1 5.182833029062e1 6.336388538503e1 7.995501824479e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201075096154e0 -7.606886098475e0 -5.765890927868e0 -4.740554018683e0 -3.580371168638e0 -4.588523337676e-1 5.591797971477e0 8.370791355304e0 2.018598800686e1 2.540056053664e1 3.711410294446e1 4.066076691300e1 5.414115857048e1 6.004041561639e1 6.950436385078e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202271922399e0 -7.607137329668e0 -5.767075688423e0 -4.741186706337e0 -3.575116471898e0 -4.595372570123e-1 5.592563995700e0 8.369300067813e0 2.018726393802e1 2.539906176364e1 3.711401393697e1 4.066293822166e1 5.414314389199e1 6.003253368920e1 6.950378529509e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 0.000000000000e0 2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.247668339987e0 -7.450899721239e0 -5.932934537707e0 -5.023715424171e0 -3.278629229855e0 -3.406123736643e-1 3.625527799571e0 1.083221236725e1 1.805149909295e1 3.096169150711e1 3.770275255391e1 3.771983351134e1 5.182387408028e1 6.335189355043e1 7.995435490241e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 0.000000000000e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.170319501999e0 -7.946657616371e0 -5.034663263355e0 -4.688968213280e0 -3.352371585483e0 1.094827863077e0 4.342959205342e0 8.558685880524e0 1.643750339104e1 2.398207756810e1 3.324354199199e1 4.476667989785e1 5.246413437813e1 5.749707989977e1 6.110549348557e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202787231173e0 -7.608237261923e0 -5.775621969311e0 -4.731403033252e0 -3.570539975172e0 -4.622730056220e-1 5.591591889454e0 8.369577875668e0 2.018659022950e1 2.539946102444e1 3.711862721087e1 4.066256637136e1 5.413543764997e1 6.003266045115e1 6.950280352758e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.418928230326e0 -7.342177484355e0 -6.299194925998e0 -4.765099169252e0 -3.773643684148e0 -1.447580992095e0 7.074641293585e0 7.638050056599e0 2.647399753590e1 2.933989470849e1 3.299323996823e1 4.162006084108e1 5.418523718982e1 5.901621844784e1 9.384324140442e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.888010044114e0 -7.155561151275e0 -6.589584086119e0 -4.646281637417e0 -3.779729167273e0 -2.120181531259e0 6.545233331577e0 9.859633551921e0 2.643982444727e1 3.060487197365e1 3.677995929539e1 4.254727587941e1 5.237475865094e1 5.927219941175e1 8.948038592640e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.310494035860e0 -7.149802276024e0 -6.654179759927e0 -4.352973428906e0 -3.792076850228e0 -2.569032380275e0 6.098939606567e0 1.267597573498e1 1.999349420496e1 3.363528669660e1 3.876620251738e1 4.479698670897e1 5.117968482117e1 6.038558532768e1 8.107975901935e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.470513467522e0 -7.230749860593e0 -6.576577064186e0 -4.181444290093e0 -3.863801584711e0 -2.718435355575e0 5.934876179610e0 1.539334457335e1 1.611544017433e1 3.487413815386e1 3.806163599424e1 4.755565526718e1 5.018605349259e1 6.126036343598e1 8.148462761648e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309828764527e0 -7.150208623810e0 -6.650139808144e0 -4.356676572158e0 -3.798856914882e0 -2.563803207058e0 6.099534958318e0 1.267423814716e1 1.999329056119e1 3.363672781963e1 3.876708268032e1 4.479725687712e1 5.118135269697e1 6.038559947179e1 8.107943199511e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886795639085e0 -7.154857123217e0 -6.583420800461e0 -4.652924976397e0 -3.789213878294e0 -2.113977513846e0 6.546563925511e0 9.857956675981e0 2.643666442887e1 3.060649539212e1 3.678012932255e1 4.254949559451e1 5.237977133967e1 5.927225763510e1 8.948003137199e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 7.129278265982e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.417369302690e0 -7.340643523310e0 -6.290632120602e0 -4.774912284575e0 -3.783063777507e0 -1.442538446985e0 7.077113657037e0 7.636357977907e0 2.647408978734e1 2.933995327444e1 3.298814258207e1 4.162228991060e1 5.419435062966e1 5.901719511710e1 9.384361706281e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.020438049230e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201075096152e0 -7.606886098476e0 -5.765890927867e0 -4.740554018682e0 -3.580371168637e0 -4.588523337678e-1 5.591797971489e0 8.370791355285e0 2.018598800686e1 2.540056053592e1 3.711410294692e1 4.066076691340e1 5.414115857047e1 6.004041561784e1 6.950436384750e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 8.911597832478e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.169033723132e0 -7.945698357108e0 -5.026795130571e0 -4.693203161973e0 -3.362097330725e0 1.096415359484e0 4.342921106720e0 8.559991646521e0 1.643717826739e1 2.398296575180e1 3.324362951932e1 4.476007629169e1 5.245917801213e1 5.750447165938e1 6.111672658333e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 9.802757615725e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.173870385373e0 -8.158928169098e0 -4.949598393227e0 -4.022788862923e0 -3.456378808678e0 3.087841274935e0 3.847384860955e0 6.225379214946e0 1.857985812364e1 2.261622810088e1 2.715080038722e1 4.610603111556e1 5.211709672553e1 5.756108058866e1 6.043836959263e1</array>
+        </property>
+        <kpoint coords="-1.782319566496e-1 1.069391739897e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.173585403189e0 -8.160028244705e0 -4.949171766681e0 -4.029554072956e0 -3.447938416677e0 3.086351406695e0 3.849249121513e0 6.224127091259e0 1.858050121697e1 2.261493831994e1 2.715105129430e1 4.610677461533e1 5.212288875658e1 5.756286411651e1 6.042734647117e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 -8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264284139641e0 -7.973633780895e0 -4.934944091344e0 -4.277155927897e0 -3.558101533624e0 8.519082140379e-1 6.612580578963e0 6.648819945216e0 1.868329672842e1 1.896798091750e1 3.242110489203e1 4.637164998966e1 5.355027938935e1 5.663315012599e1 5.892612827456e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.394314847417e0 -7.622980925612e0 -5.032894736482e0 -4.845009704648e0 -3.787900729109e0 -1.011064566924e0 7.753276332050e0 9.367081517111e0 1.710583098740e1 1.974824895109e1 3.758875926638e1 4.495182781214e1 5.406210730594e1 5.698343149736e1 6.098579758860e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.688226497066e0 -7.221404851940e0 -5.654567480396e0 -5.066449947042e0 -3.969763825522e0 -2.127669346802e0 9.363737429335e0 9.569370010310e0 2.125751918097e1 2.215896016976e1 3.877885738809e1 4.120936704591e1 5.393293771920e1 5.601508023251e1 7.548006263510e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232590105113e0 -6.937564492808e0 -6.199305234959e0 -5.057368297756e0 -3.949514122811e0 -2.791440916136e0 8.661510907150e0 1.186480024061e1 2.464041041472e1 3.051294197885e1 3.413801414039e1 4.133843115384e1 5.241977167553e1 5.764647167041e1 8.778574024267e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.834208993162e0 -6.828952649606e0 -6.559950132140e0 -4.695356284842e0 -3.860441952888e0 -3.295403036490e0 8.038147482788e0 1.486107324626e1 2.707050911694e1 2.950407983246e1 3.632414841737e1 4.252737447052e1 5.150085022348e1 5.895468855842e1 7.003879085513e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020544248330e1 -7.023789814703e0 -6.467539150065e0 -4.350443199402e0 -3.861284348257e0 -3.609135385615e0 7.649200306734e0 1.819465849727e1 2.217282721983e1 3.074618371138e1 3.594869101889e1 4.625681039103e1 4.974757275953e1 5.662134445756e1 6.221645186051e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020532432269e1 -7.023935838562e0 -6.466112057120e0 -4.351997807696e0 -3.867477279140e0 -3.603038834581e0 7.649361534756e0 1.819403329223e1 2.217178073344e1 3.074822077029e1 3.594905978578e1 4.625639348680e1 4.974782429846e1 5.662144691550e1 6.221599229177e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833872955046e0 -6.830146665041e0 -6.555198225669e0 -4.698511909655e0 -3.868957174648e0 -3.288360325066e0 8.038673158258e0 1.485988478105e1 2.706755223279e1 2.950617475321e1 3.632576857076e1 4.252821250246e1 5.150250455808e1 5.895501557725e1 7.003716636695e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232095083892e0 -6.936596376417e0 -6.193549634604e0 -5.063200608502e0 -3.956492742295e0 -2.787014374691e0 8.662450557283e0 1.186373118901e1 2.464123317881e1 3.051223892256e1 3.413437366231e1 4.134139508528e1 5.242463165250e1 5.764605247011e1 8.778523267448e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.687648924986e0 -7.220023243773e0 -5.644822844012e0 -5.075783639406e0 -3.976317788707e0 -2.124931352367e0 9.366670392794e0 9.566966033646e0 2.125701387157e1 2.215998813148e1 3.877259941965e1 4.121157776651e1 5.394183424750e1 5.601389692476e1 7.548060272087e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.393803535475e0 -7.621854976101e0 -5.026322485091e0 -4.848188267380e0 -3.795443050304e0 -1.010043984589e0 7.753337016311e0 9.367806730802e0 1.710601101273e1 1.974849465041e1 3.758863805583e1 4.494648357176e1 5.406107561522e1 5.699149447133e1 6.098851829737e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264146587195e0 -7.972853406650e0 -4.936825367648e0 -4.270342995608e0 -3.564923689147e0 8.516153159019e-1 6.611885328078e0 6.650307830684e0 1.868493395454e1 1.896662502692e1 3.242131946870e1 4.637016639305e1 5.354628839651e1 5.662352372294e1 5.894383856221e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 9.802757615725e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.173871358772e0 -8.158927134158e0 -4.949598389648e0 -4.022788775595e0 -3.456378868410e0 3.087841125945e0 3.847384894948e0 6.225379194644e0 1.857985595746e1 2.261623114878e1 2.715079960759e1 4.610603110163e1 5.211709671679e1 5.756108063088e1 6.043836955618e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.169034006965e0 -7.945697905250e0 -5.026795161927e0 -4.693202984757e0 -3.362097380345e0 1.096415034464e0 4.342921139147e0 8.559991616302e0 1.643717659400e1 2.398296709225e1 3.324363006165e1 4.476007624689e1 5.245917807338e1 5.750447167647e1 6.111672654361e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.393804152603e0 -7.621853885368e0 -5.026322500106e0 -4.848188149751e0 -3.795443117033e0 -1.010044501500e0 7.753337020625e0 9.367806701978e0 1.710600964925e1 1.974849413861e1 3.758864010259e1 4.494648351481e1 5.406107571626e1 5.699149444079e1 6.098851851538e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.791950870018e0 -7.152047295838e0 -5.203474565865e0 -5.196057943269e0 -4.277415337970e0 -2.339793778746e0 1.085916038995e1 1.086118874606e1 1.867808369985e1 1.899321424186e1 3.995570366096e1 4.330516086690e1 5.390307541182e1 5.391170417395e1 7.055218035251e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430401426237e0 -6.723102317374e0 -5.758338156612e0 -5.398084581695e0 -4.374071357700e0 -2.996835605514e0 1.118205692426e1 1.294361008514e1 2.126526533530e1 2.538408710635e1 3.881703607148e1 4.109067396052e1 5.279695651121e1 5.474334800289e1 8.165276398380e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018270426497e1 -6.533755718106e0 -6.355110797196e0 -5.082722835044e0 -4.296896095371e0 -3.397470111629e0 1.053909004655e1 1.563616371027e1 2.538879379798e1 3.313102165228e1 3.385932420468e1 4.182646202268e1 5.190772893955e1 5.668063495676e1 7.205941714331e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076915275940e1 -6.759682990348e0 -6.441208185440e0 -4.612753988963e0 -4.216189897712e0 -3.730082244344e0 9.954212225760e0 1.901939320806e1 2.822691476566e1 2.905568982868e1 3.528936163818e1 4.434669755605e1 5.043794243411e1 5.192584262104e1 5.798383328089e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.098385004163e1 -6.900231125300e0 -6.402523251532e0 -4.347770995496e0 -4.184569323370e0 -3.931927267955e0 9.705727024994e0 2.196301701337e1 2.560765139752e1 2.806624913818e1 3.523614756552e1 4.580601315518e1 4.766443732959e1 4.952968390342e1 5.836954648807e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076915270465e1 -6.759683000701e0 -6.441208499396e0 -4.612754698932e0 -4.216189885127e0 -3.730081257600e0 9.954212279468e0 1.901939320192e1 2.822691607704e1 2.905568984906e1 3.528936176640e1 4.434669626324e1 5.043794197915e1 5.192584265007e1 5.798383327201e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018270413031e1 -6.533756430403e0 -6.355110821430e0 -5.082723275941e0 -4.296896067066e0 -3.397469081784e0 1.053909017834e1 1.563616370609e1 2.538879593789e1 3.313102242487e1 3.385932423606e1 4.182645874598e1 5.190772880546e1 5.668063493602e1 7.205941716975e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430401157909e0 -6.723103483762e0 -5.758338204613e0 -5.398084645674e0 -4.374071303883e0 -2.996834653810e0 1.118205705966e1 1.294361008115e1 2.126526766790e1 2.538408735290e1 3.881703611751e1 4.109067091780e1 5.279695655872e1 5.474334796406e1 8.165276384380e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.791950404531e0 -7.152048554409e0 -5.203474604903e0 -5.196057982687e0 -4.277415254896e0 -2.339793006457e0 1.085916040183e1 1.086118875803e1 1.867808676365e1 1.899321350669e1 3.995570117995e1 4.330516092950e1 5.390307539515e1 5.391170415775e1 7.055217997963e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.393803416809e0 -7.621855130503e0 -5.026322544516e0 -4.848188118741e0 -3.795443066974e0 -1.010044020262e0 7.753337072225e0 9.367806697919e0 1.710600936420e1 1.974849655353e1 3.758863777136e1 4.494648355547e1 5.406107573990e1 5.699149440112e1 6.098851824841e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.169033013830e0 -7.945699078025e0 -5.026795174359e0 -4.693202958300e0 -3.362097365603e0 1.096415261893e0 4.342921083941e0 8.559991614567e0 1.643717654315e1 2.398296886364e1 3.324362821158e1 4.476007625820e1 5.245917807189e1 5.750447163629e1 6.111672653245e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -2.673479349743e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.024073938806e0 -7.751021681468e0 -5.837881762303e0 -4.647741994003e0 -3.391014241970e0 1.265562482919e0 3.161447703938e0 7.985584836092e0 1.971475170263e1 2.862300732313e1 3.548206391647e1 4.002914227729e1 5.398482763068e1 6.236592736750e1 6.712758459941e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201137110363e0 -7.605365202994e0 -5.768127981320e0 -4.737747357983e0 -3.582139869352e0 -4.607089572190e-1 5.592914044100e0 8.370869955450e0 2.018623740036e1 2.540025876867e1 3.711574164657e1 4.065804146235e1 5.413895852466e1 6.004625013940e1 6.950471489223e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.687355344678e0 -7.217859048199e0 -5.647567981887e0 -5.071362517324e0 -3.980964939199e0 -2.126073116061e0 9.367184077781e0 9.567578476861e0 2.125514283010e1 2.216200979903e1 3.877484901568e1 4.120648996613e1 5.393358984152e1 5.602875867761e1 7.548067002098e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430103493409e0 -6.720173280916e0 -5.752651657197e0 -5.402712715520e0 -4.380667662439e0 -2.996053949569e0 1.118263382623e1 1.294419725881e1 2.126347668753e1 2.538578019642e1 3.881398912759e1 4.109045435682e1 5.279845832591e1 5.474907100085e1 8.165203345793e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030375549283e1 -6.475706785310e0 -6.068183172370e0 -5.368584078809e0 -4.516645323133e0 -3.378934073527e0 1.299187094623e1 1.407357023180e1 2.520958084504e1 3.110795991341e1 3.525913047824e1 4.287533700869e1 5.255162756294e1 5.443654263356e1 7.362099485323e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106511432322e1 -6.554872703000e0 -6.418952564962e0 -4.894214655759e0 -4.451408144459e0 -3.650804310811e0 1.278835241662e1 1.679884639342e1 2.941028485599e1 3.068146451145e1 3.572365888844e1 4.409873976345e1 5.131524082285e1 5.242242830547e1 5.585876628637e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149251745066e1 -6.755755814345e0 -6.489390760084e0 -4.457741191509e0 -4.378582720434e0 -3.906212634627e0 1.239900126925e1 2.030267751149e1 2.459024478055e1 3.348847069407e1 3.674817398029e1 4.353106103862e1 4.666447534007e1 4.939862231021e1 5.601820745988e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149257182166e1 -6.755702078561e0 -6.490700011363e0 -4.454640199652e0 -4.378708563801e0 -3.907615974750e0 1.239866939216e1 2.030325058319e1 2.459148308125e1 3.348618460622e1 3.674787816794e1 4.353306180857e1 4.666508643595e1 4.939628162036e1 5.601867383047e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106526793038e1 -6.552589588217e0 -6.425581257384e0 -4.890034966027e0 -4.448445407825e0 -3.652684874739e0 1.278714471118e1 1.680038688061e1 2.941378403311e1 3.068009604433e1 3.572134532618e1 4.409824718897e1 5.131051146310e1 5.242442139494e1 5.586085269904e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030398809533e1 -6.476595754065e0 -6.077616553882e0 -5.360201545277e0 -4.511588215516e0 -3.380609859061e0 1.298885133614e1 1.407626295073e1 2.521003131950e1 3.110817091338e1 3.526122837196e1 4.287400986826e1 5.254376327697e1 5.443913094391e1 7.362306864154e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430401195140e0 -6.723103363124e0 -5.758338144969e0 -5.398084852181e0 -4.374071289532e0 -2.996834598686e0 1.118205699297e1 1.294361011369e1 2.126526834275e1 2.538408657330e1 3.881703612611e1 4.109067116343e1 5.279695633465e1 5.474334804624e1 8.165276386406e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.687648925792e0 -7.220023242462e0 -5.644822842688e0 -5.075783642133e0 -3.976317788021e0 -2.124931352177e0 9.366670393333e0 9.566966033285e0 2.125701386934e1 2.215998813363e1 3.877259941942e1 4.121157776627e1 5.394183424795e1 5.601389692485e1 7.548060272088e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.020438049230e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201074691023e0 -7.606886600745e0 -5.765890902186e0 -4.740553818214e0 -3.580371217407e0 -4.588524182417e-1 5.591797977122e0 8.370791299658e0 2.018598626750e1 2.540056314647e1 3.711410238843e1 4.066076668576e1 5.414115868945e1 6.004041556612e1 6.950436371404e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -3.564639132991e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.946805810755e0 -7.474429882866e0 -6.574205923455e0 -4.501106489340e0 -3.672918096449e0 4.484973318512e-1 3.915834347142e0 6.644768712513e0 2.650127946132e1 3.150949461021e1 3.238388290510e1 4.104006543499e1 5.525208221158e1 6.161933747940e1 9.740265605486e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947281906503e0 -7.471667882750e0 -6.576288895312e0 -4.499865249853e0 -3.673774460027e0 4.449935681798e-1 3.918317141063e0 6.644921240324e0 2.650098951838e1 3.150763033954e1 3.238614935975e1 4.103864422786e1 5.524860586956e1 6.162648333141e1 9.740299608716e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.417093189143e0 -7.336882826752e0 -6.292923100051e0 -4.773022757471e0 -3.785346134911e0 -1.447346859636e0 7.079199908357e0 7.637040420198e0 2.647167349435e1 2.934135680000e1 3.298939933653e1 4.161869956449e1 5.418633478028e1 5.903473201231e1 9.384323822121e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231677894101e0 -6.931775203969e0 -6.192009721479e0 -5.065159782788e0 -3.961436063137e0 -2.790208474696e0 8.663499683694e0 1.186530152311e1 2.463850274193e1 3.051427229097e1 3.413403618196e1 4.133822429063e1 5.242250454398e1 5.765980928859e1 8.778307611802e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018236716976e1 -6.529195563354e0 -6.348565734304e0 -5.089369268054e0 -4.305119675650e0 -3.396853316886e0 1.054027117756e1 1.563715125994e1 2.538631137024e1 3.313190946866e1 3.385627388937e1 4.182820140204e1 5.190965635812e1 5.668854505208e1 7.205547174014e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106501333235e1 -6.550931891820e0 -6.418055640053e0 -4.897335262647e0 -4.454228797462e0 -3.651041658248e0 1.278890109554e1 1.679931857627e1 2.941083238213e1 3.067826889644e1 3.572361737025e1 4.410013840267e1 5.131633383408e1 5.242075877908e1 5.586187485722e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166662803055e1 -6.619091505597e0 -6.615212646762e0 -4.524947014704e0 -4.423796972873e0 -3.870561427259e0 1.484210127094e1 1.742090703550e1 2.459584519033e1 3.569453648641e1 3.793166025118e1 4.303334304098e1 4.669382261448e1 4.976575150956e1 5.473281441772e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187674939947e1 -6.718561197472e0 -6.630786181759e0 -4.398921900275e0 -4.262844982825e0 -4.052156856211e0 1.540069428177e1 1.921715751962e1 2.103854420358e1 3.864924255564e1 3.871987569577e1 4.154873299138e1 4.719465577949e1 4.813196949100e1 5.444630406188e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166676874285e1 -6.623844331030e0 -6.614546971051e0 -4.520314777461e0 -4.421226070483e0 -3.872495436432e0 1.483925010399e1 1.742422266862e1 2.459682617877e1 3.569374815194e1 3.793010820321e1 4.303805346153e1 4.669409678945e1 4.975894143457e1 5.473374967892e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106526795043e1 -6.552589551079e0 -6.425581302145e0 -4.890035044981e0 -4.448445404857e0 -3.652684749476e0 1.278714472877e1 1.680038688678e1 2.941378348100e1 3.068009666165e1 3.572134581085e1 4.409824706049e1 5.131051072682e1 5.242442153319e1 5.586085276920e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018270419414e1 -6.533756297148e0 -6.355110774121e0 -5.082723575324e0 -4.296896039915e0 -3.397468897337e0 1.053909014876e1 1.563616374059e1 2.538879623042e1 3.313102235732e1 3.385932425242e1 4.182645898958e1 5.190772815839e1 5.668063501017e1 7.205941716427e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232095187639e0 -6.936596165690e0 -6.193549577345e0 -5.063200922245e0 -3.956492701248e0 -2.787014247759e0 8.662450511697e0 1.186373124600e1 2.464123399199e1 3.051223786857e1 3.413437358097e1 4.134139560258e1 5.242463127154e1 5.764605256405e1 8.778523273358e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 7.129278265982e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.417369304402e0 -7.340643521474e0 -6.290632119166e0 -4.774912287258e0 -3.783063776668e0 -1.442538446767e0 7.077113657470e0 7.636357977694e0 2.647408978573e1 2.933995327620e1 3.298814258182e1 4.162228991015e1 5.419435062992e1 5.901719511741e1 9.384361706281e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -4.455798916239e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.103967418170e0 -7.404325240076e0 -6.789669342043e0 -4.427819814200e0 -3.829385621513e0 -3.962368132808e-1 5.128486651025e0 6.162537814941e0 2.563946187048e1 3.266195272061e1 3.659402820607e1 4.272897310989e1 5.499908129617e1 5.962549409570e1 9.543780204123e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.801213377107e0 -7.233165178697e0 -7.174362896225e0 -4.261165143378e0 -3.884140779719e0 1.245947292385e0 3.050383064487e0 5.460978457339e0 2.537025096140e1 3.339123207802e1 3.671723474060e1 4.253650507705e1 5.614120697533e1 6.130517430699e1 9.305783702385e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.104035230953e0 -7.399667858893e0 -6.792100868076e0 -4.427891002348e0 -3.829747694753e0 -4.032011924803e-1 5.131841050751e0 6.163782581906e0 2.563990876924e1 3.265970181454e1 3.659534422315e1 4.272599447031e1 5.499083870601e1 5.963947917517e1 9.544142665786e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886414915416e0 -7.149295648119e0 -6.583388419214e0 -4.655225287606e0 -3.789593859323e0 -2.122540711192e0 6.548201124988e0 9.860453534130e0 2.643743703678e1 3.060314742114e1 3.678049019052e1 4.254650406162e1 5.237711448297e1 5.928501569506e1 8.948305315542e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833541745955e0 -6.822157577644e0 -6.553363921408e0 -4.703231930761e0 -3.872148998789e0 -3.295312818678e0 8.040184327470e0 1.486184133104e1 2.706805903296e1 2.950216227185e1 3.632339018779e1 4.253018570838e1 5.150227770328e1 5.896408850621e1 7.003874974703e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076886592271e1 -6.753089392161e0 -6.436467022742e0 -4.619246565348e0 -4.224888394503e0 -3.730163838696e0 9.955514954947e0 1.902079107227e1 2.822441169633e1 2.905293541482e1 3.528891391049e1 4.434962502788e1 5.043563913101e1 5.192661612070e1 5.799275083454e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149236603624e1 -6.749844910278e0 -6.488855476954e0 -4.460926363029e0 -4.383843472266e0 -3.906398908766e0 1.239988691307e1 2.030309066510e1 2.458957872446e1 3.348443421316e1 3.674862257865e1 4.352790342059e1 4.666728986487e1 4.940207355598e1 5.602231192871e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187667477274e1 -6.713386909291e0 -6.633470734206e0 -4.399884111623e0 -4.267265283133e0 -4.050122896333e0 1.540219682697e1 1.921388022028e1 2.104022416700e1 3.864580444225e1 3.872278768661e1 4.154565090429e1 4.719191320631e1 4.813951903896e1 5.444677335125e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.187674940011e1 -6.718561127715e0 -6.630786330687e0 -4.398921892438e0 -4.262846129189e0 -4.052155618421e0 1.540069446622e1 1.921715729739e1 2.103854426390e1 3.864924148977e1 3.871987817383e1 4.154873314606e1 4.719465324442e1 4.813197024451e1 5.444630413200e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149257184019e1 -6.755702026786e0 -6.490700194456e0 -4.454640529657e0 -4.378708626482e0 -3.907615386505e0 1.239866946244e1 2.030325055371e1 2.459148300659e1 3.348618405608e1 3.674788088081e1 4.353306164771e1 4.666508520509e1 4.939628055163e1 5.601867394820e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076915276306e1 -6.759682960548e0 -6.441208574903e0 -4.612754979664e0 -4.216189849922e0 -3.730080855235e0 9.954212279720e0 1.901939324373e1 2.822691566629e1 2.905568986742e1 3.528936422293e1 4.434669486798e1 5.043794120159e1 5.192584241814e1 5.798383333978e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833873068840e0 -6.830146590501e0 -6.555198118706e0 -4.698512285523e0 -3.868957077189e0 -3.288360058900e0 8.038673131000e0 1.485988481535e1 2.706755202943e1 2.950617553078e1 3.632576930348e1 4.252821162636e1 5.150250384586e1 5.895501566368e1 7.003716639946e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 6.238118482734e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886795786565e0 -7.154856966755e0 -6.583420704896e0 -4.652925303435e0 -3.789213715014e0 -2.113977424850e0 6.546563907788e0 9.857956703640e0 2.643666437339e1 3.060649653377e1 3.678012793672e1 4.254949606082e1 5.237977097781e1 5.927225770088e1 8.948003144023e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -5.346958699487e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483787934715e0 -7.318356792102e0 -6.837837556027e0 -4.280284913830e0 -3.813487720730e0 -1.045213195712e0 4.918378764294e0 8.021240667692e0 1.853973672248e1 3.659092673749e1 4.066021941140e1 4.433797626818e1 5.274108306018e1 6.051357794151e1 9.242777086447e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.919042982601e0 -7.377538252120e0 -7.086155765266e0 -4.120312338238e0 -3.911965631888e0 9.471243760340e-1 3.607653679447e0 5.137138787389e0 1.785004337859e1 3.916492353270e1 4.088814061926e1 4.343166101158e1 5.647849563552e1 6.005994032178e1 8.712007986373e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.919300295105e0 -7.372449664940e0 -7.089561553802e0 -4.121873678397e0 -3.910940780941e0 9.398365907047e-1 3.612137027493e0 5.138617680547e0 1.785032112406e1 3.916328468156e1 4.088983516749e1 4.342976309259e1 5.646948527095e1 6.007115971693e1 8.712300891733e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483444361378e0 -7.312289907049e0 -6.839436597165e0 -4.283270472176e0 -3.812405338655e0 -1.055150976020e0 4.920428376303e0 8.024879941809e0 1.854046956170e1 3.658840143926e1 4.065925409213e1 4.433622343317e1 5.273657783266e1 6.052452459100e1 9.243540015764e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309470529753e0 -7.143168695222e0 -6.648723982769e0 -4.361092945311e0 -3.797899779627e0 -2.575857927258e0 6.101432772484e0 1.267686951853e1 1.999424319818e1 3.363263939863e1 3.876457800290e1 4.479835901353e1 5.117958607854e1 6.039336582369e1 8.108943519356e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020501384570e1 -7.016999303978e0 -6.461282747352e0 -4.357673119191e0 -3.866426469364e0 -3.616085273993e0 7.650993932450e0 1.819577564755e1 2.217240780036e1 3.074259440681e1 3.594895697875e1 4.625745848199e1 4.974609729727e1 5.661880926112e1 6.223373994111e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.098358719218e1 -6.893651861499e0 -6.397730250870e0 -4.354531093746e0 -4.193339574817e0 -3.931981420961e0 9.706987702183e0 2.196626329813e1 2.560336135903e1 2.806363773111e1 3.523644522384e1 4.580055385782e1 4.766432097718e1 4.953674664997e1 5.837877368951e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149236602057e1 -6.749844933461e0 -6.488855560173e0 -4.460927074218e0 -4.383843509875e0 -3.906398060493e0 1.239988696620e1 2.030309073776e1 2.458957867180e1 3.348443541516e1 3.674862225949e1 4.352790358061e1 4.666728828634e1 4.940207393588e1 5.602231188604e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.166662801609e1 -6.619091551930e0 -6.615212764104e0 -4.524948096247e0 -4.423796950305e0 -3.870560195575e0 1.484210152630e1 1.742090698241e1 2.459584507427e1 3.569453925967e1 3.793165976143e1 4.303334285279e1 4.669381973673e1 4.976575206072e1 5.473281431752e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.149251745350e1 -6.755755785428e0 -6.489391027458e0 -4.457742208796e0 -4.378582846012e0 -3.906211196015e0 1.239900139269e1 2.030267755452e1 2.459024465342e1 3.348847134723e1 3.674817637204e1 4.353106103828e1 4.666447253158e1 4.939862162060e1 5.601820753498e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.098385008018e1 -6.900231090388e0 -6.402523523922e0 -4.347771956913e0 -4.184569281352e0 -3.931925984636e0 9.705727039882e0 2.196301706979e1 2.560765141002e1 2.806624867702e1 3.523615103047e1 4.580601312832e1 4.766443386521e1 4.952968387255e1 5.836954655031e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020532441312e1 -7.023935794786e0 -6.466112179968e0 -4.351998323094e0 -3.867476647053e0 -3.603038684990e0 7.649361501428e0 1.819403330195e1 2.217178068238e1 3.074822066394e1 3.594906286786e1 4.625639097283e1 4.974782348237e1 5.662144692602e1 6.221599239573e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 5.346958699487e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309828906186e0 -7.150208570280e0 -6.650139745585e0 -4.356676992404e0 -3.798856470704e0 -2.563803131916e0 6.099534926968e0 1.267423815479e1 1.999329056371e1 3.363672856371e1 3.876708431074e1 4.479725478243e1 5.118135210671e1 6.038559955943e1 8.107943203789e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -6.238118482734e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.722531228072e0 -7.373395585369e0 -6.767706285378e0 -4.093763214682e0 -3.820435233451e0 -1.416497897699e0 4.672871471569e0 1.057558803999e1 1.385986281707e1 3.869271746212e1 4.139679208463e1 4.713558813750e1 5.188562043225e1 6.263401140542e1 1.062367764875e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115670735522e0 -7.437389789221e0 -7.007362190381e0 -4.005123067806e0 -3.828175609169e0 3.709431273541e-1 3.791133074537e0 6.604015454357e0 1.275941999862e1 4.205012972023e1 4.432165798939e1 4.653349683159e1 5.418021101564e1 6.165450542552e1 1.088507373113e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.870200953130e0 -7.291655719403e0 -7.285013447062e0 -3.904920460750e0 -3.901949071071e0 2.537935945939e0 2.544852663842e0 4.654289408735e0 1.242521949593e1 4.492673959145e1 4.492786620243e1 4.502019698485e1 5.826511269766e1 5.827855411330e1 1.058782932059e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115384767189e0 -7.431003931591e0 -7.010669395476e0 -4.008833599842e0 -3.826673709824e0 3.619120099433e-1 3.793138821136e0 6.608786705223e0 1.276020276139e1 4.204863530334e1 4.431962706819e1 4.653314866250e1 5.417406149332e1 6.166851032235e1 1.088534551730e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.721830048213e0 -7.366951681489e0 -6.767587858725e0 -4.098767510990e0 -3.820028670395e0 -1.427397808266e0 4.675017814719e0 1.057922209097e1 1.386125304986e1 3.868835869712e1 4.139548245070e1 4.713618544296e1 5.188291569460e1 6.264662166192e1 1.062440987553e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.469950956446e0 -7.224064960538e0 -6.572562550015e0 -4.187955573159e0 -3.864625406636e0 -2.729888466413e0 5.936992320749e0 1.539356677063e1 1.611841390526e1 3.486827155976e1 3.806262029964e1 4.755632508692e1 5.018441505927e1 6.126812372875e1 8.149572355488e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020501380951e1 -7.016999320974e0 -6.461282902544e0 -4.357673657537e0 -3.866425858035e0 -3.616085189112e0 7.650993935268e0 1.819577570116e1 2.217240777116e1 3.074259487024e1 3.594895704271e1 4.625745821467e1 4.974609692252e1 5.661880926568e1 6.223373992027e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076886586806e1 -6.753089402585e0 -6.436467336116e0 -4.619247273008e0 -4.224888381968e0 -3.730162854585e0 9.955515008600e0 1.902079106626e1 2.822441300734e1 2.905293543525e1 3.528891403941e1 4.434962373449e1 5.043563867736e1 5.192661615085e1 5.799275082377e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106501327905e1 -6.550932129624e0 -6.418055745148e0 -4.897336148171e0 -4.454228750234e0 -3.651040517053e0 1.278890126654e1 1.679931861761e1 2.941083357629e1 3.067827020880e1 3.572361734164e1 4.410013563376e1 5.131633407686e1 5.242075833264e1 5.586187480962e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.106511428993e1 -6.554872898507e0 -6.418952721459e0 -4.894215617686e0 -4.451408095629e0 -3.650803044110e0 1.278835260529e1 1.679884644082e1 2.941028549843e1 3.068146644175e1 3.572365934343e1 4.409873686614e1 5.131524032786e1 5.242242799869e1 5.585876630910e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.076915276306e1 -6.759682960550e0 -6.441208574899e0 -4.612754979663e0 -4.216189849924e0 -3.730080855235e0 9.954212279718e0 1.901939324383e1 2.822691566575e1 2.905568986750e1 3.528936422300e1 4.434669486945e1 5.043794120124e1 5.192584241969e1 5.798383333795e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020544253741e1 -7.023789788375e0 -6.467539427408e0 -4.350444262143e0 -3.861283069797e0 -3.609135177587e0 7.649200276243e0 1.819465856049e1 2.217282713958e1 3.074618406875e1 3.594869416393e1 4.625680761200e1 4.974757156735e1 5.662134447261e1 6.221645194347e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 4.455798916239e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.470513575463e0 -7.230749818497e0 -6.576577198588e0 -4.181445261399e0 -3.863800314921e0 -2.718435340383e0 5.934876131535e0 1.539334450042e1 1.611544025615e1 3.487413808065e1 3.806163946900e1 4.755565147207e1 5.018605347161e1 6.126036352240e1 8.148462765067e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -7.129278265982e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.723299112238e0 -7.373110611403e0 -6.769806488556e0 -4.091554814608e0 -3.817233988758e0 -1.418678769079e0 4.672461352251e0 1.057805764927e1 1.385776517082e1 3.869341716020e1 4.139623072610e1 4.713555965690e1 5.188355384607e1 6.263394001179e1 1.062360841489e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.178612449145e0 -7.505269095614e0 -6.951163491365e0 -3.936795688382e0 -3.798487299854e0 1.404598227214e-1 3.734684439504e0 8.998645796590e0 9.511013739695e0 4.382267644167e1 4.437285747246e1 4.839207783878e1 5.339089611998e1 6.249689182082e1 1.262927566821e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.790364643354e0 -7.503100444505e0 -7.208726843962e0 -3.848740316765e0 -3.795893786842e0 1.985342628443e0 3.428435727079e0 5.774209536552e0 8.650410579502e0 4.688584356326e1 4.803794031420e1 4.841310049814e1 5.517427165709e1 5.955178617273e1 1.364581089321e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.790442424287e0 -7.497002332236e0 -7.212928301154e0 -3.852004089001e0 -3.794636019846e0 1.980469538176e0 3.427644227819e0 5.779381020422e0 8.651023294342e0 4.688584827268e1 4.803375519177e1 4.841343899592e1 5.516998498575e1 5.956269331668e1 1.364591089689e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.177019243356e0 -7.499599975340e0 -6.952713867749e0 -3.942242085428e0 -3.799061166066e0 1.322089446377e-1 3.736548960523e0 9.000553614363e0 9.515311425979e0 4.381534403516e1 4.437352629556e1 4.839256616729e1 5.338916563500e1 6.251163106646e1 1.262964463053e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.721830012172e0 -7.366951721552e0 -6.767587914710e0 -4.098767986797e0 -3.820028132879e0 -1.427397777586e0 4.675017800908e0 1.057922209381e1 1.386125303887e1 3.868835896948e1 4.139548286510e1 4.713618477803e1 5.188291561563e1 6.264662165991e1 1.062440987609e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309470442448e0 -7.143168806562e0 -6.648724152294e0 -4.361093548509e0 -3.797899046935e0 -2.575857805451e0 6.101432759307e0 1.267686954559e1 1.999424316018e1 3.363264019481e1 3.876457875049e1 4.479835746281e1 5.117958594123e1 6.039336580968e1 8.108943520099e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833541621171e0 -6.822157832426e0 -6.553364187333e0 -4.703232431598e0 -3.872148678111e0 -3.295312193866e0 8.040184362013e0 1.486184136844e1 2.706805965444e1 2.950216300661e1 3.632339115007e1 4.253018327985e1 5.150227751767e1 5.896408847979e1 7.003874973165e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018236703532e1 -6.529196276104e0 -6.348565758713e0 -5.089369707237e0 -4.305119647176e0 -3.396852288039e0 1.054027130922e1 1.563715125590e1 2.538631351028e1 3.313191024117e1 3.385627392077e1 4.182819812436e1 5.190965622551e1 5.668854502823e1 7.205547176994e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.030375537772e1 -6.475707486297e0 -6.068183171663e0 -5.368584684549e0 -4.516645253741e0 -3.378932948227e0 1.299187117427e1 1.407357023538e1 2.520958378474e1 3.110795983868e1 3.525913042185e1 4.287533361284e1 5.255162766583e1 5.443654246298e1 7.362099489022e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.018270419414e1 -6.533756297144e0 -6.355110774128e0 -5.082723575321e0 -4.296896039918e0 -3.397468897338e0 1.053909014875e1 1.563616374070e1 2.538879623014e1 3.313102235807e1 3.385932425245e1 4.182645898872e1 5.190772815921e1 5.668063500718e1 7.205941716692e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.834208981758e0 -6.828952831381e0 -6.559950289534e0 -4.695357165342e0 -3.860441527929e0 -3.295402149047e0 8.038147490134e0 1.486107331786e1 2.707050953484e1 2.950408134390e1 3.632415011446e1 4.252737116659e1 5.150084932424e1 5.895468861843e1 7.003879087130e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 3.564639132991e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.310494089678e0 -7.149802335605e0 -6.654179865486e0 -4.352974459836e0 -3.792075660982e0 -2.569032188436e0 6.098939562056e0 1.267597576963e1 1.999349416949e1 3.363528823658e1 3.876620489562e1 4.479698306502e1 5.117968409246e1 6.038558540123e1 8.107975906879e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.020438049230e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.485926567029e0 -7.318295202450e0 -6.842937600460e0 -4.274409223621e0 -3.805412133973e0 -1.050066139700e0 4.917059823935e0 8.023583772867e0 1.853915398390e1 3.659017410659e1 4.066188241041e1 4.433704147144e1 5.273482499609e1 6.051331927783e1 9.242670327034e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.118937386929e0 -7.435940073419e0 -7.010568841047e0 -4.001373334030e0 -3.822493947070e0 3.678042187266e-1 3.790282896029e0 6.607386459949e0 1.275634134490e1 4.205169332196e1 4.432395920312e1 4.653341075123e1 5.417241294680e1 6.165393739664e1 1.088490031311e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.794897025542e0 -7.499505700952e0 -7.210145081929e0 -3.847416181325e0 -3.793061273806e0 1.983757093393e0 3.428486983729e0 5.778750454974e0 8.645732622520e0 4.688645064872e1 4.804317521517e1 4.841314835969e1 5.516612331894e1 5.955155550249e1 1.364566792606e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.526316918769e0 -7.521066062511e0 -7.437339187734e0 -3.787764889499e0 -3.786361766192e0 2.400880631875e0 5.085000760357e0 5.088201046738e0 6.088518644459e0 4.880226631341e1 4.880234214480e1 5.269349651145e1 5.270595473180e1 5.827290551355e1 1.544581107554e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.790442424364e0 -7.497002331254e0 -7.212928301824e0 -3.852004116187e0 -3.794635992736e0 1.980469538107e0 3.427644227732e0 5.779381020386e0 8.651023294352e0 4.688584827549e1 4.803375518351e1 4.841343900147e1 5.516998498553e1 5.956269331675e1 1.364591089690e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115384729065e0 -7.431004011808e0 -7.010669394693e0 -4.008834197930e0 -3.826673063988e0 3.619120507491e-1 3.793138795418e0 6.608786697089e0 1.276020275955e1 4.204863570704e1 4.431962873626e1 4.653314644755e1 5.417406156524e1 6.166851034144e1 1.088534551706e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483444239383e0 -7.312290166712e0 -6.839436590996e0 -4.283271103271e0 -3.812404624245e0 -1.055150838264e0 4.920428339828e0 8.024879935015e0 1.854046954495e1 3.658840273635e1 4.065925551037e1 4.433622034575e1 5.273657803670e1 6.052452460850e1 9.243540016978e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886414702479e0 -7.149296189574e0 -6.583388396738e0 -4.655225760291e0 -3.789593335483e0 -2.122540367458e0 6.548201126857e0 9.860453540358e0 2.643743704545e1 3.060314916492e1 3.678049097874e1 4.254650106483e1 5.237711471810e1 5.928501569076e1 8.948305307219e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231677630335e0 -6.931776075287e0 -6.192009715594e0 -5.065160040484e0 -3.961435892857e0 -2.790207741979e0 8.663499774583e0 1.186530154175e1 2.463850449973e1 3.051427321349e1 3.413403591123e1 4.133822146685e1 5.242250467972e1 5.765980923206e1 8.778307596799e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430103225335e0 -6.720174449393e0 -5.752651705651e0 -5.402712776648e0 -4.380667608176e0 -2.996052998341e0 1.118263396137e1 1.294419725493e1 2.126347902055e1 2.538578044292e1 3.881398917355e1 4.109045131162e1 5.279845837416e1 5.474907095856e1 8.165203332529e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.430401195141e0 -6.723103363123e0 -5.758338144981e0 -5.398084852175e0 -4.374071289534e0 -2.996834598687e0 1.118205699296e1 1.294361011377e1 2.126526834273e1 2.538408657360e1 3.881703612606e1 4.109067116090e1 5.279695633510e1 5.474334804294e1 8.165276387093e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232589944348e0 -6.937565152154e0 -6.199305174333e0 -5.057368869583e0 -3.949513910331e0 -2.791440056800e0 8.661510952629e0 1.186480031615e1 2.464041298488e1 3.051294184802e1 3.413801378848e1 4.133842884811e1 5.241977142958e1 5.764647170781e1 8.778574015048e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 2.673479349743e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.888009977487e0 -7.155561536721e0 -6.589583970037e0 -4.646282437708e0 -3.779728475289e0 -2.120181101668e0 6.545233315746e0 9.859633585804e0 2.643982440029e1 3.060487485864e1 3.677995869863e1 4.254727334962e1 5.237475852326e1 5.927219947335e1 8.948038591018e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.107146722145e0 -7.405359130645e0 -6.796339729742e0 -4.418560477631e0 -3.819628353516e0 -4.012932455986e-1 5.126766044964e0 6.163780964446e0 2.564227112565e1 3.266139568684e1 3.659409902284e1 4.272837072674e1 5.498959603187e1 5.962377598187e1 9.543760696518e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.924278246032e0 -7.377638712068e0 -7.090158959955e0 -4.112587122386e0 -3.903381256218e0 9.430817708484e-1 3.607086737819e0 5.138296477835e0 1.784885532222e1 3.916422910606e1 4.088993149046e1 4.343411781369e1 5.646839962136e1 6.005651928678e1 8.711902359374e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.876175181810e0 -7.288796931621e0 -7.288796744212e0 -3.897657795979e0 -3.897656347193e0 2.540837658238e0 2.540837713372e0 4.655221700886e0 1.242149715765e1 4.492707350818e1 4.492707849460e1 4.502799671758e1 5.826441347823e1 5.826441351603e1 1.058760432009e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.794896977593e0 -7.499505683885e0 -7.210145110453e0 -3.847414987253e0 -3.793062532112e0 1.983757098316e0 3.428486982378e0 5.778750467979e0 8.645732621844e0 4.688644717422e1 4.804317483819e1 4.841315226872e1 5.516612334476e1 5.955155547869e1 1.364566792594e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.790364593868e0 -7.503100429353e0 -7.208726871838e0 -3.848739122339e0 -3.795895045526e0 1.985342633094e0 3.428435725696e0 5.774209549596e0 8.650410578822e0 4.688584009308e1 4.803793993317e1 4.841310440704e1 5.517427168264e1 5.955178614902e1 1.364581089308e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.870200953029e0 -7.291655579964e0 -7.285013586255e0 -3.904921548338e0 -3.901947983467e0 2.537935987338e0 2.544852621984e0 4.654289408779e0 1.242521949591e1 4.492674332676e1 4.492786246750e1 4.502019698439e1 5.826511272541e1 5.827855408550e1 1.058782932060e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.919300250752e0 -7.372449981338e0 -7.089561310959e0 -4.121874529149e0 -3.910939918044e0 9.398367178558e-1 3.612136950641e0 5.138617672337e0 1.785032112160e1 3.916328814732e1 4.088983282171e1 4.342976178232e1 5.646948538290e1 6.007115970358e1 8.712300892515e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.104035011873e0 -7.399668392379e0 -6.792100654466e0 -4.427891621997e0 -3.829747111272e0 -4.032009274582e-1 5.131840997742e0 6.163782569734e0 2.563990875444e1 3.265970501325e1 3.659534196027e1 4.272599322341e1 5.499083886570e1 5.963947917689e1 9.544142661684e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.417092818073e0 -7.336883625580e0 -6.292922970921e0 -4.773023151527e0 -3.785345818939e0 -1.447346394812e0 7.079199949982e0 7.637040397568e0 2.647167649497e1 2.934135578314e1 3.298939878306e1 4.161869785005e1 5.418633490596e1 5.903473202509e1 9.384323794995e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.687354900030e0 -7.217860145677e0 -5.647567939880e0 -5.071362681214e0 -3.980964834619e0 -2.126072426051e0 9.367184200618e0 9.567578453990e0 2.125514575872e1 2.216200899850e1 3.877484777274e1 4.120648887918e1 5.393358987587e1 5.602875864986e1 7.548066965936e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.791950404532e0 -7.152048554409e0 -5.203474604907e0 -5.196057982692e0 -4.277415254895e0 -2.339793006458e0 1.085916040186e1 1.086118875805e1 1.867808676365e1 1.899321350671e1 3.995570117728e1 4.330516092950e1 5.390307539367e1 5.391170415628e1 7.055217998536e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.688226052293e0 -7.221405947652e0 -5.654567439114e0 -5.066450112820e0 -3.969763720634e0 -2.127668656475e0 9.363737552576e0 9.569369987500e0 2.125752210956e1 2.215895936908e1 3.877885614199e1 4.120936596199e1 5.393293775337e1 5.601508020511e1 7.548006227348e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 1.782319566496e-1 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.418927859056e0 -7.342178282260e0 -6.299194797674e0 -4.765099564442e0 -3.773643366628e0 -1.447580528175e0 7.074641335532e0 7.638050033982e0 2.647400053685e1 2.933989369039e1 3.299323941541e1 4.162005912691e1 5.418523731520e1 5.901621846102e1 9.384324113311e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -9.802757615725e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.950469922690e0 -7.475076826369e0 -6.582410642350e0 -4.491458809419e0 -3.662070606102e0 4.442953388478e-1 3.915623810681e0 6.643263367191e0 2.650228598435e1 3.151049826611e1 3.238733740717e1 4.103910909637e1 5.524443871876e1 6.161131067891e1 9.740214677120e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.805948115929e0 -7.234592488701e0 -7.180306245187e0 -4.251571928339e0 -3.873838672811e0 1.244496830082e0 3.048201050161e0 5.459758334543e0 2.537278747538e1 3.339196911132e1 3.671650815251e1 4.253785485597e1 5.613611953301e1 6.129358667461e1 9.305733642157e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.924278290364e0 -7.377638394520e0 -7.090159203794e0 -4.112586272373e0 -3.903382118593e0 9.430816440697e-1 3.607086814237e0 5.138296486071e0 1.784885532466e1 3.916422563979e1 4.088993384010e1 4.343411912043e1 5.646839950977e1 6.005651929977e1 8.711902358624e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.118937321691e0 -7.435939985249e0 -7.010568919878e0 -4.001372122340e0 -3.822495271596e0 3.678041674266e-1 3.790282933156e0 6.607386477997e0 1.275634134594e1 4.205169115011e1 4.432395730605e1 4.653341499048e1 5.417241296238e1 6.165393735901e1 1.088490031314e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.178612328504e0 -7.505269126817e0 -6.951163487458e0 -3.936794579007e0 -3.798488574703e0 1.404598291380e-1 3.734684463040e0 8.998645830060e0 9.511013715884e0 4.382267644985e1 4.437285372056e1 4.839208175293e1 5.339089615243e1 6.249689177721e1 1.262927566791e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115670630616e0 -7.437389784252e0 -7.007362267005e0 -4.005122466038e0 -3.828176275399e0 3.709431161216e-1 3.791133085979e0 6.604015464374e0 1.275941999781e1 4.205012795533e1 4.432165775839e1 4.653349885495e1 5.418021110282e1 6.165450540708e1 1.088507373087e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.919042981547e0 -7.377538247629e0 -7.086155771075e0 -4.120312348174e0 -3.911965621297e0 9.471243759435e-1 3.607653679017e0 5.137138787437e0 1.785004337858e1 3.916492353508e1 4.088814061712e1 4.343166101125e1 5.647849563583e1 6.005994032144e1 8.712007986382e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.801213684528e0 -7.233164643407e0 -7.174363095523e0 -4.261165754465e0 -3.884140251675e0 1.245947493883e0 3.050382972783e0 5.460978437121e0 2.537025096743e1 3.339123510334e1 3.671723126776e1 4.253650536747e1 5.614120704348e1 6.130517428507e1 9.305783705088e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947282078296e0 -7.471667801401e0 -6.576288847675e0 -4.499865701271e0 -3.673774160975e0 4.449939126268e-1 3.918317076277e0 6.644921237807e0 2.650099220530e1 3.150762947873e1 3.238614741816e1 4.103864411275e1 5.524860590315e1 6.162648334900e1 9.740299605732e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201136761166e0 -7.605365833875e0 -5.768127950501e0 -4.737747606042e0 -3.582139751539e0 -4.607085034727e-1 5.592914023691e0 8.370870009455e0 2.018623935521e1 2.540025792893e1 3.711574067838e1 4.065804114024e1 5.413895847324e1 6.004625018370e1 6.950471469909e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.393803535478e0 -7.621854976100e0 -5.026322485102e0 -4.848188267374e0 -3.795443050307e0 -1.010043984590e0 7.753337016297e0 9.367806730836e0 1.710601101274e1 1.974849465057e1 3.758863805351e1 4.494648357159e1 5.406107561569e1 5.699149446916e1 6.098851829970e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.394314111049e0 -7.622982170977e0 -5.032894780297e0 -4.845009674196e0 -3.787900679566e0 -1.011064085616e0 7.753276383905e0 9.367081513073e0 1.710583070042e1 1.974825136795e1 3.758875693299e1 4.495182785264e1 5.406210732996e1 5.698343145537e1 6.098579732421e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 8.911597832478e-2 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202786476005e0 -7.608238395636e0 -5.775621912856e0 -4.731403080767e0 -3.570539906302e0 -4.622726366081e-1 5.591591874903e0 8.369577874042e0 2.018659044347e1 2.539946279652e1 3.711862568282e1 4.066256582357e1 5.413543771728e1 6.003266044364e1 6.950280320145e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -1.069391739897e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.027092757755e0 -7.751941551967e0 -5.846520470065e0 -4.639824590754e0 -3.379816340311e0 1.262608250458e0 3.161124611889e0 7.983977986476e0 1.971536811941e1 2.862213628867e1 3.548421545950e1 4.003394661385e1 5.398012931289e1 6.235407385305e1 6.712529855135e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -9.802757615725e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.950470371393e0 -7.475076136349e0 -6.582410774350e0 -4.491458675645e0 -3.662070734455e0 4.442951145681e-1 3.915623886867e0 6.643263372062e0 2.650228529146e1 3.151049738034e1 3.238733825882e1 4.103910990634e1 5.524443864756e1 6.161131067333e1 9.740214693835e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.107146941261e0 -7.405358596854e0 -6.796339943426e0 -4.418559857998e0 -3.819628937797e0 -4.012935097634e-1 5.126766097633e0 6.163780976622e0 2.564227114054e1 3.266139248764e1 3.659410128631e1 4.272837197328e1 5.498959587256e1 5.962377597977e1 9.543760700663e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.020438049230e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.485926541499e0 -7.318294994464e0 -6.842937726946e0 -4.274408223782e0 -3.805413194869e0 -1.050066314505e0 4.917059870529e0 8.023583780306e0 1.853915399676e1 3.659017127860e1 4.066188215122e1 4.433704481864e1 5.273482505198e1 6.051331921637e1 9.242670324788e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -7.129278265982e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.723299005488e0 -7.373110615563e0 -6.769806436548e0 -4.091553646664e0 -3.817235389713e0 -1.418678802275e0 4.672461397597e0 1.057805765735e1 1.385776516977e1 3.869341629166e1 4.139622770626e1 4.713556364351e1 5.188355408397e1 6.263393993288e1 1.062360841469e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.722531084797e0 -7.373395630796e0 -6.767706288502e0 -4.093762533997e0 -3.820436084430e0 -1.416497901394e0 4.672871503108e0 1.057558805091e1 1.385986280504e1 3.869271686633e1 4.139678947844e1 4.713559146007e1 5.188562059076e1 6.263401132448e1 1.062367764905e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483787785768e0 -7.318356845786e0 -6.837837676399e0 -4.280284549932e0 -3.813488059984e0 -1.045213234591e0 4.918378774390e0 8.021240668415e0 1.853973671859e1 3.659092520640e1 4.066022057057e1 4.433797652880e1 5.274108331933e1 6.051357789766e1 9.242777085336e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.103967415927e0 -7.404325240630e0 -6.789669344823e0 -4.427819813131e0 -3.829385621154e0 -3.962368134673e-1 5.128486650667e0 6.162537815026e0 2.563946187053e1 3.266195272227e1 3.659402820407e1 4.272897311035e1 5.499908129620e1 5.962549409542e1 9.543780204135e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.946806433812e0 -7.474429110100e0 -6.574206006933e0 -4.501106805910e0 -3.672917926266e0 4.484974516907e-1 3.915834358578e0 6.644768714882e0 2.650128145540e1 3.150949286307e1 3.238388181562e1 4.104006613008e1 5.525208217395e1 6.161933749133e1 9.740265619257e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.024074764523e0 -7.751020836183e0 -5.837881793797e0 -4.647742251968e0 -3.391014158188e0 1.265562786922e0 3.161447644026e0 7.985584881277e0 1.971475350914e1 2.862300406897e1 3.548206494314e1 4.002914246031e1 5.398482758446e1 6.236592740342e1 6.712758470625e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.169033723135e0 -7.945698357107e0 -5.026795130575e0 -4.693203161970e0 -3.362097330727e0 1.096415359486e0 4.342921106711e0 8.559991646533e0 1.643717826739e1 2.398296575225e1 3.324362951799e1 4.476007629158e1 5.245917801263e1 5.750447165959e1 6.111672658252e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264283264875e0 -7.973634912777e0 -4.934944086301e0 -4.277156002897e0 -3.558101465713e0 8.519085042907e-1 6.612580615871e0 6.648819930234e0 1.868329544973e1 1.896798383320e1 3.242110301021e1 4.637165001238e1 5.355027936617e1 5.663315011180e1 5.892612827271e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 0.000000000000e0 1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.170318510763e0 -7.946658787095e0 -5.034663275635e0 -4.688968187017e0 -3.352371570874e0 1.094828090391e0 4.342959150340e0 8.558685878793e0 1.643750333967e1 2.398207934036e1 3.324354014081e1 4.476667990904e1 5.246413437687e1 5.749707986011e1 6.110549347357e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 0.000000000000e0 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383416543138e0 -8.270930687665e0 -4.125391273612e0 -3.995050589460e0 -3.412068843157e0 2.659068401882e0 5.429811816863e0 6.841895062502e0 1.593492514757e1 1.831066561397e1 2.460726786514e1 4.921478704388e1 5.249872959536e1 5.736574966459e1 5.944275670916e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264820319686e0 -7.974351955149e0 -4.945478383373e0 -4.267525055967e0 -3.552818757433e0 8.502159895544e-1 6.609193267749e0 6.651266701475e0 1.868298004402e1 1.896820683556e1 3.242124934411e1 4.638163722504e1 5.354645106536e1 5.662312069257e1 5.892551850851e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202787231172e0 -7.608237261922e0 -5.775621969312e0 -4.731403033252e0 -3.570539975172e0 -4.622730056242e-1 5.591591889443e0 8.369577875693e0 2.018659022929e1 2.539946102489e1 3.711862721120e1 4.066256637096e1 5.413543765150e1 6.003266044999e1 6.950280352691e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534995973772e0 -7.154202729833e0 -6.382685132520e0 -4.844569390013e0 -3.522334101843e0 -1.530809456643e0 4.851847704601e0 1.067970160450e1 2.309854357261e1 3.248862430176e1 3.379670584579e1 3.985106606283e1 5.226347494650e1 6.231422695421e1 1.005710343308e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.071126383692e0 -6.950480502134e0 -6.479111914347e0 -4.532344210803e0 -3.529808012084e0 -2.451543765504e0 4.442797552466e0 1.363148235003e1 2.535283444157e1 2.825196371108e1 3.656856853268e1 4.203725462617e1 5.155872110195e1 6.429433245100e1 9.642425481529e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416243355663e0 -7.204858508927e0 -5.951922304566e0 -4.248780964377e0 -3.760087354671e0 -2.945474774864e0 4.229403644213e0 1.686169500039e1 2.064028238164e1 2.888211460744e1 3.478858431149e1 4.667865125307e1 5.119887768008e1 6.542079720242e1 8.185410682411e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416090044999e0 -7.204669978237e0 -5.950309671358e0 -4.249608124329e0 -3.765802999753e0 -2.941127529702e0 4.229527296821e0 1.686088598542e1 2.063949574995e1 2.888383870051e1 3.478919026521e1 4.667854836379e1 5.119877823914e1 6.542092841629e1 8.185399174274e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.070716493393e0 -6.949758356445e0 -6.476342320725e0 -4.534669696991e0 -3.539159760012e0 -2.444484318780e0 4.443214207296e0 1.363021694281e1 2.535078049851e1 2.825339550218e1 3.657111673887e1 4.203739906722e1 5.155915491490e1 6.429465075896e1 9.642460062222e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 7.129278265982e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534512149271e0 -7.152744673229e0 -6.378274865835e0 -4.850046762547e0 -3.528689823260e0 -1.526495693414e0 4.852594928636e0 1.067884128864e1 2.309970558962e1 3.248436620332e1 3.379600486705e1 3.985499922180e1 5.226632113565e1 6.231450512412e1 1.005719917961e2</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.020438049230e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202271922397e0 -7.607137329666e0 -5.767075688425e0 -4.741186706330e0 -3.575116471900e0 -4.595372570073e-1 5.592563995683e0 8.369300067829e0 2.018726393777e1 2.539906176355e1 3.711401393952e1 4.066293822158e1 5.414314389356e1 6.003253368954e1 6.950378529071e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 8.911597832478e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264283264872e0 -7.973634912777e0 -4.934944086300e0 -4.277156002893e0 -3.558101465713e0 8.519085042921e-1 6.612580615867e0 6.648819930234e0 1.868329544959e1 1.896798383316e1 3.242110301147e1 4.637165001236e1 5.355027936596e1 5.663315011255e1 5.892612827281e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 9.802757615725e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383199795811e0 -8.270464163708e0 -4.116694045820e0 -3.996871557901e0 -3.421319855927e0 2.659869536182e0 5.429717441808e0 6.842556443460e0 1.593491462036e1 1.831091131290e1 2.460715513612e1 4.921298299736e1 5.249022667596e1 5.736841266979e1 5.945320134778e1</array>
+        </property>
+        <kpoint coords="-8.911597832478e-2 1.069391739897e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.405588555043e0 -8.405357978465e0 -4.033192178586e0 -3.509235212634e0 -3.497140042992e0 4.895194504446e0 4.898913686436e0 5.100224508766e0 1.794148674622e1 1.794254665284e1 1.922214859800e1 4.840387307293e1 5.401817479835e1 5.919895303388e1 5.921317731604e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 -8.911597832478e-2 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383200819531e0 -8.270462999039e0 -4.116694072868e0 -3.996871466726e0 -3.421319912251e0 2.659869391182e0 5.429717447313e0 6.842556415245e0 1.593491304398e1 1.831091168532e1 2.460715647072e1 4.921298298976e1 5.249022662433e1 5.736841274494e1 5.945320131502e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.384131711230e0 -8.006959274364e0 -4.321244482985e0 -4.312839713948e0 -3.738415845148e0 4.778628372041e-1 7.746827519000e0 7.749625679874e0 1.573459077789e1 1.675651772476e1 3.189200573475e1 5.112802937544e1 5.181639608395e1 5.631638979263e1 5.632616258822e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.394314847417e0 -7.622980925611e0 -5.032894736484e0 -4.845009704647e0 -3.787900729109e0 -1.011064566925e0 7.753276332027e0 9.367081517138e0 1.710583098736e1 1.974824895120e1 3.758875926642e1 4.495182781166e1 5.406210730893e1 5.698343149528e1 6.098579758795e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.637388933705e0 -7.222947050153e0 -5.860961621259e0 -5.090759243468e0 -3.713651291903e0 -2.004025513977e0 6.874935370105e0 1.155571367871e1 1.935059048041e1 2.714705619925e1 3.833512686443e1 3.934920440399e1 5.219551191065e1 5.924573076442e1 8.086498912285e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.180282714194e0 -6.778988678064e0 -6.545658286295e0 -4.819066537073e0 -3.625934760278e0 -2.813235433761e0 6.230408350722e0 1.429370148495e1 2.315045263253e1 3.261287111901e1 3.470426051901e1 3.941906617516e1 5.162157808145e1 6.161740175943e1 9.406858090134e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.682617569091e0 -6.985582731052e0 -6.297625444978e0 -4.433202232714e0 -3.560697881968e0 -3.518298033894e0 5.807014831158e0 1.758585851515e1 2.527030165498e1 2.760613557434e1 3.427636612496e1 4.436013831177e1 5.114716073862e1 6.328204388973e1 7.109013380053e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.874855651667e0 -7.136339937007e0 -6.044700508261e0 -4.252899882566e0 -3.869483055666e0 -3.535940487514e0 5.636826016728e0 2.023429596048e1 2.437344388892e1 2.461157282563e1 3.366043553870e1 4.758101093913e1 4.978543257191e1 6.352084176138e1 6.384949895072e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.682617481354e0 -6.985582736625e0 -6.297625866265e0 -4.433202447132e0 -3.560697867491e0 -3.518297448967e0 5.807014810593e0 1.758585851163e1 2.527030223446e1 2.760613558529e1 3.427636619590e1 4.436013805111e1 5.114716028263e1 6.328204388635e1 7.109013370723e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.180282481880e0 -6.778989452114e0 -6.545658298743e0 -4.819066546472e0 -3.625934744587e0 -2.813234823164e0 6.230408348314e0 1.429370148217e1 2.315045352843e1 3.261287113583e1 3.470426251937e1 3.941906338602e1 5.162157784737e1 6.161740174967e1 9.406858069892e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.637388435950e0 -7.222948172588e0 -5.860961644240e0 -5.090759153385e0 -3.713651264185e0 -2.004024941288e0 6.874935402406e0 1.155571367550e1 1.935059102040e1 2.714705814538e1 3.833512688909e1 3.934920184064e1 5.219551193360e1 5.924573074383e1 8.086498869073e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.020438049230e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.394314111047e0 -7.622982170977e0 -5.032894780303e0 -4.845009674181e0 -3.787900679568e0 -1.011064085613e0 7.753276383879e0 9.367081513077e0 1.710583070038e1 1.974825136794e1 3.758875693521e1 4.495182785235e1 5.406210733255e1 5.698343145558e1 6.098579732093e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.384130831458e0 -8.006960483325e0 -4.321244522831e0 -4.312839754170e0 -3.738415760868e0 4.778631552511e-1 7.746827530865e0 7.749625691853e0 1.573458972029e1 1.675652067558e1 3.189200358138e1 5.112802944899e1 5.181639606624e1 5.631638976021e1 5.632616255638e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 9.802757615725e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383199791499e0 -8.270464145491e0 -4.116694098875e0 -3.996871464638e0 -3.421319884051e0 2.659869525033e0 5.429717451896e0 6.842556413435e0 1.593491263829e1 1.831091378279e1 2.460715466096e1 4.921298299600e1 5.249022664580e1 5.736841274932e1 5.945320129309e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -1.782319566496e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.173871392235e0 -8.158927100538e0 -4.949598389543e0 -4.022788776744e0 -3.456378867615e0 3.087841126036e0 3.847384894985e0 6.225379194850e0 1.857985595619e1 2.261623114984e1 2.715079960761e1 4.610603110133e1 5.211709671683e1 5.756108063123e1 6.043836955611e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264147460462e0 -7.972852276117e0 -4.936825372900e0 -4.270342919564e0 -3.564923758028e0 8.516150255536e-1 6.611885291038e0 6.650307846159e0 1.868493523546e1 1.896662210901e1 3.242132134927e1 4.637016637002e1 5.354628841992e1 5.662352373687e1 5.894383856371e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.393804152604e0 -7.621853885369e0 -5.026322500104e0 -4.848188149752e0 -3.795443117033e0 -1.010044501499e0 7.753337020648e0 9.367806701951e0 1.710600964928e1 1.974849413851e1 3.758864010255e1 4.494648351529e1 5.406107571327e1 5.699149444287e1 6.098851851603e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.687649370135e0 -7.220022147068e0 -5.644822884654e0 -5.075783475779e0 -3.976317893962e0 -2.124932041500e0 9.366670269821e0 9.566966056368e0 2.125701094202e1 2.215998893337e1 3.877260066044e1 4.121157885281e1 5.394183421161e1 5.601389695145e1 7.548060308926e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232095348104e0 -6.936595507800e0 -6.193549637825e0 -5.063200349491e0 -3.956492916735e0 -2.787015104037e0 8.662450466199e0 1.186373117043e1 2.464123142166e1 3.051223800013e1 3.413437393348e1 4.134139790632e1 5.242463151673e1 5.764605252426e1 8.778523283348e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833873080060e0 -6.830146410431e0 -6.555197960023e0 -4.698511405274e0 -3.868957508342e0 -3.288360939692e0 8.038673123629e0 1.485988474373e1 2.706755161213e1 2.950617401740e1 3.632576760837e1 4.252821493099e1 5.150250474466e1 5.895501560141e1 7.003716638650e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020532435891e1 -7.023935821134e0 -6.466111903190e0 -4.351997260155e0 -3.867477900816e0 -3.603038917454e0 7.649361531925e0 1.819403323870e1 2.217178076248e1 3.074822030644e1 3.594905972303e1 4.625639375280e1 4.974782467485e1 5.662144691072e1 6.221599231273e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020544244698e1 -7.023789831826e0 -6.467539306183e0 -4.350443737322e0 -3.861283724821e0 -3.609135312412e0 7.649200309605e0 1.819465855080e1 2.217282719070e1 3.074618417520e1 3.594869108197e1 4.625681012525e1 4.974757238305e1 5.662134446192e1 6.221645183989e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.834208868083e0 -6.828952904508e0 -6.559950398170e0 -4.695356786414e0 -3.860441626268e0 -3.295402417061e0 8.038147517452e0 1.486107328363e1 2.707050973884e1 2.950408056647e1 3.632414937991e1 4.252737204296e1 5.150085003658e1 5.895468853399e1 7.003879083593e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232589840950e0 -6.937565362657e0 -6.199305229238e0 -5.057368558033e0 -3.949513950942e0 -2.791440184245e0 8.661510998278e0 1.186480025925e1 2.464041217144e1 3.051294290165e1 3.413801386963e1 4.133842833284e1 5.241977181093e1 5.764647161633e1 8.778574008391e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.688226052292e0 -7.221405947651e0 -5.654567439113e0 -5.066450112816e0 -3.969763720634e0 -2.127668656473e0 9.363737552563e0 9.569369987492e0 2.125752210950e1 2.215895936888e1 3.877885614398e1 4.120936596293e1 5.393293775476e1 5.601508020625e1 7.548006226678e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.394314231266e0 -7.622982014605e0 -5.032894721581e0 -4.845009823397e0 -3.787900662340e0 -1.011064049620e0 7.753276328127e0 9.367081545961e0 1.710583234849e1 1.974824946505e1 3.758875721961e1 4.495182786831e1 5.406210720800e1 5.698343152628e1 6.098579736984e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264283267910e0 -7.973634909439e0 -4.934944085706e0 -4.277156004988e0 -3.558101464719e0 8.519085045599e-1 6.612580616871e0 6.648819929363e0 1.868329544506e1 1.896798383739e1 3.242110301160e1 4.637165001202e1 5.355027936613e1 5.663315011260e1 5.892612827303e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -2.673479349743e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947605814140e0 -7.849134556095e0 -5.923215612156e0 -4.162536110227e0 -3.665430068146e0 1.775354374843e0 4.642489301291e0 5.110531432540e0 2.384508364293e1 2.516408950809e1 3.420205523948e1 4.015767163083e1 5.757710711169e1 6.006320106626e1 6.367191674135e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947929911699e0 -7.847598042071e0 -5.924347639381e0 -4.157435025778e0 -3.671028901561e0 1.773459248636e0 4.643484718778e0 5.111468604665e0 2.384319221005e1 2.516571867237e1 3.420295497541e1 4.015644177101e1 5.756742152075e1 6.007452269245e1 6.367394420640e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201137110364e0 -7.605365202995e0 -5.768127981319e0 -4.737747357983e0 -3.582139869352e0 -4.607089572167e-1 5.592914044111e0 8.370869955425e0 2.018623740058e1 2.540025876822e1 3.711574164624e1 4.065804146275e1 5.413895852313e1 6.004625014056e1 6.950471489290e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.636132888547e0 -7.220645723292e0 -5.854091389461e0 -5.096885057184e0 -3.722537510110e0 -2.002428202312e0 6.875426965269e0 1.155692673629e1 1.934961690912e1 2.714847899935e1 3.833061200374e1 3.934857612481e1 5.219873875184e1 5.925560367883e1 8.086499078088e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231601283541e0 -6.935782119059e0 -6.189371283987e0 -5.067359239039e0 -3.959441936527e0 -2.786848599973e0 8.662295792409e0 1.186490276494e1 2.463925273936e1 3.051395777621e1 3.413352526789e1 4.134013928695e1 5.242643193047e1 5.765071010350e1 8.778382785162e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.881475183185e0 -6.901164702933e0 -6.481732336879e0 -4.860568652069e0 -3.956815460151e0 -3.198729512148e0 1.026275059172e1 1.210563041881e1 2.796424578599e1 3.066571490349e1 3.571739947962e1 4.361123677928e1 5.170968792198e1 5.612940204820e1 7.020473184696e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037227439934e1 -6.942223533647e0 -6.743974246589e0 -4.487703804402e0 -3.886094131607e0 -3.488580667422e0 1.021422483617e1 1.443716307672e1 2.189396587202e1 3.512771462122e1 3.855098457075e1 4.481108234598e1 5.011960801740e1 5.347737518698e1 6.185593830978e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055177342595e1 -7.010035453254e0 -6.790773765234e0 -4.250363410588e0 -3.945088096578e0 -3.581290248415e0 1.005316593425e1 1.690266049735e1 1.824037025864e1 3.692086099986e1 3.892805143829e1 4.725225639645e1 4.772100303470e1 5.265953131788e1 6.125829406000e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037263866737e1 -6.940124418663e0 -6.749701767950e0 -4.483046584437e0 -3.879280163820e0 -3.495081427832e0 1.021315210843e1 1.443909892969e1 2.189455681450e1 3.512587351359e1 3.855136374331e1 4.481065196446e1 5.011528062893e1 5.347957764506e1 6.185682500926e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.882169604283e0 -6.901182135853e0 -6.489703998205e0 -4.852815171376e0 -3.947764688991e0 -3.204968510322e0 1.026039560239e1 1.210811499175e1 2.796777216661e1 3.066541942897e1 3.571583186982e1 4.360972089594e1 5.170174582023e1 5.613072671465e1 7.020759576628e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232589944346e0 -6.937565152155e0 -6.199305174331e0 -5.057368869584e0 -3.949513910329e0 -2.791440056798e0 8.661510952642e0 1.186480031610e1 2.464041298500e1 3.051294184681e1 3.413801378891e1 4.133842885041e1 5.241977142979e1 5.764647171007e1 8.778574014291e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.637388714451e0 -7.222947682358e0 -5.860961597351e0 -5.090759589879e0 -3.713651236022e0 -2.004024773151e0 6.874935363822e0 1.155571370944e1 1.935059236681e1 2.714705594038e1 3.833512691262e1 3.934920272367e1 5.219551167295e1 5.924573080732e1 8.086498887787e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.020438049230e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202272332020e0 -7.607136821910e0 -5.767075712448e0 -4.741186911165e0 -3.575116421982e0 -4.595371719700e-1 5.592563990294e0 8.369300123556e0 2.018726567702e1 2.539905915296e1 3.711401449756e1 4.066293844885e1 5.414314377491e1 6.003253374196e1 6.950378542416e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -3.564639132991e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.949749145385e0 -7.472398668035e0 -6.575047243380e0 -4.501646834434e0 -3.669695685252e0 4.489046654145e-1 3.917447096073e0 6.642299768449e0 2.650366861170e1 3.150748990436e1 3.238405287998e1 4.104188857185e1 5.525244688139e1 6.161178766169e1 9.740353790277e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.601778372379e0 -7.598730602787e0 -6.833459704372e0 -4.017381593862e0 -4.013253497517e0 2.800412779101e0 2.803804320057e0 4.402321737274e0 2.994173262861e1 2.994414453600e1 3.159436469812e1 4.117789884287e1 5.917163874173e1 5.918515760275e1 9.563399991170e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947281906508e0 -7.471667882747e0 -6.576288895311e0 -4.499865249855e0 -3.673774460025e0 4.449935681798e-1 3.918317141069e0 6.644921240310e0 2.650098951926e1 3.150763033803e1 3.238614936011e1 4.103864422715e1 5.524860586990e1 6.162648333190e1 9.740299608635e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532544908136e0 -7.150333642584e0 -6.376088855600e0 -4.852944313461e0 -3.533663070710e0 -1.529753672287e0 4.853612134000e0 1.068103737654e1 2.309760016526e1 3.248442984265e1 3.379730989424e1 3.985064594082e1 5.226859090517e1 6.232797434695e1 1.005707632502e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.178879814716e0 -6.776223654476e0 -6.539008682367e0 -4.826271344307e0 -3.635242161031e0 -2.811807583147e0 6.231391289841e0 1.429515493738e1 2.314868856113e1 3.260948224058e1 3.470462902549e1 3.942040257961e1 5.162525748616e1 6.162830633750e1 9.406519098878e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833233190245e0 -6.826416165879e0 -6.552623155585e0 -4.704178986615e0 -3.870938063721e0 -3.290288540805e0 8.038934296113e0 1.486134263976e1 2.706717099299e1 2.950296185683e1 3.632482929825e1 4.253012502203e1 5.150502715675e1 5.896138406439e1 7.003448806847e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037203350273e1 -6.938517868244e0 -6.745293554740e0 -4.489964818881e0 -3.885557619137e0 -3.490625775654e0 1.021410230975e1 1.443777935753e1 2.189410307470e1 3.512494643946e1 3.855080031962e1 4.481208187905e1 5.012107323783e1 5.347916532327e1 6.185639276824e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067102932176e1 -6.971978133729e0 -6.950970899186e0 -4.221363776169e0 -3.974698891125e0 -3.541590238094e0 1.232762333853e1 1.416482191176e1 1.775788122783e1 4.018197543735e1 4.064677446775e1 4.606773900908e1 4.795521665913e1 5.089244231618e1 6.126568985431e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067123751430e1 -6.968820159838e0 -6.956041763654e0 -4.216967226137e0 -3.975448713167e0 -3.542391607139e0 1.232575081088e1 1.416803056427e1 1.775663162624e1 4.018045495871e1 4.065028383290e1 4.606885378511e1 4.794889060114e1 5.089407528708e1 6.126582434884e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037263869870e1 -6.940124365015e0 -6.749701843425e0 -4.483046723967e0 -3.879280026727e0 -3.495081339229e0 1.021315211883e1 1.443909890658e1 2.189455680864e1 3.512587381299e1 3.855136465489e1 4.481065140898e1 5.011527961848e1 5.347957786523e1 6.185682504730e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.834208981756e0 -6.828952831376e0 -6.559950289540e0 -4.695357165343e0 -3.860441527927e0 -3.295402149045e0 8.038147490139e0 1.486107331781e1 2.707050953531e1 2.950408134384e1 3.632415011374e1 4.252737116617e1 5.150084932435e1 5.895468862047e1 7.003879086826e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.180282729434e0 -6.778988948592e0 -6.545658258159e0 -4.819067204758e0 -3.625934710281e0 -2.813234437146e0 6.230408315810e0 1.429370151904e1 2.315045430075e1 3.261287116155e1 3.470426211800e1 3.941906302052e1 5.162157748947e1 6.161740180982e1 9.406858089627e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 7.129278265982e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534512564545e0 -7.152744004272e0 -6.378274837509e0 -4.850047339463e0 -3.528689707476e0 -1.526495467735e0 4.852594919607e0 1.067884134574e1 2.309970683644e1 3.248436592989e1 3.379600252940e1 3.985500041329e1 5.226632092833e1 6.231450517392e1 1.005719921034e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -4.455798916239e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.431912651913e0 -7.062380142475e0 -6.771782487146e0 -4.506724540939e0 -3.648384157860e0 -7.331678000494e-1 3.493110591021e0 8.968220425149e0 2.566400366828e1 3.010737203821e1 3.878297965990e1 4.097404085009e1 5.249185105843e1 6.362448793713e1 1.023870741518e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.804022509651e0 -7.230072409555e0 -7.176000729168e0 -4.260699176763e0 -3.883420723679e0 1.250245365099e0 3.049655448111e0 5.457959787644e0 2.537009477303e1 3.339345030678e1 3.671581090964e1 4.253862026666e1 5.614568669137e1 6.129425539720e1 9.305843867112e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.801213377116e0 -7.233165178692e0 -7.174362896219e0 -4.261165143381e0 -3.884140779716e0 1.245947292376e0 3.050383064500e0 5.460978457330e0 2.537025096132e1 3.339123207910e1 3.671723474040e1 4.253650507580e1 5.614120697495e1 6.130517430778e1 9.305783702209e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429632465420e0 -7.058100487313e0 -6.773660983089e0 -4.509631833707e0 -3.649335915762e0 -7.398807964158e-1 3.494541140177e0 8.971503295657e0 2.566436164907e1 3.010445434137e1 3.878354342178e1 4.097016779726e1 5.249309572908e1 6.363692493424e1 1.023875234308e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.069024584155e0 -6.943100775239e0 -6.476155993881e0 -4.540298054627e0 -3.539956209733e0 -2.452532180211e0 4.444715190809e0 1.363267677132e1 2.535060872330e1 2.825048650835e1 3.656869098826e1 4.203854777530e1 5.156095841875e1 6.430660753071e1 9.642535150580e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.681408889589e0 -6.979146842361e0 -6.294251607947e0 -4.440503597375e0 -3.569733631960e0 -3.518071241893e0 5.808152719739e0 1.758753020054e1 2.526817094797e1 2.760343191449e1 3.427700380203e1 4.436191287937e1 5.114785653208e1 6.329357681219e1 7.108895892151e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020462439788e1 -7.018034431158e0 -6.465169974771e0 -4.358041155657e0 -3.865582713597e0 -3.609807936606e0 7.649812661769e0 1.819529770586e1 2.217138071076e1 3.074390072574e1 3.594962034298e1 4.625754824152e1 4.974770022702e1 5.662786192414e1 6.221846201101e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055134795778e1 -7.004862319743e0 -6.791924336145e0 -4.256244823250e0 -3.943344306380e0 -3.583469412489e0 1.005342201293e1 1.690042838033e1 1.824282436502e1 3.691603272672e1 3.892948207461e1 4.725150619772e1 4.772388127509e1 5.266362794005e1 6.125887180386e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.067102931480e1 -6.971978283188e0 -6.950970839756e0 -4.221364869496e0 -3.974697716038e0 -3.541590208492e0 1.232762346957e1 1.416482180970e1 1.775788120366e1 4.018197802822e1 4.064677388394e1 4.606773622353e1 4.795521764170e1 5.089244197382e1 6.126568986394e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.055177344854e1 -7.010035396041e0 -6.790773962290e0 -4.250364455901e0 -3.945086841613e0 -3.581290231377e0 1.005316597020e1 1.690266036637e1 1.824037034508e1 3.692086071873e1 3.892805475812e1 4.725225291625e1 4.772100301754e1 5.265953147976e1 6.125829411895e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020544253741e1 -7.023789788373e0 -6.467539427411e0 -4.350444262143e0 -3.861283069797e0 -3.609135177585e0 7.649200276243e0 1.819465856047e1 2.217282713965e1 3.074618406885e1 3.594869416396e1 4.625680761100e1 4.974757156719e1 5.662134447270e1 6.221645194361e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.682617665171e0 -6.985582699998e0 -6.297625671096e0 -4.433203127491e0 -3.560697820821e0 -3.518296755060e0 5.807014753855e0 1.758585855665e1 2.527030221251e1 2.760613560798e1 3.427636899335e1 4.436013515318e1 5.114715989564e1 6.328204394399e1 7.109013388434e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 6.238118482734e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.070716769591e0 -6.949758295756e0 -6.476341863273e0 -4.534670458070e0 -3.539159446231e0 -2.444484016325e0 4.443214165002e0 1.363021698672e1 2.535078059210e1 2.825339633164e1 3.657111829446e1 4.203739631768e1 5.155915473128e1 6.429465080803e1 9.642460089139e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -5.346958699487e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876842198076e0 -7.237231194313e0 -6.304974709131e0 -4.261815250227e0 -3.722242502244e0 -1.612910209294e0 3.305050726939e0 1.174651222361e1 1.905200371930e1 3.264644606607e1 3.851204663034e1 4.518204496081e1 5.181845937792e1 6.549213323994e1 9.793086595877e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.304484656879e0 -7.278049892028e0 -6.804500510834e0 -4.204475797100e0 -3.810518863176e0 6.925450176201e-2 2.970179137806e0 7.571160546076e0 1.813874070491e1 3.633500938073e1 4.214806451230e1 4.321736132423e1 5.306841714111e1 6.345119271194e1 9.244258246997e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.919042982607e0 -7.377538252131e0 -7.086155765247e0 -4.120312338239e0 -3.911965631886e0 9.471243760245e-1 3.607653679461e0 5.137138787382e0 1.785004337856e1 3.916492353289e1 4.088814062117e1 4.343166101001e1 5.647849563407e1 6.005994032260e1 8.712007986280e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.302576670058e0 -7.273541120132e0 -6.808105448669e0 -4.208134274545e0 -3.808850869923e0 6.314770009869e-2 2.970482944902e0 7.575193028336e0 1.813919993002e1 3.633298668504e1 4.214459469017e1 4.321830410964e1 5.306656734881e1 6.346301128734e1 9.244272408200e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874950297797e0 -7.231409019540e0 -6.306589702716e0 -4.267147269657e0 -3.720283956247e0 -1.622649928589e0 3.306701157146e0 1.174978164322e1 1.905272585295e1 3.264282819315e1 3.851007506559e1 4.518279851663e1 5.181809422764e1 6.550407956462e1 9.793504759294e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414565401114e0 -7.198271807670e0 -5.948113769582e0 -4.256117140188e0 -3.763683287282e0 -2.953627728388e0 4.231172092919e0 1.686296627659e1 2.063991253780e1 2.887896734362e1 3.479024743325e1 4.667934918000e1 5.119764608814e1 6.543094787628e1 8.186110467988e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.873736950113e0 -7.129966481065e0 -6.040820660859e0 -4.260149266725e0 -3.869353083822e0 -3.545571654657e0 5.637947251276e0 2.023720980113e1 2.436982168986e1 2.460916660885e1 3.366218845455e1 4.758144462916e1 4.978388101995e1 6.352313446994e1 6.386144032233e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020462436167e1 -7.018034448963e0 -6.465170128576e0 -4.358041693653e0 -3.865582101511e0 -3.609807853444e0 7.649812664609e0 1.819529775957e1 2.217138068148e1 3.074390118914e1 3.594962040692e1 4.625754797466e1 4.974769985185e1 5.662786192853e1 6.221846199024e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037203345507e1 -6.938518073326e0 -6.745293580761e0 -4.489965710543e0 -3.885556832041e0 -3.490625445336e0 1.021410237753e1 1.443777939240e1 2.189410300004e1 3.512494836851e1 3.855080061401e1 4.481207934594e1 5.012107363526e1 5.347916499648e1 6.185639276138e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.037227438301e1 -6.942223681395e0 -6.743974352600e0 -4.487704834355e0 -3.886093208767e0 -3.488580247580e0 1.021422491440e1 1.443716308841e1 2.189396579154e1 3.512771685186e1 3.855098577378e1 4.481107925753e1 5.011960740509e1 5.347737508037e1 6.185593834090e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-1.020532441312e1 -7.023935794787e0 -6.466112179966e0 -4.351998323094e0 -3.867476647054e0 -3.603038684991e0 7.649361501427e0 1.819403330197e1 2.217178068231e1 3.074822066384e1 3.594906286783e1 4.625639097383e1 4.974782348253e1 5.662144692591e1 6.221599239558e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.874855789871e0 -7.136339903316e0 -6.044700701452e0 -4.252900769291e0 -3.869481766191e0 -3.535940444946e0 5.636825931394e0 2.023429602250e1 2.437344389936e1 2.461157262285e1 3.366043885601e1 4.758100717787e1 4.978543257122e1 6.352084195783e1 6.384949900605e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 5.346958699487e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416090248452e0 -7.204669942275e0 -5.950309601738e0 -4.249608916972e0 -3.765802049987e0 -2.941127446646e0 4.229527215234e0 1.686088601718e1 2.063949572854e1 2.888383878520e1 3.478919332309e1 4.667854471708e1 5.119877822416e1 6.542092846615e1 8.185399196412e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -6.238118482734e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.042384019323e0 -7.348862323755e0 -6.019979322513e0 -4.130171929811e0 -3.818836631359e0 -1.939275682507e0 3.247137220791e0 1.464569284434e1 1.495402830120e1 3.366729236445e1 3.732854802822e1 4.767306826886e1 5.235693169094e1 6.630664246383e1 1.025800505512e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.579208305699e0 -7.419942256966e0 -6.484009600862e0 -4.058970458392e0 -3.801646966777e0 -5.944157313283e-1 2.917961287554e0 1.015010726295e1 1.340066597047e1 3.823219345863e1 4.118278224722e1 4.748528246881e1 5.324067881890e1 6.485889970500e1 1.111375010857e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115670735525e0 -7.437389789229e0 -7.007362190367e0 -4.005123067806e0 -3.828175609169e0 3.709431273495e-1 3.791133074540e0 6.604015454356e0 1.275941999862e1 4.205012972036e1 4.432165799022e1 4.653349683118e1 5.418021101488e1 6.165450542586e1 1.088507373102e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.114660242950e0 -7.433101641985e0 -7.011345531080e0 -4.008041167864e0 -3.826520652122e0 3.691176278717e-1 3.788112413423e0 6.608234694164e0 1.275981606432e1 4.204888285706e1 4.431956633279e1 4.653396290661e1 5.417961692242e1 6.166121463653e1 1.088501522543e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.577174672727e0 -7.414429734353e0 -6.487278625140e0 -4.064570868500e0 -3.799838680040e0 -6.009465394915e-1 2.918221697317e0 1.015395499102e1 1.340179074510e1 3.822811942098e1 4.118182848901e1 4.748588005945e1 5.324038663335e1 6.487140842622e1 1.111381550472e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.040364817041e0 -7.342663509604e0 -6.019829709194e0 -4.136911029617e0 -3.819104451799e0 -1.948289211565e0 3.248923365638e0 1.464566201964e1 1.495769857274e1 3.366194623723e1 3.733030864054e1 4.767374895187e1 5.235579321726e1 6.631925466159e1 1.025854838880e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414565366743e0 -7.198271813959e0 -5.948113949815e0 -4.256117301353e0 -3.763682972611e0 -2.953627702485e0 4.231172073464e0 1.686296630168e1 2.063991252654e1 2.887896751345e1 3.479024746468e1 4.667934923348e1 5.119764579095e1 6.543094787506e1 8.186110465478e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.681408801964e0 -6.979146847965e0 -6.294252029152e0 -4.440503810964e0 -3.569733624038e0 -3.518070651129e0 5.808152699128e0 1.758753019712e1 2.526817152719e1 2.760343192548e1 3.427700387388e1 4.436191261750e1 5.114785607729e1 6.329357680694e1 7.108895883054e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833233065402e0 -6.826416426361e0 -6.552623414402e0 -4.704179489652e0 -3.870937735605e0 -3.290287922741e0 8.038934330719e0 1.486134267732e1 2.706717161361e1 2.950296259201e1 3.632483026102e1 4.253012259392e1 5.150502697039e1 5.896138403811e1 7.003448805290e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.881475081435e0 -6.901165174034e0 -6.481732312418e0 -4.860569429788e0 -3.956815011749e0 -3.198728776607e0 1.026275073779e1 1.210563040884e1 2.796424571443e1 3.066571785458e1 3.571739933836e1 4.361123345292e1 5.170968820149e1 5.612940185552e1 7.020473186439e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.833873068842e0 -6.830146590505e0 -6.555198118700e0 -4.698512285522e0 -3.868957077191e0 -3.288360058902e0 8.038673130995e0 1.485988481540e1 2.706755202895e1 2.950617553084e1 3.632576930420e1 4.252821162678e1 5.150250384575e1 5.895501566164e1 7.003716640248e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.682617665173e0 -6.985582700000e0 -6.297625671092e0 -4.433203127489e0 -3.560697820823e0 -3.518296755060e0 5.807014753852e0 1.758585855673e1 2.527030221215e1 2.760613560804e1 3.427636899339e1 4.436013515466e1 5.114715989538e1 6.328204394217e1 7.109013388559e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 4.455798916239e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416243524632e0 -7.204858479753e0 -5.951922413901e0 -4.248781920783e0 -3.760086082524e0 -2.945474671943e0 4.229403543188e0 1.686169505720e1 2.064028234893e1 2.888211486206e1 3.478858740033e1 4.667864766105e1 5.119887736722e1 6.542079725110e1 8.185410701964e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -7.129278265982e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.877515382603e0 -7.238114516512e0 -6.308538668927e0 -4.259126774098e0 -3.713397801039e0 -1.618498060143e0 3.304603308919e0 1.174840037677e1 1.905192725537e1 3.264530034053e1 3.851023632463e1 4.518211241825e1 5.181777235219e1 6.549188871413e1 9.792943418932e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.579935286630e0 -7.420165976412e0 -6.486030443912e0 -4.057438673495e0 -3.797167596544e0 -5.969976781407e-1 2.917715721420e0 1.015278903640e1 1.339833683380e1 3.823295720958e1 4.118176696875e1 4.748533532353e1 5.323913092998e1 6.485874417815e1 1.111361606072e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.178612449145e0 -7.505269095614e0 -6.951163491365e0 -3.936795688382e0 -3.798487299854e0 1.404598227214e-1 3.734684439504e0 8.998645796590e0 9.511013739695e0 4.382267644167e1 4.437285747246e1 4.839207783878e1 5.339089611997e1 6.249689182082e1 1.262927566821e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.853006651009e0 -7.495001377286e0 -7.355179591320e0 -3.882831524669e0 -3.811426590187e0 3.220393668265e-1 5.585299017707e0 6.375409035274e0 9.015144418842e0 4.652216612234e1 4.724050709948e1 4.801567280641e1 5.205004935360e1 6.129277945678e1 1.331097841877e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.176266452716e0 -7.500377853773e0 -6.955117798903e0 -3.942181333311e0 -3.797776836071e0 1.392411926125e-1 3.731724546881e0 8.999820568060e0 9.515043488350e0 4.381539871806e1 4.437374299082e1 4.839237065240e1 5.339532209902e1 6.250435853019e1 1.262928552265e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.577174672716e0 -7.414429733963e0 -6.487278625459e0 -4.064570871243e0 -3.799838677298e0 -6.009465395146e-1 2.918221697274e0 1.015395499096e1 1.340179074512e1 3.822811942143e1 4.118182848849e1 4.748588005959e1 5.324038663320e1 6.487140842628e1 1.111381550474e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874950255535e0 -7.231409044035e0 -6.306589821790e0 -4.267147435325e0 -3.720283710002e0 -1.622649865999e0 3.306701128072e0 1.174978164992e1 1.905272584268e1 3.264282840885e1 3.851007533585e1 4.518279809493e1 5.181809410534e1 6.550407957188e1 9.793504758867e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.069024454218e0 -6.943100855457e0 -6.476156370438e0 -4.540298108469e0 -3.539956004617e0 -2.452531933482e0 4.444715147225e0 1.363267678889e1 2.535060903230e1 2.825048671198e1 3.656869165553e1 4.203854673275e1 5.156095821632e1 6.430660753011e1 9.642535138055e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.178879582588e0 -6.776224429006e0 -6.539008694936e0 -4.826271352798e0 -3.635242145269e0 -2.811806972675e0 6.231391287337e0 1.429515493469e1 2.314868945729e1 3.260948225741e1 3.470463102609e1 3.942039978881e1 5.162525725257e1 6.162830632492e1 9.406519079598e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231601019729e0 -6.935782987742e0 -6.189371279004e0 -5.067359499615e0 -3.959441762157e0 -2.786847870309e0 8.662295883395e0 1.186490278382e1 2.463925449602e1 3.051395869990e1 3.413352499646e1 4.134013646369e1 5.242643206599e1 5.765071004721e1 8.778382770142e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.232095187640e0 -6.936596165689e0 -6.193549577347e0 -5.063200922243e0 -3.956492701250e0 -2.787014247761e0 8.662450511684e0 1.186373124605e1 2.464123399187e1 3.051223786978e1 3.413437358053e1 4.134139560027e1 5.242463127133e1 5.764605256179e1 8.778523274103e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.180282729436e0 -6.778988948587e0 -6.545658258163e0 -4.819067204755e0 -3.625934710285e0 -2.813234437145e0 6.230408315801e0 1.429370151911e1 2.315045430053e1 3.261287116157e1 3.470426211985e1 3.941906301843e1 5.162157748914e1 6.161740180708e1 9.406858090255e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 3.564639132991e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.071126529625e0 -6.950480524201e0 -6.479111831178e0 -4.532345026202e0 -3.529807490651e0 -2.451543218519e0 4.442797466620e0 1.363148241149e1 2.535283484446e1 2.825196474304e1 3.656857075660e1 4.203725083488e1 5.155872071491e1 6.429433249959e1 9.642425495641e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.020438049230e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.432942278984e0 -7.064961567826e0 -6.776225142358e0 -4.500568970467e0 -3.638824354251e0 -7.391677766800e-1 3.492047915967e0 8.969820960532e0 2.566691380879e1 3.010548630801e1 3.878283161233e1 4.097141115611e1 5.248888919242e1 6.362404178299e1 1.023850521590e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.306419674056e0 -7.279407573599e0 -6.808816587411e0 -4.199433000508e0 -3.801035437994e0 6.370200507601e-2 2.969391412472e0 7.573590909382e0 1.813797201476e1 3.633449540506e1 4.214799901207e1 4.321763188930e1 5.306297716786e1 6.345074622913e1 9.244037169782e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.118937386927e0 -7.435940073410e0 -7.010568841061e0 -4.001373334030e0 -3.822493947070e0 3.678042187312e-1 3.790282896026e0 6.607386459950e0 1.275634134491e1 4.205169332183e1 4.432395920229e1 4.653341075164e1 5.417241294755e1 6.165393739630e1 1.088490031323e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.857149045749e0 -7.492203383810e0 -7.355909104940e0 -3.879461267096e0 -3.811119455573e0 3.212338302350e-1 5.586299005918e0 6.378125542940e0 9.010804073092e0 4.652193822612e1 4.724885655564e1 4.801549578913e1 5.204083249148e1 6.129141574017e1 1.331090795552e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.853006660266e0 -7.495001291426e0 -7.355179627892e0 -3.882830375234e0 -3.811427802804e0 3.220393613305e-1 5.585299012211e0 6.375409061873e0 9.015144414522e0 4.652216236237e1 4.724050724129e1 4.801567655629e1 5.205004928541e1 6.129277944766e1 1.331097841930e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.114660281138e0 -7.433101558781e0 -7.011345534323e0 -4.008040589554e0 -3.826521278213e0 3.691175868166e-1 3.788112438997e0 6.608234702162e0 1.275981606616e1 4.204888245645e1 4.431956466181e1 4.653396512130e1 5.417961685036e1 6.166121461751e1 1.088501522572e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.302576670000e0 -7.273541117711e0 -6.808105451264e0 -4.208134276678e0 -3.808850867570e0 6.314770017978e-2 2.970482944751e0 7.575193028230e0 1.813919993002e1 3.633298668593e1 4.214459468723e1 4.321830411169e1 5.306656734867e1 6.346301128742e1 9.244272408250e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429632335726e0 -7.058100841707e0 -6.773660889077e0 -4.509631945719e0 -3.649335750264e0 -7.398806386245e-1 3.494541083901e0 8.971503297367e0 2.566436165761e1 3.010445483384e1 3.878354509670e1 4.097016550729e1 5.249309579068e1 6.363692494058e1 1.023875233564e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532544560235e0 -7.150334425655e0 -6.376088799682e0 -4.852944305105e0 -3.533662978019e0 -1.529753308406e0 4.853612092241e0 1.068103738494e1 2.309760072240e1 3.248443068636e1 3.379731067013e1 3.985064374730e1 5.226859092752e1 6.232797434552e1 1.005707629125e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.636132391031e0 -7.220646846641e0 -5.854091412626e0 -5.096884965730e0 -3.722537482210e0 -2.002427629770e0 6.875426997379e0 1.155692673315e1 1.934961745006e1 2.714848094507e1 3.833061202829e1 3.934857355862e1 5.219873877534e1 5.925560365547e1 8.086499035675e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.687648925793e0 -7.220023242462e0 -5.644822842690e0 -5.075783642137e0 -3.976317788021e0 -2.124931352179e0 9.366670393346e0 9.566966033293e0 2.125701386940e1 2.215998813383e1 3.877259941743e1 4.121157776532e1 5.394183424655e1 5.601389692372e1 7.548060272760e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.637388714453e0 -7.222947682355e0 -5.860961597359e0 -5.090759589874e0 -3.713651236026e0 -2.004024773150e0 6.874935363806e0 1.155571370949e1 1.935059236678e1 2.714705594120e1 3.833512691252e1 3.934920272037e1 5.219551167334e1 5.924573080465e1 8.086498888447e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 2.673479349743e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534996040813e0 -7.154202843211e0 -6.382685050675e0 -4.844569957746e0 -3.522333892717e0 -1.530808867319e0 4.851847653857e0 1.067970167003e1 2.309854537593e1 3.248862487295e1 3.379670428426e1 3.985106506051e1 5.226347476103e1 6.231422700273e1 1.005710342976e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.950470545987e0 -7.475076052595e0 -6.582410725979e0 -4.491459128382e0 -3.662070434481e0 4.442954588771e-1 3.915623822411e0 6.643263369584e0 2.650228797736e1 3.151049651013e1 3.238733632796e1 4.103910979168e1 5.524443868046e1 6.161131069109e1 9.740214690929e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.805948423008e0 -7.234591964550e0 -7.180306433323e0 -4.251572540357e0 -3.873838144289e0 1.244497031123e0 3.048200959088e0 5.459758314359e0 2.537278748144e1 3.339197213489e1 3.671650468088e1 4.253785514740e1 5.613611960101e1 6.129358665261e1 9.305733644991e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.924278246026e0 -7.377638712057e0 -7.090158959974e0 -4.112587122385e0 -3.903381256220e0 9.430817708578e-1 3.607086737806e0 5.138296477842e0 1.784885532225e1 3.916422910587e1 4.088993148855e1 4.343411781526e1 5.646839962281e1 6.005651928596e1 8.711902359463e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.118937283402e0 -7.435940066618e0 -7.010568918754e0 -4.001372715395e0 -3.822494630171e0 3.678042080149e-1 3.790282907628e0 6.607386469962e0 1.275634134412e1 4.205169155433e1 4.432395897381e1 4.653341277499e1 5.417241303487e1 6.165393737785e1 1.088490031298e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.178612328317e0 -7.505269127034e0 -6.951163487865e0 -3.936794568477e0 -3.798488584835e0 1.404598290959e-1 3.734684463087e0 8.998645830116e0 9.511013715883e0 4.382267644976e1 4.437285372064e1 4.839208175302e1 5.339089615232e1 6.249689177724e1 1.262927566793e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.115670668892e0 -7.437389703771e0 -7.007362267806e0 -4.005121855048e0 -3.828176934177e0 3.709430752957e-1 3.791133111640e0 6.604015472486e0 1.275941999966e1 4.205012755296e1 4.432165608876e1 4.653350107062e1 5.418021103004e1 6.165450538837e1 1.088507373106e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.919043026591e0 -7.377537933826e0 -7.086156010598e0 -4.120311492468e0 -3.911966489141e0 9.471242487030e-1 3.607653755845e0 5.137138795649e0 1.785004338102e1 3.916492006792e1 4.088814296661e1 4.343166231963e1 5.647849552207e1 6.005994033592e1 8.712007985570e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.801213376251e0 -7.233165153662e0 -7.174362922740e0 -4.261165142119e0 -3.884140780264e0 1.245947292692e0 3.050383064106e0 5.460978457218e0 2.537025096137e1 3.339123208111e1 3.671723473805e1 4.253650507604e1 5.614120697493e1 6.130517430777e1 9.305783702275e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947281455535e0 -7.471668575124e0 -6.576288763764e0 -4.499865382234e0 -3.673774332587e0 4.449937926617e-1 3.918317064803e0 6.644921235233e0 2.650099021328e1 3.150763122310e1 3.238614850803e1 4.103864341728e1 5.524860594111e1 6.162648333740e1 9.740299591939e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201136355088e0 -7.605366337748e0 -5.768127924489e0 -4.737747404358e0 -3.582139800970e0 -4.607085881976e-1 5.592914029389e0 8.370869953622e0 2.018623761651e1 2.540026053845e1 3.711574011993e1 4.065804091331e1 5.413895859040e1 6.004625013298e1 6.950471456678e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.393803416811e0 -7.621855130503e0 -5.026322544510e0 -4.848188118756e0 -3.795443066972e0 -1.010044020265e0 7.753337072251e0 9.367806697915e0 1.710600936424e1 1.974849655354e1 3.758863776915e1 4.494648355576e1 5.406107573731e1 5.699149440091e1 6.098851825169e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.394314231269e0 -7.622982014604e0 -5.032894721593e0 -4.845009823391e0 -3.787900662343e0 -1.011064049621e0 7.753276328113e0 9.367081545995e0 1.710583234850e1 1.974824946521e1 3.758875721729e1 4.495182786814e1 5.406210720847e1 5.698343152411e1 6.098579737217e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 1.782319566496e-1 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202786884019e0 -7.608237889897e0 -5.775621938548e0 -4.731403283164e0 -3.570539856676e0 -4.622725516390e-1 5.591591869451e0 8.369577929696e0 2.018659218263e1 2.539946018645e1 3.711862624203e1 4.066256604963e1 5.413543759987e1 6.003266049488e1 6.950280333387e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -9.802757615725e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.949133420162e0 -7.850403309181e0 -5.932083638739e0 -4.151998568856e0 -3.658221139340e0 1.771978532592e0 4.639495926491e0 5.111934989943e0 2.384483594890e1 2.516429658526e1 3.420421349570e1 4.016265026456e1 5.756674454171e1 6.005959644018e1 6.367013256712e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.602578814392e0 -7.602577822959e0 -6.840815263365e0 -4.005467800719e0 -4.005467384242e0 2.798838292283e0 2.798838516153e0 4.403081879685e0 2.994294948810e1 2.994295379696e1 3.159980553232e1 4.117686802357e1 5.917087655806e1 5.917087660521e1 9.563335945988e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.805948115919e0 -7.234592488706e0 -7.180306245191e0 -4.251571928336e0 -3.873838672814e0 1.244496830092e0 3.048201050147e0 5.459758334551e0 2.537278747546e1 3.339196911024e1 3.671650815270e1 4.253785485722e1 5.613611953339e1 6.129358667382e1 9.305733642333e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.306419481318e0 -7.279407508645e0 -6.808816860900e0 -4.199432111842e0 -3.801036300018e0 6.370186572352e-2 2.969391477720e0 7.573590919841e0 1.813797201232e1 3.633449323232e1 4.214799763673e1 4.321763560712e1 5.306297719806e1 6.345074621791e1 9.244037168354e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.579935111189e0 -7.420165996256e0 -6.486030484242e0 -4.057437660980e0 -3.797168819113e0 -5.969977025042e-1 2.917715777956e0 1.015278904440e1 1.339833682987e1 3.823295648451e1 4.118176409737e1 4.748533921074e1 5.323913092460e1 6.485874413925e1 1.111361606134e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.579208129849e0 -7.419942277664e0 -6.484009640112e0 -4.058969445459e0 -3.801648189619e0 -5.944157564993e-1 2.917961344088e0 1.015010727095e1 1.340066596653e1 3.823219273344e1 4.118277937598e1 4.748528635593e1 5.324067881355e1 6.485889966615e1 1.111375010919e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.304484462825e0 -7.278049829748e0 -6.804500783208e0 -4.204474907148e0 -3.810519725451e0 6.925436154600e-2 2.970179203035e0 7.571160556570e0 1.813874070247e1 3.633500720837e1 4.214806313687e1 4.321736504182e1 5.306841717111e1 6.345119270088e1 9.244258245568e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.804022199608e0 -7.230072933592e0 -7.176000545434e0 -4.260698563396e0 -3.883421251961e0 1.250245163697e0 3.049655539094e0 5.457959807918e0 2.537009476709e1 3.339344728213e1 3.671581438118e1 4.253861997680e1 5.614568662342e1 6.129425541862e1 9.305843864488e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.601777629239e0 -7.598731346803e0 -6.833459704301e0 -4.017381281273e0 -4.013253809166e0 2.800412946875e0 2.803804151926e0 4.402321737343e0 2.994173585864e1 2.994414130587e1 3.159436469822e1 4.117789884306e1 5.917163877695e1 5.918515756736e1 9.563399991195e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947929070064e0 -7.847598992793e0 -5.924347620951e0 -4.157435195477e0 -3.671028762988e0 1.773459479744e0 4.643484656284e0 5.111468596888e0 2.384319524129e1 2.516571626364e1 3.420295429732e1 4.015644171349e1 5.756742154014e1 6.007452271656e1 6.367394413445e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264146587197e0 -7.972853406650e0 -4.936825367649e0 -4.270342995611e0 -3.564923689146e0 8.516153159004e-1 6.611885328082e0 6.650307830684e0 1.868493395468e1 1.896662502697e1 3.242131946744e1 4.637016639307e1 5.354628839671e1 5.662352372219e1 5.894383856212e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.384130831461e0 -8.006960483325e0 -4.321244522835e0 -4.312839754174e0 -3.738415760867e0 4.778631552493e-1 7.746827530874e0 7.749625691862e0 1.573458972032e1 1.675652067558e1 3.189200358040e1 5.112802944899e1 5.181639606656e1 5.631638975943e1 5.632616255560e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 8.911597832478e-2 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264819446531e0 -7.974353085140e0 -4.945478378029e0 -4.267525132662e0 -3.552818688679e0 8.502162801220e-1 6.609193305093e0 6.651266686094e0 1.868297876303e1 1.896820975346e1 3.242124746232e1 4.638163724780e1 5.354645104214e1 5.662312067779e1 5.892551850737e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -1.069391739897e0 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.174431426768e0 -8.160315398355e0 -4.959512625559e0 -4.017158264210e0 -3.445734640681e0 3.084505050981e0 3.848174426773e0 6.224306301525e0 1.858023789050e1 2.261553053528e1 2.715100019847e1 4.611850017114e1 5.211487449771e1 5.755490640500e1 6.042711783796e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -9.802757615725e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.949134261641e0 -7.850402359177e0 -5.932083657094e0 -4.151998398275e0 -3.658221278108e0 1.771978301301e0 4.639495988733e0 5.111934997716e0 2.384483291751e1 2.516429899437e1 3.420421417369e1 4.016265032229e1 5.756674452251e1 6.005959641580e1 6.367013263884e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.911597832478e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.950470371388e0 -7.475076136352e0 -6.582410774351e0 -4.491458675644e0 -3.662070734457e0 4.442951145681e-1 3.915623886860e0 6.643263372077e0 2.650228529057e1 3.151049738185e1 3.238733825846e1 4.103910990704e1 5.524443864723e1 6.161131067284e1 9.740214693921e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.020438049230e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.432942064893e0 -7.064961480489e0 -6.776225491359e0 -4.500568194043e0 -3.638824905384e0 -7.391681235912e-1 3.492048000176e0 8.969820943713e0 2.566691380948e1 3.010548400044e1 3.878283303219e1 4.097141233260e1 5.248888924099e1 6.362404175503e1 1.023850520672e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -7.129278265982e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.877515191531e0 -7.238114515994e0 -6.308538796997e0 -4.259125796705e0 -3.713398833115e0 -1.618498233960e0 3.304603397174e0 1.174840035778e1 1.905192725972e1 3.264529916949e1 3.851023383716e1 4.518211632628e1 5.181777251567e1 6.549188866758e1 9.792943410679e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -6.238118482734e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.042383823989e0 -7.348862356410e0 -6.019979293325e0 -4.130170969906e0 -3.818837918721e0 -1.939275694575e0 3.247137299553e0 1.464569288967e1 1.495402823994e1 3.366729239190e1 3.732854459147e1 4.767307216037e1 5.235693161741e1 6.630664241209e1 1.025800505011e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876841964327e0 -7.237231220122e0 -6.304974954515e0 -4.261814438958e0 -3.722243285675e0 -1.612910322894e0 3.305050786156e0 1.174651221137e1 1.905200371336e1 3.264644511030e1 3.851204441347e1 4.518204844762e1 5.181845941870e1 6.549213320077e1 9.793086587089e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.431912307413e0 -7.062380408783e0 -6.771782744968e0 -4.506723875486e0 -3.648384542395e0 -7.331679900587e-1 3.493110618953e0 8.968220410152e0 2.566400367740e1 3.010737022241e1 3.878298275664e1 4.097403973566e1 5.249185116818e1 6.362448791575e1 1.023870739843e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.949748520559e0 -7.472399443261e0 -6.575047161619e0 -4.501646513375e0 -3.669695857075e0 4.489045453361e-1 3.917447084152e0 6.642299766066e0 2.650366661801e1 3.150749165271e1 3.238405396793e1 4.104188787735e1 5.525244691894e1 6.161178764912e1 9.740353776522e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947605796528e0 -7.849134574334e0 -5.923215612232e0 -4.162536107015e0 -3.665430070437e0 1.775354374564e0 4.642489301072e0 5.110531432616e0 2.384508364723e1 2.516408950385e1 3.420205523959e1 4.015767163110e1 5.757710711161e1 6.006320106595e1 6.367191674134e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.173870385373e0 -8.158928169098e0 -4.949598393227e0 -4.022788862923e0 -3.456378808678e0 3.087841274935e0 3.847384860955e0 6.225379214946e0 1.857985812364e1 2.261622810088e1 2.715080038723e1 4.610603111556e1 5.211709672552e1 5.756108058866e1 6.043836959263e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383199795814e0 -8.270464163707e0 -4.116694045824e0 -3.996871557899e0 -3.421319855928e0 2.659869536184e0 5.429717441802e0 6.842556443468e0 1.593491462036e1 1.831091131302e1 2.460715513570e1 4.921298299733e1 5.249022667584e1 5.736841266981e1 5.945320134730e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 0.000000000000e0 8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383415512700e0 -8.270931836503e0 -4.125391298861e0 -3.995050587508e0 -3.412068815614e0 2.659068535675e0 5.429811821581e0 6.841895060692e0 1.593492474091e1 1.831066771257e1 2.460726605489e1 4.921478705006e1 5.249872961676e1 5.736574966906e1 5.944275668665e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 0.000000000000e0 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.509356696815e0 -8.475834776731e0 -3.525224788250e0 -3.515077383455e0 -3.428431395504e0 4.485858224725e0 5.854721967784e0 5.858784885909e0 1.570986540952e1 1.592368632961e1 1.828035823494e1 4.793072217142e1 5.805928109560e1 5.878058215849e1 5.879126072775e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-2 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383416543138e0 -8.270930687665e0 -4.125391273613e0 -3.995050589458e0 -3.412068843157e0 2.659068401881e0 5.429811816857e0 6.841895062507e0 1.593492514755e1 1.831066561406e1 2.460726786515e1 4.921478704411e1 5.249872959493e1 5.736574966530e1 5.944275670877e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.170319501997e0 -7.946657616369e0 -5.034663263358e0 -4.688968213276e0 -3.352371585483e0 1.094827863073e0 4.342959205337e0 8.558685880537e0 1.643750339098e1 2.398207756841e1 3.324354199223e1 4.476667989710e1 5.246413438148e1 5.749707989740e1 6.110549348503e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.247668715954e0 -7.450899111162e0 -5.932934530811e0 -5.023715501753e0 -3.278629238626e0 -3.406126132968e-1 3.625527870073e0 1.083221236855e1 1.805149897868e1 3.096168988519e1 3.770275259053e1 3.771983512742e1 5.182387409246e1 6.335189355687e1 7.995435517025e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.740325414982e0 -6.736464429316e0 -6.652645941475e0 -4.769666184624e0 -3.208337525392e0 -1.746984232228e0 3.320971471816e0 1.362941758833e1 2.150244994138e1 3.181182798525e1 3.593916429636e1 3.873919393467e1 5.154603215468e1 6.572966794555e1 1.203940982441e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.217219205400e0 -7.110288543690e0 -5.866366363915e0 -4.375864705405e0 -3.158218930178e0 -3.051288280565e0 3.192336083093e0 1.691562840856e1 2.355840149220e1 2.683416557376e1 3.335064050584e1 4.473496530183e1 5.154621102815e1 6.758157034464e1 1.000846401716e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.399880559470e0 -7.266679898210e0 -5.238656008356e0 -4.204112125124e0 -3.828929399449e0 -3.139765262252e0 3.144093151271e0 1.944659948474e1 2.286224159149e1 2.375611210491e1 3.256245274983e1 4.734423370508e1 5.155804957432e1 6.828390865763e1 8.646495692040e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 6.238118482734e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.217219164533e0 -7.110288545458e0 -5.866366605855e0 -4.375864623561e0 -3.158218927546e0 -3.051288126872e0 3.192336052894e0 1.691562840738e1 2.355840165547e1 2.683416557721e1 3.335064049181e1 4.473496534843e1 5.154621084139e1 6.758157034404e1 1.000846400963e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 7.129278265982e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.740325292509e0 -6.736464789345e0 -6.652645945356e0 -4.769666092109e0 -3.208337520270e0 -1.746984022943e0 3.320971418786e0 1.362941758732e1 2.150245017175e1 3.181182799045e1 3.593916537787e1 3.873919277813e1 5.154603203650e1 6.572966794300e1 1.203940980406e2</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.020438049230e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.247668339985e0 -7.450899721237e0 -5.932934537711e0 -5.023715424165e0 -3.278629229856e0 -3.406123736581e-1 3.625527799556e0 1.083221236727e1 1.805149909283e1 3.096169150700e1 3.770275255330e1 3.771983351441e1 5.182387408039e1 6.335189355089e1 7.995435489757e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 8.911597832478e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.170318510760e0 -7.946658787094e0 -5.034663275639e0 -4.688968187009e0 -3.352371570875e0 1.094828090395e0 4.342959150327e0 8.558685878801e0 1.643750333960e1 2.398207934034e1 3.324354014214e1 4.476667990842e1 5.246413437995e1 5.749707985722e1 6.110549347387e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 9.802757615725e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383415512698e0 -8.270931836503e0 -4.125391298864e0 -3.995050587500e0 -3.412068815615e0 2.659068535675e0 5.429811821572e0 6.841895060695e0 1.593492474088e1 1.831066771256e1 2.460726605529e1 4.921478705035e1 5.249872961645e1 5.736574966968e1 5.944275668679e1</array>
+        </property>
+        <kpoint coords="0.000000000000e0 1.069391739897e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.509355562692e0 -8.475835954337e0 -3.525224829461e0 -3.515077425666e0 -3.428431311184e0 4.485858237629e0 5.854721980890e0 5.858784899135e0 1.570986408637e1 1.592368922044e1 1.828035664055e1 4.793072217469e1 5.805928117922e1 5.878058211679e1 5.879126068668e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 -8.911597832478e-2 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.405589673586e0 -8.405356859851e0 -4.033192177821e0 -3.509235260203e0 -3.497139996345e0 4.895194515728e0 4.898913675581e0 5.100224508646e0 1.794148384136e1 1.794254955746e1 1.922214859804e1 4.840387307292e1 5.401817479787e1 5.919895307386e1 5.921317727657e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 0.000000000000e0 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383200819531e0 -8.270462999039e0 -4.116694072866e0 -3.996871466728e0 -3.421319912251e0 2.659869391184e0 5.429717447318e0 6.842556415241e0 1.593491304400e1 1.831091168523e1 2.460715647072e1 4.921298298952e1 5.249022662476e1 5.736841274424e1 5.945320131540e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264284139641e0 -7.973633780895e0 -4.934944091344e0 -4.277155927897e0 -3.558101533624e0 8.519082140379e-1 6.612580578964e0 6.648819945216e0 1.868329672842e1 1.896798091750e1 3.242110489203e1 4.637164998967e1 5.355027938934e1 5.663315012599e1 5.892612827456e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202272677676e0 -7.607136195719e0 -5.767075743982e0 -4.741186660656e0 -3.575116540346e0 -4.595376256377e-1 5.592564010194e0 8.369300069538e0 2.018726372362e1 2.539905999221e1 3.711401546273e1 4.066293877183e1 5.414314382602e1 6.003253369569e1 6.950378562056e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534512496866e0 -7.152743892322e0 -6.378274919728e0 -4.850046770884e0 -3.528689917271e0 -1.526496056087e0 4.852594970282e0 1.067884128021e1 2.309970503308e1 3.248436535937e1 3.379600409260e1 3.985500141256e1 5.226632111295e1 6.231450512374e1 1.005719921441e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.070716623352e0 -6.949758275722e0 -6.476341944748e0 -4.534669642197e0 -3.539159968851e0 -2.444484562595e0 4.443214250828e0 1.363021692526e1 2.535078018969e1 2.825339529846e1 3.657111607138e1 4.203740010986e1 5.155915511758e1 6.429465075749e1 9.642460075521e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416090079357e0 -7.204669971877e0 -5.950309491743e0 -4.249607958327e0 -3.765803319010e0 -2.941127555326e0 4.229527316271e0 1.686088596039e1 2.063949576114e1 2.888383853055e1 3.478919023434e1 4.667854830972e1 5.119877853707e1 6.542092841638e1 8.185399177000e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 5.346958699487e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416243321204e0 -7.204858515475e0 -5.951922485057e0 -4.248781123786e0 -3.760087039863e0 -2.945474750500e0 4.229403624810e0 1.686169502545e1 2.064028237044e1 2.888211477738e1 3.478858434256e1 4.667865130714e1 5.119887738211e1 6.542079720208e1 8.185410679714e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 6.238118482734e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.071126253649e0 -6.950480583409e0 -6.479112289323e0 -4.532344265263e0 -3.529807804508e0 -2.451543521368e0 4.442797508971e0 1.363148236763e1 2.535283475087e1 2.825196391415e1 3.656856919964e1 4.203725358454e1 5.155872089905e1 6.429433245234e1 9.642425468249e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 7.129278265982e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534995626079e0 -7.154203511636e0 -6.382685076454e0 -4.844569383370e0 -3.522334008141e0 -1.530809093391e0 4.851847662951e0 1.067970161300e1 2.309854412903e1 3.248862514862e1 3.379670661803e1 3.985106387181e1 5.226347496891e1 6.231422695460e1 1.005710339830e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.020438049230e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202786476004e0 -7.608238395635e0 -5.775621912858e0 -4.731403080760e0 -3.570539906305e0 -4.622726366031e-1 5.591591874886e0 8.369577874058e0 2.018659044322e1 2.539946279643e1 3.711862568537e1 4.066256582349e1 5.413543771885e1 6.003266044397e1 6.950280319705e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 8.911597832478e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264819446529e0 -7.974353085140e0 -4.945478378028e0 -4.267525132658e0 -3.552818688680e0 8.502162801234e-1 6.609193305089e0 6.651266686094e0 1.868297876289e1 1.896820975342e1 3.242124746359e1 4.638163724777e1 5.354645104192e1 5.662312067854e1 5.892551850747e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-2 9.802757615725e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383415521906e0 -8.270931849663e0 -4.125391246820e0 -3.995050680791e0 -3.412068786798e0 2.659068547149e0 5.429811811593e0 6.841895090716e0 1.593492672271e1 1.831066524225e1 2.460726653090e1 4.921478705172e1 5.249872964609e1 5.736574959007e1 5.944275674213e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -1.782319566496e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.173584412604e0 -8.160029296457e0 -4.949171769747e0 -4.029554161303e0 -3.447938357080e0 3.086351555968e0 3.849249087893e0 6.224127111428e0 1.858050338318e1 2.261493527151e1 2.715105207462e1 4.610677462886e1 5.212288876571e1 5.756286407408e1 6.042734650817e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 -8.911597832478e-2 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.173871392236e0 -8.158927100539e0 -4.949598389543e0 -4.022788776747e0 -3.456378867613e0 3.087841126035e0 3.847384894993e0 6.225379194840e0 1.857985595635e1 2.261623114972e1 2.715079960721e1 4.610603110139e1 5.211709671639e1 5.756108063130e1 6.043836955621e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 0.000000000000e0 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.169034006966e0 -7.945697905252e0 -5.026795161924e0 -4.693202984761e0 -3.362097380345e0 1.096415034468e0 4.342921139152e0 8.559991616289e0 1.643717659406e1 2.398296709194e1 3.324363006142e1 4.476007624764e1 5.245917807002e1 5.750447167882e1 6.111672654415e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201075446311e0 -7.606885466819e0 -5.765890958953e0 -4.740553770100e0 -3.580371286905e0 -4.588527870886e-1 5.591797991856e0 8.370791301046e0 2.018598605350e1 2.540056137491e1 3.711410391132e1 4.066076723663e1 5.414115862015e1 6.004041557339e1 6.950436404456e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.417369674879e0 -7.340642725039e0 -6.290632248068e0 -4.774911890690e0 -3.783064094750e0 -1.442538910304e0 7.077113615305e0 7.636358000460e0 2.647408678591e1 2.933995429376e1 3.298814313451e1 4.162229162233e1 5.419435050257e1 5.901719510441e1 9.384361734260e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886795852537e0 -7.154856583958e0 -6.583420820058e0 -4.652924502195e0 -3.789214406239e0 -2.113977855125e0 6.546563923535e0 9.857956669798e0 2.643666441994e1 3.060649364833e1 3.678012853689e1 4.254949858889e1 5.237977110393e1 5.927225763810e1 8.948003146398e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309828851972e0 -7.150208512072e0 -6.650139639330e0 -4.356675961915e0 -3.798857655248e0 -2.563803327793e0 6.099534971464e0 1.267423812015e1 1.999329059909e1 3.363672702326e1 3.876708193328e1 4.479725842769e1 5.118135283498e1 6.038559948423e1 8.107943199287e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.470513467400e0 -7.230749860641e0 -6.576577065448e0 -4.181444280954e0 -3.863801592431e0 -2.718435355886e0 5.934876179651e0 1.539334457331e1 1.611544017441e1 3.487413815382e1 3.806163599445e1 4.755565526717e1 5.018605349262e1 6.126036343572e1 8.148462761673e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 5.346958699487e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.310493948226e0 -7.149802387933e0 -6.654179930246e0 -4.352974030512e0 -3.792076115204e0 -2.569032261501e0 6.098939593496e0 1.267597576209e1 1.999349416704e1 3.363528749302e1 3.876620326398e1 4.479698515954e1 5.117968468276e1 6.038558531480e1 8.107975902213e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 6.238118482734e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.888009830720e0 -7.155561692841e0 -6.589584064191e0 -4.646282110171e0 -3.779728640526e0 -2.120181190340e0 6.545233333604e0 9.859633558230e0 2.643982445614e1 3.060487371680e1 3.677996008219e1 4.254727288508e1 5.237475888631e1 5.927219940874e1 8.948038583498e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 7.129278265982e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.418927859055e0 -7.342178282258e0 -6.299194797677e0 -4.765099564438e0 -3.773643366629e0 -1.447580528171e0 7.074641335524e0 7.638050033987e0 2.647400053670e1 2.933989368918e1 3.299323941635e1 4.162005912950e1 5.418523731648e1 5.901621846112e1 9.384324112493e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.020438049230e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202786884017e0 -7.608237889898e0 -5.775621938546e0 -4.731403283164e0 -3.570539856674e0 -4.622725516391e-1 5.591591869463e0 8.369577929677e0 2.018659218263e1 2.539946018572e1 3.711862624450e1 4.066256605002e1 5.413543759986e1 6.003266049633e1 6.950280333058e1</array>
+        </property>
+        <kpoint coords="1.782319566496e-1 8.911597832478e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.170319226106e0 -7.946658059656e0 -5.034663232347e0 -4.688968391530e0 -3.352371535561e0 1.094828188501e0 4.342959173291e0 8.558685910751e0 1.643750506372e1 2.398207622819e1 3.324354145008e1 4.476667994152e1 5.246413432013e1 5.749707988035e1 6.110549352540e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -2.673479349743e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.026925284099e0 -7.750652450363e0 -5.838009866197e0 -4.650172422004e0 -3.383381020734e0 1.265260456038e0 3.162003793766e0 7.983723586346e0 1.971599821389e1 2.862168588280e1 3.548118542638e1 4.003234568339e1 5.398762184061e1 6.235432999837e1 6.712632780111e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -1.782319566496e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947605814142e0 -7.849134556095e0 -5.923215612156e0 -4.162536110231e0 -3.665430068144e0 1.775354374842e0 4.642489301295e0 5.110531432535e0 2.384508364306e1 2.516408950860e1 3.420205523767e1 4.015767163101e1 5.757710711098e1 6.006320106587e1 6.367191674293e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 -8.911597832478e-2 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.024073938810e0 -7.751021681469e0 -5.837881762301e0 -4.647741994006e0 -3.391014241968e0 1.265562482917e0 3.161447703948e0 7.985584836075e0 1.971475170289e1 2.862300732295e1 3.548206391475e1 4.002914227784e1 5.398482762938e1 6.236592736761e1 6.712758460161e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 0.000000000000e0 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.244674165935e0 -7.450097297943e0 -5.925817663082e0 -5.030335545604e0 -3.288502429913e0 -3.388731081499e-1 3.625961403738e0 1.083386931207e1 1.805069271982e1 3.096281593378e1 3.769840465683e1 3.771885104905e1 5.182833039526e1 6.336388534244e1 7.995501816429e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532351419585e0 -7.153253544663e0 -6.373400905385e0 -4.854233177400e0 -3.533955668591e0 -1.526316010197e0 4.852228887000e0 1.068089872289e1 2.309754825833e1 3.248518316739e1 3.379587866550e1 3.985241155104e1 5.227000404556e1 6.232360476516e1 1.005702706457e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.885897177365e0 -7.154786017065e0 -6.581467321118e0 -4.655873046020e0 -3.789550177936e0 -2.114948603747e0 6.545470519109e0 9.859918751120e0 2.643665827522e1 3.060434896613e1 3.678061962976e1 4.254841209090e1 5.238212802123e1 5.927669157762e1 8.947819855825e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.229671451229e0 -7.213477169170e0 -6.840592893751e0 -4.421416585942e0 -3.819480841860e0 -2.417131776201e0 8.129315347257e0 9.840136930494e0 1.978461138774e1 3.659986678092e1 3.919791253836e1 4.499545831800e1 5.116860518154e1 5.713439689634e1 8.061065905616e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436083135714e0 -7.229714564792e0 -7.052615771399e0 -4.168580106809e0 -3.876509470102e0 -2.545966355834e0 8.262672671905e0 1.180856679841e1 1.530343221055e1 3.981234429970e1 4.153149709631e1 4.634918454046e1 4.927676252360e1 5.790610110630e1 8.407692272199e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 4.455798916239e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436593741615e0 -7.227669588557e0 -7.056300727218e0 -4.165209262528e0 -3.875509839792e0 -2.547499015538e0 8.262066696714e0 1.181076338345e1 1.530186209958e1 3.981249301281e1 4.153285585150e1 4.634919044840e1 4.927257868001e1 5.790665883922e1 8.407728778341e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 5.346958699487e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.231095546529e0 -7.212698609683e0 -6.846519588853e0 -4.414573437119e0 -3.813557484174e0 -2.421314117989e0 8.127828885720e0 9.842388153875e0 1.978448756422e1 3.659911890250e1 3.920057845597e1 4.499419894466e1 5.116046024001e1 5.713507106141e1 8.061172861839e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 6.238118482734e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.888009977485e0 -7.155561536715e0 -6.589583970046e0 -4.646282437707e0 -3.779728475289e0 -2.120181101664e0 6.545233315751e0 9.859633585793e0 2.643982440062e1 3.060487485874e1 3.677995869629e1 4.254727335153e1 5.237475852415e1 5.927219947450e1 8.948038590302e1</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 7.129278265982e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534996040810e0 -7.154202843213e0 -6.382685050675e0 -4.844569957748e0 -3.522333892715e0 -1.530808867320e0 4.851847653866e0 1.067970167001e1 2.309854537602e1 3.248862487183e1 3.379670428378e1 3.985106506320e1 5.226347476149e1 6.231422700444e1 1.005710342903e2</array>
+        </property>
+        <kpoint coords="2.673479349743e-1 8.020438049230e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.247669053290e0 -7.450898785819e0 -5.932934499077e0 -5.023715939974e0 -3.278629191588e0 -3.406121015170e-1 3.625527799849e0 1.083221240143e1 1.805150046443e1 3.096168797076e1 3.770275263409e1 3.771983526842e1 5.182387398749e1 6.335189360191e1 7.995435524981e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -3.564639132991e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.346041040930e0 -7.129392339338e0 -6.486424056245e0 -4.815594087190e0 -3.331733037898e0 -3.970638508394e-1 2.897643129589e0 1.027057732688e1 2.246217912020e1 3.236820799821e1 3.543535857155e1 3.890569505645e1 5.228837347163e1 6.469449656592e1 1.078832661804e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -2.673479349743e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.949749145386e0 -7.472398668036e0 -6.575047243378e0 -4.501646834435e0 -3.669695685252e0 4.489046654137e-1 3.917447096068e0 6.642299768455e0 2.650366861162e1 3.150748990672e1 3.238405287841e1 4.104188857014e1 5.525244688082e1 6.161178766164e1 9.740353790604e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -1.782319566496e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.946805810759e0 -7.474429882868e0 -6.574205923450e0 -4.501106489344e0 -3.672918096446e0 4.484973318443e-1 3.915834347155e0 6.644768712499e0 2.650127946220e1 3.150949461070e1 3.238388290402e1 4.104006543276e1 5.525208221143e1 6.161933747976e1 9.740265605776e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 -8.911597832478e-2 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.342754839816e0 -7.129876830325e0 -6.482796346841e0 -4.818835271121e0 -3.337894012182e0 -3.983577346647e-1 2.898042004143e0 1.027300385255e1 2.246009872866e1 3.236802617979e1 3.543648726913e1 3.890170289676e1 5.229252110457e1 6.470686017365e1 1.078821449905e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 0.000000000000e0 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.737471878992e0 -6.735544796091e0 -6.645945154137e0 -4.776854403536e0 -3.218284459066e0 -1.745563430428e0 3.321945426802e0 1.363116241541e1 2.150115412254e1 3.180843157206e1 3.593889122219e1 3.874022433476e1 5.155086628265e1 6.574242869292e1 1.203927280562e2</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.068754936203e0 -6.945332271120e0 -6.475400951028e0 -4.540987391972e0 -3.541245601998e0 -2.447395949638e0 4.443295330140e0 1.363251036624e1 2.535006817365e1 2.825077655098e1 3.656900967923e1 4.203899253028e1 5.156211071830e1 6.430584769463e1 9.642135075224e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.308648532643e0 -7.145829620612e0 -6.651848765095e0 -4.361162638386e0 -3.797405734055e0 -2.567028909439e0 6.098728412003e0 1.267623091540e1 1.999356717790e1 3.363339863638e1 3.876556527753e1 4.479859747298e1 5.118341410914e1 6.039310955772e1 8.107745521036e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.435504213350e0 -7.225550018123e0 -7.055632996290e0 -4.171463493738e0 -3.875354167195e0 -2.547000772669e0 8.261590912899e0 1.180961246994e1 1.530405427109e1 3.980848384035e1 4.153173449185e1 4.635008800836e1 4.927988773262e1 5.790828368265e1 8.407603916770e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.469043144872e0 -7.244579657926e0 -7.240006153954e0 -4.000314329102e0 -3.995689581941e0 -2.520292145326e0 1.060085740311e1 1.060198986618e1 1.319260604827e1 4.345487097676e1 4.345947780553e1 4.678140589826e1 4.678709981889e1 5.697950175504e1 8.700642462457e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 4.455798916239e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436593780409e0 -7.227669512961e0 -7.056300830728e0 -4.165209661892e0 -3.875509338067e0 -2.547499011921e0 8.262066697392e0 1.181076334937e1 1.530186212222e1 3.981249323027e1 4.153285779580e1 4.634918876161e1 4.927257794409e1 5.790665898385e1 8.407728778546e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 5.346958699487e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.310494089677e0 -7.149802335599e0 -6.654179865495e0 -4.352974459836e0 -3.792075660982e0 -2.569032188433e0 6.098939562057e0 1.267597576962e1 1.999349416957e1 3.363528823671e1 3.876620489534e1 4.479698306414e1 5.117968409261e1 6.038558540259e1 8.107975906468e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 6.238118482734e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.071126529623e0 -6.950480524197e0 -6.479111831184e0 -4.532345026203e0 -3.529807490650e0 -2.451543218518e0 4.442797466625e0 1.363148241147e1 2.535283484474e1 2.825196474303e1 3.656857075612e1 4.203725083426e1 5.155872071553e1 6.429433250152e1 9.642425495158e1</array>
+        </property>
+        <kpoint coords="3.564639132991e-1 7.129278265982e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.740325698282e0 -6.736464038435e0 -6.652645909532e0 -4.769666875893e0 -3.208337480140e0 -1.746983539475e0 3.320971374449e0 1.362941762537e1 2.150245111409e1 3.181182802245e1 3.593916658430e1 3.873919002858e1 5.154603204039e1 6.572966799436e1 1.203940985531e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -4.455798916239e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876403232151e0 -6.984939686992e0 -6.336830040276e0 -4.512371037172e0 -3.363102921420e0 -1.800777251785e0 2.827112852163e0 1.319452752293e1 2.473232171139e1 2.778647483759e1 3.643321705513e1 4.217648596144e1 5.156324274321e1 6.690894946338e1 1.144978343966e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -3.564639132991e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.431912651914e0 -7.062380142484e0 -6.771782487135e0 -4.506724540939e0 -3.648384157860e0 -7.331678000502e-1 3.493110591018e0 8.968220425153e0 2.566400366814e1 3.010737203814e1 3.878297966285e1 4.097404084748e1 5.249185105802e1 6.362448793610e1 1.023870741564e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -2.673479349743e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.103967418174e0 -7.404325240082e0 -6.789669342031e0 -4.427819814203e0 -3.829385621510e0 -3.962368132873e-1 5.128486651035e0 6.162537814934e0 2.563946187027e1 3.266195272082e1 3.659402820828e1 4.272897310721e1 5.499908129487e1 5.962549409598e1 9.543780204527e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -1.782319566496e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429328964527e0 -7.062825068114e0 -6.769927101247e0 -4.510074529381e0 -3.649640372148e0 -7.355607201149e-1 3.492141167433e0 8.971295682607e0 2.566407217455e1 3.010471328720e1 3.878287660710e1 4.097173404306e1 5.249435928779e1 6.363509639525e1 1.023842890718e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 -8.911597832478e-2 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.873796841640e0 -6.979405454967e0 -6.337495746140e0 -4.518112532254e0 -3.365701381952e0 -1.805535390222e0 2.828030669845e0 1.319719107321e1 2.473170013854e1 2.778404830941e1 3.643092471375e1 4.217736908840e1 5.156599478922e1 6.692205894188e1 1.144969274913e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 0.000000000000e0 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214883500547e0 -7.103940542946e0 -5.864878777075e0 -4.383006090692e0 -3.168047745669e0 -3.050591918783e0 3.193492935488e0 1.691743025441e1 2.355656393573e1 2.683155702129e1 3.335199526944e1 4.473582712247e1 5.154701558063e1 6.759491596722e1 1.000856651241e2</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414264458453e0 -7.198799049631e0 -5.950663866878e0 -4.256524083019e0 -3.763713001269e0 -2.948392927519e0 4.229814025326e0 1.686282160479e1 2.063937564206e1 2.887959564646e1 3.479030914610e1 4.667927899856e1 5.119894302682e1 6.543418423135e1 8.185278567209e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.469055727502e0 -7.225345420891e0 -6.578166204507e0 -4.188185227537e0 -3.862693909042e0 -2.721182131675e0 5.934332295621e0 1.539202110268e1 1.611864985345e1 3.486906109485e1 3.806324832524e1 4.755578351916e1 5.018906857003e1 6.126867520627e1 8.148261208627e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.435504183629e0 -7.225550145359e0 -7.055632978640e0 -4.171464277726e0 -3.875353298015e0 -2.547000744072e0 8.261590924581e0 1.180961247379e1 1.530405424293e1 3.980848477865e1 4.153173517561e1 4.635008590578e1 4.927988822885e1 5.790828356091e1 8.407603917843e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 3.564639132991e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.436083144827e0 -7.229714614026e0 -7.052615859913e0 -4.168581294132e0 -3.876508095382e0 -2.545966323179e0 8.262672684303e0 1.180856676815e1 1.530343220501e1 3.981234545805e1 4.153149972077e1 4.634918075108e1 4.927676228502e1 5.790610112914e1 8.407692273476e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 4.455798916239e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.470513575463e0 -7.230749818497e0 -6.576577198588e0 -4.181445261399e0 -3.863800314920e0 -2.718435340383e0 5.934876131535e0 1.539334450042e1 1.611544025615e1 3.487413808065e1 3.806163946899e1 4.755565147207e1 5.018605347161e1 6.126036352240e1 8.148462765064e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 5.346958699487e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416243524631e0 -7.204858479752e0 -5.951922413904e0 -4.248781920784e0 -3.760086082524e0 -2.945474671942e0 4.229403543189e0 1.686169505719e1 2.064028234898e1 2.888211486211e1 3.478858740034e1 4.667864766035e1 5.119887736724e1 6.542079725208e1 8.185410701833e1</array>
+        </property>
+        <kpoint coords="4.455798916239e-1 6.238118482734e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.217219434174e0 -7.110288511365e0 -5.866366138382e0 -4.375865523985e0 -3.158218884798e0 -3.051287343952e0 3.192335964862e0 1.691562845416e1 2.355840185401e1 2.683416560322e1 3.335064326301e1 4.473496160996e1 5.154621090409e1 6.758157039577e1 1.000846405803e2</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -5.346958699487e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.216816972629e0 -7.268181859657e0 -5.532346959604e0 -4.226084717788e0 -3.689272398845e0 -2.593226750401e0 2.795536103367e0 1.639435199105e1 2.012035392717e1 2.825323147733e1 3.432621623133e1 4.674956450503e1 5.190977348848e1 6.828714323458e1 9.759838622856e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -4.455798916239e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876842198076e0 -7.237231194315e0 -6.304974709126e0 -4.261815250227e0 -3.722242502244e0 -1.612910209295e0 3.305050726938e0 1.174651222361e1 1.905200371927e1 3.264644606602e1 3.851204663041e1 4.518204496129e1 5.181845937781e1 6.549213323890e1 9.793086596202e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -3.564639132991e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483787934718e0 -7.318356792112e0 -6.837837556010e0 -4.280284913830e0 -3.813487720730e0 -1.045213195717e0 4.918378764295e0 8.021240667692e0 1.853973672241e1 3.659092673732e1 4.066021941355e1 4.433797626698e1 5.274108305949e1 6.051357794066e1 9.242777086854e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -2.673479349743e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.482503355740e0 -7.316682308255e0 -6.839250878833e0 -4.282699522914e0 -3.812515758371e0 -1.046624591684e0 4.916178295482e0 8.024237356329e0 1.853993196878e1 3.658928627242e1 4.065917610320e1 4.433767433681e1 5.274133887494e1 6.051998415357e1 9.242634845445e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -1.782319566496e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874634899140e0 -7.232224429068e0 -6.307753080750e0 -4.267313032564e0 -3.720368100414e0 -1.617978574707e0 3.304556895457e0 1.174956097743e1 1.905247305149e1 3.264302922852e1 3.851023659729e1 4.518295874924e1 5.181941693862e1 6.550449687608e1 9.792935079363e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 -8.911597832478e-2 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214523937401e0 -7.262142822532e0 -5.533064651935e0 -4.232731456527e0 -3.686985794150e0 -2.602844991972e0 2.796586931549e0 1.639658492514e1 2.012050979522e1 2.824885702423e1 3.432756025205e1 4.675027651287e1 5.190911039478e1 6.830074473535e1 9.760143192503e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 0.000000000000e0 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.397735296052e0 -7.260413804521e0 -5.236377136216e0 -4.211233516372e0 -3.828830668981e0 -3.149815603191e0 3.145241734961e0 1.944934778106e1 2.285999204057e1 2.375283711904e1 3.256494255951e1 4.734490278760e1 5.155644289492e1 6.829747223527e1 8.646891053960e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.414264424068e0 -7.198799056325e0 -5.950664046007e0 -4.256524245814e0 -3.763712685425e0 -2.948392901885e0 4.229814005881e0 1.686282162994e1 2.063937563077e1 2.887959581618e1 3.479030917765e1 4.667927905201e1 5.119894272960e1 6.543418423011e1 8.185278564674e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.308648445228e0 -7.145829734936e0 -6.651848931061e0 -4.361163240374e0 -3.797405002904e0 -2.567028788038e0 6.098728398880e0 1.267623094258e1 1.999356713988e1 3.363339943190e1 3.876556602588e1 4.479859592275e1 5.118341397115e1 6.039310954372e1 8.107745521742e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.229671374764e0 -7.213477480231e0 -6.840592861251e0 -4.421417491798e0 -3.819479832220e0 -2.417131588829e0 8.129315386070e0 9.840136906581e0 1.978461134395e1 3.659986991200e1 3.919791238181e1 4.499545484689e1 5.116860552619e1 5.713439677126e1 8.061065908195e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 3.564639132991e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.309828906188e0 -7.150208570285e0 -6.650139745576e0 -4.356676992404e0 -3.798856470705e0 -2.563803131918e0 6.099534926967e0 1.267423815479e1 1.999329056363e1 3.363672856358e1 3.876708431102e1 4.479725478331e1 5.118135210656e1 6.038559955808e1 8.107943204199e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 4.455798916239e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.416090248453e0 -7.204669942276e0 -5.950309601736e0 -4.249608916972e0 -3.765802049987e0 -2.941127446646e0 4.229527215233e0 1.686088601720e1 2.063949572849e1 2.888383878515e1 3.478919332308e1 4.667854471778e1 5.119877822414e1 6.542092846517e1 8.185399196546e1</array>
+        </property>
+        <kpoint coords="5.346958699487e-1 5.346958699487e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.399880782897e0 -7.266679865199e0 -5.238656082218e0 -4.204113015488e0 -3.828928106653e0 -3.139765219459e0 3.144093034702e0 1.944659955010e1 2.286224149233e1 2.375611211436e1 3.256245589943e1 4.734422982626e1 5.155804961963e1 6.828390870922e1 8.646495738450e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -6.238118482734e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.216960333650e0 -7.268483204762e0 -5.534592588950e0 -4.225394765685e0 -3.682355518353e0 -2.597943638477e0 2.795453066388e0 1.639525634226e1 2.012102126709e1 2.825163051106e1 3.432553864410e1 4.674958641403e1 5.190997069691e1 6.828709109909e1 9.759807864152e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -5.346958699487e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.042384019323e0 -7.348862323755e0 -6.019979322513e0 -4.130171929811e0 -3.818836631359e0 -1.939275682507e0 3.247137220791e0 1.464569284434e1 1.495402830120e1 3.366729236445e1 3.732854802822e1 4.767306826886e1 5.235693169094e1 6.630664246383e1 1.025800505513e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -4.455798916239e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.722531228073e0 -7.373395585373e0 -6.767706285372e0 -4.093763214682e0 -3.820435233451e0 -1.416497897701e0 4.672871471569e0 1.057558803999e1 1.385986281706e1 3.869271746226e1 4.139679208458e1 4.713558813783e1 5.188562043203e1 6.263401140512e1 1.062367764895e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -3.564639132991e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.488849101612e0 -7.403943687772e0 -7.137054029455e0 -4.090761550233e0 -3.825479799656e0 -1.239316686652e0 6.591154112823e0 7.788441039394e0 1.355261503689e1 4.220650551819e1 4.256349414304e1 4.661567658606e1 5.133275789733e1 6.041205313500e1 1.066115340951e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -2.673479349743e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.720710969323e0 -7.368497305962e0 -6.771714258426e0 -4.098557727521e0 -3.818608903976e0 -1.418565925429e0 4.670837807172e0 1.057842757129e1 1.386071659403e1 3.868871182565e1 4.139600348791e1 4.713621163772e1 5.188867724284e1 6.264121500742e1 1.062350241995e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -1.782319566496e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.040041073354e0 -7.343098928205e0 -6.022160417118e0 -4.137040053644e0 -3.818432727661e0 -1.943679661899e0 3.246888968006e0 1.464512140300e1 1.495777558450e1 3.366217636157e1 3.733042481592e1 4.767359372848e1 5.235762173589e1 6.631921033551e1 1.025796605755e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 -8.911597832478e-2 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214523937399e0 -7.262142822389e0 -5.533064652299e0 -4.232731455787e0 -3.686985794868e0 -2.602844991760e0 2.796586931535e0 1.639658492511e1 2.012050979522e1 2.824885702429e1 3.432756025195e1 4.675027651294e1 5.190911039477e1 6.830074473536e1 9.760143192517e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 0.000000000000e0 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.214883459681e0 -7.103940544723e0 -5.864879019153e0 -4.383006009290e0 -3.168047743253e0 -3.050591764242e0 3.193492905253e0 1.691743025327e1 2.355656409891e1 2.683155702475e1 3.335199525573e1 4.473582716865e1 5.154701539421e1 6.759491596579e1 1.000856650511e2</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.068754806209e0 -6.945332355385e0 -6.475401322627e0 -4.540987448069e0 -3.541245394081e0 -2.447395704453e0 4.443295286568e0 1.363251038397e1 2.535006848244e1 2.825077675434e1 3.656901034716e1 4.203899148757e1 5.156211051579e1 6.430584769397e1 9.642135062631e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.885896964233e0 -7.154786558462e0 -6.581467297763e0 -4.655873520324e0 -3.789549651922e0 -2.114948261801e0 6.545470521080e0 9.859918757534e0 2.643665828378e1 3.060435070878e1 3.678062041898e1 4.254840909456e1 5.238212825609e1 5.927669157329e1 8.947819847433e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 2.673479349743e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.886795786567e0 -7.154856966761e0 -6.583420704888e0 -4.652925303436e0 -3.789213715015e0 -2.113977424854e0 6.546563907783e0 9.857956703651e0 2.643666437306e1 3.060649653367e1 3.678012793906e1 4.254949605891e1 5.237977097691e1 5.927225769973e1 8.948003144730e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 3.564639132991e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.070716769593e0 -6.949758295760e0 -6.476341863267e0 -4.534670458069e0 -3.539159446232e0 -2.444484016325e0 4.443214164998e0 1.363021698674e1 2.535078059183e1 2.825339633165e1 3.657111829493e1 4.203739631829e1 5.155915473066e1 6.429465080610e1 9.642460089617e1</array>
+        </property>
+        <kpoint coords="6.238118482734e-1 4.455798916239e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.217219434175e0 -7.110288511366e0 -5.866366138381e0 -4.375865523985e0 -3.158218884799e0 -3.051287343952e0 3.192335964860e0 1.691562845418e1 2.355840185389e1 2.683416560324e1 3.335064326301e1 4.473496161066e1 5.154621090383e1 6.758157039495e1 1.000846405812e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -7.129278265982e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876759168481e0 -6.986305344209e0 -6.339260319190e0 -4.509914944947e0 -3.354271880025e0 -1.807320221366e0 2.826810321486e0 1.319585490417e1 2.473402392595e1 2.778536158594e1 3.643026591151e1 4.217659107690e1 5.156308921746e1 6.690880032510e1 1.144963948420e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -6.238118482734e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.877515382602e0 -7.238114516510e0 -6.308538668932e0 -4.259126774098e0 -3.713397801038e0 -1.618498060142e0 3.304603308921e0 1.174840037676e1 1.905192725541e1 3.264530034057e1 3.851023632456e1 4.518211241777e1 5.181777235230e1 6.549188871517e1 9.792943418611e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -5.346958699487e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.723299112236e0 -7.373110611400e0 -6.769806488563e0 -4.091554814608e0 -3.817233988758e0 -1.418678769077e0 4.672461352251e0 1.057805764927e1 1.385776517083e1 3.869341716006e1 4.139623072615e1 4.713555965657e1 5.188355384629e1 6.263394001210e1 1.062360841469e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -4.455798916239e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.472178758974e0 -7.420003639009e0 -7.298777445330e0 -3.969586755064e0 -3.861938344917e0 -1.302913363399e0 6.826654528941e0 9.520933101767e0 1.060814329159e1 4.414784848535e1 4.459232153753e1 4.745476148908e1 4.952889639387e1 6.090647937423e1 1.174215720882e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -3.564639132991e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.470743373794e0 -7.415873644681e0 -7.302682797162e0 -3.974353636721e0 -3.859800880809e0 -1.302883242754e0 6.824326256458e0 9.521134378270e0 1.061091171862e1 4.414091903126e1 4.459302698403e1 4.745433716751e1 4.953666692701e1 6.090812368838e1 1.174210011155e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -2.673479349743e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.720711005430e0 -7.368497264734e0 -6.771714203495e0 -4.098557259264e0 -3.818609433777e0 -1.418565956272e0 4.670837820953e0 1.057842756836e1 1.386071660506e1 3.868871155429e1 4.139600307244e1 4.713621230250e1 5.188867732204e1 6.264121500939e1 1.062350241942e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -1.782319566496e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.874634941403e0 -7.232224403006e0 -6.307752963702e0 -4.267312866972e0 -3.720368346218e0 -1.617978637120e0 3.304556924478e0 1.174956097058e1 1.905247306178e1 3.264302901341e1 3.851023632615e1 4.518295917128e1 5.181941706083e1 6.550449686891e1 9.792935079872e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 -8.911597832478e-2 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.873796841624e0 -6.979405453948e0 -6.337495747561e0 -4.518112531450e0 -3.365701382574e0 -1.805535389967e0 2.828030669808e0 1.319719107313e1 2.473170013857e1 2.778404830961e1 3.643092471326e1 4.217736908875e1 5.156599478915e1 6.692205894191e1 1.144969274917e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 0.000000000000e0 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.737471756346e0 -6.735545156330e0 -6.645945158349e0 -4.776854310821e0 -3.218284453923e0 -1.745563220929e0 3.321945373704e0 1.363116241443e1 2.150115435299e1 3.180843157726e1 3.593889230387e1 3.874022317753e1 5.155086616447e1 6.574242868917e1 1.203927278604e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.532351071557e0 -7.153254326500e0 -6.373400849862e0 -4.854233171069e0 -3.533955574060e0 -1.526315647133e0 4.852228845234e0 1.068089873156e1 2.309754881478e1 3.248518400953e1 3.379587944335e1 3.985240935756e1 5.227000406802e1 6.232360476367e1 1.005702703076e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.417369304403e0 -7.340643521477e0 -6.290632119163e0 -4.774912287262e0 -3.783063776667e0 -1.442538446771e0 7.077113657478e0 7.636357977689e0 2.647408978589e1 2.933995327741e1 3.298814258088e1 4.162228990756e1 5.419435062864e1 5.901719511731e1 9.384361707100e1</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 2.673479349743e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.534512564547e0 -7.152744004270e0 -6.378274837509e0 -4.850047339462e0 -3.528689707478e0 -1.526495467734e0 4.852594919598e0 1.067884134576e1 2.309970683636e1 3.248436593101e1 3.379600252989e1 3.985500041060e1 5.226632092788e1 6.231450517220e1 1.005719921106e2</array>
+        </property>
+        <kpoint coords="7.129278265982e-1 3.564639132991e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.740325698283e0 -6.736464038433e0 -6.652645909533e0 -4.769666875892e0 -3.208337480142e0 -1.746983539473e0 3.320971374445e0 1.362941762540e1 2.150245111402e1 3.181182802246e1 3.593916658540e1 3.873919002752e1 5.154603203994e1 6.572966799319e1 1.203940985570e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.020438049230e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.346331761499e0 -7.131198373734e0 -6.490747478369e0 -4.809741104313e0 -3.326179248551e0 -4.010637656929e-1 2.897036892730e0 1.027142867320e1 2.246099343953e1 3.237312660967e1 3.543561839248e1 3.890132491894e1 5.228610284722e1 6.469427305944e1 1.078817289855e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -7.129278265982e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.432942278983e0 -7.064961567817e0 -6.776225142369e0 -4.500568970467e0 -3.638824354251e0 -7.391677766792e-1 3.492047915970e0 8.969820960527e0 2.566691380893e1 3.010548630809e1 3.878283160938e1 4.097141115872e1 5.248888919283e1 6.362404178402e1 1.023850521544e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -6.238118482734e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.485926567026e0 -7.318295202440e0 -6.842937600477e0 -4.274409223620e0 -3.805412133973e0 -1.050066139695e0 4.917059823934e0 8.023583772866e0 1.853915398397e1 3.659017410675e1 4.066188240826e1 4.433704147264e1 5.273482499679e1 6.051331927867e1 9.242670326633e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -5.346958699487e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.491373789689e0 -7.402247891913e0 -7.140508531824e0 -4.085375610027e0 -3.822841788911e0 -1.241443668574e0 6.590785811574e0 7.790724288497e0 1.354997208140e1 4.220582486749e1 4.256972678489e1 4.661499217500e1 5.132411326678e1 6.041101551640e1 1.066113864447e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -4.455798916239e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.472178721836e0 -7.420003698259e0 -7.298777359781e0 -3.969585604838e0 -3.861939598273e0 -1.302913362542e0 6.826654533587e0 9.520933140714e0 1.060814326536e1 4.414784858637e1 4.459231790776e1 4.745476525402e1 4.952889630017e1 6.090647933070e1 1.174215720886e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -3.564639132991e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.488849142799e0 -7.403943503617e0 -7.137054064699e0 -4.090760512550e0 -3.825480967686e0 -1.239316734732e0 6.591154113413e0 7.788441068923e0 1.355261504481e1 4.220650208693e1 4.256349427794e1 4.661568025346e1 5.133275765279e1 6.041205316091e1 1.066115340919e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -2.673479349743e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.482503477951e0 -7.316682045592e0 -6.839250887927e0 -4.282698895232e0 -3.812516469188e0 -1.046624729355e0 4.916178331859e0 8.024237362959e0 1.853993198554e1 3.658928497721e1 4.065917468341e1 4.433767742362e1 5.274133867106e1 6.051998413613e1 9.242634844310e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -1.782319566496e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.429329094149e0 -7.062824711835e0 -6.769927198267e0 -4.510074415425e0 -3.649640538760e0 -7.355608775610e-1 3.492141223654e0 8.971295680646e0 2.566407216609e1 3.010471279585e1 3.878287493069e1 4.097173633342e1 5.249435922606e1 6.363509638903e1 1.023842891473e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 -8.911597832478e-2 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.342754839644e0 -7.129876829629e0 -6.482796348222e0 -4.818835270236e0 -3.337894012607e0 -3.983577345345e-1 2.898042004092e0 1.027300385241e1 2.246009872892e1 3.236802618061e1 3.543648726725e1 3.890170289776e1 5.229252110442e1 6.470686017372e1 1.078821449906e2</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 0.000000000000e0 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.244673788416e0 -7.450097910015e0 -5.925817670032e0 -5.030335467574e0 -3.288502421095e0 -3.388728684010e-1 3.625961333091e0 1.083386931081e1 1.805069283424e1 3.096281755604e1 3.769840466243e1 3.771884939143e1 5.182833038331e1 6.336388533533e1 7.995501789508e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.201074691025e0 -7.606886600746e0 -5.765890902184e0 -4.740553818220e0 -3.580371217405e0 -4.588524182467e-1 5.591797977140e0 8.370791299642e0 2.018598626775e1 2.540056314656e1 3.711410238588e1 4.066076668584e1 5.414115868788e1 6.004041556578e1 6.950436371841e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 1.782319566496e-1 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.202272332023e0 -7.607136821909e0 -5.767075712450e0 -4.741186911165e0 -3.575116421983e0 -4.595371719698e-1 5.592563990282e0 8.369300123575e0 2.018726567702e1 2.539905915369e1 3.711401449510e1 4.066293844845e1 5.414314377492e1 6.003253374051e1 6.950378542745e1</array>
+        </property>
+        <kpoint coords="8.020438049230e-1 2.673479349743e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.247669053292e0 -7.450898785817e0 -5.932934499080e0 -5.023715939972e0 -3.278629191590e0 -3.406121015141e-1 3.625527799842e0 1.083221240145e1 1.805150046442e1 3.096168797188e1 3.770275263399e1 3.771983526624e1 5.182387398757e1 6.335189360082e1 7.995435525234e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.027093583802e0 -7.751940705852e0 -5.846520501401e0 -4.639824850578e0 -3.379816255790e0 1.262608554691e0 3.161124552433e0 7.983978031695e0 1.971536992533e1 2.862213303468e1 3.548421648887e1 4.003394679519e1 5.398012926779e1 6.235407388949e1 6.712529865618e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.020438049230e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.950470545986e0 -7.475076052593e0 -6.582410725981e0 -4.491459128380e0 -3.662070434482e0 4.442954588778e-1 3.915623822416e0 6.643263369578e0 2.650228797745e1 3.151049650778e1 3.238733632953e1 4.103910979340e1 5.524443868102e1 6.161131069114e1 9.740214690608e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -7.129278265982e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.107146722141e0 -7.405359130640e0 -6.796339729753e0 -4.418560477628e0 -3.819628353518e0 -4.012932455921e-1 5.126766044953e0 6.163780964453e0 2.564227112587e1 3.266139568663e1 3.659409902062e1 4.272837072942e1 5.498959603317e1 5.962377598159e1 9.543760696124e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -6.238118482734e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.485926419169e0 -7.318295254876e0 -6.842937721132e0 -4.274408853073e0 -3.805412480573e0 -1.050066177896e0 4.917059834213e0 8.023583773631e0 1.853915398009e1 3.659017257571e1 4.066188356734e1 4.433704173305e1 5.273482525624e1 6.051331923474e1 9.242670325546e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -5.346958699487e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.723298969167e0 -7.373110656132e0 -6.769806493390e0 -4.091554118981e0 -3.817234854269e0 -1.418678772085e0 4.672461383882e0 1.057805766026e1 1.385776515881e1 3.869341656431e1 4.139622811973e1 4.713556297956e1 5.188355400460e1 6.263393993107e1 1.062360841502e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -4.455798916239e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.722531120785e0 -7.373395590627e0 -6.767706233201e0 -4.093762043929e0 -3.820436635765e0 -1.416497932041e0 4.672871516932e0 1.057558804810e1 1.385986281605e1 3.869271659396e1 4.139678906451e1 4.713559212468e1 5.188562066980e1 6.263401132605e1 1.062367764877e2</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -3.564639132991e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.483787908129e0 -7.318356587265e0 -6.837837680882e0 -4.280283914086e0 -3.813488779805e0 -1.045213371855e0 4.918378810816e0 8.021240675210e0 1.853973673528e1 3.659092390975e1 4.066021915419e1 4.433797961455e1 5.274108311480e1 6.051357787913e1 9.242777084635e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -2.673479349743e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.103967636509e0 -7.404324707766e0 -6.789669556240e0 -4.427819193428e0 -3.829386205351e0 -3.962370778793e-1 5.128486703602e0 6.162537827173e0 2.563946188517e1 3.266194952259e1 3.659403047043e1 4.272897435433e1 5.499908113502e1 5.962549409425e1 9.543780208725e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -1.782319566496e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.946806260910e0 -7.474429191913e0 -6.574206055683e0 -4.501106353805e0 -3.672918225799e0 4.484971074877e-1 3.915834423413e0 6.644768717214e0 2.650127877020e1 3.150949372413e1 3.238388375543e1 4.104006624316e1 5.525208213989e1 6.161933747437e1 9.740265622524e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 -8.911597832478e-2 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.024073936838e0 -7.751021683576e0 -5.837881762541e0 -4.647741993179e0 -3.391014242386e0 1.265562482958e0 3.161447703887e0 7.985584835871e0 1.971475170344e1 2.862300732270e1 3.548206391424e1 4.002914227840e1 5.398482762911e1 6.236592736778e1 6.712758460150e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 0.000000000000e0 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.169033013833e0 -7.945699078026e0 -5.026795174355e0 -4.693202958308e0 -3.362097365601e0 1.096415261888e0 4.342921083955e0 8.559991614560e0 1.643717654321e1 2.398296886366e1 3.324362821025e1 4.476007625882e1 5.245917806880e1 5.750447163917e1 6.111672653215e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.264283267913e0 -7.973634909439e0 -4.934944085708e0 -4.277156004992e0 -3.558101464719e0 8.519085045584e-1 6.612580616875e0 6.648819929363e0 1.868329544521e1 1.896798383743e1 3.242110301033e1 4.637165001205e1 5.355027936633e1 5.663315011185e1 5.892612827294e1</array>
+        </property>
+        <kpoint coords="8.911597832478e-1 1.782319566496e-1 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.170319226109e0 -7.946658059654e0 -5.034663232351e0 -4.688968391527e0 -3.352371535563e0 1.094828188503e0 4.342959173283e0 8.558685910763e0 1.643750506373e1 2.398207622864e1 3.324354144876e1 4.476667994141e1 5.246413432062e1 5.749707988057e1 6.110549352460e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -9.802757615725e-1 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.174430436395e0 -8.160316450063e0 -4.959512629040e0 -4.017158352156e0 -3.445734580824e0 3.084505200172e0 3.848174393000e0 6.224306321662e0 1.858024005696e1 2.261552748682e1 2.715100097873e1 4.611850018497e1 5.211487450678e1 5.755490636221e1 6.042711787502e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.911597832478e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.949133420161e0 -7.850403309181e0 -5.932083638739e0 -4.151998568852e0 -3.658221139342e0 1.771978532593e0 4.639495926487e0 5.111934989948e0 2.384483594876e1 2.516429658474e1 3.420421349751e1 4.016265026437e1 5.756674454242e1 6.005959644057e1 6.367013256553e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.020438049230e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.950469922686e0 -7.475076826367e0 -6.582410642354e0 -4.491458809415e0 -3.662070606105e0 4.442953388546e-1 3.915623810667e0 6.643263367205e0 2.650228598348e1 3.151049826561e1 3.238733740825e1 4.103910909860e1 5.524443871891e1 6.161131067855e1 9.740214676831e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -7.129278265982e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.432941935364e0 -7.064961833067e0 -6.776225398592e0 -4.500568306588e0 -3.638824739277e0 -7.391679664549e-1 3.492047944017e0 8.969820945557e0 2.566691381808e1 3.010548449231e1 3.878283470479e1 4.097141004553e1 5.248888930273e1 6.362404176248e1 1.023850519869e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -6.238118482734e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.877515149201e0 -7.238114541229e0 -6.308538915674e0 -4.259125960888e0 -3.713398587390e0 -1.618498172192e0 3.304603368197e0 1.174840036455e1 1.905192724948e1 3.264529938505e1 3.851023410729e1 4.518211590490e1 5.181777239296e1 6.549188867584e1 9.792943409837e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -5.346958699487e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.042383823927e0 -7.348862356515e0 -6.019979293835e0 -4.130170966216e0 -3.818837921768e0 -1.939275694716e0 3.247137299586e0 1.464569288964e1 1.495402823999e1 3.366729239188e1 3.732854459155e1 4.767307216036e1 5.235693161741e1 6.630664241200e1 1.025800505012e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -4.455798916239e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876842006544e0 -7.237231195209e0 -6.304974835871e0 -4.261814270878e0 -3.722243534739e0 -1.612910385087e0 3.305050815204e0 1.174651220464e1 1.905200372360e1 3.264644489476e1 3.851204414313e1 4.518204886942e1 5.181845954126e1 6.549213319232e1 9.793086587954e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -3.564639132991e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.431912436810e0 -7.062380058751e0 -6.771782834893e0 -4.506723763012e0 -3.648384708890e0 -7.331681472745e-1 3.493110675173e0 8.968220408370e0 2.566400366879e1 3.010736973035e1 3.878298108583e1 4.097404202132e1 5.249185110630e1 6.362448790823e1 1.023870740650e2</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -2.673479349743e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.949748967831e0 -7.472398755351e0 -6.575047292604e0 -4.501646380875e0 -3.669695984661e0 4.489043211691e-1 3.917447160322e0 6.642299771020e0 2.650366592474e1 3.150749076950e1 3.238405481793e1 4.104188868586e1 5.525244684707e1 6.161178764363e1 9.740353793624e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -1.782319566496e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-7.947606646946e0 -7.849133615151e0 -5.923215630612e0 -4.162535938723e0 -3.665430207332e0 1.775354143543e0 4.642489363358e0 5.110531440282e0 2.384508061400e1 2.516409191549e1 3.420205591533e1 4.015767168945e1 5.757710709107e1 6.006320104189e1 6.367191681467e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 -8.911597832478e-2 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.173871358773e0 -8.158927134159e0 -4.949598389647e0 -4.022788775598e0 -3.456378868409e0 3.087841125944e0 3.847384894956e0 6.225379194634e0 1.857985595762e1 2.261623114866e1 2.715079960719e1 4.610603110169e1 5.211709671633e1 5.756108063095e1 6.043836955629e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 0.000000000000e0 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383199791501e0 -8.270464145491e0 -4.116694098872e0 -3.996871464646e0 -3.421319884049e0 2.659869525033e0 5.429717451905e0 6.842556413432e0 1.593491263833e1 1.831091378280e1 2.460715466057e1 4.921298299571e1 5.249022664610e1 5.736841274870e1 5.945320129295e1</array>
+        </property>
+        <kpoint coords="9.802757615725e-1 8.911597832478e-2 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.383415521908e0 -8.270931849662e0 -4.125391246824e0 -3.995050680789e0 -3.412068786798e0 2.659068547150e0 5.429811811587e0 6.841895090724e0 1.593492672272e1 1.831066524237e1 2.460726653048e1 4.921478705169e1 5.249872964597e1 5.736574959010e1 5.944275674164e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -1.069391739897e0 -1.069391739897e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.405784013150e0 -8.405782519415e0 -4.044953251683e0 -3.496067349280e0 -3.496067286851e0 4.894073666603e0 4.894073681495e0 5.104513590745e0 1.794203320287e1 1.794203707955e1 1.922222537215e1 4.840672338616e1 5.402696634972e1 5.919881671631e1 5.919881676973e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -9.802757615725e-1 -9.802757615725e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.174431426767e0 -8.160315398355e0 -4.959512625559e0 -4.017158264207e0 -3.445734640682e0 3.084505050982e0 3.848174426765e0 6.224306301534e0 1.858023789034e1 2.261553053540e1 2.715100019887e1 4.611850017108e1 5.211487449815e1 5.755490640493e1 6.042711783786e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -8.911597832478e-1 -8.911597832478e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.027092757752e0 -7.751941551966e0 -5.846520470067e0 -4.639824590750e0 -3.379816340312e0 1.262608250461e0 3.161124611880e0 7.983977986494e0 1.971536811915e1 2.862213628886e1 3.548421546122e1 4.003394661329e1 5.398012931419e1 6.235407385295e1 6.712529854915e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -8.020438049230e-1 -8.020438049230e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.346331282232e0 -7.131199071471e0 -6.490747460281e0 -4.809740500230e0 -3.326179390788e0 -4.010641862998e-1 2.897036968770e0 1.027142862083e1 2.246099200257e1 3.237312631181e1 3.543562187669e1 3.890132359204e1 5.228610289962e1 6.469427301992e1 1.078817286608e2</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -7.129278265982e-1 -7.129278265982e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876758872949e0 -6.986305363549e0 -6.339260821719e0 -4.509914115271e0 -3.354272229494e0 -1.807320649127e0 2.826810414852e0 1.319585485838e1 2.473402363252e1 2.778536073755e1 3.643026389378e1 4.217659479061e1 5.156308922056e1 6.690880028027e1 1.144963944692e2</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -6.238118482734e-1 -6.238118482734e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.216960100541e0 -7.268483236074e0 -5.534592722059e0 -4.225393852152e0 -3.682356577729e0 -2.597943737478e0 2.795453172306e0 1.639525630028e1 2.012102127837e1 2.825163033520e1 3.432553561530e1 4.674959028600e1 5.190997063633e1 6.828709104964e1 9.759807831488e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -5.346958699487e-1 -5.346958699487e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-9.216816739444e0 -7.268181891249e0 -5.532347091419e0 -4.226083804063e0 -3.689273455656e0 -2.593226853260e0 2.795536209289e0 1.639435194907e1 2.012035393839e1 2.825323130153e1 3.432621320252e1 4.674956837697e1 5.190977342794e1 6.828714318514e1 9.759838590179e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -4.455798916239e-1 -4.455798916239e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.876402936369e0 -6.984939707403e0 -6.336830542818e0 -4.512370206704e0 -3.363103271348e0 -1.800777679072e0 2.827112945529e0 1.319452747712e1 2.473232141846e1 2.778647398840e1 3.643321503770e1 4.217648967508e1 5.156324274636e1 6.690894941860e1 1.144978340238e2</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -3.564639132991e-1 -3.564639132991e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.346040561327e0 -7.129393037324e0 -6.486424040478e0 -4.815593481149e0 -3.331733180213e0 -3.970642711224e-1 2.897643205601e0 1.027057727446e1 2.246217768334e1 3.236820770014e1 3.543536205567e1 3.890569372981e1 5.228837352393e1 6.469449652647e1 1.078832658559e2</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -2.673479349743e-1 -2.673479349743e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.026924458038e0 -7.750653296731e0 -5.838009836232e0 -4.650172160822e0 -3.383381105041e0 1.265260151834e0 3.162003853135e0 7.983723541098e0 1.971599640784e1 2.862168913690e1 3.548118439961e1 4.003234550088e1 5.398762188668e1 6.235432996191e1 6.712632769410e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -1.782319566496e-1 -1.782319566496e-1" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.173585403188e0 -8.160028244704e0 -4.949171766681e0 -4.029554072953e0 -3.447938416678e0 3.086351406696e0 3.849249121505e0 6.224127091268e0 1.858050121681e1 2.261493832005e1 2.715105129470e1 4.610677461527e1 5.212288875701e1 5.756286411644e1 6.042734647107e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 -8.911597832478e-2 -8.911597832478e-2" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.405588555043e0 -8.405357978464e0 -4.033192178586e0 -3.509235212633e0 -3.497140042994e0 4.895194504446e0 4.898913686436e0 5.100224508766e0 1.794148674625e1 1.794254665281e1 1.922214859800e1 4.840387307293e1 5.401817479835e1 5.919895303378e1 5.921317731614e1</array>
+        </property>
+        <kpoint coords="1.069391739897e0 0.000000000000e0 0.000000000000e0" weight="9.103322712790e-4"/>
+        <property dictRef="siesta:eigenenergies">
+          <array size="15" dataType="fpx:real" units="siestaUnits:ev">-8.509355562693e0 -8.475835954337e0 -3.525224829462e0 -3.515077425667e0 -3.428431311182e0 4.485858237631e0 5.854721980892e0 5.858784899136e0 1.570986408638e1 1.592368922044e1 1.828035664046e1 4.793072217468e1 5.805928117922e1 5.878058211668e1 5.879126068658e1</array>
+        </property>
+      </propertyList>
+    </propertyList>
+    <propertyList title="Energy Decomposition">
+      <property dictRef="siesta:Ebs">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-64.871014</scalar>
+      </property>
+      <property dictRef="siesta:Eions">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">711.951417</scalar>
+      </property>
+      <property dictRef="siesta:Ena">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">22.613146</scalar>
+      </property>
+      <property dictRef="siesta:Ekin">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">770.695719</scalar>
+      </property>
+      <property dictRef="siesta:Enl">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-473.896828</scalar>
+      </property>
+      <property dictRef="siesta:DEna">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.779783</scalar>
+      </property>
+      <property dictRef="siesta:DUscf">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.020155 </scalar>
+      </property>
+      <property dictRef="siesta:DUext">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+      </property>
+      <property dictRef="siesta:Exc">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-390.503158</scalar>
+      </property>
+      <property dictRef="siesta:Ecorrec">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+      </property>
+      <property dictRef="siesta:Emad">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+      </property>
+      <property dictRef="siesta:Emeta">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+      </property>
+      <property dictRef="siesta:Emm">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+      </property>
+      <property dictRef="siesta:Ekinion">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.000000</scalar>
+      </property>
+      <property dictRef="siesta:EharrsK">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-782.242595</scalar>
+      </property>
+      <property dictRef="siesta:EtotK">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-782.242600</scalar>
+      </property>
+      <property dictRef="siesta:FreeEK">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-782.245185</scalar>
+      </property>
+    </propertyList>
+    <propertyList title="Final Energy">
+      <property dictRef="siesta:Ebs">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-64.8710137</scalar>
+      </property>
+      <property dictRef="siesta:Ekin">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">770.6957186</scalar>
+      </property>
+      <property dictRef="siesta:Uscf">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">86.2516968</scalar>
+      </property>
+      <property dictRef="siesta:DUext">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.0000000</scalar>
+      </property>
+      <property dictRef="siesta:Exc">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-390.5031577</scalar>
+      </property>
+      <property dictRef="siesta:I-e">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-819.2332293</scalar>
+      </property>
+      <property dictRef="siesta:I-I">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-429.4536285</scalar>
+      </property>
+      <property dictRef="siesta:Ekinion">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">0.0000000</scalar>
+      </property>
+      <property dictRef="siesta:Etot">
+        <scalar dataType="fpx:real" units="siestaUnits:eV">-782.2426001</scalar>
+      </property>
+    </propertyList>
+    <property dictRef="siesta:stress">
+      <matrix rows="3" columns="3" dataType="fpx:real" units="siestaUnits:eV_Ang__3">-6.668799383189e-3 -3.249440652309e-3 -3.249440535485e-3 -3.249440652310e-3 -6.668799382435e-3 3.249440535508e-3 -3.249440652238e-3 3.249440652220e-3 -6.668745983196e-3</matrix>
+    </property>
+    <propertyList title="Final Pressure">
+      <property dictRef="siesta:cellvol" title="cell volume">
+        <scalar dataType="fpx:real" units="siestaUnits:Ang__3">1.181995150000e1</scalar>
+      </property>
+      <property dictRef="siesta:pressSol" title="Pressure of Solid">
+        <scalar dataType="fpx:real" units="siestaUnits:kbar">1.068468151893e1</scalar>
+      </property>
+      <property dictRef="siesta:pressMol" title="Pressure of Molecule">
+        <scalar dataType="fpx:real" units="siestaUnits:kbar">1.068468151893e1</scalar>
+      </property>
+    </propertyList>
+    <property dictRef="siesta:qspin">
+      <scalar dataType="fpx:real" units="siestaUnits:spin">2.315395892698e0</scalar>
+    </property>
+  </module>
+  <metadata name="siesta:EndTime" content="2016-07-07T09-12-30"/>
+  <metadata name="dc:contributor" content="FoX-4.1.0 (http://www.uszla.me.uk/FoX)"/>
+</cml>
diff --git a/tests/data/parsers/siesta/Fe/INPUT_TMP.24285 b/tests/data/parsers/siesta/Fe/INPUT_TMP.24285
new file mode 100644
index 0000000000000000000000000000000000000000..72ef819ddad260795083f1f4d4c958fe2744b062
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/INPUT_TMP.24285
@@ -0,0 +1,70 @@
+# $Id: Fe.fdf,v 1.1 1999/04/20 12:52:43 emilio Exp $
+# -----------------------------------------------------------------------------
+# FDF for bcc iron
+#
+# GGA, Ferromagnetic.
+# Scalar-relativistic pseudopotential with non-linear partial-core correction
+#
+# E. Artacho, April 1999
+# -----------------------------------------------------------------------------
+SystemName       bcc Fe ferro GGA   # Descriptive name of the system
+SystemLabel            Fe           # Short name for naming files
+# Output options
+WriteCoorStep
+WriteMullikenPop       1
+# Species and atoms
+NumberOfSpecies        1
+NumberOfAtoms          1
+%block ChemicalSpeciesLabel
+  1  26  Fe
+%endblock ChemicalSpeciesLabel
+# Basis
+PAO.EnergyShift       50 meV
+PAO.BasisSize         DZP
+%block PAO.Basis
+  Fe  2
+  0  2  P
+  6. 0.
+  2  2
+  0. 0.
+%endblock PAO.Basis
+LatticeConstant       2.87 Ang
+%block LatticeVectors
+ 0.50000   0.500000  0.500000
+ 0.50000  -0.500000  0.500000
+ 0.50000   0.500000 -0.500000
+%endblock LatticeVectors
+KgridCutoff          15. Ang
+%block BandLines
+  1  0.00000   0.000000  0.000000  \Gamma
+ 40  2.00000   0.000000  0.000000  H
+ 28  1.00000   1.000000  0.000000  N
+ 28  0.00000   0.000000  0.000000  \Gamma
+ 34  1.00000   1.000000  1.000000  P
+%endblock BandLines
+xc.functional         GGA           # Exchange-correlation functional
+xc.authors            PBE           # Exchange-correlation version
+SpinPolarized         true          # Logical parameters are: yes or no
+MeshCutoff           150. Ry        # Mesh cutoff. real space mesh
+# SCF options
+MaxSCFIterations       40           # Maximum number of SCF iter
+DM.MixingWeight       0.1           # New DM amount for next SCF cycle
+DM.Tolerance          1.d-3         # Tolerance in maximum difference
+                                    # between input and output DM
+DM.UseSaveDM          true          # to use continuation files
+DM.NumberPulay         3
+SolutionMethod        diagon        # OrderN or Diagon
+ElectronicTemperature  25 meV       # Temp. for Fermi smearing
+# MD options
+MD.TypeOfRun           cg           # Type of dynamics:
+MD.NumCGsteps           0           # Number of CG steps for
+                                    #   coordinate optimization
+MD.MaxCGDispl          0.1 Ang      # Maximum atomic displacement
+                                    #   in one CG step (Bohr)
+MD.MaxForceTol         0.04 eV/Ang  # Tolerance in the maximum
+                                    #   atomic force (Ry/Bohr)
+# Atomic coordinates
+AtomicCoordinatesFormat     Fractional
+%block AtomicCoordinatesAndAtomicSpecies
+  0.000000000000    0.000000000000    0.000000000000  1
+%endblock AtomicCoordinatesAndAtomicSpecies
diff --git a/tests/data/parsers/siesta/Fe/NON_TRIMMED_KP_LIST b/tests/data/parsers/siesta/Fe/NON_TRIMMED_KP_LIST
new file mode 100644
index 0000000000000000000000000000000000000000..de1cfdefbbee23e263ca64074e54b61fbf3c3ff5
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/NON_TRIMMED_KP_LIST
@@ -0,0 +1,1184 @@
+  1183
+     1   -0.534696    0.000000   -0.534696       0.000455
+     2   -0.534696    0.089116   -0.445580       0.000455
+     3   -0.534696    0.178232   -0.356464       0.000455
+     4   -0.534696    0.267348   -0.267348       0.000455
+     5   -0.534696    0.356464   -0.178232       0.000455
+     6   -0.534696    0.445580   -0.089116       0.000455
+     7   -0.534696    0.534696    0.000000       0.000455
+     8   -0.534696    0.623812    0.089116       0.000455
+     9   -0.534696    0.712928    0.178232       0.000455
+    10   -0.534696    0.802044    0.267348       0.000455
+    11   -0.534696    0.891160    0.356464       0.000455
+    12   -0.534696    0.980276    0.445580       0.000455
+    13   -0.534696    1.069392    0.534696       0.000455
+    14   -0.445580   -0.089116   -0.534696       0.000455
+    15   -0.445580    0.000000   -0.445580       0.000455
+    16   -0.445580    0.089116   -0.356464       0.000455
+    17   -0.445580    0.178232   -0.267348       0.000455
+    18   -0.445580    0.267348   -0.178232       0.000455
+    19   -0.445580    0.356464   -0.089116       0.000455
+    20   -0.445580    0.445580    0.000000       0.000455
+    21   -0.445580    0.534696    0.089116       0.000455
+    22   -0.445580    0.623812    0.178232       0.000455
+    23   -0.445580    0.712928    0.267348       0.000455
+    24   -0.445580    0.802044    0.356464       0.000455
+    25   -0.445580    0.891160    0.445580       0.000455
+    26   -0.445580    0.980276    0.534696       0.000455
+    27   -0.356464   -0.178232   -0.534696       0.000455
+    28   -0.356464   -0.089116   -0.445580       0.000455
+    29   -0.356464    0.000000   -0.356464       0.000455
+    30   -0.356464    0.089116   -0.267348       0.000455
+    31   -0.356464    0.178232   -0.178232       0.000455
+    32   -0.356464    0.267348   -0.089116       0.000455
+    33   -0.356464    0.356464    0.000000       0.000455
+    34   -0.356464    0.445580    0.089116       0.000455
+    35   -0.356464    0.534696    0.178232       0.000455
+    36   -0.356464    0.623812    0.267348       0.000455
+    37   -0.356464    0.712928    0.356464       0.000455
+    38   -0.356464    0.802044    0.445580       0.000455
+    39   -0.356464    0.891160    0.534696       0.000455
+    40   -0.267348   -0.267348   -0.534696       0.000455
+    41   -0.267348   -0.178232   -0.445580       0.000455
+    42   -0.267348   -0.089116   -0.356464       0.000455
+    43   -0.267348    0.000000   -0.267348       0.000455
+    44   -0.267348    0.089116   -0.178232       0.000455
+    45   -0.267348    0.178232   -0.089116       0.000455
+    46   -0.267348    0.267348    0.000000       0.000455
+    47   -0.267348    0.356464    0.089116       0.000455
+    48   -0.267348    0.445580    0.178232       0.000455
+    49   -0.267348    0.534696    0.267348       0.000455
+    50   -0.267348    0.623812    0.356464       0.000455
+    51   -0.267348    0.712928    0.445580       0.000455
+    52   -0.267348    0.802044    0.534696       0.000455
+    53   -0.178232   -0.356464   -0.534696       0.000455
+    54   -0.178232   -0.267348   -0.445580       0.000455
+    55   -0.178232   -0.178232   -0.356464       0.000455
+    56   -0.178232   -0.089116   -0.267348       0.000455
+    57   -0.178232    0.000000   -0.178232       0.000455
+    58   -0.178232    0.089116   -0.089116       0.000455
+    59   -0.178232    0.178232    0.000000       0.000455
+    60   -0.178232    0.267348    0.089116       0.000455
+    61   -0.178232    0.356464    0.178232       0.000455
+    62   -0.178232    0.445580    0.267348       0.000455
+    63   -0.178232    0.534696    0.356464       0.000455
+    64   -0.178232    0.623812    0.445580       0.000455
+    65   -0.178232    0.712928    0.534696       0.000455
+    66   -0.089116   -0.445580   -0.534696       0.000455
+    67   -0.089116   -0.356464   -0.445580       0.000455
+    68   -0.089116   -0.267348   -0.356464       0.000455
+    69   -0.089116   -0.178232   -0.267348       0.000455
+    70   -0.089116   -0.089116   -0.178232       0.000455
+    71   -0.089116    0.000000   -0.089116       0.000455
+    72   -0.089116    0.089116    0.000000       0.000455
+    73   -0.089116    0.178232    0.089116       0.000455
+    74   -0.089116    0.267348    0.178232       0.000455
+    75   -0.089116    0.356464    0.267348       0.000455
+    76   -0.089116    0.445580    0.356464       0.000455
+    77   -0.089116    0.534696    0.445580       0.000455
+    78   -0.089116    0.623812    0.534696       0.000455
+    79    0.000000   -0.534696   -0.534696       0.000455
+    80    0.000000   -0.445580   -0.445580       0.000455
+    81    0.000000   -0.356464   -0.356464       0.000455
+    82    0.000000   -0.267348   -0.267348       0.000455
+    83    0.000000   -0.178232   -0.178232       0.000455
+    84    0.000000   -0.089116   -0.089116       0.000455
+    85    0.000000    0.000000    0.000000       0.000455
+    86    0.000000    0.089116    0.089116       0.000455
+    87    0.000000    0.178232    0.178232       0.000455
+    88    0.000000    0.267348    0.267348       0.000455
+    89    0.000000    0.356464    0.356464       0.000455
+    90    0.000000    0.445580    0.445580       0.000455
+    91    0.000000    0.534696    0.534696       0.000455
+    92    0.089116   -0.623812   -0.534696       0.000455
+    93    0.089116   -0.534696   -0.445580       0.000455
+    94    0.089116   -0.445580   -0.356464       0.000455
+    95    0.089116   -0.356464   -0.267348       0.000455
+    96    0.089116   -0.267348   -0.178232       0.000455
+    97    0.089116   -0.178232   -0.089116       0.000455
+    98    0.089116   -0.089116    0.000000       0.000455
+    99    0.089116    0.000000    0.089116       0.000455
+   100    0.089116    0.089116    0.178232       0.000455
+   101    0.089116    0.178232    0.267348       0.000455
+   102    0.089116    0.267348    0.356464       0.000455
+   103    0.089116    0.356464    0.445580       0.000455
+   104    0.089116    0.445580    0.534696       0.000455
+   105    0.178232   -0.712928   -0.534696       0.000455
+   106    0.178232   -0.623812   -0.445580       0.000455
+   107    0.178232   -0.534696   -0.356464       0.000455
+   108    0.178232   -0.445580   -0.267348       0.000455
+   109    0.178232   -0.356464   -0.178232       0.000455
+   110    0.178232   -0.267348   -0.089116       0.000455
+   111    0.178232   -0.178232    0.000000       0.000455
+   112    0.178232   -0.089116    0.089116       0.000455
+   113    0.178232    0.000000    0.178232       0.000455
+   114    0.178232    0.089116    0.267348       0.000455
+   115    0.178232    0.178232    0.356464       0.000455
+   116    0.178232    0.267348    0.445580       0.000455
+   117    0.178232    0.356464    0.534696       0.000455
+   118    0.267348   -0.802044   -0.534696       0.000455
+   119    0.267348   -0.712928   -0.445580       0.000455
+   120    0.267348   -0.623812   -0.356464       0.000455
+   121    0.267348   -0.534696   -0.267348       0.000455
+   122    0.267348   -0.445580   -0.178232       0.000455
+   123    0.267348   -0.356464   -0.089116       0.000455
+   124    0.267348   -0.267348    0.000000       0.000455
+   125    0.267348   -0.178232    0.089116       0.000455
+   126    0.267348   -0.089116    0.178232       0.000455
+   127    0.267348    0.000000    0.267348       0.000455
+   128    0.267348    0.089116    0.356464       0.000455
+   129    0.267348    0.178232    0.445580       0.000455
+   130    0.267348    0.267348    0.534696       0.000455
+   131    0.356464   -0.891160   -0.534696       0.000455
+   132    0.356464   -0.802044   -0.445580       0.000455
+   133    0.356464   -0.712928   -0.356464       0.000455
+   134    0.356464   -0.623812   -0.267348       0.000455
+   135    0.356464   -0.534696   -0.178232       0.000455
+   136    0.356464   -0.445580   -0.089116       0.000455
+   137    0.356464   -0.356464    0.000000       0.000455
+   138    0.356464   -0.267348    0.089116       0.000455
+   139    0.356464   -0.178232    0.178232       0.000455
+   140    0.356464   -0.089116    0.267348       0.000455
+   141    0.356464    0.000000    0.356464       0.000455
+   142    0.356464    0.089116    0.445580       0.000455
+   143    0.356464    0.178232    0.534696       0.000455
+   144    0.445580   -0.980276   -0.534696       0.000455
+   145    0.445580   -0.891160   -0.445580       0.000455
+   146    0.445580   -0.802044   -0.356464       0.000455
+   147    0.445580   -0.712928   -0.267348       0.000455
+   148    0.445580   -0.623812   -0.178232       0.000455
+   149    0.445580   -0.534696   -0.089116       0.000455
+   150    0.445580   -0.445580    0.000000       0.000455
+   151    0.445580   -0.356464    0.089116       0.000455
+   152    0.445580   -0.267348    0.178232       0.000455
+   153    0.445580   -0.178232    0.267348       0.000455
+   154    0.445580   -0.089116    0.356464       0.000455
+   155    0.445580    0.000000    0.445580       0.000455
+   156    0.445580    0.089116    0.534696       0.000455
+   157    0.534696   -1.069392   -0.534696       0.000455
+   158    0.534696   -0.980276   -0.445580       0.000455
+   159    0.534696   -0.891160   -0.356464       0.000455
+   160    0.534696   -0.802044   -0.267348       0.000455
+   161    0.534696   -0.712928   -0.178232       0.000455
+   162    0.534696   -0.623812   -0.089116       0.000455
+   163    0.534696   -0.534696    0.000000       0.000455
+   164    0.534696   -0.445580    0.089116       0.000455
+   165    0.534696   -0.356464    0.178232       0.000455
+   166    0.534696   -0.267348    0.267348       0.000455
+   167    0.534696   -0.178232    0.356464       0.000455
+   168    0.534696   -0.089116    0.445580       0.000455
+   169    0.534696    0.000000    0.534696       0.000455
+   170   -0.445580    0.000000   -0.623812       0.000910
+   171   -0.445580    0.089116   -0.534696       0.000910
+   172   -0.445580    0.178232   -0.445580       0.000910
+   173   -0.445580    0.267348   -0.356464       0.000910
+   174   -0.445580    0.356464   -0.267348       0.000910
+   175   -0.445580    0.445580   -0.178232       0.000910
+   176   -0.445580    0.534696   -0.089116       0.000910
+   177   -0.445580    0.623812    0.000000       0.000910
+   178   -0.445580    0.712928    0.089116       0.000910
+   179   -0.445580    0.802044    0.178232       0.000910
+   180   -0.445580    0.891160    0.267348       0.000910
+   181   -0.445580    0.980276    0.356464       0.000910
+   182   -0.445580    1.069392    0.445580       0.000910
+   183   -0.356464   -0.089116   -0.623812       0.000910
+   184   -0.356464    0.000000   -0.534696       0.000910
+   185   -0.356464    0.089116   -0.445580       0.000910
+   186   -0.356464    0.178232   -0.356464       0.000910
+   187   -0.356464    0.267348   -0.267348       0.000910
+   188   -0.356464    0.356464   -0.178232       0.000910
+   189   -0.356464    0.445580   -0.089116       0.000910
+   190   -0.356464    0.534696    0.000000       0.000910
+   191   -0.356464    0.623812    0.089116       0.000910
+   192   -0.356464    0.712928    0.178232       0.000910
+   193   -0.356464    0.802044    0.267348       0.000910
+   194   -0.356464    0.891160    0.356464       0.000910
+   195   -0.356464    0.980276    0.445580       0.000910
+   196   -0.267348   -0.178232   -0.623812       0.000910
+   197   -0.267348   -0.089116   -0.534696       0.000910
+   198   -0.267348    0.000000   -0.445580       0.000910
+   199   -0.267348    0.089116   -0.356464       0.000910
+   200   -0.267348    0.178232   -0.267348       0.000910
+   201   -0.267348    0.267348   -0.178232       0.000910
+   202   -0.267348    0.356464   -0.089116       0.000910
+   203   -0.267348    0.445580    0.000000       0.000910
+   204   -0.267348    0.534696    0.089116       0.000910
+   205   -0.267348    0.623812    0.178232       0.000910
+   206   -0.267348    0.712928    0.267348       0.000910
+   207   -0.267348    0.802044    0.356464       0.000910
+   208   -0.267348    0.891160    0.445580       0.000910
+   209   -0.178232   -0.267348   -0.623812       0.000910
+   210   -0.178232   -0.178232   -0.534696       0.000910
+   211   -0.178232   -0.089116   -0.445580       0.000910
+   212   -0.178232    0.000000   -0.356464       0.000910
+   213   -0.178232    0.089116   -0.267348       0.000910
+   214   -0.178232    0.178232   -0.178232       0.000910
+   215   -0.178232    0.267348   -0.089116       0.000910
+   216   -0.178232    0.356464    0.000000       0.000910
+   217   -0.178232    0.445580    0.089116       0.000910
+   218   -0.178232    0.534696    0.178232       0.000910
+   219   -0.178232    0.623812    0.267348       0.000910
+   220   -0.178232    0.712928    0.356464       0.000910
+   221   -0.178232    0.802044    0.445580       0.000910
+   222   -0.089116   -0.356464   -0.623812       0.000910
+   223   -0.089116   -0.267348   -0.534696       0.000910
+   224   -0.089116   -0.178232   -0.445580       0.000910
+   225   -0.089116   -0.089116   -0.356464       0.000910
+   226   -0.089116    0.000000   -0.267348       0.000910
+   227   -0.089116    0.089116   -0.178232       0.000910
+   228   -0.089116    0.178232   -0.089116       0.000910
+   229   -0.089116    0.267348    0.000000       0.000910
+   230   -0.089116    0.356464    0.089116       0.000910
+   231   -0.089116    0.445580    0.178232       0.000910
+   232   -0.089116    0.534696    0.267348       0.000910
+   233   -0.089116    0.623812    0.356464       0.000910
+   234   -0.089116    0.712928    0.445580       0.000910
+   235    0.000000   -0.445580   -0.623812       0.000910
+   236    0.000000   -0.356464   -0.534696       0.000910
+   237    0.000000   -0.267348   -0.445580       0.000910
+   238    0.000000   -0.178232   -0.356464       0.000910
+   239    0.000000   -0.089116   -0.267348       0.000910
+   240    0.000000    0.000000   -0.178232       0.000910
+   241    0.000000    0.089116   -0.089116       0.000910
+   242    0.000000    0.178232    0.000000       0.000910
+   243    0.000000    0.267348    0.089116       0.000910
+   244    0.000000    0.356464    0.178232       0.000910
+   245    0.000000    0.445580    0.267348       0.000910
+   246    0.000000    0.534696    0.356464       0.000910
+   247    0.000000    0.623812    0.445580       0.000910
+   248    0.089116   -0.534696   -0.623812       0.000910
+   249    0.089116   -0.445580   -0.534696       0.000910
+   250    0.089116   -0.356464   -0.445580       0.000910
+   251    0.089116   -0.267348   -0.356464       0.000910
+   252    0.089116   -0.178232   -0.267348       0.000910
+   253    0.089116   -0.089116   -0.178232       0.000910
+   254    0.089116    0.000000   -0.089116       0.000910
+   255    0.089116    0.089116    0.000000       0.000910
+   256    0.089116    0.178232    0.089116       0.000910
+   257    0.089116    0.267348    0.178232       0.000910
+   258    0.089116    0.356464    0.267348       0.000910
+   259    0.089116    0.445580    0.356464       0.000910
+   260    0.089116    0.534696    0.445580       0.000910
+   261    0.178232   -0.623812   -0.623812       0.000910
+   262    0.178232   -0.534696   -0.534696       0.000910
+   263    0.178232   -0.445580   -0.445580       0.000910
+   264    0.178232   -0.356464   -0.356464       0.000910
+   265    0.178232   -0.267348   -0.267348       0.000910
+   266    0.178232   -0.178232   -0.178232       0.000910
+   267    0.178232   -0.089116   -0.089116       0.000910
+   268    0.178232    0.000000    0.000000       0.000910
+   269    0.178232    0.089116    0.089116       0.000910
+   270    0.178232    0.178232    0.178232       0.000910
+   271    0.178232    0.267348    0.267348       0.000910
+   272    0.178232    0.356464    0.356464       0.000910
+   273    0.178232    0.445580    0.445580       0.000910
+   274    0.267348   -0.712928   -0.623812       0.000910
+   275    0.267348   -0.623812   -0.534696       0.000910
+   276    0.267348   -0.534696   -0.445580       0.000910
+   277    0.267348   -0.445580   -0.356464       0.000910
+   278    0.267348   -0.356464   -0.267348       0.000910
+   279    0.267348   -0.267348   -0.178232       0.000910
+   280    0.267348   -0.178232   -0.089116       0.000910
+   281    0.267348   -0.089116    0.000000       0.000910
+   282    0.267348    0.000000    0.089116       0.000910
+   283    0.267348    0.089116    0.178232       0.000910
+   284    0.267348    0.178232    0.267348       0.000910
+   285    0.267348    0.267348    0.356464       0.000910
+   286    0.267348    0.356464    0.445580       0.000910
+   287    0.356464   -0.802044   -0.623812       0.000910
+   288    0.356464   -0.712928   -0.534696       0.000910
+   289    0.356464   -0.623812   -0.445580       0.000910
+   290    0.356464   -0.534696   -0.356464       0.000910
+   291    0.356464   -0.445580   -0.267348       0.000910
+   292    0.356464   -0.356464   -0.178232       0.000910
+   293    0.356464   -0.267348   -0.089116       0.000910
+   294    0.356464   -0.178232    0.000000       0.000910
+   295    0.356464   -0.089116    0.089116       0.000910
+   296    0.356464    0.000000    0.178232       0.000910
+   297    0.356464    0.089116    0.267348       0.000910
+   298    0.356464    0.178232    0.356464       0.000910
+   299    0.356464    0.267348    0.445580       0.000910
+   300    0.445580   -0.891160   -0.623812       0.000910
+   301    0.445580   -0.802044   -0.534696       0.000910
+   302    0.445580   -0.712928   -0.445580       0.000910
+   303    0.445580   -0.623812   -0.356464       0.000910
+   304    0.445580   -0.534696   -0.267348       0.000910
+   305    0.445580   -0.445580   -0.178232       0.000910
+   306    0.445580   -0.356464   -0.089116       0.000910
+   307    0.445580   -0.267348    0.000000       0.000910
+   308    0.445580   -0.178232    0.089116       0.000910
+   309    0.445580   -0.089116    0.178232       0.000910
+   310    0.445580    0.000000    0.267348       0.000910
+   311    0.445580    0.089116    0.356464       0.000910
+   312    0.445580    0.178232    0.445580       0.000910
+   313    0.534696   -0.980276   -0.623812       0.000910
+   314    0.534696   -0.891160   -0.534696       0.000910
+   315    0.534696   -0.802044   -0.445580       0.000910
+   316    0.534696   -0.712928   -0.356464       0.000910
+   317    0.534696   -0.623812   -0.267348       0.000910
+   318    0.534696   -0.534696   -0.178232       0.000910
+   319    0.534696   -0.445580   -0.089116       0.000910
+   320    0.534696   -0.356464    0.000000       0.000910
+   321    0.534696   -0.267348    0.089116       0.000910
+   322    0.534696   -0.178232    0.178232       0.000910
+   323    0.534696   -0.089116    0.267348       0.000910
+   324    0.534696    0.000000    0.356464       0.000910
+   325    0.534696    0.089116    0.445580       0.000910
+   326    0.623812   -1.069392   -0.623812       0.000910
+   327    0.623812   -0.980276   -0.534696       0.000910
+   328    0.623812   -0.891160   -0.445580       0.000910
+   329    0.623812   -0.802044   -0.356464       0.000910
+   330    0.623812   -0.712928   -0.267348       0.000910
+   331    0.623812   -0.623812   -0.178232       0.000910
+   332    0.623812   -0.534696   -0.089116       0.000910
+   333    0.623812   -0.445580    0.000000       0.000910
+   334    0.623812   -0.356464    0.089116       0.000910
+   335    0.623812   -0.267348    0.178232       0.000910
+   336    0.623812   -0.178232    0.267348       0.000910
+   337    0.623812   -0.089116    0.356464       0.000910
+   338    0.623812    0.000000    0.445580       0.000910
+   339   -0.356464    0.000000   -0.712928       0.000910
+   340   -0.356464    0.089116   -0.623812       0.000910
+   341   -0.356464    0.178232   -0.534696       0.000910
+   342   -0.356464    0.267348   -0.445580       0.000910
+   343   -0.356464    0.356464   -0.356464       0.000910
+   344   -0.356464    0.445580   -0.267348       0.000910
+   345   -0.356464    0.534696   -0.178232       0.000910
+   346   -0.356464    0.623812   -0.089116       0.000910
+   347   -0.356464    0.712928    0.000000       0.000910
+   348   -0.356464    0.802044    0.089116       0.000910
+   349   -0.356464    0.891160    0.178232       0.000910
+   350   -0.356464    0.980276    0.267348       0.000910
+   351   -0.356464    1.069392    0.356464       0.000910
+   352   -0.267348   -0.089116   -0.712928       0.000910
+   353   -0.267348    0.000000   -0.623812       0.000910
+   354   -0.267348    0.089116   -0.534696       0.000910
+   355   -0.267348    0.178232   -0.445580       0.000910
+   356   -0.267348    0.267348   -0.356464       0.000910
+   357   -0.267348    0.356464   -0.267348       0.000910
+   358   -0.267348    0.445580   -0.178232       0.000910
+   359   -0.267348    0.534696   -0.089116       0.000910
+   360   -0.267348    0.623812    0.000000       0.000910
+   361   -0.267348    0.712928    0.089116       0.000910
+   362   -0.267348    0.802044    0.178232       0.000910
+   363   -0.267348    0.891160    0.267348       0.000910
+   364   -0.267348    0.980276    0.356464       0.000910
+   365   -0.178232   -0.178232   -0.712928       0.000910
+   366   -0.178232   -0.089116   -0.623812       0.000910
+   367   -0.178232    0.000000   -0.534696       0.000910
+   368   -0.178232    0.089116   -0.445580       0.000910
+   369   -0.178232    0.178232   -0.356464       0.000910
+   370   -0.178232    0.267348   -0.267348       0.000910
+   371   -0.178232    0.356464   -0.178232       0.000910
+   372   -0.178232    0.445580   -0.089116       0.000910
+   373   -0.178232    0.534696    0.000000       0.000910
+   374   -0.178232    0.623812    0.089116       0.000910
+   375   -0.178232    0.712928    0.178232       0.000910
+   376   -0.178232    0.802044    0.267348       0.000910
+   377   -0.178232    0.891160    0.356464       0.000910
+   378   -0.089116   -0.267348   -0.712928       0.000910
+   379   -0.089116   -0.178232   -0.623812       0.000910
+   380   -0.089116   -0.089116   -0.534696       0.000910
+   381   -0.089116    0.000000   -0.445580       0.000910
+   382   -0.089116    0.089116   -0.356464       0.000910
+   383   -0.089116    0.178232   -0.267348       0.000910
+   384   -0.089116    0.267348   -0.178232       0.000910
+   385   -0.089116    0.356464   -0.089116       0.000910
+   386   -0.089116    0.445580    0.000000       0.000910
+   387   -0.089116    0.534696    0.089116       0.000910
+   388   -0.089116    0.623812    0.178232       0.000910
+   389   -0.089116    0.712928    0.267348       0.000910
+   390   -0.089116    0.802044    0.356464       0.000910
+   391    0.000000   -0.356464   -0.712928       0.000910
+   392    0.000000   -0.267348   -0.623812       0.000910
+   393    0.000000   -0.178232   -0.534696       0.000910
+   394    0.000000   -0.089116   -0.445580       0.000910
+   395    0.000000    0.000000   -0.356464       0.000910
+   396    0.000000    0.089116   -0.267348       0.000910
+   397    0.000000    0.178232   -0.178232       0.000910
+   398    0.000000    0.267348   -0.089116       0.000910
+   399    0.000000    0.356464    0.000000       0.000910
+   400    0.000000    0.445580    0.089116       0.000910
+   401    0.000000    0.534696    0.178232       0.000910
+   402    0.000000    0.623812    0.267348       0.000910
+   403    0.000000    0.712928    0.356464       0.000910
+   404    0.089116   -0.445580   -0.712928       0.000910
+   405    0.089116   -0.356464   -0.623812       0.000910
+   406    0.089116   -0.267348   -0.534696       0.000910
+   407    0.089116   -0.178232   -0.445580       0.000910
+   408    0.089116   -0.089116   -0.356464       0.000910
+   409    0.089116    0.000000   -0.267348       0.000910
+   410    0.089116    0.089116   -0.178232       0.000910
+   411    0.089116    0.178232   -0.089116       0.000910
+   412    0.089116    0.267348    0.000000       0.000910
+   413    0.089116    0.356464    0.089116       0.000910
+   414    0.089116    0.445580    0.178232       0.000910
+   415    0.089116    0.534696    0.267348       0.000910
+   416    0.089116    0.623812    0.356464       0.000910
+   417    0.178232   -0.534696   -0.712928       0.000910
+   418    0.178232   -0.445580   -0.623812       0.000910
+   419    0.178232   -0.356464   -0.534696       0.000910
+   420    0.178232   -0.267348   -0.445580       0.000910
+   421    0.178232   -0.178232   -0.356464       0.000910
+   422    0.178232   -0.089116   -0.267348       0.000910
+   423    0.178232    0.000000   -0.178232       0.000910
+   424    0.178232    0.089116   -0.089116       0.000910
+   425    0.178232    0.178232    0.000000       0.000910
+   426    0.178232    0.267348    0.089116       0.000910
+   427    0.178232    0.356464    0.178232       0.000910
+   428    0.178232    0.445580    0.267348       0.000910
+   429    0.178232    0.534696    0.356464       0.000910
+   430    0.267348   -0.623812   -0.712928       0.000910
+   431    0.267348   -0.534696   -0.623812       0.000910
+   432    0.267348   -0.445580   -0.534696       0.000910
+   433    0.267348   -0.356464   -0.445580       0.000910
+   434    0.267348   -0.267348   -0.356464       0.000910
+   435    0.267348   -0.178232   -0.267348       0.000910
+   436    0.267348   -0.089116   -0.178232       0.000910
+   437    0.267348    0.000000   -0.089116       0.000910
+   438    0.267348    0.089116    0.000000       0.000910
+   439    0.267348    0.178232    0.089116       0.000910
+   440    0.267348    0.267348    0.178232       0.000910
+   441    0.267348    0.356464    0.267348       0.000910
+   442    0.267348    0.445580    0.356464       0.000910
+   443    0.356464   -0.712928   -0.712928       0.000910
+   444    0.356464   -0.623812   -0.623812       0.000910
+   445    0.356464   -0.534696   -0.534696       0.000910
+   446    0.356464   -0.445580   -0.445580       0.000910
+   447    0.356464   -0.356464   -0.356464       0.000910
+   448    0.356464   -0.267348   -0.267348       0.000910
+   449    0.356464   -0.178232   -0.178232       0.000910
+   450    0.356464   -0.089116   -0.089116       0.000910
+   451    0.356464    0.000000    0.000000       0.000910
+   452    0.356464    0.089116    0.089116       0.000910
+   453    0.356464    0.178232    0.178232       0.000910
+   454    0.356464    0.267348    0.267348       0.000910
+   455    0.356464    0.356464    0.356464       0.000910
+   456    0.445580   -0.802044   -0.712928       0.000910
+   457    0.445580   -0.712928   -0.623812       0.000910
+   458    0.445580   -0.623812   -0.534696       0.000910
+   459    0.445580   -0.534696   -0.445580       0.000910
+   460    0.445580   -0.445580   -0.356464       0.000910
+   461    0.445580   -0.356464   -0.267348       0.000910
+   462    0.445580   -0.267348   -0.178232       0.000910
+   463    0.445580   -0.178232   -0.089116       0.000910
+   464    0.445580   -0.089116    0.000000       0.000910
+   465    0.445580    0.000000    0.089116       0.000910
+   466    0.445580    0.089116    0.178232       0.000910
+   467    0.445580    0.178232    0.267348       0.000910
+   468    0.445580    0.267348    0.356464       0.000910
+   469    0.534696   -0.891160   -0.712928       0.000910
+   470    0.534696   -0.802044   -0.623812       0.000910
+   471    0.534696   -0.712928   -0.534696       0.000910
+   472    0.534696   -0.623812   -0.445580       0.000910
+   473    0.534696   -0.534696   -0.356464       0.000910
+   474    0.534696   -0.445580   -0.267348       0.000910
+   475    0.534696   -0.356464   -0.178232       0.000910
+   476    0.534696   -0.267348   -0.089116       0.000910
+   477    0.534696   -0.178232    0.000000       0.000910
+   478    0.534696   -0.089116    0.089116       0.000910
+   479    0.534696    0.000000    0.178232       0.000910
+   480    0.534696    0.089116    0.267348       0.000910
+   481    0.534696    0.178232    0.356464       0.000910
+   482    0.623812   -0.980276   -0.712928       0.000910
+   483    0.623812   -0.891160   -0.623812       0.000910
+   484    0.623812   -0.802044   -0.534696       0.000910
+   485    0.623812   -0.712928   -0.445580       0.000910
+   486    0.623812   -0.623812   -0.356464       0.000910
+   487    0.623812   -0.534696   -0.267348       0.000910
+   488    0.623812   -0.445580   -0.178232       0.000910
+   489    0.623812   -0.356464   -0.089116       0.000910
+   490    0.623812   -0.267348    0.000000       0.000910
+   491    0.623812   -0.178232    0.089116       0.000910
+   492    0.623812   -0.089116    0.178232       0.000910
+   493    0.623812    0.000000    0.267348       0.000910
+   494    0.623812    0.089116    0.356464       0.000910
+   495    0.712928   -1.069392   -0.712928       0.000910
+   496    0.712928   -0.980276   -0.623812       0.000910
+   497    0.712928   -0.891160   -0.534696       0.000910
+   498    0.712928   -0.802044   -0.445580       0.000910
+   499    0.712928   -0.712928   -0.356464       0.000910
+   500    0.712928   -0.623812   -0.267348       0.000910
+   501    0.712928   -0.534696   -0.178232       0.000910
+   502    0.712928   -0.445580   -0.089116       0.000910
+   503    0.712928   -0.356464    0.000000       0.000910
+   504    0.712928   -0.267348    0.089116       0.000910
+   505    0.712928   -0.178232    0.178232       0.000910
+   506    0.712928   -0.089116    0.267348       0.000910
+   507    0.712928    0.000000    0.356464       0.000910
+   508   -0.267348    0.000000   -0.802044       0.000910
+   509   -0.267348    0.089116   -0.712928       0.000910
+   510   -0.267348    0.178232   -0.623812       0.000910
+   511   -0.267348    0.267348   -0.534696       0.000910
+   512   -0.267348    0.356464   -0.445580       0.000910
+   513   -0.267348    0.445580   -0.356464       0.000910
+   514   -0.267348    0.534696   -0.267348       0.000910
+   515   -0.267348    0.623812   -0.178232       0.000910
+   516   -0.267348    0.712928   -0.089116       0.000910
+   517   -0.267348    0.802044    0.000000       0.000910
+   518   -0.267348    0.891160    0.089116       0.000910
+   519   -0.267348    0.980276    0.178232       0.000910
+   520   -0.267348    1.069392    0.267348       0.000910
+   521   -0.178232   -0.089116   -0.802044       0.000910
+   522   -0.178232    0.000000   -0.712928       0.000910
+   523   -0.178232    0.089116   -0.623812       0.000910
+   524   -0.178232    0.178232   -0.534696       0.000910
+   525   -0.178232    0.267348   -0.445580       0.000910
+   526   -0.178232    0.356464   -0.356464       0.000910
+   527   -0.178232    0.445580   -0.267348       0.000910
+   528   -0.178232    0.534696   -0.178232       0.000910
+   529   -0.178232    0.623812   -0.089116       0.000910
+   530   -0.178232    0.712928    0.000000       0.000910
+   531   -0.178232    0.802044    0.089116       0.000910
+   532   -0.178232    0.891160    0.178232       0.000910
+   533   -0.178232    0.980276    0.267348       0.000910
+   534   -0.089116   -0.178232   -0.802044       0.000910
+   535   -0.089116   -0.089116   -0.712928       0.000910
+   536   -0.089116    0.000000   -0.623812       0.000910
+   537   -0.089116    0.089116   -0.534696       0.000910
+   538   -0.089116    0.178232   -0.445580       0.000910
+   539   -0.089116    0.267348   -0.356464       0.000910
+   540   -0.089116    0.356464   -0.267348       0.000910
+   541   -0.089116    0.445580   -0.178232       0.000910
+   542   -0.089116    0.534696   -0.089116       0.000910
+   543   -0.089116    0.623812    0.000000       0.000910
+   544   -0.089116    0.712928    0.089116       0.000910
+   545   -0.089116    0.802044    0.178232       0.000910
+   546   -0.089116    0.891160    0.267348       0.000910
+   547    0.000000   -0.267348   -0.802044       0.000910
+   548    0.000000   -0.178232   -0.712928       0.000910
+   549    0.000000   -0.089116   -0.623812       0.000910
+   550    0.000000    0.000000   -0.534696       0.000910
+   551    0.000000    0.089116   -0.445580       0.000910
+   552    0.000000    0.178232   -0.356464       0.000910
+   553    0.000000    0.267348   -0.267348       0.000910
+   554    0.000000    0.356464   -0.178232       0.000910
+   555    0.000000    0.445580   -0.089116       0.000910
+   556    0.000000    0.534696    0.000000       0.000910
+   557    0.000000    0.623812    0.089116       0.000910
+   558    0.000000    0.712928    0.178232       0.000910
+   559    0.000000    0.802044    0.267348       0.000910
+   560    0.089116   -0.356464   -0.802044       0.000910
+   561    0.089116   -0.267348   -0.712928       0.000910
+   562    0.089116   -0.178232   -0.623812       0.000910
+   563    0.089116   -0.089116   -0.534696       0.000910
+   564    0.089116    0.000000   -0.445580       0.000910
+   565    0.089116    0.089116   -0.356464       0.000910
+   566    0.089116    0.178232   -0.267348       0.000910
+   567    0.089116    0.267348   -0.178232       0.000910
+   568    0.089116    0.356464   -0.089116       0.000910
+   569    0.089116    0.445580    0.000000       0.000910
+   570    0.089116    0.534696    0.089116       0.000910
+   571    0.089116    0.623812    0.178232       0.000910
+   572    0.089116    0.712928    0.267348       0.000910
+   573    0.178232   -0.445580   -0.802044       0.000910
+   574    0.178232   -0.356464   -0.712928       0.000910
+   575    0.178232   -0.267348   -0.623812       0.000910
+   576    0.178232   -0.178232   -0.534696       0.000910
+   577    0.178232   -0.089116   -0.445580       0.000910
+   578    0.178232    0.000000   -0.356464       0.000910
+   579    0.178232    0.089116   -0.267348       0.000910
+   580    0.178232    0.178232   -0.178232       0.000910
+   581    0.178232    0.267348   -0.089116       0.000910
+   582    0.178232    0.356464    0.000000       0.000910
+   583    0.178232    0.445580    0.089116       0.000910
+   584    0.178232    0.534696    0.178232       0.000910
+   585    0.178232    0.623812    0.267348       0.000910
+   586    0.267348   -0.534696   -0.802044       0.000910
+   587    0.267348   -0.445580   -0.712928       0.000910
+   588    0.267348   -0.356464   -0.623812       0.000910
+   589    0.267348   -0.267348   -0.534696       0.000910
+   590    0.267348   -0.178232   -0.445580       0.000910
+   591    0.267348   -0.089116   -0.356464       0.000910
+   592    0.267348    0.000000   -0.267348       0.000910
+   593    0.267348    0.089116   -0.178232       0.000910
+   594    0.267348    0.178232   -0.089116       0.000910
+   595    0.267348    0.267348    0.000000       0.000910
+   596    0.267348    0.356464    0.089116       0.000910
+   597    0.267348    0.445580    0.178232       0.000910
+   598    0.267348    0.534696    0.267348       0.000910
+   599    0.356464   -0.623812   -0.802044       0.000910
+   600    0.356464   -0.534696   -0.712928       0.000910
+   601    0.356464   -0.445580   -0.623812       0.000910
+   602    0.356464   -0.356464   -0.534696       0.000910
+   603    0.356464   -0.267348   -0.445580       0.000910
+   604    0.356464   -0.178232   -0.356464       0.000910
+   605    0.356464   -0.089116   -0.267348       0.000910
+   606    0.356464    0.000000   -0.178232       0.000910
+   607    0.356464    0.089116   -0.089116       0.000910
+   608    0.356464    0.178232    0.000000       0.000910
+   609    0.356464    0.267348    0.089116       0.000910
+   610    0.356464    0.356464    0.178232       0.000910
+   611    0.356464    0.445580    0.267348       0.000910
+   612    0.445580   -0.712928   -0.802044       0.000910
+   613    0.445580   -0.623812   -0.712928       0.000910
+   614    0.445580   -0.534696   -0.623812       0.000910
+   615    0.445580   -0.445580   -0.534696       0.000910
+   616    0.445580   -0.356464   -0.445580       0.000910
+   617    0.445580   -0.267348   -0.356464       0.000910
+   618    0.445580   -0.178232   -0.267348       0.000910
+   619    0.445580   -0.089116   -0.178232       0.000910
+   620    0.445580    0.000000   -0.089116       0.000910
+   621    0.445580    0.089116    0.000000       0.000910
+   622    0.445580    0.178232    0.089116       0.000910
+   623    0.445580    0.267348    0.178232       0.000910
+   624    0.445580    0.356464    0.267348       0.000910
+   625    0.534696   -0.802044   -0.802044       0.000910
+   626    0.534696   -0.712928   -0.712928       0.000910
+   627    0.534696   -0.623812   -0.623812       0.000910
+   628    0.534696   -0.534696   -0.534696       0.000910
+   629    0.534696   -0.445580   -0.445580       0.000910
+   630    0.534696   -0.356464   -0.356464       0.000910
+   631    0.534696   -0.267348   -0.267348       0.000910
+   632    0.534696   -0.178232   -0.178232       0.000910
+   633    0.534696   -0.089116   -0.089116       0.000910
+   634    0.534696    0.000000    0.000000       0.000910
+   635    0.534696    0.089116    0.089116       0.000910
+   636    0.534696    0.178232    0.178232       0.000910
+   637    0.534696    0.267348    0.267348       0.000910
+   638    0.623812   -0.891160   -0.802044       0.000910
+   639    0.623812   -0.802044   -0.712928       0.000910
+   640    0.623812   -0.712928   -0.623812       0.000910
+   641    0.623812   -0.623812   -0.534696       0.000910
+   642    0.623812   -0.534696   -0.445580       0.000910
+   643    0.623812   -0.445580   -0.356464       0.000910
+   644    0.623812   -0.356464   -0.267348       0.000910
+   645    0.623812   -0.267348   -0.178232       0.000910
+   646    0.623812   -0.178232   -0.089116       0.000910
+   647    0.623812   -0.089116    0.000000       0.000910
+   648    0.623812    0.000000    0.089116       0.000910
+   649    0.623812    0.089116    0.178232       0.000910
+   650    0.623812    0.178232    0.267348       0.000910
+   651    0.712928   -0.980276   -0.802044       0.000910
+   652    0.712928   -0.891160   -0.712928       0.000910
+   653    0.712928   -0.802044   -0.623812       0.000910
+   654    0.712928   -0.712928   -0.534696       0.000910
+   655    0.712928   -0.623812   -0.445580       0.000910
+   656    0.712928   -0.534696   -0.356464       0.000910
+   657    0.712928   -0.445580   -0.267348       0.000910
+   658    0.712928   -0.356464   -0.178232       0.000910
+   659    0.712928   -0.267348   -0.089116       0.000910
+   660    0.712928   -0.178232    0.000000       0.000910
+   661    0.712928   -0.089116    0.089116       0.000910
+   662    0.712928    0.000000    0.178232       0.000910
+   663    0.712928    0.089116    0.267348       0.000910
+   664    0.802044   -1.069392   -0.802044       0.000910
+   665    0.802044   -0.980276   -0.712928       0.000910
+   666    0.802044   -0.891160   -0.623812       0.000910
+   667    0.802044   -0.802044   -0.534696       0.000910
+   668    0.802044   -0.712928   -0.445580       0.000910
+   669    0.802044   -0.623812   -0.356464       0.000910
+   670    0.802044   -0.534696   -0.267348       0.000910
+   671    0.802044   -0.445580   -0.178232       0.000910
+   672    0.802044   -0.356464   -0.089116       0.000910
+   673    0.802044   -0.267348    0.000000       0.000910
+   674    0.802044   -0.178232    0.089116       0.000910
+   675    0.802044   -0.089116    0.178232       0.000910
+   676    0.802044    0.000000    0.267348       0.000910
+   677   -0.178232    0.000000   -0.891160       0.000910
+   678   -0.178232    0.089116   -0.802044       0.000910
+   679   -0.178232    0.178232   -0.712928       0.000910
+   680   -0.178232    0.267348   -0.623812       0.000910
+   681   -0.178232    0.356464   -0.534696       0.000910
+   682   -0.178232    0.445580   -0.445580       0.000910
+   683   -0.178232    0.534696   -0.356464       0.000910
+   684   -0.178232    0.623812   -0.267348       0.000910
+   685   -0.178232    0.712928   -0.178232       0.000910
+   686   -0.178232    0.802044   -0.089116       0.000910
+   687   -0.178232    0.891160    0.000000       0.000910
+   688   -0.178232    0.980276    0.089116       0.000910
+   689   -0.178232    1.069392    0.178232       0.000910
+   690   -0.089116   -0.089116   -0.891160       0.000910
+   691   -0.089116    0.000000   -0.802044       0.000910
+   692   -0.089116    0.089116   -0.712928       0.000910
+   693   -0.089116    0.178232   -0.623812       0.000910
+   694   -0.089116    0.267348   -0.534696       0.000910
+   695   -0.089116    0.356464   -0.445580       0.000910
+   696   -0.089116    0.445580   -0.356464       0.000910
+   697   -0.089116    0.534696   -0.267348       0.000910
+   698   -0.089116    0.623812   -0.178232       0.000910
+   699   -0.089116    0.712928   -0.089116       0.000910
+   700   -0.089116    0.802044    0.000000       0.000910
+   701   -0.089116    0.891160    0.089116       0.000910
+   702   -0.089116    0.980276    0.178232       0.000910
+   703    0.000000   -0.178232   -0.891160       0.000910
+   704    0.000000   -0.089116   -0.802044       0.000910
+   705    0.000000    0.000000   -0.712928       0.000910
+   706    0.000000    0.089116   -0.623812       0.000910
+   707    0.000000    0.178232   -0.534696       0.000910
+   708    0.000000    0.267348   -0.445580       0.000910
+   709    0.000000    0.356464   -0.356464       0.000910
+   710    0.000000    0.445580   -0.267348       0.000910
+   711    0.000000    0.534696   -0.178232       0.000910
+   712    0.000000    0.623812   -0.089116       0.000910
+   713    0.000000    0.712928    0.000000       0.000910
+   714    0.000000    0.802044    0.089116       0.000910
+   715    0.000000    0.891160    0.178232       0.000910
+   716    0.089116   -0.267348   -0.891160       0.000910
+   717    0.089116   -0.178232   -0.802044       0.000910
+   718    0.089116   -0.089116   -0.712928       0.000910
+   719    0.089116    0.000000   -0.623812       0.000910
+   720    0.089116    0.089116   -0.534696       0.000910
+   721    0.089116    0.178232   -0.445580       0.000910
+   722    0.089116    0.267348   -0.356464       0.000910
+   723    0.089116    0.356464   -0.267348       0.000910
+   724    0.089116    0.445580   -0.178232       0.000910
+   725    0.089116    0.534696   -0.089116       0.000910
+   726    0.089116    0.623812    0.000000       0.000910
+   727    0.089116    0.712928    0.089116       0.000910
+   728    0.089116    0.802044    0.178232       0.000910
+   729    0.178232   -0.356464   -0.891160       0.000910
+   730    0.178232   -0.267348   -0.802044       0.000910
+   731    0.178232   -0.178232   -0.712928       0.000910
+   732    0.178232   -0.089116   -0.623812       0.000910
+   733    0.178232    0.000000   -0.534696       0.000910
+   734    0.178232    0.089116   -0.445580       0.000910
+   735    0.178232    0.178232   -0.356464       0.000910
+   736    0.178232    0.267348   -0.267348       0.000910
+   737    0.178232    0.356464   -0.178232       0.000910
+   738    0.178232    0.445580   -0.089116       0.000910
+   739    0.178232    0.534696    0.000000       0.000910
+   740    0.178232    0.623812    0.089116       0.000910
+   741    0.178232    0.712928    0.178232       0.000910
+   742    0.267348   -0.445580   -0.891160       0.000910
+   743    0.267348   -0.356464   -0.802044       0.000910
+   744    0.267348   -0.267348   -0.712928       0.000910
+   745    0.267348   -0.178232   -0.623812       0.000910
+   746    0.267348   -0.089116   -0.534696       0.000910
+   747    0.267348    0.000000   -0.445580       0.000910
+   748    0.267348    0.089116   -0.356464       0.000910
+   749    0.267348    0.178232   -0.267348       0.000910
+   750    0.267348    0.267348   -0.178232       0.000910
+   751    0.267348    0.356464   -0.089116       0.000910
+   752    0.267348    0.445580    0.000000       0.000910
+   753    0.267348    0.534696    0.089116       0.000910
+   754    0.267348    0.623812    0.178232       0.000910
+   755    0.356464   -0.534696   -0.891160       0.000910
+   756    0.356464   -0.445580   -0.802044       0.000910
+   757    0.356464   -0.356464   -0.712928       0.000910
+   758    0.356464   -0.267348   -0.623812       0.000910
+   759    0.356464   -0.178232   -0.534696       0.000910
+   760    0.356464   -0.089116   -0.445580       0.000910
+   761    0.356464    0.000000   -0.356464       0.000910
+   762    0.356464    0.089116   -0.267348       0.000910
+   763    0.356464    0.178232   -0.178232       0.000910
+   764    0.356464    0.267348   -0.089116       0.000910
+   765    0.356464    0.356464    0.000000       0.000910
+   766    0.356464    0.445580    0.089116       0.000910
+   767    0.356464    0.534696    0.178232       0.000910
+   768    0.445580   -0.623812   -0.891160       0.000910
+   769    0.445580   -0.534696   -0.802044       0.000910
+   770    0.445580   -0.445580   -0.712928       0.000910
+   771    0.445580   -0.356464   -0.623812       0.000910
+   772    0.445580   -0.267348   -0.534696       0.000910
+   773    0.445580   -0.178232   -0.445580       0.000910
+   774    0.445580   -0.089116   -0.356464       0.000910
+   775    0.445580    0.000000   -0.267348       0.000910
+   776    0.445580    0.089116   -0.178232       0.000910
+   777    0.445580    0.178232   -0.089116       0.000910
+   778    0.445580    0.267348    0.000000       0.000910
+   779    0.445580    0.356464    0.089116       0.000910
+   780    0.445580    0.445580    0.178232       0.000910
+   781    0.534696   -0.712928   -0.891160       0.000910
+   782    0.534696   -0.623812   -0.802044       0.000910
+   783    0.534696   -0.534696   -0.712928       0.000910
+   784    0.534696   -0.445580   -0.623812       0.000910
+   785    0.534696   -0.356464   -0.534696       0.000910
+   786    0.534696   -0.267348   -0.445580       0.000910
+   787    0.534696   -0.178232   -0.356464       0.000910
+   788    0.534696   -0.089116   -0.267348       0.000910
+   789    0.534696    0.000000   -0.178232       0.000910
+   790    0.534696    0.089116   -0.089116       0.000910
+   791    0.534696    0.178232    0.000000       0.000910
+   792    0.534696    0.267348    0.089116       0.000910
+   793    0.534696    0.356464    0.178232       0.000910
+   794    0.623812   -0.802044   -0.891160       0.000910
+   795    0.623812   -0.712928   -0.802044       0.000910
+   796    0.623812   -0.623812   -0.712928       0.000910
+   797    0.623812   -0.534696   -0.623812       0.000910
+   798    0.623812   -0.445580   -0.534696       0.000910
+   799    0.623812   -0.356464   -0.445580       0.000910
+   800    0.623812   -0.267348   -0.356464       0.000910
+   801    0.623812   -0.178232   -0.267348       0.000910
+   802    0.623812   -0.089116   -0.178232       0.000910
+   803    0.623812    0.000000   -0.089116       0.000910
+   804    0.623812    0.089116    0.000000       0.000910
+   805    0.623812    0.178232    0.089116       0.000910
+   806    0.623812    0.267348    0.178232       0.000910
+   807    0.712928   -0.891160   -0.891160       0.000910
+   808    0.712928   -0.802044   -0.802044       0.000910
+   809    0.712928   -0.712928   -0.712928       0.000910
+   810    0.712928   -0.623812   -0.623812       0.000910
+   811    0.712928   -0.534696   -0.534696       0.000910
+   812    0.712928   -0.445580   -0.445580       0.000910
+   813    0.712928   -0.356464   -0.356464       0.000910
+   814    0.712928   -0.267348   -0.267348       0.000910
+   815    0.712928   -0.178232   -0.178232       0.000910
+   816    0.712928   -0.089116   -0.089116       0.000910
+   817    0.712928    0.000000    0.000000       0.000910
+   818    0.712928    0.089116    0.089116       0.000910
+   819    0.712928    0.178232    0.178232       0.000910
+   820    0.802044   -0.980276   -0.891160       0.000910
+   821    0.802044   -0.891160   -0.802044       0.000910
+   822    0.802044   -0.802044   -0.712928       0.000910
+   823    0.802044   -0.712928   -0.623812       0.000910
+   824    0.802044   -0.623812   -0.534696       0.000910
+   825    0.802044   -0.534696   -0.445580       0.000910
+   826    0.802044   -0.445580   -0.356464       0.000910
+   827    0.802044   -0.356464   -0.267348       0.000910
+   828    0.802044   -0.267348   -0.178232       0.000910
+   829    0.802044   -0.178232   -0.089116       0.000910
+   830    0.802044   -0.089116    0.000000       0.000910
+   831    0.802044    0.000000    0.089116       0.000910
+   832    0.802044    0.089116    0.178232       0.000910
+   833    0.891160   -1.069392   -0.891160       0.000910
+   834    0.891160   -0.980276   -0.802044       0.000910
+   835    0.891160   -0.891160   -0.712928       0.000910
+   836    0.891160   -0.802044   -0.623812       0.000910
+   837    0.891160   -0.712928   -0.534696       0.000910
+   838    0.891160   -0.623812   -0.445580       0.000910
+   839    0.891160   -0.534696   -0.356464       0.000910
+   840    0.891160   -0.445580   -0.267348       0.000910
+   841    0.891160   -0.356464   -0.178232       0.000910
+   842    0.891160   -0.267348   -0.089116       0.000910
+   843    0.891160   -0.178232    0.000000       0.000910
+   844    0.891160   -0.089116    0.089116       0.000910
+   845    0.891160    0.000000    0.178232       0.000910
+   846   -0.089116    0.000000   -0.980276       0.000910
+   847   -0.089116    0.089116   -0.891160       0.000910
+   848   -0.089116    0.178232   -0.802044       0.000910
+   849   -0.089116    0.267348   -0.712928       0.000910
+   850   -0.089116    0.356464   -0.623812       0.000910
+   851   -0.089116    0.445580   -0.534696       0.000910
+   852   -0.089116    0.534696   -0.445580       0.000910
+   853   -0.089116    0.623812   -0.356464       0.000910
+   854   -0.089116    0.712928   -0.267348       0.000910
+   855   -0.089116    0.802044   -0.178232       0.000910
+   856   -0.089116    0.891160   -0.089116       0.000910
+   857   -0.089116    0.980276    0.000000       0.000910
+   858   -0.089116    1.069392    0.089116       0.000910
+   859    0.000000   -0.089116   -0.980276       0.000910
+   860    0.000000    0.000000   -0.891160       0.000910
+   861    0.000000    0.089116   -0.802044       0.000910
+   862    0.000000    0.178232   -0.712928       0.000910
+   863    0.000000    0.267348   -0.623812       0.000910
+   864    0.000000    0.356464   -0.534696       0.000910
+   865    0.000000    0.445580   -0.445580       0.000910
+   866    0.000000    0.534696   -0.356464       0.000910
+   867    0.000000    0.623812   -0.267348       0.000910
+   868    0.000000    0.712928   -0.178232       0.000910
+   869    0.000000    0.802044   -0.089116       0.000910
+   870    0.000000    0.891160    0.000000       0.000910
+   871    0.000000    0.980276    0.089116       0.000910
+   872    0.089116   -0.178232   -0.980276       0.000910
+   873    0.089116   -0.089116   -0.891160       0.000910
+   874    0.089116    0.000000   -0.802044       0.000910
+   875    0.089116    0.089116   -0.712928       0.000910
+   876    0.089116    0.178232   -0.623812       0.000910
+   877    0.089116    0.267348   -0.534696       0.000910
+   878    0.089116    0.356464   -0.445580       0.000910
+   879    0.089116    0.445580   -0.356464       0.000910
+   880    0.089116    0.534696   -0.267348       0.000910
+   881    0.089116    0.623812   -0.178232       0.000910
+   882    0.089116    0.712928   -0.089116       0.000910
+   883    0.089116    0.802044    0.000000       0.000910
+   884    0.089116    0.891160    0.089116       0.000910
+   885    0.178232   -0.267348   -0.980276       0.000910
+   886    0.178232   -0.178232   -0.891160       0.000910
+   887    0.178232   -0.089116   -0.802044       0.000910
+   888    0.178232    0.000000   -0.712928       0.000910
+   889    0.178232    0.089116   -0.623812       0.000910
+   890    0.178232    0.178232   -0.534696       0.000910
+   891    0.178232    0.267348   -0.445580       0.000910
+   892    0.178232    0.356464   -0.356464       0.000910
+   893    0.178232    0.445580   -0.267348       0.000910
+   894    0.178232    0.534696   -0.178232       0.000910
+   895    0.178232    0.623812   -0.089116       0.000910
+   896    0.178232    0.712928    0.000000       0.000910
+   897    0.178232    0.802044    0.089116       0.000910
+   898    0.267348   -0.356464   -0.980276       0.000910
+   899    0.267348   -0.267348   -0.891160       0.000910
+   900    0.267348   -0.178232   -0.802044       0.000910
+   901    0.267348   -0.089116   -0.712928       0.000910
+   902    0.267348    0.000000   -0.623812       0.000910
+   903    0.267348    0.089116   -0.534696       0.000910
+   904    0.267348    0.178232   -0.445580       0.000910
+   905    0.267348    0.267348   -0.356464       0.000910
+   906    0.267348    0.356464   -0.267348       0.000910
+   907    0.267348    0.445580   -0.178232       0.000910
+   908    0.267348    0.534696   -0.089116       0.000910
+   909    0.267348    0.623812    0.000000       0.000910
+   910    0.267348    0.712928    0.089116       0.000910
+   911    0.356464   -0.445580   -0.980276       0.000910
+   912    0.356464   -0.356464   -0.891160       0.000910
+   913    0.356464   -0.267348   -0.802044       0.000910
+   914    0.356464   -0.178232   -0.712928       0.000910
+   915    0.356464   -0.089116   -0.623812       0.000910
+   916    0.356464    0.000000   -0.534696       0.000910
+   917    0.356464    0.089116   -0.445580       0.000910
+   918    0.356464    0.178232   -0.356464       0.000910
+   919    0.356464    0.267348   -0.267348       0.000910
+   920    0.356464    0.356464   -0.178232       0.000910
+   921    0.356464    0.445580   -0.089116       0.000910
+   922    0.356464    0.534696    0.000000       0.000910
+   923    0.356464    0.623812    0.089116       0.000910
+   924    0.445580   -0.534696   -0.980276       0.000910
+   925    0.445580   -0.445580   -0.891160       0.000910
+   926    0.445580   -0.356464   -0.802044       0.000910
+   927    0.445580   -0.267348   -0.712928       0.000910
+   928    0.445580   -0.178232   -0.623812       0.000910
+   929    0.445580   -0.089116   -0.534696       0.000910
+   930    0.445580    0.000000   -0.445580       0.000910
+   931    0.445580    0.089116   -0.356464       0.000910
+   932    0.445580    0.178232   -0.267348       0.000910
+   933    0.445580    0.267348   -0.178232       0.000910
+   934    0.445580    0.356464   -0.089116       0.000910
+   935    0.445580    0.445580    0.000000       0.000910
+   936    0.445580    0.534696    0.089116       0.000910
+   937    0.534696   -0.623812   -0.980276       0.000910
+   938    0.534696   -0.534696   -0.891160       0.000910
+   939    0.534696   -0.445580   -0.802044       0.000910
+   940    0.534696   -0.356464   -0.712928       0.000910
+   941    0.534696   -0.267348   -0.623812       0.000910
+   942    0.534696   -0.178232   -0.534696       0.000910
+   943    0.534696   -0.089116   -0.445580       0.000910
+   944    0.534696    0.000000   -0.356464       0.000910
+   945    0.534696    0.089116   -0.267348       0.000910
+   946    0.534696    0.178232   -0.178232       0.000910
+   947    0.534696    0.267348   -0.089116       0.000910
+   948    0.534696    0.356464    0.000000       0.000910
+   949    0.534696    0.445580    0.089116       0.000910
+   950    0.623812   -0.712928   -0.980276       0.000910
+   951    0.623812   -0.623812   -0.891160       0.000910
+   952    0.623812   -0.534696   -0.802044       0.000910
+   953    0.623812   -0.445580   -0.712928       0.000910
+   954    0.623812   -0.356464   -0.623812       0.000910
+   955    0.623812   -0.267348   -0.534696       0.000910
+   956    0.623812   -0.178232   -0.445580       0.000910
+   957    0.623812   -0.089116   -0.356464       0.000910
+   958    0.623812    0.000000   -0.267348       0.000910
+   959    0.623812    0.089116   -0.178232       0.000910
+   960    0.623812    0.178232   -0.089116       0.000910
+   961    0.623812    0.267348    0.000000       0.000910
+   962    0.623812    0.356464    0.089116       0.000910
+   963    0.712928   -0.802044   -0.980276       0.000910
+   964    0.712928   -0.712928   -0.891160       0.000910
+   965    0.712928   -0.623812   -0.802044       0.000910
+   966    0.712928   -0.534696   -0.712928       0.000910
+   967    0.712928   -0.445580   -0.623812       0.000910
+   968    0.712928   -0.356464   -0.534696       0.000910
+   969    0.712928   -0.267348   -0.445580       0.000910
+   970    0.712928   -0.178232   -0.356464       0.000910
+   971    0.712928   -0.089116   -0.267348       0.000910
+   972    0.712928    0.000000   -0.178232       0.000910
+   973    0.712928    0.089116   -0.089116       0.000910
+   974    0.712928    0.178232    0.000000       0.000910
+   975    0.712928    0.267348    0.089116       0.000910
+   976    0.802044   -0.891160   -0.980276       0.000910
+   977    0.802044   -0.802044   -0.891160       0.000910
+   978    0.802044   -0.712928   -0.802044       0.000910
+   979    0.802044   -0.623812   -0.712928       0.000910
+   980    0.802044   -0.534696   -0.623812       0.000910
+   981    0.802044   -0.445580   -0.534696       0.000910
+   982    0.802044   -0.356464   -0.445580       0.000910
+   983    0.802044   -0.267348   -0.356464       0.000910
+   984    0.802044   -0.178232   -0.267348       0.000910
+   985    0.802044   -0.089116   -0.178232       0.000910
+   986    0.802044    0.000000   -0.089116       0.000910
+   987    0.802044    0.089116    0.000000       0.000910
+   988    0.802044    0.178232    0.089116       0.000910
+   989    0.891160   -0.980276   -0.980276       0.000910
+   990    0.891160   -0.891160   -0.891160       0.000910
+   991    0.891160   -0.802044   -0.802044       0.000910
+   992    0.891160   -0.712928   -0.712928       0.000910
+   993    0.891160   -0.623812   -0.623812       0.000910
+   994    0.891160   -0.534696   -0.534696       0.000910
+   995    0.891160   -0.445580   -0.445580       0.000910
+   996    0.891160   -0.356464   -0.356464       0.000910
+   997    0.891160   -0.267348   -0.267348       0.000910
+   998    0.891160   -0.178232   -0.178232       0.000910
+   999    0.891160   -0.089116   -0.089116       0.000910
+  1000    0.891160    0.000000    0.000000       0.000910
+  1001    0.891160    0.089116    0.089116       0.000910
+  1002    0.980276   -1.069392   -0.980276       0.000910
+  1003    0.980276   -0.980276   -0.891160       0.000910
+  1004    0.980276   -0.891160   -0.802044       0.000910
+  1005    0.980276   -0.802044   -0.712928       0.000910
+  1006    0.980276   -0.712928   -0.623812       0.000910
+  1007    0.980276   -0.623812   -0.534696       0.000910
+  1008    0.980276   -0.534696   -0.445580       0.000910
+  1009    0.980276   -0.445580   -0.356464       0.000910
+  1010    0.980276   -0.356464   -0.267348       0.000910
+  1011    0.980276   -0.267348   -0.178232       0.000910
+  1012    0.980276   -0.178232   -0.089116       0.000910
+  1013    0.980276   -0.089116    0.000000       0.000910
+  1014    0.980276    0.000000    0.089116       0.000910
+  1015    0.000000    0.000000   -1.069392       0.000910
+  1016    0.000000    0.089116   -0.980276       0.000910
+  1017    0.000000    0.178232   -0.891160       0.000910
+  1018    0.000000    0.267348   -0.802044       0.000910
+  1019    0.000000    0.356464   -0.712928       0.000910
+  1020    0.000000    0.445580   -0.623812       0.000910
+  1021    0.000000    0.534696   -0.534696       0.000910
+  1022    0.000000    0.623812   -0.445580       0.000910
+  1023    0.000000    0.712928   -0.356464       0.000910
+  1024    0.000000    0.802044   -0.267348       0.000910
+  1025    0.000000    0.891160   -0.178232       0.000910
+  1026    0.000000    0.980276   -0.089116       0.000910
+  1027    0.000000    1.069392    0.000000       0.000910
+  1028    0.089116   -0.089116   -1.069392       0.000910
+  1029    0.089116    0.000000   -0.980276       0.000910
+  1030    0.089116    0.089116   -0.891160       0.000910
+  1031    0.089116    0.178232   -0.802044       0.000910
+  1032    0.089116    0.267348   -0.712928       0.000910
+  1033    0.089116    0.356464   -0.623812       0.000910
+  1034    0.089116    0.445580   -0.534696       0.000910
+  1035    0.089116    0.534696   -0.445580       0.000910
+  1036    0.089116    0.623812   -0.356464       0.000910
+  1037    0.089116    0.712928   -0.267348       0.000910
+  1038    0.089116    0.802044   -0.178232       0.000910
+  1039    0.089116    0.891160   -0.089116       0.000910
+  1040    0.089116    0.980276    0.000000       0.000910
+  1041    0.178232   -0.178232   -1.069392       0.000910
+  1042    0.178232   -0.089116   -0.980276       0.000910
+  1043    0.178232    0.000000   -0.891160       0.000910
+  1044    0.178232    0.089116   -0.802044       0.000910
+  1045    0.178232    0.178232   -0.712928       0.000910
+  1046    0.178232    0.267348   -0.623812       0.000910
+  1047    0.178232    0.356464   -0.534696       0.000910
+  1048    0.178232    0.445580   -0.445580       0.000910
+  1049    0.178232    0.534696   -0.356464       0.000910
+  1050    0.178232    0.623812   -0.267348       0.000910
+  1051    0.178232    0.712928   -0.178232       0.000910
+  1052    0.178232    0.802044   -0.089116       0.000910
+  1053    0.178232    0.891160    0.000000       0.000910
+  1054    0.267348   -0.267348   -1.069392       0.000910
+  1055    0.267348   -0.178232   -0.980276       0.000910
+  1056    0.267348   -0.089116   -0.891160       0.000910
+  1057    0.267348    0.000000   -0.802044       0.000910
+  1058    0.267348    0.089116   -0.712928       0.000910
+  1059    0.267348    0.178232   -0.623812       0.000910
+  1060    0.267348    0.267348   -0.534696       0.000910
+  1061    0.267348    0.356464   -0.445580       0.000910
+  1062    0.267348    0.445580   -0.356464       0.000910
+  1063    0.267348    0.534696   -0.267348       0.000910
+  1064    0.267348    0.623812   -0.178232       0.000910
+  1065    0.267348    0.712928   -0.089116       0.000910
+  1066    0.267348    0.802044    0.000000       0.000910
+  1067    0.356464   -0.356464   -1.069392       0.000910
+  1068    0.356464   -0.267348   -0.980276       0.000910
+  1069    0.356464   -0.178232   -0.891160       0.000910
+  1070    0.356464   -0.089116   -0.802044       0.000910
+  1071    0.356464    0.000000   -0.712928       0.000910
+  1072    0.356464    0.089116   -0.623812       0.000910
+  1073    0.356464    0.178232   -0.534696       0.000910
+  1074    0.356464    0.267348   -0.445580       0.000910
+  1075    0.356464    0.356464   -0.356464       0.000910
+  1076    0.356464    0.445580   -0.267348       0.000910
+  1077    0.356464    0.534696   -0.178232       0.000910
+  1078    0.356464    0.623812   -0.089116       0.000910
+  1079    0.356464    0.712928    0.000000       0.000910
+  1080    0.445580   -0.445580   -1.069392       0.000910
+  1081    0.445580   -0.356464   -0.980276       0.000910
+  1082    0.445580   -0.267348   -0.891160       0.000910
+  1083    0.445580   -0.178232   -0.802044       0.000910
+  1084    0.445580   -0.089116   -0.712928       0.000910
+  1085    0.445580    0.000000   -0.623812       0.000910
+  1086    0.445580    0.089116   -0.534696       0.000910
+  1087    0.445580    0.178232   -0.445580       0.000910
+  1088    0.445580    0.267348   -0.356464       0.000910
+  1089    0.445580    0.356464   -0.267348       0.000910
+  1090    0.445580    0.445580   -0.178232       0.000910
+  1091    0.445580    0.534696   -0.089116       0.000910
+  1092    0.445580    0.623812    0.000000       0.000910
+  1093    0.534696   -0.534696   -1.069392       0.000910
+  1094    0.534696   -0.445580   -0.980276       0.000910
+  1095    0.534696   -0.356464   -0.891160       0.000910
+  1096    0.534696   -0.267348   -0.802044       0.000910
+  1097    0.534696   -0.178232   -0.712928       0.000910
+  1098    0.534696   -0.089116   -0.623812       0.000910
+  1099    0.534696    0.000000   -0.534696       0.000910
+  1100    0.534696    0.089116   -0.445580       0.000910
+  1101    0.534696    0.178232   -0.356464       0.000910
+  1102    0.534696    0.267348   -0.267348       0.000910
+  1103    0.534696    0.356464   -0.178232       0.000910
+  1104    0.534696    0.445580   -0.089116       0.000910
+  1105    0.534696    0.534696    0.000000       0.000910
+  1106    0.623812   -0.623812   -1.069392       0.000910
+  1107    0.623812   -0.534696   -0.980276       0.000910
+  1108    0.623812   -0.445580   -0.891160       0.000910
+  1109    0.623812   -0.356464   -0.802044       0.000910
+  1110    0.623812   -0.267348   -0.712928       0.000910
+  1111    0.623812   -0.178232   -0.623812       0.000910
+  1112    0.623812   -0.089116   -0.534696       0.000910
+  1113    0.623812    0.000000   -0.445580       0.000910
+  1114    0.623812    0.089116   -0.356464       0.000910
+  1115    0.623812    0.178232   -0.267348       0.000910
+  1116    0.623812    0.267348   -0.178232       0.000910
+  1117    0.623812    0.356464   -0.089116       0.000910
+  1118    0.623812    0.445580    0.000000       0.000910
+  1119    0.712928   -0.712928   -1.069392       0.000910
+  1120    0.712928   -0.623812   -0.980276       0.000910
+  1121    0.712928   -0.534696   -0.891160       0.000910
+  1122    0.712928   -0.445580   -0.802044       0.000910
+  1123    0.712928   -0.356464   -0.712928       0.000910
+  1124    0.712928   -0.267348   -0.623812       0.000910
+  1125    0.712928   -0.178232   -0.534696       0.000910
+  1126    0.712928   -0.089116   -0.445580       0.000910
+  1127    0.712928    0.000000   -0.356464       0.000910
+  1128    0.712928    0.089116   -0.267348       0.000910
+  1129    0.712928    0.178232   -0.178232       0.000910
+  1130    0.712928    0.267348   -0.089116       0.000910
+  1131    0.712928    0.356464    0.000000       0.000910
+  1132    0.802044   -0.802044   -1.069392       0.000910
+  1133    0.802044   -0.712928   -0.980276       0.000910
+  1134    0.802044   -0.623812   -0.891160       0.000910
+  1135    0.802044   -0.534696   -0.802044       0.000910
+  1136    0.802044   -0.445580   -0.712928       0.000910
+  1137    0.802044   -0.356464   -0.623812       0.000910
+  1138    0.802044   -0.267348   -0.534696       0.000910
+  1139    0.802044   -0.178232   -0.445580       0.000910
+  1140    0.802044   -0.089116   -0.356464       0.000910
+  1141    0.802044    0.000000   -0.267348       0.000910
+  1142    0.802044    0.089116   -0.178232       0.000910
+  1143    0.802044    0.178232   -0.089116       0.000910
+  1144    0.802044    0.267348    0.000000       0.000910
+  1145    0.891160   -0.891160   -1.069392       0.000910
+  1146    0.891160   -0.802044   -0.980276       0.000910
+  1147    0.891160   -0.712928   -0.891160       0.000910
+  1148    0.891160   -0.623812   -0.802044       0.000910
+  1149    0.891160   -0.534696   -0.712928       0.000910
+  1150    0.891160   -0.445580   -0.623812       0.000910
+  1151    0.891160   -0.356464   -0.534696       0.000910
+  1152    0.891160   -0.267348   -0.445580       0.000910
+  1153    0.891160   -0.178232   -0.356464       0.000910
+  1154    0.891160   -0.089116   -0.267348       0.000910
+  1155    0.891160    0.000000   -0.178232       0.000910
+  1156    0.891160    0.089116   -0.089116       0.000910
+  1157    0.891160    0.178232    0.000000       0.000910
+  1158    0.980276   -0.980276   -1.069392       0.000910
+  1159    0.980276   -0.891160   -0.980276       0.000910
+  1160    0.980276   -0.802044   -0.891160       0.000910
+  1161    0.980276   -0.712928   -0.802044       0.000910
+  1162    0.980276   -0.623812   -0.712928       0.000910
+  1163    0.980276   -0.534696   -0.623812       0.000910
+  1164    0.980276   -0.445580   -0.534696       0.000910
+  1165    0.980276   -0.356464   -0.445580       0.000910
+  1166    0.980276   -0.267348   -0.356464       0.000910
+  1167    0.980276   -0.178232   -0.267348       0.000910
+  1168    0.980276   -0.089116   -0.178232       0.000910
+  1169    0.980276    0.000000   -0.089116       0.000910
+  1170    0.980276    0.089116    0.000000       0.000910
+  1171    1.069392   -1.069392   -1.069392       0.000910
+  1172    1.069392   -0.980276   -0.980276       0.000910
+  1173    1.069392   -0.891160   -0.891160       0.000910
+  1174    1.069392   -0.802044   -0.802044       0.000910
+  1175    1.069392   -0.712928   -0.712928       0.000910
+  1176    1.069392   -0.623812   -0.623812       0.000910
+  1177    1.069392   -0.534696   -0.534696       0.000910
+  1178    1.069392   -0.445580   -0.445580       0.000910
+  1179    1.069392   -0.356464   -0.356464       0.000910
+  1180    1.069392   -0.267348   -0.267348       0.000910
+  1181    1.069392   -0.178232   -0.178232       0.000910
+  1182    1.069392   -0.089116   -0.089116       0.000910
+  1183    1.069392    0.000000    0.000000       0.000910
diff --git a/tests/data/parsers/siesta/Fe/OCCS b/tests/data/parsers/siesta/Fe/OCCS
new file mode 100644
index 0000000000000000000000000000000000000000..8b4b5f87b4fc4f1496014b0fa86c85fa2abb44c0
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/OCCS
@@ -0,0 +1,2198 @@
+     1  1  0.00091033       6
+     1  2  0.00091033       2
+     2  1  0.00091033       5
+     2  2  0.00091033       3
+     3  1  0.00091033       5
+     3  2  0.00091033       3
+     4  1  0.00091033       5
+     4  2  0.00091033       3
+     5  1  0.00091033       5
+     5  2  0.00091033       3
+     6  1  0.00091033       5
+     6  2  0.00091033       3
+     7  1  0.00091033       6
+     7  2  0.00091033       2
+     8  1  0.00091033       5
+     8  2  0.00091033       3
+     9  1  0.00091033       5
+     9  2  0.00091033       3
+    10  1  0.00091033       5
+    10  2  0.00091033       3
+    11  1  0.00091033       5
+    11  2  0.00091033       3
+    12  1  0.00091033       5
+    12  2  0.00091033       3
+    13  1  0.00091033       5
+    13  2  0.00091033       3
+    14  1  0.00091033       5
+    14  2  0.00091033       3
+    15  1  0.00091033       6
+    15  2  0.00091033       3
+    16  1  0.00091033       6
+    16  2  0.00091033       3
+    17  1  0.00091033       6
+    17  2  0.00091033       3
+    18  1  0.00091033       6
+    18  2  0.00091033       3
+    19  1  0.00091033       6
+    19  2  0.00091033       3
+    20  1  0.00091033       6
+    20  2  0.00091033       3
+    21  1  0.00091033       5
+    21  2  0.00091033       3
+    22  1  0.00091033       5
+    22  2  0.00091033       3
+    23  1  0.00091033       5
+    23  2  0.00091033       3
+    24  1  0.00091033       5
+    24  2  0.00091033       3
+    25  1  0.00091033       5
+    25  2  0.00091033       3
+    26  1  0.00091033       5
+    26  2  0.00091033       3
+    27  1  0.00091033       5
+    27  2  0.00091033       3
+    28  1  0.00091033       6
+    28  2  0.00091033       3
+    29  1  0.00091033       6
+    29  2  0.00091033       3
+    30  1  0.00091033       6
+    30  2  0.00091033       3
+    31  1  0.00091033       6
+    31  2  0.00091033       3
+    32  1  0.00091033       6
+    32  2  0.00091033       3
+    33  1  0.00091033       6
+    33  2  0.00091033       3
+    34  1  0.00091033       6
+    34  2  0.00091033       3
+    35  1  0.00091033       5
+    35  2  0.00091033       3
+    36  1  0.00091033       5
+    36  2  0.00091033       3
+    37  1  0.00091033       5
+    37  2  0.00091033       3
+    38  1  0.00091033       5
+    38  2  0.00091033       3
+    39  1  0.00091033       5
+    39  2  0.00091033       3
+    40  1  0.00091033       5
+    40  2  0.00091033       3
+    41  1  0.00091033       6
+    41  2  0.00091033       3
+    42  1  0.00091033       6
+    42  2  0.00091033       3
+    43  1  0.00091033       6
+    43  2  0.00091033       3
+    44  1  0.00091033       6
+    44  2  0.00091033       3
+    45  1  0.00091033       6
+    45  2  0.00091033       3
+    46  1  0.00091033       6
+    46  2  0.00091033       3
+    47  1  0.00091033       6
+    47  2  0.00091033       3
+    48  1  0.00091033       6
+    48  2  0.00091033       3
+    49  1  0.00091033       5
+    49  2  0.00091033       3
+    50  1  0.00091033       5
+    50  2  0.00091033       3
+    51  1  0.00091033       5
+    51  2  0.00091033       3
+    52  1  0.00091033       5
+    52  2  0.00091033       3
+    53  1  0.00091033       5
+    53  2  0.00091033       3
+    54  1  0.00091033       6
+    54  2  0.00091033       3
+    55  1  0.00091033       6
+    55  2  0.00091033       3
+    56  1  0.00091033       6
+    56  2  0.00091033       3
+    57  1  0.00091033       6
+    57  2  0.00091033       4
+    58  1  0.00091033       6
+    58  2  0.00091033       4
+    59  1  0.00091033       6
+    59  2  0.00091033       4
+    60  1  0.00091033       6
+    60  2  0.00091033       3
+    61  1  0.00091033       6
+    61  2  0.00091033       3
+    62  1  0.00091033       6
+    62  2  0.00091033       3
+    63  1  0.00091033       5
+    63  2  0.00091033       3
+    64  1  0.00091033       5
+    64  2  0.00091033       3
+    65  1  0.00091033       5
+    65  2  0.00091033       3
+    66  1  0.00091033       5
+    66  2  0.00091033       3
+    67  1  0.00091033       6
+    67  2  0.00091033       3
+    68  1  0.00091033       6
+    68  2  0.00091033       3
+    69  1  0.00091033       6
+    69  2  0.00091033       3
+    70  1  0.00091033       6
+    70  2  0.00091033       4
+    71  1  0.00091033       6
+    71  2  0.00091033       4
+    72  1  0.00091033       6
+    72  2  0.00091033       4
+    73  1  0.00091033       6
+    73  2  0.00091033       4
+    74  1  0.00091033       6
+    74  2  0.00091033       3
+    75  1  0.00091033       6
+    75  2  0.00091033       3
+    76  1  0.00091033       6
+    76  2  0.00091033       3
+    77  1  0.00091033       5
+    77  2  0.00091033       3
+    78  1  0.00091033       5
+    78  2  0.00091033       3
+    79  1  0.00091033       6
+    79  2  0.00091033       2
+    80  1  0.00091033       6
+    80  2  0.00091033       3
+    81  1  0.00091033       6
+    81  2  0.00091033       3
+    82  1  0.00091033       6
+    82  2  0.00091033       3
+    83  1  0.00091033       6
+    83  2  0.00091033       4
+    84  1  0.00091033       6
+    84  2  0.00091033       4
+    85  1  0.00045517       6
+    85  2  0.00045517       4
+    86  1  0.00091033       5
+    86  2  0.00091033       3
+    87  1  0.00091033       5
+    87  2  0.00091033       3
+    88  1  0.00091033       5
+    88  2  0.00091033       3
+    89  1  0.00091033       5
+    89  2  0.00091033       3
+    90  1  0.00091033       5
+    90  2  0.00091033       3
+    91  1  0.00091033       5
+    91  2  0.00091033       3
+    92  1  0.00091033       5
+    92  2  0.00091033       3
+    93  1  0.00091033       5
+    93  2  0.00091033       3
+    94  1  0.00091033       5
+    94  2  0.00091033       3
+    95  1  0.00091033       5
+    95  2  0.00091033       3
+    96  1  0.00091033       5
+    96  2  0.00091033       3
+    97  1  0.00091033       5
+    97  2  0.00091033       3
+    98  1  0.00091033       5
+    98  2  0.00091033       3
+    99  1  0.00091033       5
+    99  2  0.00091033       3
+   100  1  0.00091033       6
+   100  2  0.00091033       3
+   101  1  0.00091033       6
+   101  2  0.00091033       3
+   102  1  0.00091033       6
+   102  2  0.00091033       3
+   103  1  0.00091033       6
+   103  2  0.00091033       3
+   104  1  0.00091033       6
+   104  2  0.00091033       3
+   105  1  0.00091033       6
+   105  2  0.00091033       3
+   106  1  0.00091033       6
+   106  2  0.00091033       3
+   107  1  0.00091033       5
+   107  2  0.00091033       3
+   108  1  0.00091033       5
+   108  2  0.00091033       3
+   109  1  0.00091033       5
+   109  2  0.00091033       3
+   110  1  0.00091033       5
+   110  2  0.00091033       3
+   111  1  0.00091033       5
+   111  2  0.00091033       3
+   112  1  0.00091033       5
+   112  2  0.00091033       3
+   113  1  0.00091033       6
+   113  2  0.00091033       3
+   114  1  0.00091033       6
+   114  2  0.00091033       3
+   115  1  0.00091033       6
+   115  2  0.00091033       3
+   116  1  0.00091033       6
+   116  2  0.00091033       3
+   117  1  0.00091033       6
+   117  2  0.00091033       3
+   118  1  0.00091033       6
+   118  2  0.00091033       3
+   119  1  0.00091033       6
+   119  2  0.00091033       3
+   120  1  0.00091033       6
+   120  2  0.00091033       3
+   121  1  0.00091033       5
+   121  2  0.00091033       3
+   122  1  0.00091033       5
+   122  2  0.00091033       3
+   123  1  0.00091033       5
+   123  2  0.00091033       3
+   124  1  0.00091033       5
+   124  2  0.00091033       3
+   125  1  0.00091033       5
+   125  2  0.00091033       3
+   126  1  0.00091033       6
+   126  2  0.00091033       3
+   127  1  0.00091033       6
+   127  2  0.00091033       3
+   128  1  0.00091033       6
+   128  2  0.00091033       3
+   129  1  0.00091033       6
+   129  2  0.00091033       3
+   130  1  0.00091033       6
+   130  2  0.00091033       3
+   131  1  0.00091033       6
+   131  2  0.00091033       3
+   132  1  0.00091033       6
+   132  2  0.00091033       3
+   133  1  0.00091033       6
+   133  2  0.00091033       3
+   134  1  0.00091033       6
+   134  2  0.00091033       3
+   135  1  0.00091033       5
+   135  2  0.00091033       3
+   136  1  0.00091033       5
+   136  2  0.00091033       3
+   137  1  0.00091033       5
+   137  2  0.00091033       3
+   138  1  0.00091033       5
+   138  2  0.00091033       3
+   139  1  0.00091033       6
+   139  2  0.00091033       3
+   140  1  0.00091033       6
+   140  2  0.00091033       3
+   141  1  0.00091033       6
+   141  2  0.00091033       3
+   142  1  0.00091033       6
+   142  2  0.00091033       4
+   143  1  0.00091033       6
+   143  2  0.00091033       4
+   144  1  0.00091033       6
+   144  2  0.00091033       4
+   145  1  0.00091033       6
+   145  2  0.00091033       4
+   146  1  0.00091033       6
+   146  2  0.00091033       3
+   147  1  0.00091033       6
+   147  2  0.00091033       3
+   148  1  0.00091033       6
+   148  2  0.00091033       3
+   149  1  0.00091033       5
+   149  2  0.00091033       3
+   150  1  0.00091033       5
+   150  2  0.00091033       3
+   151  1  0.00091033       5
+   151  2  0.00091033       3
+   152  1  0.00091033       6
+   152  2  0.00091033       3
+   153  1  0.00091033       6
+   153  2  0.00091033       3
+   154  1  0.00091033       6
+   154  2  0.00091033       3
+   155  1  0.00091033       6
+   155  2  0.00091033       4
+   156  1  0.00091033       6
+   156  2  0.00091033       4
+   157  1  0.00091033       6
+   157  2  0.00091033       4
+   158  1  0.00091033       6
+   158  2  0.00091033       4
+   159  1  0.00091033       6
+   159  2  0.00091033       4
+   160  1  0.00091033       6
+   160  2  0.00091033       3
+   161  1  0.00091033       6
+   161  2  0.00091033       3
+   162  1  0.00091033       6
+   162  2  0.00091033       3
+   163  1  0.00091033       5
+   163  2  0.00091033       3
+   164  1  0.00091033       5
+   164  2  0.00091033       3
+   165  1  0.00091033       5
+   165  2  0.00091033       3
+   166  1  0.00091033       6
+   166  2  0.00091033       3
+   167  1  0.00091033       6
+   167  2  0.00091033       3
+   168  1  0.00091033       6
+   168  2  0.00091033       3
+   169  1  0.00091033       6
+   169  2  0.00091033       4
+   170  1  0.00091033       6
+   170  2  0.00091033       4
+   171  1  0.00091033       6
+   171  2  0.00091033       4
+   172  1  0.00091033       6
+   172  2  0.00091033       4
+   173  1  0.00091033       6
+   173  2  0.00091033       3
+   174  1  0.00091033       6
+   174  2  0.00091033       3
+   175  1  0.00091033       6
+   175  2  0.00091033       3
+   176  1  0.00091033       5
+   176  2  0.00091033       3
+   177  1  0.00091033       5
+   177  2  0.00091033       3
+   178  1  0.00091033       5
+   178  2  0.00091033       3
+   179  1  0.00091033       5
+   179  2  0.00091033       3
+   180  1  0.00091033       6
+   180  2  0.00091033       3
+   181  1  0.00091033       6
+   181  2  0.00091033       3
+   182  1  0.00091033       6
+   182  2  0.00091033       3
+   183  1  0.00091033       6
+   183  2  0.00091033       4
+   184  1  0.00091033       6
+   184  2  0.00091033       4
+   185  1  0.00091033       6
+   185  2  0.00091033       4
+   186  1  0.00091033       6
+   186  2  0.00091033       3
+   187  1  0.00091033       6
+   187  2  0.00091033       3
+   188  1  0.00091033       6
+   188  2  0.00091033       3
+   189  1  0.00091033       5
+   189  2  0.00091033       3
+   190  1  0.00091033       5
+   190  2  0.00091033       3
+   191  1  0.00091033       5
+   191  2  0.00091033       3
+   192  1  0.00091033       5
+   192  2  0.00091033       3
+   193  1  0.00091033       5
+   193  2  0.00091033       3
+   194  1  0.00091033       6
+   194  2  0.00091033       3
+   195  1  0.00091033       6
+   195  2  0.00091033       3
+   196  1  0.00091033       6
+   196  2  0.00091033       3
+   197  1  0.00091033       6
+   197  2  0.00091033       4
+   198  1  0.00091033       6
+   198  2  0.00091033       4
+   199  1  0.00091033       6
+   199  2  0.00091033       3
+   200  1  0.00091033       6
+   200  2  0.00091033       3
+   201  1  0.00091033       6
+   201  2  0.00091033       3
+   202  1  0.00091033       5
+   202  2  0.00091033       3
+   203  1  0.00091033       5
+   203  2  0.00091033       3
+   204  1  0.00091033       5
+   204  2  0.00091033       3
+   205  1  0.00091033       5
+   205  2  0.00091033       3
+   206  1  0.00091033       5
+   206  2  0.00091033       3
+   207  1  0.00091033       5
+   207  2  0.00091033       3
+   208  1  0.00091033       6
+   208  2  0.00091033       3
+   209  1  0.00091033       6
+   209  2  0.00091033       3
+   210  1  0.00091033       6
+   210  2  0.00091033       3
+   211  1  0.00091033       6
+   211  2  0.00091033       3
+   212  1  0.00091033       6
+   212  2  0.00091033       3
+   213  1  0.00091033       6
+   213  2  0.00091033       3
+   214  1  0.00091033       6
+   214  2  0.00091033       3
+   215  1  0.00091033       5
+   215  2  0.00091033       3
+   216  1  0.00091033       5
+   216  2  0.00091033       3
+   217  1  0.00091033       5
+   217  2  0.00091033       3
+   218  1  0.00091033       5
+   218  2  0.00091033       3
+   219  1  0.00091033       5
+   219  2  0.00091033       3
+   220  1  0.00091033       5
+   220  2  0.00091033       3
+   221  1  0.00091033       5
+   221  2  0.00091033       3
+   222  1  0.00091033       6
+   222  2  0.00091033       3
+   223  1  0.00091033       6
+   223  2  0.00091033       3
+   224  1  0.00091033       6
+   224  2  0.00091033       3
+   225  1  0.00091033       6
+   225  2  0.00091033       3
+   226  1  0.00091033       6
+   226  2  0.00091033       3
+   227  1  0.00091033       6
+   227  2  0.00091033       3
+   228  1  0.00091033       5
+   228  2  0.00091033       3
+   229  1  0.00091033       5
+   229  2  0.00091033       3
+   230  1  0.00091033       5
+   230  2  0.00091033       3
+   231  1  0.00091033       5
+   231  2  0.00091033       3
+   232  1  0.00091033       5
+   232  2  0.00091033       3
+   233  1  0.00091033       5
+   233  2  0.00091033       3
+   234  1  0.00091033       5
+   234  2  0.00091033       3
+   235  1  0.00091033       5
+   235  2  0.00091033       3
+   236  1  0.00091033       6
+   236  2  0.00091033       3
+   237  1  0.00091033       6
+   237  2  0.00091033       3
+   238  1  0.00091033       6
+   238  2  0.00091033       3
+   239  1  0.00091033       6
+   239  2  0.00091033       3
+   240  1  0.00091033       6
+   240  2  0.00091033       3
+   241  1  0.00091033       5
+   241  2  0.00091033       3
+   242  1  0.00091033       5
+   242  2  0.00091033       3
+   243  1  0.00091033       5
+   243  2  0.00091033       3
+   244  1  0.00091033       5
+   244  2  0.00091033       3
+   245  1  0.00091033       5
+   245  2  0.00091033       3
+   246  1  0.00091033       5
+   246  2  0.00091033       3
+   247  1  0.00091033       5
+   247  2  0.00091033       3
+   248  1  0.00091033       5
+   248  2  0.00091033       3
+   249  1  0.00091033       5
+   249  2  0.00091033       3
+   250  1  0.00091033       5
+   250  2  0.00091033       3
+   251  1  0.00091033       5
+   251  2  0.00091033       3
+   252  1  0.00091033       5
+   252  2  0.00091033       3
+   253  1  0.00091033       5
+   253  2  0.00091033       3
+   254  1  0.00091033       5
+   254  2  0.00091033       3
+   255  1  0.00091033       5
+   255  2  0.00091033       3
+   256  1  0.00091033       5
+   256  2  0.00091033       3
+   257  1  0.00091033       5
+   257  2  0.00091033       3
+   258  1  0.00091033       5
+   258  2  0.00091033       3
+   259  1  0.00091033       5
+   259  2  0.00091033       3
+   260  1  0.00091033       5
+   260  2  0.00091033       3
+   261  1  0.00091033       5
+   261  2  0.00091033       3
+   262  1  0.00091033       5
+   262  2  0.00091033       3
+   263  1  0.00091033       5
+   263  2  0.00091033       3
+   264  1  0.00091033       5
+   264  2  0.00091033       3
+   265  1  0.00091033       5
+   265  2  0.00091033       3
+   266  1  0.00091033       5
+   266  2  0.00091033       3
+   267  1  0.00091033       5
+   267  2  0.00091033       3
+   268  1  0.00091033       5
+   268  2  0.00091033       3
+   269  1  0.00091033       5
+   269  2  0.00091033       3
+   270  1  0.00091033       6
+   270  2  0.00091033       3
+   271  1  0.00091033       6
+   271  2  0.00091033       3
+   272  1  0.00091033       6
+   272  2  0.00091033       3
+   273  1  0.00091033       6
+   273  2  0.00091033       3
+   274  1  0.00091033       6
+   274  2  0.00091033       3
+   275  1  0.00091033       6
+   275  2  0.00091033       3
+   276  1  0.00091033       5
+   276  2  0.00091033       3
+   277  1  0.00091033       5
+   277  2  0.00091033       3
+   278  1  0.00091033       5
+   278  2  0.00091033       3
+   279  1  0.00091033       5
+   279  2  0.00091033       3
+   280  1  0.00091033       5
+   280  2  0.00091033       3
+   281  1  0.00091033       5
+   281  2  0.00091033       3
+   282  1  0.00091033       5
+   282  2  0.00091033       3
+   283  1  0.00091033       6
+   283  2  0.00091033       3
+   284  1  0.00091033       6
+   284  2  0.00091033       3
+   285  1  0.00091033       6
+   285  2  0.00091033       3
+   286  1  0.00091033       6
+   286  2  0.00091033       3
+   287  1  0.00091033       6
+   287  2  0.00091033       3
+   288  1  0.00091033       6
+   288  2  0.00091033       3
+   289  1  0.00091033       6
+   289  2  0.00091033       3
+   290  1  0.00091033       5
+   290  2  0.00091033       3
+   291  1  0.00091033       5
+   291  2  0.00091033       3
+   292  1  0.00091033       5
+   292  2  0.00091033       3
+   293  1  0.00091033       5
+   293  2  0.00091033       3
+   294  1  0.00091033       5
+   294  2  0.00091033       3
+   295  1  0.00091033       5
+   295  2  0.00091033       3
+   296  1  0.00091033       6
+   296  2  0.00091033       3
+   297  1  0.00091033       6
+   297  2  0.00091033       3
+   298  1  0.00091033       6
+   298  2  0.00091033       3
+   299  1  0.00091033       6
+   299  2  0.00091033       3
+   300  1  0.00091033       6
+   300  2  0.00091033       3
+   301  1  0.00091033       6
+   301  2  0.00091033       3
+   302  1  0.00091033       6
+   302  2  0.00091033       3
+   303  1  0.00091033       6
+   303  2  0.00091033       3
+   304  1  0.00091033       5
+   304  2  0.00091033       3
+   305  1  0.00091033       5
+   305  2  0.00091033       3
+   306  1  0.00091033       5
+   306  2  0.00091033       3
+   307  1  0.00091033       5
+   307  2  0.00091033       3
+   308  1  0.00091033       5
+   308  2  0.00091033       3
+   309  1  0.00091033       6
+   309  2  0.00091033       3
+   310  1  0.00091033       6
+   310  2  0.00091033       3
+   311  1  0.00091033       6
+   311  2  0.00091033       4
+   312  1  0.00091033       6
+   312  2  0.00091033       4
+   313  1  0.00091033       6
+   313  2  0.00091033       4
+   314  1  0.00091033       6
+   314  2  0.00091033       4
+   315  1  0.00091033       6
+   315  2  0.00091033       4
+   316  1  0.00091033       6
+   316  2  0.00091033       3
+   317  1  0.00091033       6
+   317  2  0.00091033       3
+   318  1  0.00091033       5
+   318  2  0.00091033       3
+   319  1  0.00091033       5
+   319  2  0.00091033       3
+   320  1  0.00091033       5
+   320  2  0.00091033       3
+   321  1  0.00091033       5
+   321  2  0.00091033       3
+   322  1  0.00091033       6
+   322  2  0.00091033       3
+   323  1  0.00091033       6
+   323  2  0.00091033       3
+   324  1  0.00091033       6
+   324  2  0.00091033       3
+   325  1  0.00091033       6
+   325  2  0.00091033       4
+   326  1  0.00091033       6
+   326  2  0.00091033       4
+   327  1  0.00091033       6
+   327  2  0.00091033       4
+   328  1  0.00091033       6
+   328  2  0.00091033       4
+   329  1  0.00091033       6
+   329  2  0.00091033       3
+   330  1  0.00091033       6
+   330  2  0.00091033       3
+   331  1  0.00091033       6
+   331  2  0.00091033       3
+   332  1  0.00091033       5
+   332  2  0.00091033       3
+   333  1  0.00091033       5
+   333  2  0.00091033       3
+   334  1  0.00091033       5
+   334  2  0.00091033       3
+   335  1  0.00091033       5
+   335  2  0.00091033       3
+   336  1  0.00091033       6
+   336  2  0.00091033       3
+   337  1  0.00091033       6
+   337  2  0.00091033       3
+   338  1  0.00091033       6
+   338  2  0.00091033       3
+   339  1  0.00091033       6
+   339  2  0.00091033       4
+   340  1  0.00091033       6
+   340  2  0.00091033       4
+   341  1  0.00091033       6
+   341  2  0.00091033       4
+   342  1  0.00091033       6
+   342  2  0.00091033       3
+   343  1  0.00091033       6
+   343  2  0.00091033       3
+   344  1  0.00091033       6
+   344  2  0.00091033       3
+   345  1  0.00091033       5
+   345  2  0.00091033       3
+   346  1  0.00091033       5
+   346  2  0.00091033       3
+   347  1  0.00091033       5
+   347  2  0.00091033       3
+   348  1  0.00091033       5
+   348  2  0.00091033       3
+   349  1  0.00091033       5
+   349  2  0.00091033       3
+   350  1  0.00091033       6
+   350  2  0.00091033       3
+   351  1  0.00091033       6
+   351  2  0.00091033       3
+   352  1  0.00091033       6
+   352  2  0.00091033       3
+   353  1  0.00091033       6
+   353  2  0.00091033       4
+   354  1  0.00091033       6
+   354  2  0.00091033       4
+   355  1  0.00091033       6
+   355  2  0.00091033       3
+   356  1  0.00091033       6
+   356  2  0.00091033       3
+   357  1  0.00091033       6
+   357  2  0.00091033       3
+   358  1  0.00091033       5
+   358  2  0.00091033       3
+   359  1  0.00091033       5
+   359  2  0.00091033       3
+   360  1  0.00091033       5
+   360  2  0.00091033       3
+   361  1  0.00091033       5
+   361  2  0.00091033       3
+   362  1  0.00091033       5
+   362  2  0.00091033       3
+   363  1  0.00091033       5
+   363  2  0.00091033       3
+   364  1  0.00091033       6
+   364  2  0.00091033       3
+   365  1  0.00091033       6
+   365  2  0.00091033       3
+   366  1  0.00091033       6
+   366  2  0.00091033       3
+   367  1  0.00091033       6
+   367  2  0.00091033       4
+   368  1  0.00091033       6
+   368  2  0.00091033       3
+   369  1  0.00091033       6
+   369  2  0.00091033       3
+   370  1  0.00091033       6
+   370  2  0.00091033       3
+   371  1  0.00091033       5
+   371  2  0.00091033       3
+   372  1  0.00091033       5
+   372  2  0.00091033       3
+   373  1  0.00091033       5
+   373  2  0.00091033       3
+   374  1  0.00091033       5
+   374  2  0.00091033       3
+   375  1  0.00091033       5
+   375  2  0.00091033       3
+   376  1  0.00091033       5
+   376  2  0.00091033       3
+   377  1  0.00091033       5
+   377  2  0.00091033       3
+   378  1  0.00091033       6
+   378  2  0.00091033       3
+   379  1  0.00091033       6
+   379  2  0.00091033       3
+   380  1  0.00091033       6
+   380  2  0.00091033       3
+   381  1  0.00091033       6
+   381  2  0.00091033       3
+   382  1  0.00091033       6
+   382  2  0.00091033       3
+   383  1  0.00091033       6
+   383  2  0.00091033       3
+   384  1  0.00091033       5
+   384  2  0.00091033       3
+   385  1  0.00091033       5
+   385  2  0.00091033       3
+   386  1  0.00091033       5
+   386  2  0.00091033       3
+   387  1  0.00091033       5
+   387  2  0.00091033       3
+   388  1  0.00091033       5
+   388  2  0.00091033       3
+   389  1  0.00091033       5
+   389  2  0.00091033       3
+   390  1  0.00091033       5
+   390  2  0.00091033       3
+   391  1  0.00091033       5
+   391  2  0.00091033       3
+   392  1  0.00091033       6
+   392  2  0.00091033       3
+   393  1  0.00091033       6
+   393  2  0.00091033       3
+   394  1  0.00091033       6
+   394  2  0.00091033       3
+   395  1  0.00091033       6
+   395  2  0.00091033       3
+   396  1  0.00091033       6
+   396  2  0.00091033       3
+   397  1  0.00091033       5
+   397  2  0.00091033       3
+   398  1  0.00091033       5
+   398  2  0.00091033       3
+   399  1  0.00091033       5
+   399  2  0.00091033       3
+   400  1  0.00091033       5
+   400  2  0.00091033       3
+   401  1  0.00091033       5
+   401  2  0.00091033       3
+   402  1  0.00091033       5
+   402  2  0.00091033       3
+   403  1  0.00091033       5
+   403  2  0.00091033       3
+   404  1  0.00091033       5
+   404  2  0.00091033       3
+   405  1  0.00091033       5
+   405  2  0.00091033       3
+   406  1  0.00091033       5
+   406  2  0.00091033       3
+   407  1  0.00091033       5
+   407  2  0.00091033       3
+   408  1  0.00091033       5
+   408  2  0.00091033       3
+   409  1  0.00091033       5
+   409  2  0.00091033       3
+   410  1  0.00091033       5
+   410  2  0.00091033       3
+   411  1  0.00091033       5
+   411  2  0.00091033       3
+   412  1  0.00091033       5
+   412  2  0.00091033       3
+   413  1  0.00091033       5
+   413  2  0.00091033       3
+   414  1  0.00091033       5
+   414  2  0.00091033       3
+   415  1  0.00091033       5
+   415  2  0.00091033       3
+   416  1  0.00091033       5
+   416  2  0.00091033       3
+   417  1  0.00091033       5
+   417  2  0.00091033       3
+   418  1  0.00091033       5
+   418  2  0.00091033       3
+   419  1  0.00091033       5
+   419  2  0.00091033       3
+   420  1  0.00091033       5
+   420  2  0.00091033       3
+   421  1  0.00091033       5
+   421  2  0.00091033       3
+   422  1  0.00091033       5
+   422  2  0.00091033       3
+   423  1  0.00091033       5
+   423  2  0.00091033       3
+   424  1  0.00091033       5
+   424  2  0.00091033       3
+   425  1  0.00091033       5
+   425  2  0.00091033       3
+   426  1  0.00091033       5
+   426  2  0.00091033       3
+   427  1  0.00091033       5
+   427  2  0.00091033       3
+   428  1  0.00091033       5
+   428  2  0.00091033       3
+   429  1  0.00091033       5
+   429  2  0.00091033       3
+   430  1  0.00091033       5
+   430  2  0.00091033       3
+   431  1  0.00091033       5
+   431  2  0.00091033       3
+   432  1  0.00091033       5
+   432  2  0.00091033       3
+   433  1  0.00091033       5
+   433  2  0.00091033       3
+   434  1  0.00091033       5
+   434  2  0.00091033       3
+   435  1  0.00091033       5
+   435  2  0.00091033       3
+   436  1  0.00091033       5
+   436  2  0.00091033       3
+   437  1  0.00091033       5
+   437  2  0.00091033       3
+   438  1  0.00091033       5
+   438  2  0.00091033       3
+   439  1  0.00091033       5
+   439  2  0.00091033       3
+   440  1  0.00091033       6
+   440  2  0.00091033       3
+   441  1  0.00091033       6
+   441  2  0.00091033       3
+   442  1  0.00091033       6
+   442  2  0.00091033       3
+   443  1  0.00091033       6
+   443  2  0.00091033       3
+   444  1  0.00091033       6
+   444  2  0.00091033       3
+   445  1  0.00091033       5
+   445  2  0.00091033       3
+   446  1  0.00091033       5
+   446  2  0.00091033       3
+   447  1  0.00091033       5
+   447  2  0.00091033       3
+   448  1  0.00091033       5
+   448  2  0.00091033       3
+   449  1  0.00091033       5
+   449  2  0.00091033       3
+   450  1  0.00091033       5
+   450  2  0.00091033       3
+   451  1  0.00091033       5
+   451  2  0.00091033       3
+   452  1  0.00091033       5
+   452  2  0.00091033       4
+   453  1  0.00091033       6
+   453  2  0.00091033       3
+   454  1  0.00091033       6
+   454  2  0.00091033       3
+   455  1  0.00091033       6
+   455  2  0.00091033       3
+   456  1  0.00091033       6
+   456  2  0.00091033       3
+   457  1  0.00091033       6
+   457  2  0.00091033       3
+   458  1  0.00091033       6
+   458  2  0.00091033       3
+   459  1  0.00091033       5
+   459  2  0.00091033       4
+   460  1  0.00091033       5
+   460  2  0.00091033       3
+   461  1  0.00091033       5
+   461  2  0.00091033       3
+   462  1  0.00091033       5
+   462  2  0.00091033       3
+   463  1  0.00091033       5
+   463  2  0.00091033       3
+   464  1  0.00091033       5
+   464  2  0.00091033       3
+   465  1  0.00091033       5
+   465  2  0.00091033       4
+   466  1  0.00091033       6
+   466  2  0.00091033       4
+   467  1  0.00091033       6
+   467  2  0.00091033       3
+   468  1  0.00091033       6
+   468  2  0.00091033       3
+   469  1  0.00091033       6
+   469  2  0.00091033       3
+   470  1  0.00091033       6
+   470  2  0.00091033       3
+   471  1  0.00091033       6
+   471  2  0.00091033       3
+   472  1  0.00091033       6
+   472  2  0.00091033       4
+   473  1  0.00091033       5
+   473  2  0.00091033       4
+   474  1  0.00091033       5
+   474  2  0.00091033       3
+   475  1  0.00091033       5
+   475  2  0.00091033       3
+   476  1  0.00091033       5
+   476  2  0.00091033       3
+   477  1  0.00091033       5
+   477  2  0.00091033       3
+   478  1  0.00091033       5
+   478  2  0.00091033       3
+   479  1  0.00091033       6
+   479  2  0.00091033       3
+   480  1  0.00091033       6
+   480  2  0.00091033       3
+   481  1  0.00091033       6
+   481  2  0.00091033       3
+   482  1  0.00091033       6
+   482  2  0.00091033       3
+   483  1  0.00091033       6
+   483  2  0.00091033       3
+   484  1  0.00091033       6
+   484  2  0.00091033       3
+   485  1  0.00091033       6
+   485  2  0.00091033       3
+   486  1  0.00091033       6
+   486  2  0.00091033       3
+   487  1  0.00091033       5
+   487  2  0.00091033       3
+   488  1  0.00091033       5
+   488  2  0.00091033       3
+   489  1  0.00091033       5
+   489  2  0.00091033       3
+   490  1  0.00091033       5
+   490  2  0.00091033       3
+   491  1  0.00091033       5
+   491  2  0.00091033       3
+   492  1  0.00091033       6
+   492  2  0.00091033       3
+   493  1  0.00091033       6
+   493  2  0.00091033       3
+   494  1  0.00091033       6
+   494  2  0.00091033       3
+   495  1  0.00091033       6
+   495  2  0.00091033       3
+   496  1  0.00091033       6
+   496  2  0.00091033       3
+   497  1  0.00091033       6
+   497  2  0.00091033       3
+   498  1  0.00091033       6
+   498  2  0.00091033       3
+   499  1  0.00091033       6
+   499  2  0.00091033       3
+   500  1  0.00091033       6
+   500  2  0.00091033       3
+   501  1  0.00091033       5
+   501  2  0.00091033       3
+   502  1  0.00091033       5
+   502  2  0.00091033       3
+   503  1  0.00091033       5
+   503  2  0.00091033       3
+   504  1  0.00091033       5
+   504  2  0.00091033       3
+   505  1  0.00091033       5
+   505  2  0.00091033       3
+   506  1  0.00091033       6
+   506  2  0.00091033       3
+   507  1  0.00091033       6
+   507  2  0.00091033       3
+   508  1  0.00091033       6
+   508  2  0.00091033       3
+   509  1  0.00091033       6
+   509  2  0.00091033       3
+   510  1  0.00091033       6
+   510  2  0.00091033       3
+   511  1  0.00091033       6
+   511  2  0.00091033       3
+   512  1  0.00091033       6
+   512  2  0.00091033       3
+   513  1  0.00091033       6
+   513  2  0.00091033       3
+   514  1  0.00091033       5
+   514  2  0.00091033       3
+   515  1  0.00091033       5
+   515  2  0.00091033       3
+   516  1  0.00091033       5
+   516  2  0.00091033       3
+   517  1  0.00091033       5
+   517  2  0.00091033       3
+   518  1  0.00091033       5
+   518  2  0.00091033       3
+   519  1  0.00091033       5
+   519  2  0.00091033       3
+   520  1  0.00091033       6
+   520  2  0.00091033       3
+   521  1  0.00091033       6
+   521  2  0.00091033       3
+   522  1  0.00091033       6
+   522  2  0.00091033       3
+   523  1  0.00091033       6
+   523  2  0.00091033       3
+   524  1  0.00091033       6
+   524  2  0.00091033       3
+   525  1  0.00091033       6
+   525  2  0.00091033       3
+   526  1  0.00091033       6
+   526  2  0.00091033       3
+   527  1  0.00091033       5
+   527  2  0.00091033       3
+   528  1  0.00091033       5
+   528  2  0.00091033       3
+   529  1  0.00091033       5
+   529  2  0.00091033       3
+   530  1  0.00091033       5
+   530  2  0.00091033       3
+   531  1  0.00091033       5
+   531  2  0.00091033       3
+   532  1  0.00091033       5
+   532  2  0.00091033       3
+   533  1  0.00091033       5
+   533  2  0.00091033       3
+   534  1  0.00091033       6
+   534  2  0.00091033       3
+   535  1  0.00091033       6
+   535  2  0.00091033       3
+   536  1  0.00091033       6
+   536  2  0.00091033       3
+   537  1  0.00091033       6
+   537  2  0.00091033       3
+   538  1  0.00091033       6
+   538  2  0.00091033       3
+   539  1  0.00091033       6
+   539  2  0.00091033       3
+   540  1  0.00091033       5
+   540  2  0.00091033       3
+   541  1  0.00091033       5
+   541  2  0.00091033       3
+   542  1  0.00091033       5
+   542  2  0.00091033       3
+   543  1  0.00091033       5
+   543  2  0.00091033       3
+   544  1  0.00091033       5
+   544  2  0.00091033       3
+   545  1  0.00091033       5
+   545  2  0.00091033       3
+   546  1  0.00091033       5
+   546  2  0.00091033       3
+   547  1  0.00091033       5
+   547  2  0.00091033       3
+   548  1  0.00091033       6
+   548  2  0.00091033       3
+   549  1  0.00091033       6
+   549  2  0.00091033       3
+   550  1  0.00091033       6
+   550  2  0.00091033       4
+   551  1  0.00091033       6
+   551  2  0.00091033       3
+   552  1  0.00091033       6
+   552  2  0.00091033       3
+   553  1  0.00091033       5
+   553  2  0.00091033       3
+   554  1  0.00091033       5
+   554  2  0.00091033       3
+   555  1  0.00091033       5
+   555  2  0.00091033       3
+   556  1  0.00091033       5
+   556  2  0.00091033       3
+   557  1  0.00091033       5
+   557  2  0.00091033       3
+   558  1  0.00091033       5
+   558  2  0.00091033       3
+   559  1  0.00091033       5
+   559  2  0.00091033       3
+   560  1  0.00091033       5
+   560  2  0.00091033       3
+   561  1  0.00091033       5
+   561  2  0.00091033       3
+   562  1  0.00091033       5
+   562  2  0.00091033       3
+   563  1  0.00091033       5
+   563  2  0.00091033       4
+   564  1  0.00091033       5
+   564  2  0.00091033       4
+   565  1  0.00091033       5
+   565  2  0.00091033       3
+   566  1  0.00091033       5
+   566  2  0.00091033       3
+   567  1  0.00091033       5
+   567  2  0.00091033       3
+   568  1  0.00091033       5
+   568  2  0.00091033       3
+   569  1  0.00091033       5
+   569  2  0.00091033       3
+   570  1  0.00091033       5
+   570  2  0.00091033       3
+   571  1  0.00091033       5
+   571  2  0.00091033       3
+   572  1  0.00091033       5
+   572  2  0.00091033       3
+   573  1  0.00091033       5
+   573  2  0.00091033       3
+   574  1  0.00091033       5
+   574  2  0.00091033       3
+   575  1  0.00091033       5
+   575  2  0.00091033       3
+   576  1  0.00091033       5
+   576  2  0.00091033       3
+   577  1  0.00091033       5
+   577  2  0.00091033       3
+   578  1  0.00091033       5
+   578  2  0.00091033       3
+   579  1  0.00091033       5
+   579  2  0.00091033       3
+   580  1  0.00091033       5
+   580  2  0.00091033       3
+   581  1  0.00091033       5
+   581  2  0.00091033       3
+   582  1  0.00091033       5
+   582  2  0.00091033       3
+   583  1  0.00091033       5
+   583  2  0.00091033       3
+   584  1  0.00091033       5
+   584  2  0.00091033       3
+   585  1  0.00091033       5
+   585  2  0.00091033       3
+   586  1  0.00091033       5
+   586  2  0.00091033       3
+   587  1  0.00091033       5
+   587  2  0.00091033       3
+   588  1  0.00091033       5
+   588  2  0.00091033       3
+   589  1  0.00091033       5
+   589  2  0.00091033       3
+   590  1  0.00091033       5
+   590  2  0.00091033       3
+   591  1  0.00091033       5
+   591  2  0.00091033       3
+   592  1  0.00091033       5
+   592  2  0.00091033       3
+   593  1  0.00091033       5
+   593  2  0.00091033       2
+   594  1  0.00091033       5
+   594  2  0.00091033       3
+   595  1  0.00091033       5
+   595  2  0.00091033       3
+   596  1  0.00091033       5
+   596  2  0.00091033       3
+   597  1  0.00091033       5
+   597  2  0.00091033       3
+   598  1  0.00091033       5
+   598  2  0.00091033       3
+   599  1  0.00091033       5
+   599  2  0.00091033       3
+   600  1  0.00091033       5
+   600  2  0.00091033       3
+   601  1  0.00091033       5
+   601  2  0.00091033       3
+   602  1  0.00091033       5
+   602  2  0.00091033       3
+   603  1  0.00091033       5
+   603  2  0.00091033       2
+   604  1  0.00091033       5
+   604  2  0.00091033       2
+   605  1  0.00091033       5
+   605  2  0.00091033       2
+   606  1  0.00091033       5
+   606  2  0.00091033       2
+   607  1  0.00091033       5
+   607  2  0.00091033       2
+   608  1  0.00091033       5
+   608  2  0.00091033       3
+   609  1  0.00091033       5
+   609  2  0.00091033       3
+   610  1  0.00091033       6
+   610  2  0.00091033       3
+   611  1  0.00091033       6
+   611  2  0.00091033       3
+   612  1  0.00091033       6
+   612  2  0.00091033       3
+   613  1  0.00091033       6
+   613  2  0.00091033       3
+   614  1  0.00091033       5
+   614  2  0.00091033       3
+   615  1  0.00091033       5
+   615  2  0.00091033       3
+   616  1  0.00091033       5
+   616  2  0.00091033       2
+   617  1  0.00091033       5
+   617  2  0.00091033       2
+   618  1  0.00091033       5
+   618  2  0.00091033       2
+   619  1  0.00091033       5
+   619  2  0.00091033       2
+   620  1  0.00091033       5
+   620  2  0.00091033       2
+   621  1  0.00091033       5
+   621  2  0.00091033       2
+   622  1  0.00091033       5
+   622  2  0.00091033       4
+   623  1  0.00091033       6
+   623  2  0.00091033       3
+   624  1  0.00091033       6
+   624  2  0.00091033       3
+   625  1  0.00091033       6
+   625  2  0.00091033       3
+   626  1  0.00091033       6
+   626  2  0.00091033       3
+   627  1  0.00091033       6
+   627  2  0.00091033       3
+   628  1  0.00091033       5
+   628  2  0.00091033       4
+   629  1  0.00091033       5
+   629  2  0.00091033       2
+   630  1  0.00091033       5
+   630  2  0.00091033       2
+   631  1  0.00091033       5
+   631  2  0.00091033       2
+   632  1  0.00091033       5
+   632  2  0.00091033       3
+   633  1  0.00091033       5
+   633  2  0.00091033       3
+   634  1  0.00091033       5
+   634  2  0.00091033       3
+   635  1  0.00091033       5
+   635  2  0.00091033       4
+   636  1  0.00091033       6
+   636  2  0.00091033       3
+   637  1  0.00091033       6
+   637  2  0.00091033       3
+   638  1  0.00091033       6
+   638  2  0.00091033       3
+   639  1  0.00091033       6
+   639  2  0.00091033       3
+   640  1  0.00091033       6
+   640  2  0.00091033       3
+   641  1  0.00091033       6
+   641  2  0.00091033       3
+   642  1  0.00091033       5
+   642  2  0.00091033       4
+   643  1  0.00091033       5
+   643  2  0.00091033       3
+   644  1  0.00091033       5
+   644  2  0.00091033       3
+   645  1  0.00091033       5
+   645  2  0.00091033       3
+   646  1  0.00091033       5
+   646  2  0.00091033       3
+   647  1  0.00091033       5
+   647  2  0.00091033       3
+   648  1  0.00091033       5
+   648  2  0.00091033       3
+   649  1  0.00091033       6
+   649  2  0.00091033       3
+   650  1  0.00091033       6
+   650  2  0.00091033       3
+   651  1  0.00091033       6
+   651  2  0.00091033       3
+   652  1  0.00091033       6
+   652  2  0.00091033       3
+   653  1  0.00091033       6
+   653  2  0.00091033       3
+   654  1  0.00091033       6
+   654  2  0.00091033       3
+   655  1  0.00091033       6
+   655  2  0.00091033       3
+   656  1  0.00091033       5
+   656  2  0.00091033       3
+   657  1  0.00091033       5
+   657  2  0.00091033       3
+   658  1  0.00091033       5
+   658  2  0.00091033       3
+   659  1  0.00091033       5
+   659  2  0.00091033       3
+   660  1  0.00091033       5
+   660  2  0.00091033       3
+   661  1  0.00091033       5
+   661  2  0.00091033       3
+   662  1  0.00091033       6
+   662  2  0.00091033       3
+   663  1  0.00091033       6
+   663  2  0.00091033       3
+   664  1  0.00091033       6
+   664  2  0.00091033       3
+   665  1  0.00091033       6
+   665  2  0.00091033       3
+   666  1  0.00091033       6
+   666  2  0.00091033       3
+   667  1  0.00091033       6
+   667  2  0.00091033       3
+   668  1  0.00091033       6
+   668  2  0.00091033       3
+   669  1  0.00091033       6
+   669  2  0.00091033       3
+   670  1  0.00091033       5
+   670  2  0.00091033       3
+   671  1  0.00091033       5
+   671  2  0.00091033       3
+   672  1  0.00091033       5
+   672  2  0.00091033       3
+   673  1  0.00091033       5
+   673  2  0.00091033       3
+   674  1  0.00091033       5
+   674  2  0.00091033       3
+   675  1  0.00091033       5
+   675  2  0.00091033       3
+   676  1  0.00091033       6
+   676  2  0.00091033       3
+   677  1  0.00091033       6
+   677  2  0.00091033       3
+   678  1  0.00091033       6
+   678  2  0.00091033       3
+   679  1  0.00091033       6
+   679  2  0.00091033       3
+   680  1  0.00091033       6
+   680  2  0.00091033       3
+   681  1  0.00091033       6
+   681  2  0.00091033       3
+   682  1  0.00091033       6
+   682  2  0.00091033       3
+   683  1  0.00091033       5
+   683  2  0.00091033       3
+   684  1  0.00091033       5
+   684  2  0.00091033       3
+   685  1  0.00091033       5
+   685  2  0.00091033       3
+   686  1  0.00091033       5
+   686  2  0.00091033       3
+   687  1  0.00091033       5
+   687  2  0.00091033       3
+   688  1  0.00091033       5
+   688  2  0.00091033       3
+   689  1  0.00091033       5
+   689  2  0.00091033       3
+   690  1  0.00091033       6
+   690  2  0.00091033       3
+   691  1  0.00091033       6
+   691  2  0.00091033       3
+   692  1  0.00091033       6
+   692  2  0.00091033       3
+   693  1  0.00091033       6
+   693  2  0.00091033       3
+   694  1  0.00091033       6
+   694  2  0.00091033       3
+   695  1  0.00091033       6
+   695  2  0.00091033       3
+   696  1  0.00091033       5
+   696  2  0.00091033       3
+   697  1  0.00091033       5
+   697  2  0.00091033       3
+   698  1  0.00091033       5
+   698  2  0.00091033       3
+   699  1  0.00091033       5
+   699  2  0.00091033       3
+   700  1  0.00091033       5
+   700  2  0.00091033       3
+   701  1  0.00091033       5
+   701  2  0.00091033       3
+   702  1  0.00091033       5
+   702  2  0.00091033       3
+   703  1  0.00091033       5
+   703  2  0.00091033       3
+   704  1  0.00091033       6
+   704  2  0.00091033       3
+   705  1  0.00091033       6
+   705  2  0.00091033       3
+   706  1  0.00091033       6
+   706  2  0.00091033       3
+   707  1  0.00091033       6
+   707  2  0.00091033       3
+   708  1  0.00091033       6
+   708  2  0.00091033       3
+   709  1  0.00091033       5
+   709  2  0.00091033       3
+   710  1  0.00091033       5
+   710  2  0.00091033       3
+   711  1  0.00091033       5
+   711  2  0.00091033       3
+   712  1  0.00091033       5
+   712  2  0.00091033       3
+   713  1  0.00091033       5
+   713  2  0.00091033       3
+   714  1  0.00091033       5
+   714  2  0.00091033       3
+   715  1  0.00091033       5
+   715  2  0.00091033       3
+   716  1  0.00091033       5
+   716  2  0.00091033       3
+   717  1  0.00091033       5
+   717  2  0.00091033       3
+   718  1  0.00091033       5
+   718  2  0.00091033       3
+   719  1  0.00091033       5
+   719  2  0.00091033       4
+   720  1  0.00091033       5
+   720  2  0.00091033       4
+   721  1  0.00091033       5
+   721  2  0.00091033       3
+   722  1  0.00091033       5
+   722  2  0.00091033       3
+   723  1  0.00091033       5
+   723  2  0.00091033       3
+   724  1  0.00091033       5
+   724  2  0.00091033       3
+   725  1  0.00091033       5
+   725  2  0.00091033       3
+   726  1  0.00091033       5
+   726  2  0.00091033       3
+   727  1  0.00091033       5
+   727  2  0.00091033       3
+   728  1  0.00091033       5
+   728  2  0.00091033       3
+   729  1  0.00091033       5
+   729  2  0.00091033       3
+   730  1  0.00091033       5
+   730  2  0.00091033       3
+   731  1  0.00091033       5
+   731  2  0.00091033       3
+   732  1  0.00091033       5
+   732  2  0.00091033       3
+   733  1  0.00091033       5
+   733  2  0.00091033       2
+   734  1  0.00091033       5
+   734  2  0.00091033       3
+   735  1  0.00091033       5
+   735  2  0.00091033       3
+   736  1  0.00091033       5
+   736  2  0.00091033       3
+   737  1  0.00091033       5
+   737  2  0.00091033       3
+   738  1  0.00091033       5
+   738  2  0.00091033       3
+   739  1  0.00091033       5
+   739  2  0.00091033       3
+   740  1  0.00091033       5
+   740  2  0.00091033       3
+   741  1  0.00091033       5
+   741  2  0.00091033       3
+   742  1  0.00091033       5
+   742  2  0.00091033       3
+   743  1  0.00091033       5
+   743  2  0.00091033       3
+   744  1  0.00091033       5
+   744  2  0.00091033       3
+   745  1  0.00091033       5
+   745  2  0.00091033       3
+   746  1  0.00091033       5
+   746  2  0.00091033       2
+   747  1  0.00091033       5
+   747  2  0.00091033       2
+   748  1  0.00091033       5
+   748  2  0.00091033       3
+   749  1  0.00091033       5
+   749  2  0.00091033       3
+   750  1  0.00091033       5
+   750  2  0.00091033       3
+   751  1  0.00091033       5
+   751  2  0.00091033       3
+   752  1  0.00091033       5
+   752  2  0.00091033       3
+   753  1  0.00091033       5
+   753  2  0.00091033       3
+   754  1  0.00091033       5
+   754  2  0.00091033       3
+   755  1  0.00091033       5
+   755  2  0.00091033       3
+   756  1  0.00091033       5
+   756  2  0.00091033       3
+   757  1  0.00091033       5
+   757  2  0.00091033       3
+   758  1  0.00091033       5
+   758  2  0.00091033       3
+   759  1  0.00091033       5
+   759  2  0.00091033       2
+   760  1  0.00091033       5
+   760  2  0.00091033       2
+   761  1  0.00091033       5
+   761  2  0.00091033       2
+   762  1  0.00091033       5
+   762  2  0.00091033       2
+   763  1  0.00091033       5
+   763  2  0.00091033       2
+   764  1  0.00091033       5
+   764  2  0.00091033       3
+   765  1  0.00091033       5
+   765  2  0.00091033       3
+   766  1  0.00091033       5
+   766  2  0.00091033       3
+   767  1  0.00091033       5
+   767  2  0.00091033       3
+   768  1  0.00091033       5
+   768  2  0.00091033       3
+   769  1  0.00091033       5
+   769  2  0.00091033       3
+   770  1  0.00091033       5
+   770  2  0.00091033       3
+   771  1  0.00091033       5
+   771  2  0.00091033       3
+   772  1  0.00091033       5
+   772  2  0.00091033       2
+   773  1  0.00091033       5
+   773  2  0.00091033       2
+   774  1  0.00091033       5
+   774  2  0.00091033       2
+   775  1  0.00091033       5
+   775  2  0.00091033       2
+   776  1  0.00091033       5
+   776  2  0.00091033       2
+   777  1  0.00091033       5
+   777  2  0.00091033       2
+   778  1  0.00091033       5
+   778  2  0.00091033       3
+   779  1  0.00091033       5
+   779  2  0.00091033       3
+   780  1  0.00091033       6
+   780  2  0.00091033       3
+   781  1  0.00091033       6
+   781  2  0.00091033       3
+   782  1  0.00091033       6
+   782  2  0.00091033       3
+   783  1  0.00091033       5
+   783  2  0.00091033       3
+   784  1  0.00091033       5
+   784  2  0.00091033       3
+   785  1  0.00091033       5
+   785  2  0.00091033       2
+   786  1  0.00091033       5
+   786  2  0.00091033       2
+   787  1  0.00091033       5
+   787  2  0.00091033       2
+   788  1  0.00091033       5
+   788  2  0.00091033       2
+   789  1  0.00091033       5
+   789  2  0.00091033       2
+   790  1  0.00091033       5
+   790  2  0.00091033       2
+   791  1  0.00091033       5
+   791  2  0.00091033       3
+   792  1  0.00091033       5
+   792  2  0.00091033       3
+   793  1  0.00091033       6
+   793  2  0.00091033       3
+   794  1  0.00091033       6
+   794  2  0.00091033       3
+   795  1  0.00091033       6
+   795  2  0.00091033       3
+   796  1  0.00091033       6
+   796  2  0.00091033       3
+   797  1  0.00091033       5
+   797  2  0.00091033       3
+   798  1  0.00091033       5
+   798  2  0.00091033       3
+   799  1  0.00091033       5
+   799  2  0.00091033       2
+   800  1  0.00091033       5
+   800  2  0.00091033       2
+   801  1  0.00091033       5
+   801  2  0.00091033       3
+   802  1  0.00091033       5
+   802  2  0.00091033       3
+   803  1  0.00091033       5
+   803  2  0.00091033       3
+   804  1  0.00091033       5
+   804  2  0.00091033       3
+   805  1  0.00091033       5
+   805  2  0.00091033       3
+   806  1  0.00091033       6
+   806  2  0.00091033       3
+   807  1  0.00091033       6
+   807  2  0.00091033       3
+   808  1  0.00091033       6
+   808  2  0.00091033       3
+   809  1  0.00091033       6
+   809  2  0.00091033       3
+   810  1  0.00091033       6
+   810  2  0.00091033       3
+   811  1  0.00091033       5
+   811  2  0.00091033       3
+   812  1  0.00091033       5
+   812  2  0.00091033       3
+   813  1  0.00091033       5
+   813  2  0.00091033       3
+   814  1  0.00091033       5
+   814  2  0.00091033       3
+   815  1  0.00091033       5
+   815  2  0.00091033       3
+   816  1  0.00091033       5
+   816  2  0.00091033       3
+   817  1  0.00091033       5
+   817  2  0.00091033       3
+   818  1  0.00091033       5
+   818  2  0.00091033       3
+   819  1  0.00091033       6
+   819  2  0.00091033       3
+   820  1  0.00091033       6
+   820  2  0.00091033       3
+   821  1  0.00091033       6
+   821  2  0.00091033       3
+   822  1  0.00091033       6
+   822  2  0.00091033       3
+   823  1  0.00091033       6
+   823  2  0.00091033       3
+   824  1  0.00091033       6
+   824  2  0.00091033       3
+   825  1  0.00091033       5
+   825  2  0.00091033       3
+   826  1  0.00091033       5
+   826  2  0.00091033       3
+   827  1  0.00091033       5
+   827  2  0.00091033       3
+   828  1  0.00091033       5
+   828  2  0.00091033       3
+   829  1  0.00091033       5
+   829  2  0.00091033       3
+   830  1  0.00091033       5
+   830  2  0.00091033       3
+   831  1  0.00091033       5
+   831  2  0.00091033       3
+   832  1  0.00091033       6
+   832  2  0.00091033       3
+   833  1  0.00091033       6
+   833  2  0.00091033       3
+   834  1  0.00091033       6
+   834  2  0.00091033       3
+   835  1  0.00091033       6
+   835  2  0.00091033       3
+   836  1  0.00091033       6
+   836  2  0.00091033       3
+   837  1  0.00091033       6
+   837  2  0.00091033       3
+   838  1  0.00091033       6
+   838  2  0.00091033       3
+   839  1  0.00091033       5
+   839  2  0.00091033       3
+   840  1  0.00091033       5
+   840  2  0.00091033       3
+   841  1  0.00091033       5
+   841  2  0.00091033       3
+   842  1  0.00091033       5
+   842  2  0.00091033       3
+   843  1  0.00091033       5
+   843  2  0.00091033       3
+   844  1  0.00091033       5
+   844  2  0.00091033       3
+   845  1  0.00091033       5
+   845  2  0.00091033       3
+   846  1  0.00091033       6
+   846  2  0.00091033       3
+   847  1  0.00091033       6
+   847  2  0.00091033       3
+   848  1  0.00091033       6
+   848  2  0.00091033       3
+   849  1  0.00091033       6
+   849  2  0.00091033       3
+   850  1  0.00091033       6
+   850  2  0.00091033       3
+   851  1  0.00091033       6
+   851  2  0.00091033       3
+   852  1  0.00091033       5
+   852  2  0.00091033       3
+   853  1  0.00091033       5
+   853  2  0.00091033       3
+   854  1  0.00091033       5
+   854  2  0.00091033       3
+   855  1  0.00091033       5
+   855  2  0.00091033       3
+   856  1  0.00091033       5
+   856  2  0.00091033       3
+   857  1  0.00091033       5
+   857  2  0.00091033       3
+   858  1  0.00091033       5
+   858  2  0.00091033       3
+   859  1  0.00091033       5
+   859  2  0.00091033       3
+   860  1  0.00091033       6
+   860  2  0.00091033       3
+   861  1  0.00091033       6
+   861  2  0.00091033       3
+   862  1  0.00091033       6
+   862  2  0.00091033       3
+   863  1  0.00091033       6
+   863  2  0.00091033       3
+   864  1  0.00091033       6
+   864  2  0.00091033       3
+   865  1  0.00091033       5
+   865  2  0.00091033       3
+   866  1  0.00091033       5
+   866  2  0.00091033       3
+   867  1  0.00091033       5
+   867  2  0.00091033       3
+   868  1  0.00091033       5
+   868  2  0.00091033       3
+   869  1  0.00091033       5
+   869  2  0.00091033       3
+   870  1  0.00091033       5
+   870  2  0.00091033       3
+   871  1  0.00091033       5
+   871  2  0.00091033       3
+   872  1  0.00091033       5
+   872  2  0.00091033       3
+   873  1  0.00091033       5
+   873  2  0.00091033       3
+   874  1  0.00091033       5
+   874  2  0.00091033       3
+   875  1  0.00091033       5
+   875  2  0.00091033       3
+   876  1  0.00091033       5
+   876  2  0.00091033       3
+   877  1  0.00091033       5
+   877  2  0.00091033       3
+   878  1  0.00091033       5
+   878  2  0.00091033       3
+   879  1  0.00091033       5
+   879  2  0.00091033       3
+   880  1  0.00091033       5
+   880  2  0.00091033       3
+   881  1  0.00091033       5
+   881  2  0.00091033       3
+   882  1  0.00091033       5
+   882  2  0.00091033       3
+   883  1  0.00091033       5
+   883  2  0.00091033       3
+   884  1  0.00091033       5
+   884  2  0.00091033       3
+   885  1  0.00091033       5
+   885  2  0.00091033       3
+   886  1  0.00091033       5
+   886  2  0.00091033       3
+   887  1  0.00091033       5
+   887  2  0.00091033       3
+   888  1  0.00091033       5
+   888  2  0.00091033       3
+   889  1  0.00091033       5
+   889  2  0.00091033       3
+   890  1  0.00091033       5
+   890  2  0.00091033       3
+   891  1  0.00091033       5
+   891  2  0.00091033       3
+   892  1  0.00091033       5
+   892  2  0.00091033       3
+   893  1  0.00091033       5
+   893  2  0.00091033       3
+   894  1  0.00091033       5
+   894  2  0.00091033       3
+   895  1  0.00091033       5
+   895  2  0.00091033       3
+   896  1  0.00091033       5
+   896  2  0.00091033       3
+   897  1  0.00091033       5
+   897  2  0.00091033       3
+   898  1  0.00091033       5
+   898  2  0.00091033       3
+   899  1  0.00091033       5
+   899  2  0.00091033       3
+   900  1  0.00091033       5
+   900  2  0.00091033       3
+   901  1  0.00091033       5
+   901  2  0.00091033       3
+   902  1  0.00091033       5
+   902  2  0.00091033       2
+   903  1  0.00091033       5
+   903  2  0.00091033       2
+   904  1  0.00091033       5
+   904  2  0.00091033       3
+   905  1  0.00091033       5
+   905  2  0.00091033       3
+   906  1  0.00091033       5
+   906  2  0.00091033       3
+   907  1  0.00091033       5
+   907  2  0.00091033       3
+   908  1  0.00091033       5
+   908  2  0.00091033       3
+   909  1  0.00091033       5
+   909  2  0.00091033       3
+   910  1  0.00091033       5
+   910  2  0.00091033       3
+   911  1  0.00091033       5
+   911  2  0.00091033       3
+   912  1  0.00091033       5
+   912  2  0.00091033       3
+   913  1  0.00091033       5
+   913  2  0.00091033       3
+   914  1  0.00091033       5
+   914  2  0.00091033       3
+   915  1  0.00091033       5
+   915  2  0.00091033       2
+   916  1  0.00091033       5
+   916  2  0.00091033       2
+   917  1  0.00091033       5
+   917  2  0.00091033       2
+   918  1  0.00091033       5
+   918  2  0.00091033       2
+   919  1  0.00091033       5
+   919  2  0.00091033       3
+   920  1  0.00091033       5
+   920  2  0.00091033       3
+   921  1  0.00091033       5
+   921  2  0.00091033       3
+   922  1  0.00091033       5
+   922  2  0.00091033       3
+   923  1  0.00091033       5
+   923  2  0.00091033       3
+   924  1  0.00091033       5
+   924  2  0.00091033       3
+   925  1  0.00091033       5
+   925  2  0.00091033       3
+   926  1  0.00091033       5
+   926  2  0.00091033       3
+   927  1  0.00091033       5
+   927  2  0.00091033       3
+   928  1  0.00091033       5
+   928  2  0.00091033       2
+   929  1  0.00091033       5
+   929  2  0.00091033       2
+   930  1  0.00091033       5
+   930  2  0.00091033       2
+   931  1  0.00091033       5
+   931  2  0.00091033       2
+   932  1  0.00091033       5
+   932  2  0.00091033       2
+   933  1  0.00091033       5
+   933  2  0.00091033       2
+   934  1  0.00091033       5
+   934  2  0.00091033       3
+   935  1  0.00091033       5
+   935  2  0.00091033       3
+   936  1  0.00091033       5
+   936  2  0.00091033       3
+   937  1  0.00091033       6
+   937  2  0.00091033       2
+   938  1  0.00091033       5
+   938  2  0.00091033       3
+   939  1  0.00091033       5
+   939  2  0.00091033       3
+   940  1  0.00091033       5
+   940  2  0.00091033       3
+   941  1  0.00091033       5
+   941  2  0.00091033       2
+   942  1  0.00091033       5
+   942  2  0.00091033       2
+   943  1  0.00091033       5
+   943  2  0.00091033       2
+   944  1  0.00091033       5
+   944  2  0.00091033       2
+   945  1  0.00091033       5
+   945  2  0.00091033       2
+   946  1  0.00091033       5
+   946  2  0.00091033       2
+   947  1  0.00091033       5
+   947  2  0.00091033       3
+   948  1  0.00091033       5
+   948  2  0.00091033       3
+   949  1  0.00091033       5
+   949  2  0.00091033       3
+   950  1  0.00091033       5
+   950  2  0.00091033       3
+   951  1  0.00091033       5
+   951  2  0.00091033       3
+   952  1  0.00091033       5
+   952  2  0.00091033       3
+   953  1  0.00091033       5
+   953  2  0.00091033       3
+   954  1  0.00091033       5
+   954  2  0.00091033       3
+   955  1  0.00091033       5
+   955  2  0.00091033       2
+   956  1  0.00091033       5
+   956  2  0.00091033       2
+   957  1  0.00091033       5
+   957  2  0.00091033       2
+   958  1  0.00091033       5
+   958  2  0.00091033       2
+   959  1  0.00091033       5
+   959  2  0.00091033       2
+   960  1  0.00091033       5
+   960  2  0.00091033       3
+   961  1  0.00091033       5
+   961  2  0.00091033       3
+   962  1  0.00091033       5
+   962  2  0.00091033       3
+   963  1  0.00091033       5
+   963  2  0.00091033       3
+   964  1  0.00091033       5
+   964  2  0.00091033       3
+   965  1  0.00091033       5
+   965  2  0.00091033       3
+   966  1  0.00091033       5
+   966  2  0.00091033       3
+   967  1  0.00091033       5
+   967  2  0.00091033       3
+   968  1  0.00091033       5
+   968  2  0.00091033       3
+   969  1  0.00091033       5
+   969  2  0.00091033       2
+   970  1  0.00091033       5
+   970  2  0.00091033       3
+   971  1  0.00091033       5
+   971  2  0.00091033       3
+   972  1  0.00091033       5
+   972  2  0.00091033       3
+   973  1  0.00091033       5
+   973  2  0.00091033       3
+   974  1  0.00091033       5
+   974  2  0.00091033       3
+   975  1  0.00091033       5
+   975  2  0.00091033       3
+   976  1  0.00091033       5
+   976  2  0.00091033       3
+   977  1  0.00091033       5
+   977  2  0.00091033       3
+   978  1  0.00091033       5
+   978  2  0.00091033       3
+   979  1  0.00091033       5
+   979  2  0.00091033       3
+   980  1  0.00091033       5
+   980  2  0.00091033       3
+   981  1  0.00091033       5
+   981  2  0.00091033       3
+   982  1  0.00091033       5
+   982  2  0.00091033       3
+   983  1  0.00091033       5
+   983  2  0.00091033       3
+   984  1  0.00091033       5
+   984  2  0.00091033       3
+   985  1  0.00091033       5
+   985  2  0.00091033       3
+   986  1  0.00091033       5
+   986  2  0.00091033       3
+   987  1  0.00091033       5
+   987  2  0.00091033       3
+   988  1  0.00091033       5
+   988  2  0.00091033       3
+   989  1  0.00091033       5
+   989  2  0.00091033       3
+   990  1  0.00091033       5
+   990  2  0.00091033       3
+   991  1  0.00091033       5
+   991  2  0.00091033       3
+   992  1  0.00091033       5
+   992  2  0.00091033       3
+   993  1  0.00091033       5
+   993  2  0.00091033       3
+   994  1  0.00091033       5
+   994  2  0.00091033       3
+   995  1  0.00091033       5
+   995  2  0.00091033       3
+   996  1  0.00091033       5
+   996  2  0.00091033       3
+   997  1  0.00091033       5
+   997  2  0.00091033       3
+   998  1  0.00091033       5
+   998  2  0.00091033       3
+   999  1  0.00091033       5
+   999  2  0.00091033       3
+  1000  1  0.00091033       5
+  1000  2  0.00091033       3
+  1001  1  0.00091033       5
+  1001  2  0.00091033       3
+  1002  1  0.00091033       5
+  1002  2  0.00091033       3
+  1003  1  0.00091033       5
+  1003  2  0.00091033       3
+  1004  1  0.00091033       5
+  1004  2  0.00091033       3
+  1005  1  0.00091033       5
+  1005  2  0.00091033       3
+  1006  1  0.00091033       5
+  1006  2  0.00091033       3
+  1007  1  0.00091033       5
+  1007  2  0.00091033       3
+  1008  1  0.00091033       5
+  1008  2  0.00091033       3
+  1009  1  0.00091033       5
+  1009  2  0.00091033       3
+  1010  1  0.00091033       5
+  1010  2  0.00091033       3
+  1011  1  0.00091033       5
+  1011  2  0.00091033       3
+  1012  1  0.00091033       5
+  1012  2  0.00091033       3
+  1013  1  0.00091033       5
+  1013  2  0.00091033       3
+  1014  1  0.00091033       5
+  1014  2  0.00091033       3
+  1015  1  0.00091033       6
+  1015  2  0.00091033       2
+  1016  1  0.00091033       5
+  1016  2  0.00091033       3
+  1017  1  0.00091033       5
+  1017  2  0.00091033       3
+  1018  1  0.00091033       5
+  1018  2  0.00091033       3
+  1019  1  0.00091033       5
+  1019  2  0.00091033       3
+  1020  1  0.00091033       5
+  1020  2  0.00091033       3
+  1021  1  0.00091033       6
+  1021  2  0.00091033       2
+  1022  1  0.00091033       5
+  1022  2  0.00091033       3
+  1023  1  0.00091033       5
+  1023  2  0.00091033       3
+  1024  1  0.00091033       5
+  1024  2  0.00091033       3
+  1025  1  0.00091033       5
+  1025  2  0.00091033       3
+  1026  1  0.00091033       5
+  1026  2  0.00091033       3
+  1027  1  0.00091033       5
+  1027  2  0.00091033       3
+  1028  1  0.00091033       5
+  1028  2  0.00091033       3
+  1029  1  0.00091033       5
+  1029  2  0.00091033       3
+  1030  1  0.00091033       5
+  1030  2  0.00091033       3
+  1031  1  0.00091033       5
+  1031  2  0.00091033       3
+  1032  1  0.00091033       5
+  1032  2  0.00091033       3
+  1033  1  0.00091033       5
+  1033  2  0.00091033       3
+  1034  1  0.00091033       5
+  1034  2  0.00091033       3
+  1035  1  0.00091033       5
+  1035  2  0.00091033       3
+  1036  1  0.00091033       5
+  1036  2  0.00091033       3
+  1037  1  0.00091033       5
+  1037  2  0.00091033       3
+  1038  1  0.00091033       5
+  1038  2  0.00091033       3
+  1039  1  0.00091033       5
+  1039  2  0.00091033       3
+  1040  1  0.00091033       5
+  1040  2  0.00091033       3
+  1041  1  0.00091033       5
+  1041  2  0.00091033       3
+  1042  1  0.00091033       5
+  1042  2  0.00091033       3
+  1043  1  0.00091033       5
+  1043  2  0.00091033       3
+  1044  1  0.00091033       5
+  1044  2  0.00091033       3
+  1045  1  0.00091033       5
+  1045  2  0.00091033       3
+  1046  1  0.00091033       5
+  1046  2  0.00091033       3
+  1047  1  0.00091033       5
+  1047  2  0.00091033       3
+  1048  1  0.00091033       5
+  1048  2  0.00091033       3
+  1049  1  0.00091033       5
+  1049  2  0.00091033       3
+  1050  1  0.00091033       5
+  1050  2  0.00091033       3
+  1051  1  0.00091033       5
+  1051  2  0.00091033       3
+  1052  1  0.00091033       5
+  1052  2  0.00091033       3
+  1053  1  0.00091033       5
+  1053  2  0.00091033       3
+  1054  1  0.00091033       5
+  1054  2  0.00091033       3
+  1055  1  0.00091033       5
+  1055  2  0.00091033       3
+  1056  1  0.00091033       5
+  1056  2  0.00091033       3
+  1057  1  0.00091033       5
+  1057  2  0.00091033       3
+  1058  1  0.00091033       5
+  1058  2  0.00091033       3
+  1059  1  0.00091033       5
+  1059  2  0.00091033       3
+  1060  1  0.00091033       5
+  1060  2  0.00091033       3
+  1061  1  0.00091033       5
+  1061  2  0.00091033       3
+  1062  1  0.00091033       5
+  1062  2  0.00091033       3
+  1063  1  0.00091033       5
+  1063  2  0.00091033       3
+  1064  1  0.00091033       5
+  1064  2  0.00091033       3
+  1065  1  0.00091033       5
+  1065  2  0.00091033       3
+  1066  1  0.00091033       5
+  1066  2  0.00091033       3
+  1067  1  0.00091033       5
+  1067  2  0.00091033       3
+  1068  1  0.00091033       5
+  1068  2  0.00091033       3
+  1069  1  0.00091033       5
+  1069  2  0.00091033       3
+  1070  1  0.00091033       5
+  1070  2  0.00091033       3
+  1071  1  0.00091033       5
+  1071  2  0.00091033       2
+  1072  1  0.00091033       5
+  1072  2  0.00091033       2
+  1073  1  0.00091033       5
+  1073  2  0.00091033       2
+  1074  1  0.00091033       5
+  1074  2  0.00091033       2
+  1075  1  0.00091033       5
+  1075  2  0.00091033       3
+  1076  1  0.00091033       5
+  1076  2  0.00091033       3
+  1077  1  0.00091033       5
+  1077  2  0.00091033       3
+  1078  1  0.00091033       5
+  1078  2  0.00091033       3
+  1079  1  0.00091033       5
+  1079  2  0.00091033       3
+  1080  1  0.00091033       5
+  1080  2  0.00091033       3
+  1081  1  0.00091033       5
+  1081  2  0.00091033       3
+  1082  1  0.00091033       5
+  1082  2  0.00091033       3
+  1083  1  0.00091033       5
+  1083  2  0.00091033       3
+  1084  1  0.00091033       5
+  1084  2  0.00091033       2
+  1085  1  0.00091033       5
+  1085  2  0.00091033       2
+  1086  1  0.00091033       5
+  1086  2  0.00091033       2
+  1087  1  0.00091033       5
+  1087  2  0.00091033       2
+  1088  1  0.00091033       5
+  1088  2  0.00091033       2
+  1089  1  0.00091033       5
+  1089  2  0.00091033       3
+  1090  1  0.00091033       5
+  1090  2  0.00091033       3
+  1091  1  0.00091033       5
+  1091  2  0.00091033       3
+  1092  1  0.00091033       5
+  1092  2  0.00091033       3
+  1093  1  0.00091033       5
+  1093  2  0.00091033       3
+  1094  1  0.00091033       5
+  1094  2  0.00091033       3
+  1095  1  0.00091033       5
+  1095  2  0.00091033       3
+  1096  1  0.00091033       5
+  1096  2  0.00091033       3
+  1097  1  0.00091033       5
+  1097  2  0.00091033       2
+  1098  1  0.00091033       5
+  1098  2  0.00091033       2
+  1099  1  0.00091033       5
+  1099  2  0.00091033       2
diff --git a/tests/data/parsers/siesta/Fe/TIMES b/tests/data/parsers/siesta/Fe/TIMES
new file mode 100644
index 0000000000000000000000000000000000000000..52f1c469455cc518f2c628041edbb8f5cb33466e
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/TIMES
@@ -0,0 +1,69 @@
+
+timer: Number of nodes =      2
+timer: Busiest calculating node was node =      1
+timer: Times refer to node =      1
+timer: Total elapsed wall-clock time (sec) =      137.882
+timer: CPU times (sec):
+Calc: Sum, Avge, myNode, Avg/Max =     275.804     137.902     137.965   1.000
+No communications time available. Compile with -DMPI_TIMING
+Tot:  Sum, Avge, myNode, Avg/Max =     275.804     137.902     137.965   1.000
+Program times printed if >  0.000E+00 of total
+
+Program            Calls     Prg.com  Prg.com     Prg.tot  Prg.tot Nod.avg
+                                     /Tot.com             /Tot.tot/Nod.max
+siesta                 1       0.000   0.0000     137.965   1.0000   1.000
+Setup                  1       0.000   0.0000       0.467   0.0034   0.891
+bands                  3       0.000   0.0000       0.288   0.0021   0.993
+IterGeom               1       0.000   0.0000     136.559   0.9898   0.999
+state_init             1       0.000   0.0000       0.387   0.0028   0.796
+hsparse                1       0.000   0.0000       0.007   0.0001   0.818
+overlap                1       0.000   0.0000       0.170   0.0012   0.917
+Setup_H0               1       0.000   0.0000       1.630   0.0118   1.000
+kinefsm                2       0.000   0.0000       0.159   0.0012   0.904
+nlefsm                 2       0.000   0.0000       1.897   0.0137   0.991
+DHSCF_Init             1       0.000   0.0000       0.207   0.0015   0.877
+DHSCF1                 1       0.000   0.0000       0.019   0.0001   1.000
+INITMESH               3       0.000   0.0000       0.054   0.0004   0.500
+DHSCF2                 1       0.000   0.0000       0.188   0.0014   0.862
+REMESH                 1       0.000   0.0000       0.084   0.0006   0.685
+SPLOAD                 2       0.000   0.0000       0.054   0.0004   0.500
+PHION                  1       0.000   0.0000       0.079   0.0006   0.988
+POISON                26       0.000   0.0000       0.050   0.0004   0.600
+fft                   52       0.000   0.0000       0.050   0.0004   0.590
+IterSCF               24       0.000   0.0000     133.617   0.9685   1.000
+setup_H               24       0.000   0.0000       3.057   0.0222   0.996
+DHSCF                 25       0.000   0.0000       3.288   0.0238   1.000
+DHSCF3                25       0.000   0.0000       3.165   0.0229   0.999
+rhoofd                25       0.000   0.0000       1.396   0.0101   0.987
+cellXC                25       0.000   0.0000       0.177   0.0013   0.991
+vmat                  25       0.000   0.0000       1.539   0.0112   1.000
+compute_dm            24       0.000   0.0000     130.403   0.9452   1.000
+diagon                24       0.000   0.0000     128.766   0.9333   0.994
+c-eigval           53014       0.000   0.0000      54.607   0.3958   1.000
+c-buildHS          53014       0.000   0.0000       2.043   0.0148   0.786
+cdiag             105766       0.000   0.0000     121.516   0.8808   0.971
+cdiag1            105766       0.000   0.0000       1.973   0.0143   0.522
+cdiag2            105766       0.000   0.0000       4.314   0.0313   0.708
+cdiag3            105766       0.000   0.0000      79.336   0.5750   0.818
+cdiag4            105766       0.000   0.0000       7.145   0.0518   0.957
+c-eigvec           52752       0.000   0.0000      72.091   0.5225   0.987
+c-buildD           52752       0.000   0.0000       1.702   0.0123   0.743
+MIXER                 23       0.000   0.0000       0.029   0.0002   0.776
+WriteDM               24       0.000   0.0000       0.133   0.0010   0.947
+PostSCF                1       0.000   0.0000       0.920   0.0067   0.999
+DHSCF4                 1       0.000   0.0000       0.124   0.0009   0.981
+dfscf                  1       0.000   0.0000       0.112   0.0008   0.979
+overfsm                1       0.000   0.0000       0.003   0.0000   0.749
+No communications time available. Compile with -DMPI_TIMING
+
+Definitions:
+Program: Name of a time-profiled routine (or code section)
+Calls:   Number of profiled calls to a program
+Prg.com: CPU time in communications in one program in one node
+Tot.com: CPU time in communications in all progs. in one node
+Prg.tot: total CPU time in one program in one node
+Tot.tot: total CPU time in all programs in one node
+Nod.avg: average calculation time in one program across nodes
+Nod.max: maximum calculation time in one program across nodes
+Calculation time: CPU time excluding communications
+ 
diff --git a/tests/data/parsers/siesta/Fe/err.out.log b/tests/data/parsers/siesta/Fe/err.out.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/tests/data/parsers/siesta/Fe/fdf-24349.log b/tests/data/parsers/siesta/Fe/fdf-24349.log
new file mode 100644
index 0000000000000000000000000000000000000000..c3e64da213e38b094741d141423f50db75839f03
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/fdf-24349.log
@@ -0,0 +1,343 @@
+SystemName     bcc Fe ferro GGA                                                                
+SystemLabel     Fe                                                                              
+XML.Write              T     # default value
+XML.AbortOnErrors              F     # default value
+XML.AbortOnWarnings              F     # default value
+timer_report_threshold          0.000000000         # default value
+UseTreeTimer              F     # default value
+alloc_report_level         0     # default value
+alloc_report_threshold          0.000000000         # default value
+xc.functional     GGA                                                                             
+xc.authors     PBE                                                                             
+MM.Cutoff          30.00000000     Bohr     # default value
+MM.UnitsEnergy     eV     # default value
+MM.UnitsDistance     Ang     # default value
+WriteIonPlotFiles              F     # default value
+Atom.Debug.KB.Generation              F     # default value
+KB.New.Reference.Orbitals              F     # default value
+user-basis              F     # default value
+user-basis-netcdf              F     # default value
+ReparametrizePseudos              F     # default value
+Restricted.Radial.Grid              T     # default value
+Rmax.Radial.Grid          0.000000000         # default value
+PAO.BasisSize     DZP                                                                             
+PAO.BasisType     split          # default value
+PAO.SoftDefault              F     # default value
+PAO.SoftInnerRadius         0.9000000000         # default value
+PAO.SoftPotential          40.00000000         # default value
+PAO.SplitNorm         0.1500000000         # default value
+PAO.SplitNormH         -1.000000000         # default value
+Number_of_species              1
+%block Chemical_species_label
+   1  26  Fe
+%endblock Chemical_species_label
+%block PAO.Basis
+   Fe  2
+   0  2  P
+   6. 0.
+   2  2
+ (Backspace to) |  2  2|
+   2  2
+   0. 0.
+%endblock PAO.Basis
+%endblock PAO.Basis
+FilterCutoff          0.000000000     Ry     # default value
+FilterTol          0.000000000     Ry     # default value
+KB.Rmax          6.000000000     Bohr     # default value
+PAO.EnergyShift         0.3674899422E-02         Ry
+# above item originally: PAO.EnergyShift          50.00000000     meV       
+PAO.SplitTailNorm              F     # default value
+PAO.FixSplitTable              F     # default value
+PAO.NewSplitCode              F     # default value
+PAO.Filter              F     # default value
+PAO.Keep.Findp.Bug              F     # default value
+PAO.Filter              F     # default value
+PAO.Filter              F     # default value
+PAO.Filter              F     # default value
+PAO.OldStylePolorbs              T     # default value
+PAO.SplitTailNorm              F     # default value
+PAO.FixSplitTable              F     # default value
+PAO.NewSplitCode              F     # default value
+PAO.Filter              F     # default value
+Vna.Filter              F     # default value
+PCC.Filter              F     # default value
+PAO.BasisType     split          # default value
+Atom-Setup-Only              F     # default value
+UseStructFile              F     # default value
+MD.UseStructFile              F     # default value
+LatticeConstant          5.423516139           Bohr
+# above item originally: LatticeConstant          2.870000000     Ang       
+%block LatticeVectors
+%block LatticeVectors
+  0.50000   0.500000  0.500000
+  0.50000  -0.500000  0.500000
+  0.50000   0.500000 -0.500000
+AtomicCoordinatesFormat     Fractional                                                                      
+NumberOfAtoms              1
+ZM.UnitsLength     Bohr           # default value
+ZM.UnitsAngle     rad            # default value
+ZM.ForceTolLength         0.1555740000E-02 Ry/Bohr     # default value
+ZM.ForceTolAngle         0.3565490000E-02 Ry/rad     # default value
+ZM.MaxDisplLength         0.2000000000     Bohr     # default value
+ZM.MaxDisplAngle         0.3000000000E-02 rad     # default value
+ZM.CalcAllForces              F     # default value
+%block AtomicCoordinatesAndAtomicSpecies
+   0.000000000000    0.000000000000    0.000000000000  1
+UseSaveData              F     # default value
+MD.UseSaveXV              F     # default value
+MD.UseSaveZM              F     # default value
+WriteCoorInitial              T     # default value
+MD.TypeOfRun     cg                                                                              
+MaxBondDistance          6.000000000     Bohr     # default value
+Output-Structure-Only              F     # default value
+WriteCoorXmol              F     # default value
+SpinPolarized              T
+NonCollinearSpin              F     # default value
+HSetupOnly              F     # default value
+LongOutput              F     # default value
+WriteDenchar              F     # default value
+WriteMullikenPop              1
+WriteHirshfeldPop              F     # default value
+WriteVoronoiPop              F     # default value
+PartialChargesAtEveryGeometry              F     # default value
+PartialChargesAtEveryScfStep              F     # default value
+MeshCutoff          150.0000000             Ry
+# above item originally: MeshCutoff          150.0000000     Ry        
+NetCharge          0.000000000         # default value
+MinSCFIterations         0     # default value
+MaxSCFIterations             40
+SCFMustConverge              F     # default value
+MixHamiltonian              F     # default value
+TS.MixH              F     # default value
+MixCharge              F     # default value
+Compat-pre-v4-DM-H              F     # default value
+SCF.MixAfterConvergence              F     # default value
+SCF.Recompute-H-After-Scf              F     # default value
+DM.NumberPulay              3
+DM.NumberBroyden         0     # default value
+DM.FIRE.Mixing              F     # default value
+DM.MixSCF1              F     # default value
+DM.PulayOnFile              F     # default value
+DM.Pulay.Avoid.First.After.Kick              F     # default value
+DM.MixingWeight         0.1000000000    
+DM.OccupancyTolerance         0.1000000000E-11     # default value
+DM.NumberKick         0     # default value
+DM.KickMixingWeight         0.5000000000         # default value
+DM.Tolerance         0.1000000000E-02
+DM.RequireEnergyConvergence              F     # default value
+DM.EnergyTolerance         0.7349806700E-06 Ry     # default value
+DM.RequireHarrisConvergence              F     # default value
+DM.HarrisTolerance         0.7349806700E-06 Ry     # default value
+MonitorForcesInSCF              F     # default value
+DM.InitSpinAF              F     # default value
+UseSaveData              F     # default value
+DM.UseSaveDM              T
+NeglNonOverlapInt              F     # default value
+SolutionMethod     diagon                                                                          
+Diag.DivideAndConquer              T     # default value
+Diag.Memory          1.000000000         # default value
+ElectronicTemperature         0.1837449711E-02         Ry
+# above item originally: ElectronicTemperature          25.00000000     meV       
+FixSpin              F     # default value
+ON.MaxNumIter      1000     # default value
+ON.etol         0.1000000000E-07     # default value
+ON.eta          0.000000000     Ry     # default value
+ON.eta_alpha          0.000000000     Ry     # default value
+ON.eta_beta          0.000000000     Ry     # default value
+On.RcLWF          9.500000000     Bohr     # default value
+ON.UseSaveLWF              F     # default value
+ON.functional     kim     # default value
+ON.ChemicalPotentialUse              F     # default value
+ON.ChemicalPotential              F     # default value
+ON.ChemicalPotentialRc          9.500000000     Bohr     # default value
+ON.ChemicalPotentialTemperature         0.5000000000E-01 Ry     # default value
+ON.ChemicalPotentialOrder       100     # default value
+MD.VariableCell              F     # default value
+compat-pre-v4-dynamics              F     # default value
+MD.TypeOfRun     cg                                                                              
+MD.UseSaveCG              F     # default value
+Optim.Broyden              F     # default value
+MD.NumCGsteps              0
+MD.MaxCGDispl         0.1889726878           Bohr
+# above item originally: MD.MaxCGDispl         0.1000000000     Ang       
+MD.MaxForceTol         0.1555739508E-02    Ry/Bohr
+# above item originally: MD.MaxForceTol         0.4000000000E-01 eV/Ang    
+MD.MaxStressTol         0.6797730000E-04 Ry/Bohr**3     # default value
+MD.InitialTimeStep         1     # default value
+MD.FinalTimeStep         1     # default value
+MD.LengthTimeStep          1.000000000     fs     # default value
+MD.Quench              F     # default value
+MD.FireQuench              F     # default value
+MD.InitialTemperature          0.000000000     K     # default value
+MD.TargetTemperature          0.000000000     K     # default value
+MD.TargetPressure          0.000000000     Ry/Bohr**3     # default value
+MD.NoseMass          100.0000000     Ry*fs**2     # default value
+MD.ParrinelloRahmanMass          100.0000000     Ry*fs**2     # default value
+MD.AnnealOption     TemperatureAndPressure     # default value
+MD.TauRelax          100.0000000     fs     # default value
+MD.BulkModulus         0.6797730000E-02 Ry/Bohr**3     # default value
+MD.FCDispl         0.4000000000E-01 Bohr     # default value
+MD.FCfirst         1     # default value
+MD.FClast         1     # default value
+UseSpatialDecomposition              F     # default value
+UseDomainDecomposition              F     # default value
+Harris_functional              F     # default value
+WriteKpoints              F     # default value
+WriteForces              F     # default value
+WriteDM              T     # default value
+WriteDM.NetCDF              F     # default value
+WriteDM.History.NetCDF              F     # default value
+WriteDMHS.NetCDF              F     # default value
+WriteDMHS.History.NetCDF              F     # default value
+SCF.Read.Charge.NetCDF              F     # default value
+SCF.Read.Deformation.Charge.NetCDF              F     # default value
+SaveInitialChargeDensity              F     # default value
+UseNewDiagk              F     # default value
+WriteBands              F     # default value
+WriteKbands              F     # default value
+WriteEigenvalues              F     # default value
+WriteCoorStep              T     # label by itself
+WriteMDhistory              F     # default value
+WriteMDXmol              F     # default value
+UseSaveData              F     # default value
+SaveHS              F     # default value
+FixAuxiliaryCell              F     # default value
+NaiveAuxiliaryCell              F     # default value
+ReInitialiseDM              T     # default value
+DM.AllowReuse              T     # default value
+DM.AllowExtrapolation              T     # default value
+DM.NormalizationTolerance         0.1000000000E-04     # default value
+DM.NormalizeDuringSCF              T     # default value
+MullikenInSCF              F     # default value
+WarningMinimumAtomicDistance          1.000000000     Bohr     # default value
+BornCharge              F     # default value
+ChangeKgridInMD              F     # default value
+Diag.ParallelOverK              F     # default value
+MD.RelaxCellOnly              F     # default value
+MD.RemoveIntraMolecularPressure              F     # default value
+COOP.Write              F     # default value
+SaveRho              F     # default value
+SaveDeltaRho              F     # default value
+SaveRhoXC              F     # default value
+SaveElectrostaticPotential              F     # default value
+SaveNeutralAtomPotential              F     # default value
+SaveTotalPotential              F     # default value
+SaveIonicCharge              F     # default value
+SaveBaderCharge              F     # default value
+SaveTotalCharge              F     # default value
+Siesta2Wannier90.WriteMmn              F     # default value
+Siesta2Wannier90.WriteUnk              F     # default value
+Siesta2Wannier90.WriteAmn              F     # default value
+Siesta2Wannier90.WriteEig              F     # default value
+Siesta2Wannier90.NumberOfBandsUp         0     # default value
+Siesta2Wannier90.NumberOfBandsDown         0     # default value
+Siesta2Wannier90.NumberOfBands         0     # default value
+RcSpatial          0.000000000     Bohr     # default value
+ProcessorGridX         1     # default value
+ProcessorGridY         1     # default value
+ProcessorGridZ         1     # default value
+processorY         1     # default value
+blocksize         8     # default value
+NumberOfEigenStates        15     # default value
+TimeReversalSymmetryForKpoints              T     # default value
+kgrid_cutoff          28.34590317           Bohr
+# above item originally: kgrid_cutoff          15.00000000     Ang       
+%block BandLines
+BandLines
+BandLinesScale     pi/a     # default value
+LatticeConstant          5.423516139           Bohr
+# above item originally: LatticeConstant          2.870000000     Ang       
+%block BandLines
+   1  0.00000   0.000000  0.000000  \Gamma
+  40  2.00000   0.000000  0.000000  H
+  28  1.00000   1.000000  0.000000  N
+  28  0.00000   0.000000  0.000000  \Gamma
+  34  1.00000   1.000000  1.000000  P
+%endblock BandLines
+%block BandLines
+BandLines
+BandLinesScale     pi/a     # default value
+LatticeConstant          5.423516139           Bohr
+# above item originally: LatticeConstant          2.870000000     Ang       
+%block BandLines
+   1  0.00000   0.000000  0.000000  \Gamma
+  40  2.00000   0.000000  0.000000  H
+  28  1.00000   1.000000  0.000000  N
+  28  0.00000   0.000000  0.000000  \Gamma
+  34  1.00000   1.000000  1.000000  P
+%endblock BandLines
+LongOutput              F     # default value
+WriteWaveFunctions              F     # default value
+ForceAuxCell              F     # default value
+AtomicCoordinatesFormat     Fractional                                                                      
+AtomCoorFormatOut     Fractional                 # default value
+LatticeConstant          5.423516139           Bohr
+# above item originally: LatticeConstant          2.870000000     Ang       
+DM.FormattedFiles              F     # default value
+DM.FormattedInput              F     # default value
+DM.FormattedOutput              F     # default value
+SCF.Pulay.Damping         -1.000000000         # default value
+SCF.MixingWeightAfterPulay         0.5000000000         # default value
+SCF.PulayMinimumHistory         2     # default value
+SCF.PulayDmaxRegion          1000.000000         # default value
+SCF.LinearMixingAfterPulay              F     # default value
+SCF.Pulay.UseSVD              F     # default value
+SCF.Pulay.DebugSVD              T     # default value
+SCF.Pulay.RcondSVD         0.1000000000E-07     # default value
+MeshSubDivisions         2     # default value
+LatticeConstant          5.423516139           Bohr
+# above item originally: LatticeConstant          2.870000000     Ang       
+%block LatticeVectors
+%block LatticeVectors
+  0.50000   0.500000  0.500000
+  0.50000  -0.500000  0.500000
+  0.50000   0.500000 -0.500000
+PROCS_PER_NODE         4     # default value
+PROCS_PER_NODE         4     # default value
+DirectPhi              F     # default value
+SimulateDoping              F     # default value
+Diag.ParallelOverK              F     # default value
+LatticeConstant          5.423516139           Bohr
+# above item originally: LatticeConstant          2.870000000     Ang       
+%block LatticeVectors
+%block LatticeVectors
+  0.50000   0.500000  0.500000
+  0.50000  -0.500000  0.500000
+  0.50000   0.500000 -0.500000
+Diag.AllInOne              F     # default value
+Diag.DivideAndConquer              T     # default value
+Diag.NoExpert              F     # default value
+Diag.PreRotate              F     # default value
+Diag.Use2D              T     # default value
+SingleExcitation              F     # default value
+OccupationFunction     FD     # default value
+OccupationFunction     FD     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+SCF.Want.Variational.EKS              F     # default value
+WriteCoorXmol              F     # default value
+WriteCoorCerius              F     # default value
+WFS.Write.For.Bands              F     # default value
+BasisPressure         0.2000000000     GPa     # default value
+OpticalCalculation              F     # default value
diff --git a/tests/data/parsers/siesta/Fe/out b/tests/data/parsers/siesta/Fe/out
new file mode 100644
index 0000000000000000000000000000000000000000..f770c97a5fbab101df44044f92eeb8531389208a
--- /dev/null
+++ b/tests/data/parsers/siesta/Fe/out
@@ -0,0 +1,532 @@
+Siesta Version: siesta-4.0--500
+Architecture  : mpiifort
+Compiler flags: mpiifort -O2
+PP flags      : -DMPI -DFC_HAVE_FLUSH -DFC_HAVE_ABORT 
+PARALLEL version
+
+* Running on    2 nodes in parallel
+>> Start of run:   7-JUL-2016   9:10:12
+
+                           ***********************       
+                           *  WELCOME TO SIESTA  *       
+                           ***********************       
+
+reinit: Reading from standard input
+************************** Dump of input data file ****************************
+# $Id: Fe.fdf,v 1.1 1999/04/20 12:52:43 emilio Exp $
+# -----------------------------------------------------------------------------
+# FDF for bcc iron
+#
+# GGA, Ferromagnetic.
+# Scalar-relativistic pseudopotential with non-linear partial-core correction
+#
+# E. Artacho, April 1999
+# -----------------------------------------------------------------------------
+SystemName       bcc Fe ferro GGA   # Descriptive name of the system
+SystemLabel            Fe           # Short name for naming files
+# Output options
+WriteCoorStep
+WriteMullikenPop       1
+# Species and atoms
+NumberOfSpecies        1
+NumberOfAtoms          1
+%block ChemicalSpeciesLabel
+  1  26  Fe
+%endblock ChemicalSpeciesLabel
+# Basis
+PAO.EnergyShift       50 meV
+PAO.BasisSize         DZP
+%block PAO.Basis
+  Fe  2
+  0  2  P
+  6. 0.
+  2  2
+  0. 0.
+%endblock PAO.Basis
+LatticeConstant       2.87 Ang
+%block LatticeVectors
+ 0.50000   0.500000  0.500000
+ 0.50000  -0.500000  0.500000
+ 0.50000   0.500000 -0.500000
+%endblock LatticeVectors
+KgridCutoff          15. Ang
+%block BandLines
+  1  0.00000   0.000000  0.000000  \Gamma
+ 40  2.00000   0.000000  0.000000  H
+ 28  1.00000   1.000000  0.000000  N
+ 28  0.00000   0.000000  0.000000  \Gamma
+ 34  1.00000   1.000000  1.000000  P
+%endblock BandLines
+xc.functional         GGA           # Exchange-correlation functional
+xc.authors            PBE           # Exchange-correlation version
+SpinPolarized         true          # Logical parameters are: yes or no
+MeshCutoff           150. Ry        # Mesh cutoff. real space mesh
+# SCF options
+MaxSCFIterations       40           # Maximum number of SCF iter
+DM.MixingWeight       0.1           # New DM amount for next SCF cycle
+DM.Tolerance          1.d-3         # Tolerance in maximum difference
+                                    # between input and output DM
+DM.UseSaveDM          true          # to use continuation files
+DM.NumberPulay         3
+SolutionMethod        diagon        # OrderN or Diagon
+ElectronicTemperature  25 meV       # Temp. for Fermi smearing
+# MD options
+MD.TypeOfRun           cg           # Type of dynamics:
+MD.NumCGsteps           0           # Number of CG steps for
+                                    #   coordinate optimization
+MD.MaxCGDispl          0.1 Ang      # Maximum atomic displacement
+                                    #   in one CG step (Bohr)
+MD.MaxForceTol         0.04 eV/Ang  # Tolerance in the maximum
+                                    #   atomic force (Ry/Bohr)
+# Atomic coordinates
+AtomicCoordinatesFormat     Fractional
+%block AtomicCoordinatesAndAtomicSpecies
+  0.000000000000    0.000000000000    0.000000000000  1
+%endblock AtomicCoordinatesAndAtomicSpecies
+************************** End of input data file *****************************
+
+reinit: -----------------------------------------------------------------------
+reinit: System Name: bcc Fe ferro GGA
+reinit: -----------------------------------------------------------------------
+reinit: System Label: Fe                                                          
+reinit: -----------------------------------------------------------------------
+
+initatom: Reading input for the pseudopotentials and atomic orbitals ----------
+ Species number:            1  Label: Fe Atomic number:          26
+Ground state valence configuration:   4s02  3d06
+Reading pseudopotential information in formatted form from Fe.psf
+
+Pseudopotential generated from a relativistic atomic calculation
+There are spin-orbit pseudopotentials available
+Spin-orbit interaction is not included in this calculation
+
+Valence configuration for pseudopotential generation:
+4s( 2.00) rc: 2.00
+4p( 0.00) rc: 2.00
+3d( 6.00) rc: 2.00
+4f( 0.00) rc: 2.00
+For Fe, standard SIESTA heuristics set lmxkb to 3
+ (one more than the basis l, including polarization orbitals).
+Use PS.lmax or PS.KBprojectors blocks to override.
+ Warning: Empty PAO shell. l =           1
+ Will have a KB projector anyway...
+
+<basis_specs>
+===============================================================================
+Fe                   Z=  26    Mass=  55.850        Charge= 0.17977+309
+Lmxo=2 Lmxkb= 3    BasisType=split      Semic=F
+L=0  Nsemic=0  Cnfigmx=4
+          n=1  nzeta=2  polorb=1
+            splnorm:   0.15000    
+               vcte:    0.0000    
+               rinn:    0.0000    
+               qcoe:    0.0000    
+               qyuk:    0.0000    
+               qwid:   0.10000E-01
+                rcs:    6.0000      0.0000    
+            lambdas:    1.0000      1.0000    
+L=1  Nsemic=0  Cnfigmx=4
+L=2  Nsemic=0  Cnfigmx=3
+          n=1  nzeta=2  polorb=0
+            splnorm:   0.15000    
+               vcte:    0.0000    
+               rinn:    0.0000    
+               qcoe:    0.0000    
+               qyuk:    0.0000    
+               qwid:   0.10000E-01
+                rcs:    0.0000      0.0000    
+            lambdas:    1.0000      1.0000    
+-------------------------------------------------------------------------------
+L=0  Nkbl=1  erefs: 0.17977+309
+L=1  Nkbl=1  erefs: 0.17977+309
+L=2  Nkbl=1  erefs: 0.17977+309
+L=3  Nkbl=1  erefs: 0.17977+309
+===============================================================================
+</basis_specs>
+
+atom: Called for Fe                    (Z =  26)
+
+read_vps: Pseudopotential generation method:
+read_vps: ATM3      Troullier-Martins                       
+Total valence charge:    8.00000
+
+read_vps: Pseudopotential includes a core correction:
+read_vps: Pseudo-core for xc-correction
+
+xc_check: Exchange-correlation functional:
+xc_check: GGA Perdew, Burke & Ernzerhof 1996
+V l=0 = -2*Zval/r beyond r=  2.7645
+V l=1 = -2*Zval/r beyond r=  2.7645
+V l=2 = -2*Zval/r beyond r=  2.7645
+V l=3 = -2*Zval/r beyond r=  2.7645
+All V_l potentials equal beyond r=  1.9726
+This should be close to max(r_c) in ps generation
+All pots = -2*Zval/r beyond r=  2.7645
+Using large-core scheme for Vlocal
+
+atom: Estimated core radius    2.76453
+atom: Maximum radius for 4*pi*r*r*local-pseudopot. charge    3.05528
+atom: Maximum radius for r*vlocal+2*Zval:    2.79930
+GHOST: No ghost state for L =  0
+GHOST: No ghost state for L =  1
+GHOST: No ghost state for L =  2
+GHOST: No ghost state for L =  3
+
+KBgen: Kleinman-Bylander projectors: 
+   l= 0   rc=  2.047986   el= -0.388305   Ekb=  4.259322   kbcos=  0.262992
+   l= 1   rc=  2.047986   el= -0.097543   Ekb=  2.850785   kbcos=  0.194191
+   l= 2   rc=  2.022544   el= -0.553240   Ekb=-12.567334   kbcos= -0.683368
+   l= 3   rc=  2.047986   el=  0.003178   Ekb= -1.649997   kbcos= -0.006611
+
+KBgen: Total number of  Kleinman-Bylander projectors:   16
+atom: -------------------------------------------------------------------------
+
+atom: SANKEY-TYPE ORBITALS:
+atom: Selected multiple-zeta basis: split     
+
+SPLIT: Orbitals with angular momentum L= 0
+
+SPLIT: Basis orbitals for state 4s
+
+   izeta = 1
+                 lambda =    1.000000
+                     rc =    6.000769
+                 energy =   -0.359899
+                kinetic =    0.368794
+    potential(screened) =   -0.728692
+       potential(ionic) =   -6.200046
+
+   izeta = 2
+                 rmatch =    5.852607
+              splitnorm =    0.150000
+                 energy =   -0.302546
+                kinetic =    0.545359
+    potential(screened) =   -0.847905
+       potential(ionic) =   -6.625795
+
+SPLIT: Orbitals with angular momentum L= 2
+
+SPLIT: Basis orbitals for state 3d
+
+SPLIT: PAO cut-off radius determined from an
+SPLIT: energy shift=  0.003675 Ry
+
+   izeta = 1
+                 lambda =    1.000000
+                     rc =    4.791692
+                 energy =   -0.550135
+                kinetic =    9.305455
+    potential(screened) =   -9.855590
+       potential(ionic) =  -18.595674
+
+   izeta = 2
+                 rmatch =    2.235267
+              splitnorm =    0.150000
+                 energy =   -0.167120
+                kinetic =   12.792829
+    potential(screened) =  -12.959949
+       potential(ionic) =  -22.329705
+
+POLgen: Perturbative polarization orbital with L=  1
+
+POLgen: Polarization orbital for state 4s
+
+   izeta = 1
+                     rc =    6.000769
+                 energy =   -0.010549
+                kinetic =    0.693233
+    potential(screened) =   -0.703782
+       potential(ionic) =   -5.834871
+atom: Total number of Sankey-type orbitals: 15
+
+atm_pop: Valence configuration (for local Pseudopot. screening):
+ 4s( 2.00)                                                            
+ 4p( 0.00)                                                            
+ 3d( 6.00)                                                            
+Vna: chval, zval:    8.00000   8.00000
+
+Vna:  Cut-off radius for the neutral-atom potential:   6.000769
+comcore: Pseudo-core radius Rcore=  3.778693
+
+atom: _________________________________________________________________________
+
+prinput: Basis input ----------------------------------------------------------
+
+PAO.BasisType split     
+
+%block ChemicalSpeciesLabel
+    1   26 Fe                      # Species index, atomic number, species label
+%endblock ChemicalSpeciesLabel
+
+%block PAO.Basis                 # Define Basis set
+Fe                    2                    # Species label, number of l-shells
+ n=4   0   2 P   1                   # n, l, Nzeta, Polarization, NzetaPol
+   6.001      5.853   
+   1.000      1.000   
+ n=3   2   2                         # n, l, Nzeta 
+   4.792      2.235   
+   1.000      1.000   
+%endblock PAO.Basis
+
+prinput: ----------------------------------------------------------------------
+
+coor:   Atomic-coordinates input format  =     Fractional
+
+siesta: Atomic coordinates (Bohr) and species
+siesta:      0.00000   0.00000   0.00000  1        1
+
+siesta: System type = bulk      
+
+initatomlists: Number of atoms, orbitals, and projectors:      1    15    16
+
+siesta: ******************** Simulation parameters ****************************
+siesta:
+siesta: The following are some of the parameters of the simulation.
+siesta: A complete list of the parameters used, including default values,
+siesta: can be found in file out.fdf
+siesta:
+redata: Non-Collinear-spin run           =     F
+redata: SpinPolarized (Up/Down) run      =     T
+redata: Number of spin components        =     2
+redata: Long output                      =     F
+redata: Number of Atomic Species         =        1
+redata: Charge density info will appear in .RHO file
+redata: Write Mulliken Pop.              =     Atomic and Orbital charges
+redata: Mesh Cutoff                      =   150.0000  Ry
+redata: Net charge of the system         =     0.0000 |e|
+redata: Min. number of SCF Iter          =        0
+redata: Max. number of SCF Iter          =       40
+redata: Mix DM or H after convergence    =     F
+redata: Recompute H after scf cycle      =     F
+redata: Performing Pulay mixing using    =     3 iterations
+redata: Mix DM in first SCF step ?       =     F
+redata: Write Pulay info on disk?        =     F
+redata: Discard 1st Pulay DM after  kick =     F
+redata: New DM Mixing Weight             =     0.1000
+redata: New DM Occupancy tolerance       = 0.000000000001
+redata: No kicks to SCF
+redata: DM Mixing Weight for Kicks       =     0.5000
+redata: DM Tolerance for SCF             =     0.001000
+redata: Require (free) Energy convergence in SCF =     F
+redata: DM (free)Energy tolerance for SCF =     0.000010 eV
+redata: Require Harris convergence for SCF =     F
+redata: DM Harris energy tolerance for SCF =     0.000010 eV
+redata: Antiferro initial spin density   =     F
+redata: Using Saved Data (generic)   =     F
+redata: Use continuation files for DM    =     T
+redata: Neglect nonoverlap interactions  =     F
+redata: Method of Calculation            =     Diagonalization
+redata: Divide and Conquer               =     T
+redata: Electronic Temperature           =     0.0018  Ry
+redata: Fix the spin of the system       =     F
+redata: Dynamics option                  =     Single-point calculation
+redata: ***********************************************************************
+Total number of electrons:     8.000000
+Total ionic charge:     8.000000
+
+* ProcessorY, Blocksize:    1   8
+
+
+* Orbital distribution balance (max,min):     8     7
+
+ Kpoints in:         1183 . Kpoints trimmed:         1099
+
+siesta: k-grid: Number of k-points =  1099
+siesta: k-grid: Cutoff (effective) =    16.156 Ang
+siesta: k-grid: Supercell and displacements
+siesta: k-grid:    0  13   0      0.000
+siesta: k-grid:    0   0  13      0.000
+siesta: k-grid:   13   0   0      0.000
+Using LatticeConstant from fdf file for BandLinesScale:    5.423516 Bohr
+Beware any cell changes by the end of the run
+Using LatticeConstant from fdf file for BandLinesScale:    5.423516 Bohr
+Beware any cell changes by the end of the run
+Naive supercell factors:     7    7    7
+
+superc: Internal auxiliary supercell:     7 x     7 x     7  =     343
+superc: Number of atoms, orbitals, and projectors:    343   5145   5488
+
+                     ====================================
+                        Single-point calculation
+                     ====================================
+
+outcoor: Atomic coordinates (fractional):                   
+    0.00000000    0.00000000    0.00000000   1       1  Fe
+
+superc: Internal auxiliary supercell:     7 x     7 x     7  =     343
+superc: Number of atoms, orbitals, and projectors:    343   5145   5488
+
+outcell: Unit cell vectors (Ang):
+        1.435000    1.435000    1.435000
+        1.435000   -1.435000    1.435000
+        1.435000    1.435000   -1.435000
+
+outcell: Cell vector modules (Ang)   :    2.485493    2.485493    2.485493
+outcell: Cell angles (23,13,12) (deg):    109.4712     70.5288     70.5288
+outcell: Cell volume (Ang**3)        :     11.8200
+New_DM. Step:     1
+Initializing Density Matrix...
+
+initdm: Initial spin polarization (Qup-Qdown) =    4.000000
+New grid distribution:   1
+           1       1:    8    1:    8    1:    4
+           2       1:    8    1:    8    5:    8
+
+InitMesh: MESH =    16 x    16 x    16 =        4096
+InitMesh: (bp) =     8 x     8 x     8 =         512
+InitMesh: Mesh cutoff (required, used) =   150.000   171.794 Ry
+ExtMesh (bp) on 0 =    60 x    60 x    56 =      201600
+New grid distribution:   2
+           1       1:    8    1:    8    1:    4
+           2       1:    8    1:    8    5:    8
+New grid distribution:   3
+           1       1:    8    1:    8    1:    4
+           2       1:    8    1:    8    5:    8
+Setting up quadratic distribution...
+ExtMesh (bp) on 0 =    60 x    60 x    56 =      201600
+PhiOnMesh: Number of (b)points on node 0 =                  256
+PhiOnMesh: nlist on node 0 =                25429
+
+stepf: Fermi-Dirac step function
+
+siesta: Program's energy decomposition (eV):
+siesta: Ebs     =       -64.254281
+siesta: Eions   =       711.951417
+siesta: Ena     =        22.613146
+siesta: Ekin    =       769.702259
+siesta: Enl     =      -468.825520
+siesta: DEna    =         0.000000
+siesta: DUscf   =         0.000000
+siesta: DUext   =         0.000000
+siesta: Exc     =      -393.596676
+siesta: eta*DQ  =         0.000000
+siesta: Emadel  =         0.000000
+siesta: Emeta   =         0.000000
+siesta: Emolmec =         0.000000
+siesta: Ekinion =         0.000000
+siesta: Eharris =      -781.882593
+siesta: Etot    =      -782.058208
+siesta: FreeEng =      -782.060834
+
+   scf: iscf   Eharris(eV)      E_KS(eV)   FreeEng(eV)    dDmax  Ef(eV)
+   scf:    1     -781.8826     -782.0582     -782.0608  0.93226 -5.2101
+timer: Routine,Calls,Time,% =    IterSCF     1       5.702  69.90
+   scf:    2     -782.2936     -782.1238     -782.1254  0.06106 -6.2766
+   scf:    3     -782.2461     -782.1189     -782.1207  0.07964 -6.0974
+   scf:    4     -782.2283     -782.1787     -782.1814  0.02982 -5.7869
+   scf:    5     -782.2259     -782.1760     -782.1785  0.03042 -5.8430
+   scf:    6     -782.2357     -782.2207     -782.2237  0.01994 -5.8035
+   scf:    7     -782.2340     -782.2204     -782.2233  0.01832 -5.8888
+   scf:    8     -782.2362     -782.2306     -782.2334  0.01535 -5.9078
+   scf:    9     -782.2371     -782.2327     -782.2355  0.01440 -5.9090
+   scf:   10     -782.2414     -782.2363     -782.2387  0.01174 -5.8740
+   scf:   11     -782.2410     -782.2325     -782.2349  0.00923 -5.8784
+   scf:   12     -782.2418     -782.2305     -782.2330  0.00703 -5.8727
+   scf:   13     -782.2419     -782.2283     -782.2308  0.00675 -5.8783
+   scf:   14     -782.2419     -782.2284     -782.2309  0.00630 -5.8845
+   scf:   15     -782.2420     -782.2350     -782.2376  0.00497 -5.8937
+   scf:   16     -782.2421     -782.2363     -782.2389  0.00463 -5.8933
+   scf:   17     -782.2424     -782.2432     -782.2457  0.00296 -5.8863
+   scf:   18     -782.2424     -782.2431     -782.2456  0.00272 -5.8872
+   scf:   19     -782.2425     -782.2401     -782.2426  0.00163 -5.8958
+   scf:   20     -782.2425     -782.2386     -782.2412  0.00182 -5.8955
+   scf:   21     -782.2425     -782.2381     -782.2407  0.00188 -5.8941
+   scf:   22     -782.2426     -782.2398     -782.2424  0.00156 -5.8898
+   scf:   23     -782.2426     -782.2408     -782.2434  0.00133 -5.8893
+   scf:   24     -782.2426     -782.2429     -782.2455  0.00084 -5.8930
+
+SCF Convergence by dMax criterion
+max |DM_out - DM_in|:     0.00084008
+SCF cycle converged after   24 iterations
+
+Using DM_out to compute the final energy and forces
+
+siesta: E_KS(eV) =             -782.2426
+
+siesta: E_KS - E_eggbox =      -782.2426
+
+siesta: Atomic forces (eV/Ang):
+----------------------------------------
+   Tot   -0.000000    0.000000   -0.000000
+----------------------------------------
+   Max    0.000000
+   Res    0.000000    sqrt( Sum f_i^2 / 3N )
+----------------------------------------
+   Max    0.000000    constrained
+
+Stress-tensor-Voigt (kbar):      -10.68      -10.68      -10.68       -5.21        5.21       -5.21
+(Free)E + p*V (eV/cell)     -782.1664
+Target enthalpy (eV/cell)     -782.2452
+ 
+mulliken: Atomic and Orbital Populations:
+
+mulliken: Spin UP 
+
+Species: Fe                  
+Atom  Qatom  Qorb
+               4s      4s      3dxy    3dyz    3dz2    3dxz    3dx2-y2 3dxy    
+               3dyz    3dz2    3dxz    3dx2-y2 4Ppy    4Ppz    4Ppx    
+   1  5.158  -0.151   0.446   0.905   0.905   0.968   0.905   0.968  -0.029
+             -0.029  -0.022  -0.029  -0.022   0.114   0.114   0.114
+
+mulliken: Qtot =        5.158
+
+mulliken: Spin DOWN 
+
+Species: Fe                  
+Atom  Qatom  Qorb
+               4s      4s      3dxy    3dyz    3dz2    3dxz    3dx2-y2 3dxy    
+               3dyz    3dz2    3dxz    3dx2-y2 4Ppy    4Ppz    4Ppx    
+   1  2.842  -0.244   0.544   0.538   0.538   0.343   0.538   0.343  -0.050
+             -0.050  -0.042  -0.050  -0.042   0.158   0.158   0.158
+
+mulliken: Qtot =        2.842
+Computing bands...
+
+siesta: Program's energy decomposition (eV):
+siesta: Ebs     =       -64.871014
+siesta: Eions   =       711.951417
+siesta: Ena     =        22.613146
+siesta: Ekin    =       770.695719
+siesta: Enl     =      -473.896828
+siesta: DEna    =         0.779783
+siesta: DUscf   =         0.020155
+siesta: DUext   =         0.000000
+siesta: Exc     =      -390.503158
+siesta: eta*DQ  =         0.000000
+siesta: Emadel  =         0.000000
+siesta: Emeta   =         0.000000
+siesta: Emolmec =         0.000000
+siesta: Ekinion =         0.000000
+siesta: Eharris =      -782.242595
+siesta: Etot    =      -782.242600
+siesta: FreeEng =      -782.245185
+
+siesta: Final energy (eV):
+siesta:  Band Struct. =     -64.871014
+siesta:       Kinetic =     770.695719
+siesta:       Hartree =      86.251697
+siesta:    Ext. field =       0.000000
+siesta:   Exch.-corr. =    -390.503158
+siesta:  Ion-electron =    -819.233229
+siesta:       Ion-ion =    -429.453629
+siesta:       Ekinion =       0.000000
+siesta:         Total =    -782.242600
+
+siesta: Stress tensor (static) (eV/Ang**3):
+siesta:    -0.006669   -0.003249   -0.003249
+siesta:    -0.003249   -0.006669    0.003249
+siesta:    -0.003249    0.003249   -0.006669
+
+siesta: Cell volume =         11.819952 Ang**3
+
+siesta: Pressure (static):
+siesta:                Solid            Molecule  Units
+siesta:           0.00007263          0.00007263  Ry/Bohr**3
+siesta:           0.00666878          0.00666878  eV/Ang**3
+siesta:          10.68468152         10.68468152  kBar
+(Free)E+ p_basis*V_orbitals  =        -781.661100
+(Free)Eharris+ p_basis*V_orbitals  =        -781.661095
+
+siesta: Total spin polarization (Qup-Qdown) =    2.315396
+>> End of run:   7-JUL-2016   9:12:30
diff --git a/tests/data/parsers/siesta/Fe/out.log b/tests/data/parsers/siesta/Fe/out.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/tests/test_parsing.py b/tests/test_parsing.py
index 9a7dc827fd507140f69920bfdd033142b779bad1..4e284009a038dab0d70002e2627826cdce2685e3 100644
--- a/tests/test_parsing.py
+++ b/tests/test_parsing.py
@@ -52,14 +52,18 @@ parser_examples = [
         'tests/data/parsers/phonopy/control.in'),
     ('parsers/gpaw', 'tests/data/parsers/gpaw/Fe2.gpw'),
     ('parsers/gpaw2', 'tests/data/parsers/gpaw2/H2_lcao.gpw2'),
-    ('parsers/atk', 'tests/data/parsers/atk/Si2.nc')]
+    ('parsers/atk', 'tests/data/parsers/atk/Si2.nc'),
+    # ('parsers/gulp', 'tests/data/parsers/gulp/example6.got'),  # Issue with section_method
+    # ('parsers/siesta', 'tests/data/parsers/siesta/Fe/out'),  # Issue with dir.
+    ('parsers/elk', 'tests/data/parsers/elk/Al/info.out')
+    # ('parsers/elastic', 'tests/data/parsers/elastic/2nd/INFO_ElaStic')  # 70Mb file 2big4git
+]
 
 faulty_unknown_one_d_matid_example = [
     ('parsers/template', 'tests/data/normalizers/no_sim_cell_boolean_positions.json')
 ]
 
-# TODO @dts: Phonopy getting double counted. tmp.out in phonopy also.
-correct_num_output_files = 30
+correct_num_output_files = 32
 
 
 class TestLocalBackend(object):
@@ -302,5 +306,7 @@ def test_match(raw_files, no_warn):
         parser = match_parser(mainfile, upload_files)
         if parser is not None:
             count += 1
+        else:
+            print("filename not matched is %s" % mainfile)
 
     assert count == correct_num_output_files