job.id 996 job.name Structure_opt_BPDABAPP_6 job.description { } job.status finished job.submitted {2025-07-23 21:33:46} job.started {2025-07-23 21:33:47} job.finished {2025-07-24 00:22:22} job.queue 16 job.errormsg {} job.pid 0 job.userid 1 job.priority 5 job.jobserverid 2 data.joboptions {_protocol_type_ JobControl _description_ {} passwd {} _name_ {} nproc 4 priority 5 _protocol_id_ 0 _protocol_pid_ 0 _version_ 1.1 context {} user user} data.script {# # Basic script for running batch jobs # package require logger package require MD::Stage package require MD::TaskManager package require MD.Results package require memory package require MD::Workspace package require jobcontrol package require JobOptions package require base64 package require md5 proc task {args} {} namespace eval ::MD {} logger::setlevel notice set gLog [logger::init MD] ::logger::import -all -prefix "log_" -namespace ::MD MD # # Get the version of the Jobs database in use # set JobDBVersion [join [db "SELECT value FROM info WHERE item ='Version'"]] # If we want to start child jobs, we need a jobcontrol object, on the localhost Jobcontrol::JobcontrolProxy ::jobcontrol # # The workspace # set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND item = 'workspace'"] 0]] ::MD::Workspace ::workspace ::workspace fromString $tmp # # Any input files? # set lfiles "" if {[catch { set lfiles [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'input_file'"]] } err_msg]} { error "Failed while getting input files:\n $err_msg" } set linput_files "" foreach elem $lfiles { set fname [file join [pwd] [lindex $elem 0]] set stage_id [lindex $elem 1] set fdata [lindex $elem 2] # See if this is base64 encoded if {![catch {set decode64_data [::base64::decode $fdata]}]} { # Succesfully decoded from base64 set fdata $decode64_data unset decode64_data } if {[catch { set fd [open $fname "w"] fconfigure $fd -encoding binary -translation binary puts -nonewline $fd $fdata close $fd } err_msg]} { error "Failed to write Job input file $fname:\n $err_msg" } unset fdata lappend linput_files [list $stage_id $fname] } # # Get info about this job # if {$JobDBVersion < 3.0} { set jdata [join [db "SELECT name, queue, userid, priority, jobserverid FROM job WHERE id = $::job::id"]] set ::job::name [lindex $jdata 0] set ::job::queueid [lindex $jdata 1] set ::job::userid [lindex $jdata 2] set ::job::priority [lindex $jdata 3] set ::job::parent 0 } else { set jdata [join [db "SELECT name, queue, userid, priority, jobserverid, parent FROM job WHERE id = $::job::id"]] set ::job::name [lindex $jdata 0] set ::job::queueid [lindex $jdata 1] set ::job::userid [lindex $jdata 2] set ::job::priority [lindex $jdata 3] set ::job::parent [lindex $jdata 5] } set ::job::username "" set ::job::queue "" if {[string is integer -strict $::job::userid]} { # Get the username from the user id if {[catch {set ::job::username [join [db "SELECT name FROM user WHERE id = $::job::userid"]]}]} { set ::job::username [join [db "SELECT name FROM \[user\] WHERE id = $::job::userid"]] } } if {[string is integer -strict $::job::queueid]} { # Get the queue name from the queue id set ::job::queue [join [join [db "SELECT name FROM queue WHERE id = $::job::queueid"]]] } # # Get the nproc option in order to pass it along to subjobs if any # set ::job::nproc 1 set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND item = 'joboptions'"] 0]] foreach {opt_name opt_value} $tmp { if {$opt_name == "nproc"} { set ::job::nproc $opt_value } } # # Set up information about the job in the workspace # ::workspace eval namespace eval ::job [list set id $::job::id] ::workspace eval [list set ::job::parent $::job::parent] ::workspace eval [list set ::job::serverId [info hostname]] ::workspace eval [list set ::job::dir [pwd]] ::workspace eval [list set ::job::name [join $::job::name "_"]] ::workspace eval [list set ::job::queueid $::job::queueid] ::workspace eval [list set ::job::queue $::job::queue] ::workspace eval [list set ::job::userid $::job::userid] ::workspace eval [list set ::job::username $::job::username] ::workspace eval [list set ::job::priority $::job::priority] ::workspace eval [list set ::job::nproc $::job::nproc] # Prepare a list of command to execute from the calling job. ::workspace eval [::list set ::subjob_commands ""] # # And forcefield, if required # set ff_local [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_local'"]] if {[::workspace eval {info exists __fffile}]} { package require MD::FF ::MD::FF ::FF ::FF configure -silent 1 catch { if {$ff_local != ""} { # Load a local forcefield set fname [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_file'"]] if {[string range $fname 0 0] == "\{"} { set fname [join $fname] } set fdata [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_content'"]] if {[string range $fdata 0 0] == "\{"} { set fdata [join $fdata] } # See if this is base64 encoded if {![catch {set decode64_data [::base64::decode $fdata]}]} { # Succesfully decoded from base64 set fdata $decode64_data unset decode64_data } set fd [open $fname "w"] puts -nonewline $fd $fdata close $fd ::FF readFF [file join [pwd] $fname] ::FF configure -forcefield $ff_local # Update the workspace for sub-jobs if any ::workspace eval [list set __fffile [::FF fffile]] ::workspace eval [list set __ff $ff_local] } else { # Setup a forcefield from Forcefield.kit set __fffile [::workspace eval {set __fffile}] ::FF readFF $__fffile set __ff [::workspace eval {set __ff}] ::FF configure -forcefield $__ff } set ::FF ::FF set fdata "" # On old JS the ff_file_content might not be available catch {set fdata [::FF ff_file_content]} if {$fdata != ""} { set ffmd5 [::md5::md5 -hex $fdata] unset fdata set cur_ff [::FF cget -forcefield] set cur_file [::FF fffile] puts "\nForcefield set to: $cur_ff\n File: $cur_file \t md5 sum: $ffmd5\n" } } } # # The stages, ignoring everything else like the flowchart # set ok 0 set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND LOWER(item) = 'flowchart'"] 0]] if {[string length $tmp] > 2} { foreach {item data} $tmp { switch $item { "StageHandler" { ::MD::Stage::Handler stageHandler -workspace ::workspace stageHandler fromString $data set ok 1 } } } } else { # No flowchart, but maybe a stagehandler... set data [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND LOWER(item) = 'stagehandler'"] 0]] if {[string length $data] > 2} { ::MD::Stage::Handler stageHandler -workspace ::workspace stageHandler fromString $data set ok 1 } } unset -nocomplain tmp if {!$ok} { error "Could not find the stage information!" } # # Other tools that we need # ::MD::TaskManager taskmanager if {[file exists Job.xml]} { file delete -force Job.xml } ::MD::Results::Handler Results -file Job.xml # # Finally, do the real work # set stage [stageHandler getInitialStage] $stage configure -workspace ::workspace -workingdirectory [pwd] $stage run 0 # # And save any unsaved results # Results save # # Write down the final workspace if this job was started by another # if {$::job::parent > 0} { set fd [open "final_workspace.txt" "w"] puts $fd [::workspace toString] close $fd } } data.StageHandler {Class ::MD::Stage::Handler Version 1.2 Stages { md-stage-start-e9d70a33-f7b4-4e3f-8942-155d5d8f16ad {} ::MD::Stage::Start { Class ::MD::Stage::Start Version 1.2 Id md-stage-start-e9d70a33-f7b4-4e3f-8942-155d5d8f16ad Options {-description {Replace this with a description of this flowchart!} -summary {A one-line summary of this flowchart!} -stageid 1 -stdout stdout -master {} -debug 0 -iteration {} -stderr stderr -system {$system} -workingdirectory .} } md-vasp6api-stage-b09f7048-e024-429f-b526-36a0a1c596ae MD::VASP6api::Batch ::MD::VASP6api::Stage { Base { Class ::MD::VASP6api::Stage Version 1.2 Id md-vasp6api-stage-b09f7048-e024-429f-b526-36a0a1c596ae Options {-system {$system} -results ::Results -stageid 1 -stdout stdout -master {} -debug 0 -iteration {} -stderr stderr -Base::system {$system} -workingdirectory .} } Class ::MD::VASP6api::Stage Version 1.0 VASPOptions { ACFDT-RPARmode 0 ACFDT-RPAmode 0 ActualKMesh {1 1 1} ActualKSpacings {0.364 0.364 0.364} BandStructure/_description_ {} BandStructure/_name_ {} BandStructure/_protocol_id_ 0 BandStructure/_protocol_pid_ 0 BandStructure/_protocol_type_ BandStructure BandStructure/_version_ 2.1 BandStructure/explicitpath 0 BandStructure/labels {} BandStructure/maxpoints 40 BandStructure/module VASP BandStructure/npertask 40 BandStructure/npoints {} BandStructure/symmetrypoints {} BandStructure/vertices {} DDH-DSH_decay 1.26 DDH-DSH_longrange 0.1 DimerVASP 0 Efield_direction x-axis ElPhonmode 0 FFTcharges 0 GWRcalc {quasiparticle shifts} GWRmode 0 GW_ismear Gaussian GW_metals 0 GW_mporder 1 GW_sigma 0.2 GW_sigmaGauss 0.05 GWalgorithm {eigenvalues for G (GW0)} GWcalc {quasiparticle shifts} GWmode 0 Gshift 1 HF_Gshift 1 HF_amix 0.2 HF_bstr_kmesh {as for non-local exchange} HF_kInputmode {set spacing between k-points} HF_kPointMode 0 HF_kSpacing 0.5 HF_nk1_base 1 HF_nk2_base 1 HF_nk3_base 1 HF_nkodd 0 HF_nkx 4 HF_nky 4 HF_nkz 4 HF_timestep 0.4 HF_timestep_initial 0.4 MLFF_Task_MD {Create forcefield by on-the-fly learning} ML_Gwidth_angular {} ML_Gwidth_radial 0.5 ML_Rcut_angular 5.0 ML_Rcut_radial 8.0 ML_atomicEnergy 0 ML_atomicenergy {} ML_energyscaling {average energy of training data} ML_handleOverflow 1 ML_heatFlux 0 ML_lmax 3 ML_nMLFFstepsmin {} ML_nbasisfunct_angular 8 ML_nbasisfunct_radial 12 ML_nconfigstemp 5 ML_nrefconfigsmax {} ML_nstructuremax {} ML_output_frequency 1 ML_pair-correlation 1 ML_thresholdconfigfactor 0.6 ML_thresholdfactor {} ML_thresholdforceserror 0.002 ML_thresholdsparsification {} ML_thresholdupdate automatic ML_thresholdupdatefactor 1.0 ML_weight_energy 1.0 ML_weight_forces 1.0 ML_weight_radial 0.1 ML_weight_stress 1.0 MP2mode 0 NEBinVASP 0 TDHFmode 0 TimeEv_nbands_occ {} TimeEv_nbands_unocc {} TimeEvmode 0 TimeStep_definition {via complex shift} _description_ {} _name_ {MedeA3.6 VASP6.3.2 default} _protocol_id_ 3 _protocol_pid_ 13 _protocol_type_ VASP _version_ 2.4 acfdt-rpa_metals 0 addgrid 0 algo {Normal (blocked Davidson)} algoHF {Damped molecular dynamics} amix 0.2 apaco {} applyMLFF_ElPhon 0 applyMLFF_MT 0 applyMLFF_OPT 0 applyMLFF_SP 0 apply_localization immediately apply_solvation 0 backgroundCharge 0 bandstructure 0 cshift 0.1 cshiftGW {} cshiftTimeEv {} default_encut 400.000 delayeach 0 description {} displacement 0.015 displacement_number 1 dos 0 dos_Gshift 1 dos_ismear Gaussian dos_kInputmode {set spacing between k-points} dos_kSpacing 0.25 dos_mporder 1 dos_nkodd 0 dos_nkx 9 dos_nkxmult 2 dos_nky 9 dos_nkymult 2 dos_nkz 9 dos_nkzmult 2 dos_projection {automatic choice} dos_sigma 0.2 dos_sigmaGauss 0.05 ediff 1.0e-05 ediffg -0.02 efield 0 efield_dir none elastic 0 elements_sites elements elphon_calculation {Single configuration (Zacharias-Giustino)} elphon_nstruct 100 elphon_temperature 0.0 emax {} emin {} enaug {} encut {} encutGW {} encut_nmr {} engine {for GPUs} explicitKPoints 0 extrainput {} file_return Normal fixcharg 0 functional {Density functional} gwr_nomega 16 gwr_sigma 0.1 gwr_tempmode {T = 0K (systems with band gap)} hybrid_functional HSE06 ibrion -1 icharg {Atomic charge densities} images 3 increase_encut 0 indepParticleApprox_TimeEv 0 initialDimerDir {} iniwav {Random numbers} involveMLFF_MD 0 isif {} ismear Methfessel-Paxton ispin 0 istart 0 isym {} iwave {from scratch} iwaveder 0 iwtmp 0 j_parameter {} kInputmode {set spacing between k-points} kSpacing 0.5 kblock {} kpoints {} lEoF 0 l_parameter {} laechg 0 lcharg 0 ldapu {Standard LDA or GGA} lefg 0 lelf 0 lepsilon 0 lhyperfine 0 lmaxHF {lmax = 4} lmaxaeGW {full shape up to lmax = 4} lmaxmp2 {up to lmax = 2} localization_ediff 1.0e-03 localization_steps 10 lpead 0 lreal {Reciprocal space} lscalapack 0 lsol 0 lspectral 1 ltmp2_nomega 6 lvhar 1 lvtot 0 lwave 0 lwaveder 0 magmom 1 magnetism {Defined by model} maxbandpoints 40 maxmem {} meta-GGA revTPSS modelBSE 0 modelBSE_AEXX {} modelBSE_HFSCREEN {} modelBSE_nbands_occ {} modelBSE_nbands_unocc {} mp2_calculation {Møller-Plesset perturbation theory (MP2)} mporder 1 nTimeSteps 100 napaco {} nbands {} nbandsGW {} nbands_GW {} nbands_TDHF {} nbands_TimeEv {} nbands_occ {} nbands_opt {} nbands_unocc {} nblk {} nblock 1 nedos 3000 nelm 200 nelmGW 4 nelmdl {} nelmin 2 nfree 2 ngx 0 ngy 0 ngz 0 nkodd 0 nkx 4 nkxmult 1 nky 4 nkymult 1 nkz 4 nkzmult 1 nmr 0 nmr_maxkpoints 10 nomega 50 nomega_acfdt 12 nomega_tdhf 50 nosymmetry 0 nsw 0 nuj {} nwrite 1 oddonlyGW 0 optical_matrix_elements 0 optics 0 phonons_ismear Methfessel-Paxton phonons_mporder 1 phonons_sigma 0.2 phonons_sigmaGauss 0.05 poscar_filename {} potentials {GGA-PBE PAW {8 O 1 H 6 C 7 N}} potentials_version {Version 54} potim {} prec Normal precision Normal precisionHF Normal precsym 1.0E-05 pressure 0 protHF_MD {DFT Single Point + Non-local Molecular Dynamics} protHF_Opt {DFT Single Point + Non-local Structure Optimization} protHF_SP {DFT Single Point + Non-local Single Point} read_poscar 0 reducedFFTHF 0 refit_MLFF {for fast running applications} response 0 response_ismear {Tetrahedron with Bloechl corrections} response_kmesh {as for DOS and optics} response_mporder 1 response_sigma 0.2 response_sigmaGauss 0.05 restart_MLFF {} restart_MLFF_prefix {} restart_chg {} restart_chg_prefix {} restart_type {constant energy cutoff} restart_wave {} restart_wave_prefix {} restart_waveder {} restart_wtmp {} rpar_calculation {single point energy (all systems)} rpar_convergence 0.02 rpar_mintrjfrequency 1 rpar_nomega 12 rpar_nsteps 100 rpar_sigma 0.1 rpar_tempmode {T = 0K (systems with band gap)} scissors {} sigma 0.2 sigmaGauss 0.05 sltmp2_estop {} sltmp2_nstorb {} smass {} smass_real {} solvation_energy 0 solvent_dielectric 78.4 spinaxis_x {} spinaxis_y {} spinaxis_z {} spininterpol Vosko-Wilk-Nusair spring -5 summary Structure_opt_BPDABAPP_6 tebeg {} teend {} thomasFermi 1.8 thomasFermi_choice {average valence density} thomasFermi_fromDensity 1.6237872143195173 timestep 0.4 timestep_initial 0.4 totalmoment {} u-j_parameter {} u_parameter {} van_der_Waals None van_der_Waals_functional optB86b-vdW vibrations 0 voskown {} weights {} workfunction 0} SimulationOptions { _description_ {} _name_ {MedeA3.6 VASP6.3.2 default} _protocol_id_ 4 _protocol_pid_ 19 _protocol_type_ Simulation _version_ 2.0 a 1 alpha 1 andersen_prob 0.1 averagefrequency 40.0 b 1 beta 1 c 1 calculation {Structure Optimization} convergence 0.02 eachstep 0 econvergence 1.0e-03 endtemperature {} ensemble {micro canonical (nVE)} gamma 1 mintrjfile trajectory.data mintrjfrequency 1 nosemass {} npt_alpha constrain npt_aparam none npt_beta constrain npt_bparam none npt_constraints isotropic npt_cparam none npt_gamma constrain npt_monitoralpha none npt_monitoraparam none npt_monitorbeta none npt_monitorbparam none npt_monitorcparam none npt_monitorgamma none npt_monitorvolume monitor npt_volume none nsteps 100 nve_thermostat Nosé-Hoover nvt_thermostat Nosé-Hoover paircorrdistance 16.0 paircorrslots 256 pmass {} relaxalgo {Conjugate Gradient} relaxatompos 1 relaxatoms 1 relaxcell 0 relaxvolume 0 restart_md {} restart_md_prefix {} strain 0.01 strains 0.005 temperature 298.0 time 120.0 timestep 4.0 trjfile trajectory.data trjfrequency 1 use_wavecars 0 version 6 yinatoms {} yinyang 0 } } } Connections { md-stage-start-e9d70a33-f7b4-4e3f-8942-155d5d8f16ad,md-vasp6api-stage-b09f7048-e024-429f-b526-36a0a1c596ae 1 } } data.workspace {Class ::MD::Workspace Version 1.0 Packages { MD::Db::MaterialsDesign 1.0 MD::Db::ICSD 1.0 MD::Db::COD 1.0 jobcontrol 3.0 Thread 2.8.7 MD::FF 1.0.1 MD::Db 1.1 MD::Db::Pearson 1.0 database 1.0 MD::Db::MetaDb 1.1 MD::Db::NCD 1.0 MD::Db::Pauling 1.0 Utility 1.0 } Variables { scalar ::MedeADb C:/MD_3.10.0/Databases/MedeA.db array ::Units {scalar energy eV} object ::system {::System {@Title amorphous(poly(Untitled)) @Columns AsymmetricAtom AtomicNumber int 0 Connections string {{}} FFAtomType string {{}} FFCharge double 0.0 Fractional double {{0.0 0.0 0.0}} Name string {{}} Site int 1 WyckoffPosition int -1 @end @data 6 {} C 0.0 {0.49442395073 0.050208825439 0.0614100052408} Untitled_1::C1 1 -1 1 {} H 0.0 {0.635272537208 0.144074118792 0.957729168266} Untitled_1::H1 2 -1 6 {} C 0.0 {0.533019347164 0.0818902689673 0.997493706904} Untitled_1::C2 3 -1 1 {} H 0.0 {0.507589422391 0.0772998935752 0.939875186512} Untitled_1::H2 4 -1 6 {} C 0.0 {0.604881930258 0.119990487875 0.00780095911534} Untitled_1::C3 5 -1 6 {} C 0.0 {0.521828029587 0.0666335935811 0.137144439828} Untitled_1::C4 6 -1 1 {} H 0.0 {0.487951776352 0.0493001794833 0.187471809108} Untitled_1::H3 7 -1 6 {} C 0.0 {0.59314972482 0.105721933075 0.147500140914} Untitled_1::C5 8 -1 1 {} H 0.0 {0.61360085604 0.11960094295 0.2057265045} Untitled_1::H4 9 -1 6 {} C 0.0 {0.637330389122 0.126956160089 0.0828207598403} Untitled_1::C6 10 -1 8 {} O 0.0 {0.719873208121 0.157394554325 0.0927081835631} Untitled_1::O1 11 -1 6 {} C 0.0 {0.725296638537 0.23434417998 0.135568746377} Untitled_1::C7 12 -1 1 {} H 0.0 {0.649011288013 0.417750561543 0.135922836325} Untitled_1::H5 13 -1 6 {} C 0.0 {0.674175166736 0.295284712385 0.118696593494} Untitled_1::C8 14 -1 1 {} H 0.0 {0.623041837984 0.285001283205 0.0824477321062} Untitled_1::H6 15 -1 6 {} C 0.0 {0.688811709159 0.370046641503 0.149013221995} Untitled_1::C9 16 -1 6 {} C 0.0 {0.786080163422 0.245994723304 0.189910716485} Untitled_1::C10 17 -1 1 {} H 0.0 {0.822279203503 0.197044029096 0.207900092444} Untitled_1::H7 18 -1 6 {} C 0.0 {0.800133575625 0.320574217006 0.220852157506} Untitled_1::C11 19 -1 1 {} H 0.0 {0.8457206581 0.329038186867 0.263809226645} Untitled_1::H8 20 -1 6 {} C 0.0 {0.75489846969 0.383397662897 0.196748350072} Untitled_1::C12 21 -1 6 {} C 0.0 {0.774337711545 0.468218241546 0.222880262289} Untitled_1::C13 22 -1 6 {} C 0.0 {0.843958991767 0.473258138063 0.286472750156} Untitled_1::C14 23 -1 1 {} H 0.0 {0.0436643783864 0.462856139158 0.296903962761} Untitled_1::H9 24 -1 6 {} C 0.0 {0.921270052172 0.457841494315 0.263537613143} Untitled_1::C15 25 -1 1 {} H 0.0 {0.932959664928 0.434083413234 0.206098698221} Untitled_1::H10 26 -1 6 {} C 0.0 {0.984139396468 0.473082876459 0.315603001121} Untitled_1::C16 27 -1 6 {} C 0.0 {0.830185447387 0.499058621082 0.363992719858} Untitled_1::C17 28 -1 1 {} H 0.0 {0.771451636305 0.50727970596 0.384393557141} Untitled_1::H11 29 -1 6 {} C 0.0 {0.892878418299 0.513853195247 0.415106247881} Untitled_1::C18 30 -1 1 {} H 0.0 {0.881333681267 0.535036794801 0.473428081449} Untitled_1::H12 31 -1 6 {} C 0.0 {0.969498956729 0.501416505869 0.391418595166} Untitled_1::C19 32 -1 8 {} O 0.0 {0.0368110694062 0.515182994827 0.449188045828} Untitled_1::O2 33 -1 6 {} C 0.0 {0.0733730031134 0.598210083306 0.450058485103} Untitled_1::C20 34 -1 1 {} H 0.0 {0.170489209016 0.727750865074 0.332415323059} Untitled_1::H13 35 -1 6 {} C 0.0 {0.100019493731 0.633674002728 0.381386760465} Untitled_1::C21 36 -1 1 {} H 0.0 {0.0834353271523 0.609996268083 0.324935794318} Untitled_1::H14 37 -1 6 {} C 0.0 {0.148845683711 0.701321546335 0.38571265382} Untitled_1::C22 38 -1 6 {} C 0.0 {0.0864753044843 0.635934891241 0.522567059802} Untitled_1::C23 39 -1 1 {} H 0.0 {0.0588555918358 0.61348889835 0.575032262001} Untitled_1::H15 40 -1 6 {} C 0.0 {0.135383336491 0.703185083008 0.527295204283} Untitled_1::C24 41 -1 1 {} H 0.0 {0.146615164105 0.730090645822 0.583481049386} Untitled_1::H16 42 -1 6 {} C 0.0 {0.169590487015 0.734084258442 0.459503655731} Untitled_1::C25 43 -1 6 {} C 0.0 {0.801214856993 0.515573955336 0.152728552179} Untitled_1::C26 44 -1 6 {} C 0.0 {0.699358417453 0.506116876482 0.252279812271} Untitled_1::C27 45 -1 1 {} H 0.0 {0.811189600301 0.575565385696 0.170088414967} Untitled_1::H17 46 -1 1 {} H 0.0 {0.756762226104 0.51370902746 0.107765904657} Untitled_1::H18 47 -1 1 {} H 0.0 {0.85383294301 0.49122038104 0.130656513538} Untitled_1::H19 48 -1 1 {} H 0.0 {0.711673624119 0.562709467846 0.27744468497} Untitled_1::H20 49 -1 1 {} H 0.0 {0.672540666324 0.469323531458 0.294120645177} Untitled_1::H21 50 -1 1 {} H 0.0 {0.659160364556 0.511366787774 0.204279720725} Untitled_1::H22 51 -1 6 {} C 0.0 {0.0699315759428 0.678401378757 0.825774863171} Untitled_1::C28 52 -1 1 {} H 0.0 {0.175588812757 0.845308753322 0.817243851631} Untitled_1::H23 53 -1 6 {} C 0.0 {0.102738147494 0.745300832313 0.7969239667} Untitled_1::C29 54 -1 6 {} C 0.0 {0.148826563774 0.793573718141 0.841880581814} Untitled_1::C30 55 -1 6 {} C 0.0 {0.0776156778193 0.656333434615 0.902052745374} Untitled_1::C31 56 -1 1 {} H 0.0 {0.0501373095752 0.603467642489 0.923460761557} Untitled_1::H24 57 -1 6 {} C 0.0 {0.122496865919 0.704263027052 0.951964705511} Untitled_1::C32 58 -1 1 {} H 0.0 {0.128499008506 0.689211419227 0.0131975251013} Untitled_1::H25 59 -1 6 {} C 0.0 {0.160413659428 0.77297581646 0.921121344753} Untitled_1::C33 60 -1 6 {} C 0.0 {0.0255312933455 0.635982686832 0.760623928998} Untitled_1::C34 61 -1 6 {} C 0.0 {0.0807476729291 0.754467346464 0.710477255992} Untitled_1::C35 62 -1 7 {} N 0.0 {0.0329893428991 0.68472198678 0.688716852809} Untitled_1::N1 63 -1 8 {} O 0.0 {0.102855353322 0.820011527113 0.657914951835} Untitled_1::O3 64 -1 8 {} O 0.0 {0.982798995212 0.560554118398 0.767597142579} Untitled_1::O4 65 -1 6 {} C 0.0 {0.212825440465 0.823669653985 0.974685363411} Untitled_1::C36 66 -1 6 {} C 0.0 {0.262434069338 0.882642806725 0.942361574253} Untitled_1::C37 67 -1 1 {} H 0.0 {0.258040382764 0.899314092457 0.88131215301} Untitled_1::H26 68 -1 6 {} C 0.0 {0.316026907262 0.918181176878 0.992190019454} Untitled_1::C38 69 -1 6 {} C 0.0 {0.215385737754 0.808238827736 0.0567844230872} Untitled_1::C39 70 -1 1 {} H 0.0 {0.176451288139 0.76537074208 0.0823352754234} Untitled_1::H27 71 -1 6 {} C 0.0 {0.268495176669 0.84880165405 0.104557590748} Untitled_1::C40 72 -1 1 {} H 0.0 {0.270939394682 0.837860031157 0.1668437382} Untitled_1::H28 73 -1 6 {} C 0.0 {0.317370835105 0.902276630228 0.0705156157367} Untitled_1::C41 74 -1 6 {} C 0.0 {0.380446864862 0.951155272903 0.111095778617} Untitled_1::C42 75 -1 6 {} C 0.0 {0.381003357924 0.978895137188 0.972709654573} Untitled_1::C43 76 -1 7 {} N 0.0 {0.422033395961 0.9978233496 0.0492522627443} Untitled_1::N2 77 -1 8 {} O 0.0 {0.400716323841 0.0107664812357 0.893753345306} Untitled_1::O5 78 -1 8 {} O 0.0 {0.398612487428 0.949988804278 0.195986712139} Untitled_1::O6 79 -1 6 {} C 0.0 {0.669103735165 0.317739517704 0.774160873994} Untitled_2::C1 80 -1 1 {} H 0.0 {0.648731736014 0.395986596458 0.957474926594} Untitled_2::H1 81 -1 6 {} C 0.0 {0.641507057944 0.32672163654 0.850955155446} Untitled_2::C2 82 -1 1 {} H 0.0 {0.598567851259 0.286494427182 0.874201278616} Untitled_2::H2 83 -1 6 {} C 0.0 {0.670214800598 0.388978016232 0.898422680466} Untitled_2::C3 84 -1 6 {} C 0.0 {0.731984010231 0.365247448123 0.748876206408} Untitled_2::C4 85 -1 1 {} H 0.0 {0.757597731902 0.355479329811 0.692150920922} Untitled_2::H3 86 -1 6 {} C 0.0 {0.761343048422 0.426072542776 0.797065216648} Untitled_2::C5 87 -1 1 {} H 0.0 {0.811139859973 0.460141871665 0.778096516674} Untitled_2::H4 88 -1 6 {} C 0.0 {0.726246370191 0.441735439509 0.868914063558} Untitled_2::C6 89 -1 8 {} O 0.0 {0.746156818648 0.516556459053 0.915583155114} Untitled_2::O1 90 -1 6 {} C 0.0 {0.827531421942 0.523192715787 0.954107551418} Untitled_2::C7 91 -1 1 {} H 0.0 {0.928528998849 0.466182626146 0.11618934686} Untitled_2::H5 92 -1 6 {} C 0.0 {0.846325204037 0.47983790839 0.0204150715249} Untitled_2::C8 93 -1 1 {} H 0.0 {0.810399340586 0.430430551901 0.0375241018517} Untitled_2::H6 94 -1 6 {} C 0.0 {0.912839313431 0.500615575459 0.0654745439597} Untitled_2::C9 95 -1 6 {} C 0.0 {0.880448233423 0.580002586135 0.927471967626} Untitled_2::C10 96 -1 1 {} H 0.0 {0.872070455683 0.606377544836 0.871221740508} Untitled_2::H7 97 -1 6 {} C 0.0 {0.945272479492 0.602200936843 0.973751047422} Untitled_2::C11 98 -1 1 {} H 0.0 {0.983633468136 0.64764103119 0.953963215708} Untitled_2::H8 99 -1 6 {} C 0.0 {0.959348912813 0.565103557918 0.0446381006792} Untitled_2::C12 100 -1 6 {} C 0.0 {0.028890469978 0.589925951178 0.100668049251} Untitled_2::C13 101 -1 6 {} C 0.0 {0.0431320773166 0.682075171041 0.111045649281} Untitled_2::C14 102 -1 1 {} H 0.0 {0.107974247703 0.811630090632 0.252079918653} Untitled_2::H9 103 -1 6 {} C 0.0 {0.0644926771597 0.711541132449 0.185675927186} Untitled_2::C15 104 -1 1 {} H 0.0 {0.0607570426595 0.673867678974 0.235896325807} Untitled_2::H10 105 -1 6 {} C 0.0 {0.0907151565631 0.790545493419 0.195042038539} Untitled_2::C16 106 -1 6 {} C 0.0 {0.0407097345538 0.732996698658 0.0482252067839} Untitled_2::C17 107 -1 1 {} H 0.0 {0.0204930561083 0.71280793688 0.992347604602} Untitled_2::H11 108 -1 6 {} C 0.0 {0.0652336381589 0.811934402257 0.0573320055357} Untitled_2::C18 109 -1 1 {} H 0.0 {0.0617128104678 0.851371104397 0.00792098756405} Untitled_2::H12 110 -1 6 {} C 0.0 {0.0938453528498 0.840083130514 0.130425464611} Untitled_2::C19 111 -1 8 {} O 0.0 {0.125663281854 0.92595475052 0.134808957144} Untitled_2::O2 112 -1 6 {} C 0.0 {0.167600825906 0.953578606098 0.211928459578} Untitled_2::C20 113 -1 1 {} H 0.0 {0.12700672573 5.69761412943e-005 0.402208598141} Untitled_2::H13 114 -1 6 {} C 0.0 {0.127974752799 0.954867031695 0.283228108314} Untitled_2::C21 115 -1 1 {} H 0.0 {0.0738947706108 0.922955032694 0.289682209224} Untitled_2::H14 116 -1 6 {} C 0.0 {0.159118289346 0.998033891485 0.347892809159} Untitled_2::C22 117 -1 6 {} C 0.0 {0.244339781143 0.985614403294 0.208338871575} Untitled_2::C23 118 -1 1 {} H 0.0 {0.279678924896 0.976770798675 0.156582903536} Untitled_2::H15 119 -1 6 {} C 0.0 {0.275562260287 0.0291608337957 0.27294566969} Untitled_2::C24 120 -1 1 {} H 0.0 {0.333366174372 0.054933535211 0.268931070894} Untitled_2::H16 121 -1 6 {} C 0.0 {0.231702936337 0.0385473755951 0.341250727703} Untitled_2::C25 122 -1 6 {} C 0.0 {0.013590504445 0.554530012721 0.180840188552} Untitled_2::C26 123 -1 6 {} C 0.0 {0.103148255411 0.553899333309 0.0692507932975} Untitled_2::C27 124 -1 1 {} H 0.0 {0.0625052202548 0.566543086951 0.218719859101} Untitled_2::H17 125 -1 1 {} H 0.0 {0.00651089114391 0.49201730306 0.174806752255} Untitled_2::H18 126 -1 1 {} H 0.0 {0.960870815567 0.579361131821 0.205505660046} Untitled_2::H19 127 -1 1 {} H 0.0 {0.151150177394 0.567776472241 0.107842049394} Untitled_2::H20 128 -1 1 {} H 0.0 {0.11485185622 0.576878193728 0.0116882146973} Untitled_2::H21 129 -1 1 {} H 0.0 {0.0959848399061 0.491242268243 0.06576575912} Untitled_2::H22 130 -1 6 {} C 0.0 {0.333513246558 0.899746876546 0.428061079588} Untitled_2::C28 131 -1 1 {} H 0.0 {0.366544383095 0.969265709079 0.614005005175} Untitled_2::H23 132 -1 6 {} C 0.0 {0.324636797016 0.90884514105 0.507175987298} Untitled_2::C29 133 -1 6 {} C 0.0 {0.372673348816 0.963301798035 0.551283291857} Untitled_2::C30 134 -1 6 {} C 0.0 {0.38777750834 0.941576404234 0.385729478146} Untitled_2::C31 135 -1 1 {} H 0.0 {0.394254618152 0.93185675778 0.323662766383} Untitled_2::H24 136 -1 6 {} C 0.0 {0.435601815758 0.997253301261 0.424551992517} Untitled_2::C32 137 -1 1 {} H 0.0 {0.476881616935 0.0318076330925 0.390858993549} Untitled_2::H25 138 -1 6 {} C 0.0 {0.430169662235 0.00916504512456 0.507378656427} Untitled_2::C33 139 -1 6 {} C 0.0 {0.275464966493 0.836412082317 0.396262628445} Untitled_2::C34 140 -1 6 {} C 0.0 {0.258005357501 0.851190592601 0.536009452665} Untitled_2::C35 141 -1 7 {} N 0.0 {0.230125101669 0.804341633154 0.463863794482} Untitled_2::N1 142 -1 8 {} O 0.0 {0.229190029932 0.842337073119 0.617377199645} Untitled_2::O3 143 -1 8 {} O 0.0 {0.267962021023 0.810353883418 0.313538860626} Untitled_2::O4 144 -1 6 {} C 0.0 {0.490262855613 0.0720731970326 0.544509420458} Untitled_2::C36 145 -1 6 {} C 0.0 {0.489855009359 0.0991533078094 0.625422570123} Untitled_2::C37 146 -1 1 {} H 0.0 {0.447598862458 0.077763476346 0.667072793351} Untitled_2::H26 147 -1 6 {} C 0.0 {0.548448186409 0.156288652352 0.647150013041} Untitled_2::C38 148 -1 6 {} C 0.0 {0.547753328372 0.10363452657 0.49231823995} Untitled_2::C39 149 -1 1 {} H 0.0 {0.548009389671 0.085328545802 0.431989307667} Untitled_2::H27 150 -1 6 {} C 0.0 {0.603844608688 0.158272313949 0.518038626684} Untitled_2::C40 151 -1 1 {} H 0.0 {0.647694634277 0.180368464457 0.477970031325} Untitled_2::H28 152 -1 6 {} C 0.0 {0.602309952151 0.183044581474 0.59411207252} Untitled_2::C41 153 -1 6 {} C 0.0 {0.657949272918 0.243483804673 0.632433692769} Untitled_2::C42 154 -1 6 {} C 0.0 {0.563605586227 0.198656403118 0.728293249508} Untitled_2::C43 155 -1 7 {} N 0.0 {0.632300570491 0.255921746586 0.715551215059} Untitled_2::N2 156 -1 8 {} O 0.0 {0.519011955168 0.186961957965 0.802015436817} Untitled_2::O5 157 -1 8 {} O 0.0 {0.724065830893 0.283911423924 0.59286385708} Untitled_2::O6 158 -1 6 {} C 0.0 {0.678944362365 0.58320858335 0.796751319586} Untitled_3::C1 159 -1 1 {} H 0.0 {0.868679205535 0.642170734059 0.771622767761} Untitled_3::H1 160 -1 6 {} C 0.0 {0.752193979213 0.591484794552 0.761300512246} Untitled_3::C2 161 -1 1 {} H 0.0 {0.762954053835 0.565727468944 0.704898475686} Untitled_3::H2 162 -1 6 {} C 0.0 {0.813192907395 0.633812672659 0.80033468426} Untitled_3::C3 163 -1 6 {} C 0.0 {0.663738506845 0.625220081704 0.866572069215} Untitled_3::C4 164 -1 1 {} H 0.0 {0.60511752509 0.626308519666 0.890147095684} Untitled_3::H3 165 -1 6 {} C 0.0 {0.724501984296 0.665902794941 0.906050895803} Untitled_3::C5 166 -1 1 {} H 0.0 {0.711691966222 0.697515013746 0.959252323358} Untitled_3::H4 167 -1 6 {} C 0.0 {0.800778759183 0.665076717966 0.876311659119} Untitled_3::C6 168 -1 8 {} O 0.0 {0.871564350402 0.695702134177 0.927165038759} Untitled_3::O1 169 -1 6 {} C 0.0 {0.893306920512 0.784847467218 0.926461287401} Untitled_3::C7 170 -1 1 {} H 0.0 {0.990171447834 0.920431576847 0.815161014939} Untitled_3::H5 171 -1 6 {} C 0.0 {0.929478486994 0.81847856116 0.861316146241} Untitled_3::C8 172 -1 1 {} H 0.0 {0.93317127364 0.785931934192 0.806920026245} Untitled_3::H6 173 -1 6 {} C 0.0 {0.961967402916 0.895490613995 0.866122048933} Untitled_3::C9 174 -1 6 {} C 0.0 {0.883224446644 0.831082823347 0.995265787368} Untitled_3::C10 175 -1 1 {} H 0.0 {0.850964294653 0.80740104701 0.0443130776004} Untitled_3::H7 176 -1 6 {} C 0.0 {0.915859048152 0.908908222764 0.000405874064235} Untitled_3::C11 177 -1 1 {} H 0.0 {0.907855311051 0.943176339363 0.0530831351152} Untitled_3::H8 178 -1 6 {} C 0.0 {0.957468891647 0.940375770616 0.936847257463} Untitled_3::C12 179 -1 6 {} C 0.0 {0.997002877277 0.0268985939521 0.938759987932} Untitled_3::C13 180 -1 6 {} C 0.0 {0.0472799005627 0.0517160984111 0.0168736030915} Untitled_3::C14 181 -1 1 {} H 0.0 {0.228400547017 0.0292744630607 0.10487798805} Untitled_3::H9 182 -1 6 {} C 0.0 {0.123077941247 0.0211677663995 0.031677290935} Untitled_3::C15 183 -1 1 {} H 0.0 {0.145970689888 0.975174816901 0.995119939431} Untitled_3::H10 184 -1 6 {} C 0.0 {0.169858648028 0.0511330925316 0.0958459205154} Untitled_3::C16 185 -1 6 {} C 0.0 {0.0179359272066 0.109590678579 0.0681411468407} Untitled_3::C17 186 -1 1 {} H 0.0 {0.959393549628 0.131423866986 0.0601608336004} Untitled_3::H11 187 -1 6 {} C 0.0 {0.0645564438947 0.139433007058 0.130984270814} Untitled_3::C18 188 -1 1 {} H 0.0 {0.0420239197825 0.186358169296 0.166827316305} Untitled_3::H12 189 -1 6 {} C 0.0 {0.139383113653 0.108965772192 0.146638763619} Untitled_3::C19 190 -1 8 {} O 0.0 {0.184875600088 0.136315660815 0.222413493261} Untitled_3::O2 191 -1 6 {} C 0.0 {0.255576546124 0.195675644924 0.216408229844} Untitled_3::C20 192 -1 1 {} H 0.0 {0.456326474408 0.193994192474 0.22036104292} Untitled_3::H13 193 -1 6 {} C 0.0 {0.332001163858 0.167287685409 0.209450186391} Untitled_3::C21 194 -1 1 {} H 0.0 {0.341576626681 0.107656030699 0.191059125244} Untitled_3::H14 195 -1 6 {} C 0.0 {0.397624581394 0.21679044223 0.226735626531} Untitled_3::C22 196 -1 6 {} C 0.0 {0.24440361866 0.276472027898 0.228783882441} Untitled_3::C23 197 -1 1 {} H 0.0 {0.186597962257 0.301009037395 0.223728658678} Untitled_3::H15 198 -1 6 {} C 0.0 {0.310118651356 0.326716243155 0.247746705007} Untitled_3::C24 199 -1 1 {} H 0.0 {0.300575203661 0.387759295805 0.258616256188} Untitled_3::H16 200 -1 6 {} C 0.0 {0.386554034435 0.295533232549 0.251746959969} Untitled_3::C25 201 -1 6 {} C 0.0 {0.0517138990511 0.0321057183969 0.868472126656} Untitled_3::C26 202 -1 6 {} C 0.0 {0.931591348355 0.0872219763899 0.927488048811} Untitled_3::C27 203 -1 1 {} H 0.0 {0.0758764180885 0.0901309326956 0.864796292039} Untitled_3::H17 204 -1 1 {} H 0.0 {0.0193842676227 0.0192625572725 0.81552169305} Untitled_3::H18 205 -1 1 {} H 0.0 {0.0984591426442 0.990112709802 0.87519938939} Untitled_3::H19 206 -1 1 {} H 0.0 {0.956587754757 0.145210429106 0.924249143824} Untitled_3::H20 207 -1 1 {} H 0.0 {0.891531582317 0.0842471051212 0.976306986234} Untitled_3::H21 208 -1 1 {} H 0.0 {0.900267168643 0.0746806331419 0.873918626404} Untitled_3::H22 209 -1 6 {} C 0.0 {0.268832139204 0.164338133416 0.535782378102} Untitled_3::C28 210 -1 1 {} H 0.0 {0.439602594881 0.263128291475 0.496310860367} Untitled_3::H23 211 -1 6 {} C 0.0 {0.333420065788 0.189055538383 0.49518400054} Untitled_3::C29 212 -1 6 {} C 0.0 {0.38763122133 0.245461569647 0.527630344479} Untitled_3::C30 213 -1 6 {} C 0.0 {0.250671761217 0.191924694282 0.607505032815} Untitled_3::C31 214 -1 1 {} H 0.0 {0.199203386631 0.170997281829 0.637502113917} Untitled_3::H24 215 -1 6 {} C 0.0 {0.29917678403 0.248454614295 0.642421594693} Untitled_3::C32 216 -1 1 {} H 0.0 {0.283762154878 0.270978968631 0.699008685389} Untitled_3::H25 217 -1 6 {} C 0.0 {0.368830510491 0.276736019644 0.604356693272} Untitled_3::C33 218 -1 6 {} C 0.0 {0.22193632679 0.102967869616 0.488180499709} Untitled_3::C34 219 -1 6 {} C 0.0 {0.33463280876 0.146663951041 0.414013851302} Untitled_3::C35 220 -1 7 {} N 0.0 {0.261434533669 0.0929561623219 0.410637339106} Untitled_3::N1 221 -1 8 {} O 0.0 {0.394016559517 0.157539518245 0.351815552003} Untitled_3::O3 222 -1 8 {} O 0.0 {0.149468002333 0.0622210525994 0.514672389226} Untitled_3::O4 223 -1 6 {} C 0.0 {0.418141778935 0.342523555966 0.652343733606} Untitled_3::C36 224 -1 6 {} C 0.0 {0.495252105996 0.375821538383 0.631205472146} Untitled_3::C37 225 -1 1 {} H 0.0 {0.525291562822 0.359428622613 0.577713184382} Untitled_3::H26 226 -1 6 {} C 0.0 {0.528778789393 0.43240263154 0.686431431591} Untitled_3::C38 227 -1 6 {} C 0.0 {0.381914312016 0.368858759698 0.722679885975} Untitled_3::C39 228 -1 1 {} H 0.0 {0.326443807884 0.344216394594 0.739430639164} Untitled_3::H27 229 -1 6 {} C 0.0 {0.416677098901 0.425635209967 0.770977174627} Untitled_3::C40 230 -1 1 {} H 0.0 {0.386510634171 0.446089695291 0.823022251396} Untitled_3::H28 231 -1 6 {} C 0.0 {0.488340702878 0.455032957164 0.752028139805} Untitled_3::C41 232 -1 6 {} C 0.0 {0.535213908477 0.515751045257 0.79997230567} Untitled_3::C42 233 -1 6 {} C 0.0 {0.610670483431 0.477607440128 0.686244212646} Untitled_3::C43 234 -1 7 {} N 0.0 {0.61200660719 0.529095103527 0.761438013323} Untitled_3::N2 235 -1 8 {} O 0.0 {0.674108497409 0.470355705415 0.627125318619} Untitled_3::O5 236 -1 8 {} O 0.0 {0.509090144703 0.552913238168 0.873839067148} Untitled_3::O6 237 -1 6 {} C 0.0 {0.931552032217 0.868054754757 0.555024121567} Untitled_4::C1 238 -1 1 {} H 0.0 {0.907443793811 0.0355376101349 0.663093701668} Untitled_4::H1 239 -1 6 {} C 0.0 {0.89382405771 0.923710325301 0.602576351343} Untitled_4::C2 240 -1 1 {} H 0.0 {0.833952573325 0.914864678644 0.620838811513} Untitled_4::H2 241 -1 6 {} C 0.0 {0.935796898335 0.992203963974 0.626961713873} Untitled_4::C3 242 -1 6 {} C 0.0 {0.0127144886204 0.874369844084 0.544027683411} Untitled_4::C4 243 -1 1 {} H 0.0 {0.0441072867469 0.827036970755 0.516515244581} Untitled_4::H3 244 -1 6 {} C 0.0 {0.0537288302733 0.941087028803 0.568370904853} Untitled_4::C5 245 -1 1 {} H 0.0 {0.116260716651 0.94422511274 0.559861886264} Untitled_4::H4 246 -1 6 {} C 0.0 {0.0146085528205 0.00287219195723 0.603630271802} Untitled_4::C6 247 -1 8 {} O 0.0 {0.0574966615389 0.081691518966 0.615886995941} Untitled_4::O1 248 -1 6 {} C 0.0 {0.0920467995652 0.0963619798892 0.697542082418} Untitled_4::C7 249 -1 1 {} H 0.0 {0.0706564653417 0.221776484771 0.85210449148} Untitled_4::H5 250 -1 6 {} C 0.0 {0.0594264648144 0.154660999417 0.745214089875} Untitled_4::C8 251 -1 1 {} H 0.0 {0.00612091244867 0.183698723502 0.727260560826} Untitled_4::H6 252 -1 6 {} C 0.0 {0.095557596728 0.175638314978 0.816573490691} Untitled_4::C9 253 -1 6 {} C 0.0 {0.158621865871 0.0560934783906 0.723384608492} Untitled_4::C10 254 -1 1 {} H 0.0 {0.182739034952 0.00938699685917 0.688387612946} Untitled_4::H7 255 -1 6 {} C 0.0 {0.194442151514 0.0766470634697 0.795417490961} Untitled_4::C11 256 -1 1 {} H 0.0 {0.246138945977 0.045433742019 0.81524306713} Untitled_4::H8 257 -1 6 {} C 0.0 {0.163310429325 0.136906937903 0.841526965166} Untitled_4::C12 258 -1 6 {} C 0.0 {0.202741052531 0.158178773387 0.921470777005} Untitled_4::C13 259 -1 6 {} C 0.0 {0.269566568098 0.219823836697 0.913594893746} Untitled_4::C14 260 -1 1 {} H 0.0 {0.326765818256 0.396419176922 0.98835932691} Untitled_4::H9 261 -1 6 {} C 0.0 {0.26514758061 0.291205927089 0.954463906041} Untitled_4::C15 262 -1 1 {} H 0.0 {0.211788111657 0.307265045187 0.983914056709} Untitled_4::H10 263 -1 6 {} C 0.0 {0.330211020247 0.342013286807 0.956787001095} Untitled_4::C16 264 -1 6 {} C 0.0 {0.33584042268 0.202682499358 0.870601271633} Untitled_4::C17 265 -1 1 {} H 0.0 {0.337485514923 0.150775823406 0.834129674952} Untitled_4::H11 266 -1 6 {} C 0.0 {0.400481734359 0.252492979581 0.873595802007} Untitled_4::C18 267 -1 1 {} H 0.0 {0.452583440441 0.237684370021 0.841522182322} Untitled_4::H12 268 -1 6 {} C 0.0 {0.398522216407 0.321590340481 0.918217556243} Untitled_4::C19 269 -1 8 {} O 0.0 {0.471952045029 0.372410131516 0.920839520382} Untitled_4::O2 270 -1 6 {} C 0.0 {0.473916901304 0.437544084183 0.98309141315} Untitled_4::C20 271 -1 1 {} H 0.0 {0.40672169037 0.622376518814 0.0131690819349} Untitled_4::H13 272 -1 6 {} C 0.0 {0.425949641622 0.503039056093 0.976095374932} Untitled_4::C21 273 -1 1 {} H 0.0 {0.375108421754 0.501526648721 0.938151640437} Untitled_4::H14 274 -1 6 {} C 0.0 {0.443716209085 0.571381291898 0.0188771974615} Untitled_4::C22 275 -1 6 {} C 0.0 {0.530695829983 0.435445376338 0.0429934825963} Untitled_4::C23 276 -1 1 {} H 0.0 {0.561134364053 0.381640258139 0.0554650852994} Untitled_4::H15 277 -1 6 {} C 0.0 {0.548062984543 0.503743510224 0.0867525086168} Untitled_4::C24 278 -1 1 {} H 0.0 {0.590652522827 0.501559051494 0.133508831517} Untitled_4::H16 279 -1 6 {} C 0.0 {0.509596234488 0.57359881079 0.0693187408562} Untitled_4::C25 280 -1 6 {} C 0.0 {0.139978340884 0.188950259692 0.977873784413} Untitled_4::C26 281 -1 6 {} C 0.0 {0.237688882788 0.0830093060714 0.954445732015} Untitled_4::C27 282 -1 1 {} H 0.0 {0.165805552739 0.199671198254 0.0347617147535} Untitled_4::H17 283 -1 1 {} H 0.0 {0.0939807574555 0.14616245776 0.983482503188} Untitled_4::H18 284 -1 1 {} H 0.0 {0.115783485753 0.242755111723 0.955186785729} Untitled_4::H19 285 -1 1 {} H 0.0 {0.261726654303 0.0941926919298 0.0118413166791} Untitled_4::H20 286 -1 1 {} H 0.0 {0.28363574932 0.062449762323 0.91597535928} Untitled_4::H21 287 -1 1 {} H 0.0 {0.192673743591 0.0393601008276 0.958995695664} Untitled_4::H22 288 -1 6 {} C 0.0 {0.59909219975 0.380218029401 0.313660679569} Untitled_4::C28 289 -1 1 {} H 0.0 {0.566510950207 0.571117065342 0.368577974168} Untitled_4::H23 290 -1 6 {} C 0.0 {0.558718290529 0.447706582795 0.328750405768} Untitled_4::C29 291 -1 6 {} C 0.0 {0.598457491074 0.518523095693 0.355287961156} Untitled_4::C30 292 -1 6 {} C 0.0 {0.678247425446 0.37363643388 0.323250270715} Untitled_4::C31 293 -1 1 {} H 0.0 {0.707196222951 0.318662365139 0.311378292291} Untitled_4::H24 294 -1 6 {} C 0.0 {0.721869593315 0.43880866925 0.347766195818} Untitled_4::C32 295 -1 1 {} H 0.0 {0.78371388442 0.432080405271 0.355955867354} Untitled_4::H25 296 -1 6 {} C 0.0 {0.683707257743 0.514871981345 0.362739250605} Untitled_4::C33 297 -1 6 {} C 0.0 {0.543241655538 0.314654901765 0.285010560066} Untitled_4::C34 298 -1 6 {} C 0.0 {0.468407131628 0.432129944066 0.310699725563} Untitled_4::C35 299 -1 7 {} N 0.0 {0.461746226259 0.345901131822 0.281053259655} Untitled_4::N1 300 -1 8 {} O 0.0 {0.403674583089 0.489081455747 0.319792960315} Untitled_4::O3 301 -1 8 {} O 0.0 {0.566888169044 0.234220524221 0.264210153012} Untitled_4::O4 302 -1 6 {} C 0.0 {0.740674125888 0.589311900147 0.379883561825} Untitled_4::C36 303 -1 6 {} C 0.0 {0.72659489405 0.651293914015 0.436749919962} Untitled_4::C37 304 -1 1 {} H 0.0 {0.670263391345 0.660037282933 0.462479548675} Untitled_4::H26 305 -1 6 {} C 0.0 {0.793295520195 0.70065997376 0.456362832195} Untitled_4::C38 306 -1 6 {} C 0.0 {0.813414446168 0.58787641092 0.341357756445} Untitled_4::C39 307 -1 1 {} H 0.0 {0.819950481426 0.551448167406 0.291336367908} Untitled_4::H27 308 -1 6 {} C 0.0 {0.875987110439 0.634819814569 0.365017585437} Untitled_4::C40 309 -1 1 {} H 0.0 {0.932484953655 0.628686253432 0.337384464661} Untitled_4::H28 310 -1 6 {} C 0.0 {0.864864889007 0.688109396346 0.423029159415} Untitled_4::C41 311 -1 6 {} C 0.0 {0.927420218106 0.74292123831 0.458839841396} Untitled_4::C42 312 -1 6 {} C 0.0 {0.800892338596 0.771703623572 0.515435140613} Untitled_4::C43 313 -1 7 {} N 0.0 {0.887973398078 0.797848031384 0.513628095418} Untitled_4::N2 314 -1 8 {} O 0.0 {0.737010259059 0.806406275822 0.562033168318} Untitled_4::O5 315 -1 8 {} O 0.0 {0.0125249087569 0.743013791429 0.43982544736} Untitled_4::O6 316 -1 6 {} C 0.0 {0.910526700121 0.153125512869 0.490619568055} Untitled_5::C1 317 -1 1 {} H 0.0 {0.994196296113 0.120315351673 0.667247273136} Untitled_5::H1 318 -1 6 {} C 0.0 {0.93888319527 0.112275613407 0.554317348442} Untitled_5::C2 319 -1 1 {} H 0.0 {0.935865341592 0.0494248741315 0.555051659728} Untitled_5::H2 320 -1 6 {} C 0.0 {0.971410639774 0.152660811657 0.618092294838} Untitled_5::C3 321 -1 6 {} C 0.0 {0.92131301428 0.235077411919 0.486746962606} Untitled_5::C4 322 -1 1 {} H 0.0 {0.90496681644 0.266841792594 0.434037283321} Untitled_5::H3 323 -1 6 {} C 0.0 {0.953329107622 0.275751427498 0.550967884002} Untitled_5::C5 324 -1 1 {} H 0.0 {0.961355222155 0.33848802 0.54798438304} Untitled_5::H4 325 -1 6 {} C 0.0 {0.974469483235 0.234586212223 0.618514198871} Untitled_5::C6 326 -1 8 {} O 0.0 {0.000731322274263 0.276708505935 0.693012481987} Untitled_5::O1 327 -1 6 {} C 0.0 {0.0607702760581 0.340100943274 0.67978763675} Untitled_5::C7 328 -1 1 {} H 0.0 {0.17389261783 0.41985873678 0.538574698992} Untitled_5::H5 329 -1 6 {} C 0.0 {0.0908334270952 0.353900077603 0.606573427163} Untitled_5::C8 330 -1 1 {} H 0.0 {0.069411855409 0.320968257544 0.557269436508} Untitled_5::H6 331 -1 6 {} C 0.0 {0.149000916584 0.411176118865 0.595875936594} Untitled_5::C9 332 -1 6 {} C 0.0 {0.086600482645 0.384992855159 0.743672648307} Untitled_5::C10 333 -1 1 {} H 0.0 {0.0625668766506 0.374087685524 0.80128281705} Untitled_5::H7 334 -1 6 {} C 0.0 {0.143529219966 0.443871433599 0.733334647097} Untitled_5::C11 335 -1 1 {} H 0.0 {0.162309920466 0.478892381958 0.782657695849} Untitled_5::H8 336 -1 6 {} C 0.0 {0.175359702312 0.456841659795 0.65947508729} Untitled_5::C12 337 -1 6 {} C 0.0 {0.240219714939 0.521005463991 0.645763726344} Untitled_5::C13 338 -1 6 {} C 0.0 {0.261253604169 0.568141303668 0.722062236522} Untitled_5::C14 339 -1 1 {} H 0.0 {0.40972834448 0.586669892562 0.856099605432} Untitled_5::H9 340 -1 6 {} C 0.0 {0.331804563693 0.552092569116 0.762250904442} Untitled_5::C15 341 -1 1 {} H 0.0 {0.367983586245 0.503932936841 0.743788793385} Untitled_5::H10 342 -1 6 {} C 0.0 {0.355299492206 0.598798538348 0.826460213062} Untitled_5::C16 343 -1 6 {} C 0.0 {0.213586510603 0.628165249015 0.748173840598} Untitled_5::C17 344 -1 1 {} H 0.0 {0.158271864423 0.639400424308 0.719376319636} Untitled_5::H11 345 -1 6 {} C 0.0 {0.236889740021 0.674553751414 0.812080867364} Untitled_5::C18 346 -1 1 {} H 0.0 {0.199914549606 0.7215047852 0.831418442155} Untitled_5::H12 347 -1 6 {} C 0.0 {0.307916832825 0.660298356346 0.851245454502} Untitled_5::C19 348 -1 8 {} O 0.0 {0.328896565363 0.711814980544 0.921762412795} Untitled_5::O2 349 -1 6 {} C 0.0 {0.415107032742 0.736533406828 0.93111130035} Untitled_5::C20 350 -1 1 {} H 0.0 {0.592234864546 0.662360276785 0.985204921015} Untitled_5::H13 351 -1 6 {} C 0.0 {0.473501443707 0.68129936233 0.943925217797} Untitled_5::C21 352 -1 1 {} H 0.0 {0.463131633174 0.620869049128 0.930226902829} Untitled_5::H14 353 -1 6 {} C 0.0 {0.546596096742 0.705197244616 0.974924442587} Untitled_5::C22 354 -1 6 {} C 0.0 {0.433784276116 0.816126166665 0.935565496493} Untitled_5::C23 355 -1 1 {} H 0.0 {0.39200546057 0.859165119974 0.916301253717} Untitled_5::H15 356 -1 6 {} C 0.0 {0.506813076399 0.840268408155 0.965520222247} Untitled_5::C24 357 -1 1 {} H 0.0 {0.521463338801 0.901796253821 0.967563998349} Untitled_5::H16 358 -1 6 {} C 0.0 {0.559998956078 0.784671982662 0.992235884082} Untitled_5::C25 359 -1 6 {} C 0.0 {0.31360694394 0.481696528777 0.617329769457} Untitled_5::C26 360 -1 6 {} C 0.0 {0.213561691401 0.577886282036 0.581337625626} Untitled_5::C27 361 -1 1 {} H 0.0 {0.357668522718 0.525500819696 0.607262191919} Untitled_5::H17 362 -1 1 {} H 0.0 {0.301491920134 0.451019747579 0.563466821426} Untitled_5::H18 363 -1 1 {} H 0.0 {0.333881338766 0.441132273383 0.660818078274} Untitled_5::H19 364 -1 1 {} H 0.0 {0.258824201144 0.620720565371 0.570798694801} Untitled_5::H20 365 -1 1 {} H 0.0 {0.16084683166 0.607071489599 0.599240031184} Untitled_5::H21 366 -1 1 {} H 0.0 {0.202703858127 0.545614220049 0.527946576809} Untitled_5::H22 367 -1 6 {} C 0.0 {0.550912440883 0.796500141131 0.120690652439} Untitled_5::C28 368 -1 1 {} H 0.0 {0.705464948432 0.79019795699 0.249152271911} Untitled_5::H23 369 -1 6 {} C 0.0 {0.60808587551 0.765348550432 0.167610917337} Untitled_5::C29 370 -1 6 {} C 0.0 {0.661071029903 0.814570940675 0.211133363794} Untitled_5::C30 371 -1 6 {} C 0.0 {0.542031154649 0.875483867261 0.110142830232} Untitled_5::C31 372 -1 1 {} H 0.0 {0.496892757465 0.897955057885 0.0717449527752} Untitled_5::H24 373 -1 6 {} C 0.0 {0.59280500749 0.927183362266 0.149742563986} Untitled_5::C32 374 -1 1 {} H 0.0 {0.586501971426 0.989645181095 0.14110520558} Untitled_5::H25 375 -1 6 {} C 0.0 {0.652405359591 0.898544180733 0.201445864642} Untitled_5::C33 376 -1 6 {} C 0.0 {0.5014762915 0.730514023388 0.0826653849252} Untitled_5::C34 377 -1 6 {} C 0.0 {0.6027756072 0.673133470039 0.162579424605} Untitled_5::C35 378 -1 7 {} N 0.0 {0.536240757427 0.654100913398 0.104499713886} Untitled_5::N1 379 -1 8 {} O 0.0 {0.653628154406 0.616032857093 0.203862654869} Untitled_5::O3 380 -1 8 {} O 0.0 {0.432942039782 0.741256100218 0.030482281666} Untitled_5::O4 381 -1 6 {} C 0.0 {0.706169767273 0.962772914341 0.24237886966} Untitled_5::C36 382 -1 6 {} C 0.0 {0.756218725037 0.948943708145 0.309206074599} Untitled_5::C37 383 -1 1 {} H 0.0 {0.764238527521 0.89091200477 0.333557283954} Untitled_5::H26 384 -1 6 {} C 0.0 {0.794105028027 0.0158043011234 0.341764752375} Untitled_5::C38 385 -1 6 {} C 0.0 {0.700533537825 0.0402890712268 0.212197130921} Untitled_5::C39 386 -1 1 {} H 0.0 {0.666214506417 0.0507548964065 0.16111203167} Untitled_5::H27 387 -1 6 {} C 0.0 {0.739283291363 0.10265510588 0.247424231986} Untitled_5::C40 388 -1 1 {} H 0.0 {0.733122530397 0.161178426599 0.224635166541} Untitled_5::H28 389 -1 6 {} C 0.0 {0.78406243455 0.0890870364899 0.310434669688} Untitled_5::C41 390 -1 6 {} C 0.0 {0.829214675223 0.150483271721 0.357165605904} Untitled_5::C42 391 -1 6 {} C 0.0 {0.849010916117 0.0226754042902 0.414226609578} Untitled_5::C43 392 -1 7 {} N 0.0 {0.86675943919 0.11075002907 0.424238017286} Untitled_5::N2 393 -1 8 {} O 0.0 {0.876179599878 0.957164292775 0.465134941758} Untitled_5::O5 394 -1 8 {} O 0.0 {0.832202834097 0.235964637887 0.339975701907} Untitled_5::O6 395 -1 6 {} C 0.0 {0.112150554118 0.25931940092 0.330885203114} Untitled_6::C1 396 -1 1 {} H 0.0 {0.152223102268 0.438627139007 0.255552582933} Untitled_6::H1 397 -1 6 {} C 0.0 {0.102022465028 0.327303986145 0.287554628389} Untitled_6::C2 398 -1 1 {} H 0.0 {0.0501607411943 0.334880135898 0.252021822936} Untitled_6::H2 399 -1 6 {} C 0.0 {0.159422097302 0.386565894401 0.290204232463} Untitled_6::C3 400 -1 6 {} C 0.0 {0.173654745874 0.255048490378 0.385177355118} Untitled_6::C4 401 -1 1 {} H 0.0 {0.1767073095 0.206200343302 0.425252951106} Untitled_6::H3 402 -1 6 {} C 0.0 {0.231139338783 0.314181891955 0.387946150639} Untitled_6::C5 403 -1 1 {} H 0.0 {0.279256734733 0.309929499721 0.429074095765} Untitled_6::H4 404 -1 6 {} C 0.0 {0.226156456596 0.377881603186 0.337531724011} Untitled_6::C6 405 -1 8 {} O 0.0 {0.292608087158 0.437496263268 0.332386803954} Untitled_6::O1 406 -1 6 {} C 0.0 {0.301231947952 0.490896472118 0.402745451716} Untitled_6::C7 407 -1 1 {} H 0.0 {0.231491747834 0.661607400033 0.473929050153} Untitled_6::H5 408 -1 6 {} C 0.0 {0.253286868708 0.555704330325 0.410776870614} Untitled_6::C8 409 -1 1 {} H 0.0 {0.203918064786 0.563248265988 0.372540925986} Untitled_6::H6 410 -1 6 {} C 0.0 {0.268796873913 0.611268342794 0.468393258412} Untitled_6::C9 411 -1 6 {} C 0.0 {0.361180084842 0.478327023755 0.456786722147} Untitled_6::C10 412 -1 1 {} H 0.0 {0.395345076483 0.425363277847 0.4541545423} Untitled_6::H7 413 -1 6 {} C 0.0 {0.377021711129 0.53439814335 0.514640945774} Untitled_6::C11 414 -1 1 {} H 0.0 {0.423864998552 0.524950955276 0.555619426898} Untitled_6::H8 415 -1 6 {} C 0.0 {0.332133796109 0.602036722929 0.519003925272} Untitled_6::C12 416 -1 6 {} C 0.0 {0.349881710035 0.667191495556 0.580768118058} Untitled_6::C13 417 -1 6 {} C 0.0 {0.438400462582 0.675419224158 0.598978455556} Untitled_6::C14 418 -1 1 {} H 0.0 {0.556901669925 0.704899496382 0.755641688444} Untitled_6::H9 419 -1 6 {} C 0.0 {0.461450637897 0.686055392796 0.676546239995} Untitled_6::C15 420 -1 1 {} H 0.0 {0.418098041788 0.685876534803 0.722406771822} Untitled_6::H10 421 -1 6 {} C 0.0 {0.539660947094 0.697255951841 0.695232480836} Untitled_6::C16 422 -1 6 {} C 0.0 {0.494785584326 0.674641996855 0.540033028522} Untitled_6::C17 423 -1 1 {} H 0.0 {0.478020493094 0.664756181092 0.479808305138} Untitled_6::H11 424 -1 6 {} C 0.0 {0.573543951962 0.686830165478 0.559271043765} Untitled_6::C18 425 -1 1 {} H 0.0 {0.616917989772 0.687333384903 0.514241763816} Untitled_6::H12 426 -1 6 {} C 0.0 {0.595575625774 0.698615812212 0.637021020899} Untitled_6::C19 427 -1 8 {} O 0.0 {0.679626581661 0.712735113731 0.657904884727} Untitled_6::O2 428 -1 6 {} C 0.0 {0.684711550484 0.781965304744 0.711720340488} Untitled_6::C20 429 -1 1 {} H 0.0 {0.736238127108 0.973204269033 0.710650006352} Untitled_6::H13 430 -1 6 {} C 0.0 {0.714917331296 0.852830393063 0.684755697857} Untitled_6::C21 431 -1 1 {} H 0.0 {0.739446480825 0.856901089922 0.627138607943} Untitled_6::H14 432 -1 6 {} C 0.0 {0.714054707645 0.918198433397 0.732425163231} Untitled_6::C22 433 -1 6 {} C 0.0 {0.657629636187 0.776338285375 0.788509366565} Untitled_6::C23 434 -1 1 {} H 0.0 {0.637223558752 0.720779774826 0.810978504253} Untitled_6::H15 435 -1 6 {} C 0.0 {0.657331472439 0.84240241921 0.836452306571} Untitled_6::C24 436 -1 1 {} H 0.0 {0.635740836663 0.838527083272 0.896009491122} Untitled_6::H16 437 -1 6 {} C 0.0 {0.684744029682 0.913350870794 0.807881232336} Untitled_6::C25 438 -1 6 {} C 0.0 {0.31895990188 0.745148014634 0.55058943045} Untitled_6::C26 439 -1 6 {} C 0.0 {0.308298517515 0.647862608585 0.657004421225} Untitled_6::C27 440 -1 1 {} H 0.0 {0.330393218302 0.790279125571 0.593392773046} Untitled_6::H17 441 -1 1 {} H 0.0 {0.256735024503 0.740603324736 0.540932690166} Untitled_6::H18 442 -1 1 {} H 0.0 {0.347750434739 0.759789195116 0.496274410625} Untitled_6::H19 443 -1 1 {} H 0.0 {0.319807099631 0.693338029158 0.699406197403} Untitled_6::H20 444 -1 1 {} H 0.0 {0.330123457197 0.5930504814 0.678605226537} Untitled_6::H21 445 -1 1 {} H 0.0 {0.245992440728 0.643768279757 0.647226448343} Untitled_6::H22 446 -1 6 {} C 0.0 {0.747070635173 0.804368188587 0.126580711419} Untitled_6::C28 447 -1 1 {} H 0.0 {0.771162901628 0.00137416963157 0.139922999745} Untitled_6::H23 448 -1 6 {} C 0.0 {0.733200113671 0.882280738156 0.115354606988} Untitled_6::C29 449 -1 6 {} C 0.0 {0.779843557602 0.939807762647 0.151344533019} Untitled_6::C30 450 -1 6 {} C 0.0 {0.804392880499 0.777289235379 0.174607137759} Untitled_6::C31 451 -1 1 {} H 0.0 {0.81387546449 0.715296761025 0.181566213994} Untitled_6::H24 452 -1 6 {} C 0.0 {0.850592266089 0.831045749826 0.214694663059} Untitled_6::C32 453 -1 1 {} H 0.0 {0.895087292288 0.810318926364 0.254707759276} Untitled_6::H25 454 -1 6 {} C 0.0 {0.839813204759 0.912940373408 0.203601924786} Untitled_6::C33 455 -1 6 {} C 0.0 {0.68904969392 0.754981678771 0.0797181665588} Untitled_6::C34 456 -1 6 {} C 0.0 {0.661218046115 0.891796858532 0.059656840482} Untitled_6::C35 457 -1 7 {} N 0.0 {0.633583247658 0.809410979381 0.0393203722264} Untitled_6::N1 458 -1 8 {} O 0.0 {0.624605288589 0.966591282389 0.0340331380729} Untitled_6::O3 459 -1 8 {} O 0.0 {0.686134702321 0.668283202245 0.0782189622836} Untitled_6::O4 460 -1 6 {} C 0.0 {0.894374954642 0.968556345197 0.250226576931} Untitled_6::C36 461 -1 6 {} C 0.0 {0.899586968178 0.0510972359161 0.235641610349} Untitled_6::C37 462 -1 1 {} H 0.0 {0.858985619309 0.080475330441 0.196976076192} Untitled_6::H26 463 -1 6 {} C 0.0 {0.959836461619 0.0918856741302 0.274709936588} Untitled_6::C38 464 -1 6 {} C 0.0 {0.94425215117 0.933914328399 0.307408984376} Untitled_6::C39 465 -1 1 {} H 0.0 {0.939195586905 0.872173312179 0.320372812172} Untitled_6::H27 466 -1 6 {} C 0.0 {0.999665045794 0.978666612537 0.346524448459} Untitled_6::C40 467 -1 1 {} H 0.0 {0.0360192773511 0.953007150332 0.391431932234} Untitled_6::H28 468 -1 6 {} C 0.0 {0.00719595821109 0.0551661115914 0.327541022794} Untitled_6::C41 469 -1 6 {} C 0.0 {0.0679089152211 0.11144653226 0.359723490886} Untitled_6::C42 470 -1 6 {} C 0.0 {0.986311816728 0.179425152004 0.267612785074} Untitled_6::C43 471 -1 7 {} N 0.0 {0.0572962310444 0.188384095713 0.320711660691} Untitled_6::N2 472 -1 8 {} O 0.0 {0.951545991681 0.240856027877 0.216716971706} Untitled_6::O5 473 -1 8 {} O 0.0 {0.12916007192 0.0916650659012 0.417370565939} Untitled_6::O6 474 -1 1 {} H 0.0 {0.00930782647982 0.672189115643 0.63307455554} H_head 475 -1 1 {} H 0.0 {0.682927709123 0.964850853317 0.844290015144} H_tail 476 -1 @end @Columns Cell Constraints string {a b c A B G} Origin int {{0 0 0}} Parameters double {{10.0 10.0 10.0 90.0 90.0 90.0}} PrimitiveData double {{{1.0 0.0 0.0} {0.0 1.0 0.0} {0.0 0.0 1.0}}} RotationMatrix double {{{1.0 0.0 0.0} {0.0 1.0 0.0} {0.0 0.0 1.0}}} SpaceGroup string P1 SpaceGroupNumber int 1 ToCartesians double {{{10.0 0.0 0.0} {0.0 10.0 0.0} {0.0 0.0 10.0}}} ToFractionals double {{{0.10000000000000001 0.0 0.0} {0.0 0.10000000000000001 0.0} {0.0 0.0 0.10000000000000001}}} @end @data {a b c A B G} {0 0 0} {17.2439483255 17.2439483255 17.2439483255 90 90 90} {{1 0 0} {0 1 0} {0 0 1}} {{1 0 0} {0 1 0} {0 0 1}} P1 1 {{17.2439483255 0 0} {0 17.2439483255 0} {0 0 17.2439483255}} {{0.0579913591205 0 0} {0 0.0579913591205 0} {0 0 0.0579913591205}} @end @Columns AsymmetricBond Atom1 reference AsymmetricAtom Atom2 reference AsymmetricAtom Key int 0 Order int 0 @end @data 4 1 0 0 4 2 0 1 9 4 0 1 3 2 0 0 2 0 0 1 5 0 0 1 6 5 0 0 7 5 0 1 8 7 0 0 9 7 0 1 10 9 0 0 11 10 0 0 15 12 0 0 15 13 0 1 20 15 0 1 14 13 0 0 13 11 0 1 16 11 0 1 17 16 0 0 18 16 0 1 19 18 0 0 20 18 0 1 21 20 0 0 22 21 0 0 26 23 0 0 26 24 0 1 31 26 0 1 25 24 0 0 24 22 0 1 27 22 0 1 28 27 0 0 29 27 0 1 30 29 0 0 31 29 0 1 32 31 0 0 33 32 0 0 37 34 0 0 37 35 0 1 42 37 0 1 36 35 0 0 35 33 0 1 38 33 0 1 39 38 0 0 40 38 0 1 41 40 0 0 42 40 0 1 43 21 0 0 44 21 0 0 45 43 0 0 46 43 0 0 47 43 0 0 48 44 0 0 49 44 0 0 50 44 0 0 54 52 0 0 54 53 0 1 59 54 0 1 53 51 0 1 55 51 0 1 56 55 0 0 57 55 0 1 58 57 0 0 59 57 0 1 60 51 0 0 61 53 0 0 62 60 0 0 62 61 0 0 63 61 0 0 64 60 0 0 65 59 0 0 68 66 0 1 73 68 0 1 67 66 0 0 66 65 0 1 69 65 0 1 70 69 0 0 71 69 0 1 72 71 0 0 73 71 0 1 74 73 0 0 75 68 0 0 76 74 0 0 76 75 0 0 77 75 0 0 78 74 0 0 76 0 0 0 83 80 0 0 83 81 0 1 88 83 0 1 82 81 0 0 81 79 0 1 84 79 0 1 85 84 0 0 86 84 0 1 87 86 0 0 88 86 0 1 89 88 0 0 90 89 0 0 94 91 0 0 94 92 0 1 99 94 0 1 93 92 0 0 92 90 0 1 95 90 0 1 96 95 0 0 97 95 0 1 98 97 0 0 99 97 0 1 100 99 0 0 101 100 0 0 105 102 0 0 105 103 0 1 110 105 0 1 104 103 0 0 103 101 0 1 106 101 0 1 107 106 0 0 108 106 0 1 109 108 0 0 110 108 0 1 111 110 0 0 112 111 0 0 116 113 0 0 116 114 0 1 121 116 0 1 115 114 0 0 114 112 0 1 117 112 0 1 118 117 0 0 119 117 0 1 120 119 0 0 121 119 0 1 122 100 0 0 123 100 0 0 124 122 0 0 125 122 0 0 126 122 0 0 127 123 0 0 128 123 0 0 129 123 0 0 133 131 0 0 133 132 0 1 138 133 0 1 132 130 0 1 134 130 0 1 135 134 0 0 136 134 0 1 137 136 0 0 138 136 0 1 139 130 0 0 140 132 0 0 141 139 0 0 141 140 0 0 142 140 0 0 143 139 0 0 144 138 0 0 147 145 0 1 152 147 0 1 146 145 0 0 145 144 0 1 148 144 0 1 149 148 0 0 150 148 0 1 151 150 0 0 152 150 0 1 153 152 0 0 154 147 0 0 155 153 0 0 155 154 0 0 156 154 0 0 157 153 0 0 155 79 0 0 141 42 0 0 162 159 0 0 162 160 0 1 167 162 0 1 161 160 0 0 160 158 0 1 163 158 0 1 164 163 0 0 165 163 0 1 166 165 0 0 167 165 0 1 168 167 0 0 169 168 0 0 173 170 0 0 173 171 0 1 178 173 0 1 172 171 0 0 171 169 0 1 174 169 0 1 175 174 0 0 176 174 0 1 177 176 0 0 178 176 0 1 179 178 0 0 180 179 0 0 184 181 0 0 184 182 0 1 189 184 0 1 183 182 0 0 182 180 0 1 185 180 0 1 186 185 0 0 187 185 0 1 188 187 0 0 189 187 0 1 190 189 0 0 191 190 0 0 195 192 0 0 195 193 0 1 200 195 0 1 194 193 0 0 193 191 0 1 196 191 0 1 197 196 0 0 198 196 0 1 199 198 0 0 200 198 0 1 201 179 0 0 202 179 0 0 203 201 0 0 204 201 0 0 205 201 0 0 206 202 0 0 207 202 0 0 208 202 0 0 212 210 0 0 212 211 0 1 217 212 0 1 211 209 0 1 213 209 0 1 214 213 0 0 215 213 0 1 216 215 0 0 217 215 0 1 218 209 0 0 219 211 0 0 220 218 0 0 220 219 0 0 221 219 0 0 222 218 0 0 223 217 0 0 226 224 0 1 231 226 0 1 225 224 0 0 224 223 0 1 227 223 0 1 228 227 0 0 229 227 0 1 230 229 0 0 231 229 0 1 232 231 0 0 233 226 0 0 234 232 0 0 234 233 0 0 235 233 0 0 236 232 0 0 234 158 0 0 220 121 0 0 241 238 0 0 241 239 0 1 246 241 0 1 240 239 0 0 239 237 0 1 242 237 0 1 243 242 0 0 244 242 0 1 245 244 0 0 246 244 0 1 247 246 0 0 248 247 0 0 252 249 0 0 252 250 0 1 257 252 0 1 251 250 0 0 250 248 0 1 253 248 0 1 254 253 0 0 255 253 0 1 256 255 0 0 257 255 0 1 258 257 0 0 259 258 0 0 263 260 0 0 263 261 0 1 268 263 0 1 262 261 0 0 261 259 0 1 264 259 0 1 265 264 0 0 266 264 0 1 267 266 0 0 268 266 0 1 269 268 0 0 270 269 0 0 274 271 0 0 274 272 0 1 279 274 0 1 273 272 0 0 272 270 0 1 275 270 0 1 276 275 0 0 277 275 0 1 278 277 0 0 279 277 0 1 280 258 0 0 281 258 0 0 282 280 0 0 283 280 0 0 284 280 0 0 285 281 0 0 286 281 0 0 287 281 0 0 291 289 0 0 291 290 0 1 296 291 0 1 290 288 0 1 292 288 0 1 293 292 0 0 294 292 0 1 295 294 0 0 296 294 0 1 297 288 0 0 298 290 0 0 299 297 0 0 299 298 0 0 300 298 0 0 301 297 0 0 302 296 0 0 305 303 0 1 310 305 0 1 304 303 0 0 303 302 0 1 306 302 0 1 307 306 0 0 308 306 0 1 309 308 0 0 310 308 0 1 311 310 0 0 312 305 0 0 313 311 0 0 313 312 0 0 314 312 0 0 315 311 0 0 313 237 0 0 299 200 0 0 320 317 0 0 320 318 0 1 325 320 0 1 319 318 0 0 318 316 0 1 321 316 0 1 322 321 0 0 323 321 0 1 324 323 0 0 325 323 0 1 326 325 0 0 327 326 0 0 331 328 0 0 331 329 0 1 336 331 0 1 330 329 0 0 329 327 0 1 332 327 0 1 333 332 0 0 334 332 0 1 335 334 0 0 336 334 0 1 337 336 0 0 338 337 0 0 342 339 0 0 342 340 0 1 347 342 0 1 341 340 0 0 340 338 0 1 343 338 0 1 344 343 0 0 345 343 0 1 346 345 0 0 347 345 0 1 348 347 0 0 349 348 0 0 353 350 0 0 353 351 0 1 358 353 0 1 352 351 0 0 351 349 0 1 354 349 0 1 355 354 0 0 356 354 0 1 357 356 0 0 358 356 0 1 359 337 0 0 360 337 0 0 361 359 0 0 362 359 0 0 363 359 0 0 364 360 0 0 365 360 0 0 366 360 0 0 370 368 0 0 370 369 0 1 375 370 0 1 369 367 0 1 371 367 0 1 372 371 0 0 373 371 0 1 374 373 0 0 375 373 0 1 376 367 0 0 377 369 0 0 378 376 0 0 378 377 0 0 379 377 0 0 380 376 0 0 381 375 0 0 384 382 0 1 389 384 0 1 383 382 0 0 382 381 0 1 385 381 0 1 386 385 0 0 387 385 0 1 388 387 0 0 389 387 0 1 390 389 0 0 391 384 0 0 392 390 0 0 392 391 0 0 393 391 0 0 394 390 0 0 392 316 0 0 378 279 0 0 399 396 0 0 399 397 0 1 404 399 0 1 398 397 0 0 397 395 0 1 400 395 0 1 401 400 0 0 402 400 0 1 403 402 0 0 404 402 0 1 405 404 0 0 406 405 0 0 410 407 0 0 410 408 0 1 415 410 0 1 409 408 0 0 408 406 0 1 411 406 0 1 412 411 0 0 413 411 0 1 414 413 0 0 415 413 0 1 416 415 0 0 417 416 0 0 421 418 0 0 421 419 0 1 426 421 0 1 420 419 0 0 419 417 0 1 422 417 0 1 423 422 0 0 424 422 0 1 425 424 0 0 426 424 0 1 427 426 0 0 428 427 0 0 432 429 0 0 432 430 0 1 437 432 0 1 431 430 0 0 430 428 0 1 433 428 0 1 434 433 0 0 435 433 0 1 436 435 0 0 437 435 0 1 438 416 0 0 439 416 0 0 440 438 0 0 441 438 0 0 442 438 0 0 443 439 0 0 444 439 0 0 445 439 0 0 449 447 0 0 449 448 0 1 454 449 0 1 448 446 0 1 450 446 0 1 451 450 0 0 452 450 0 1 453 452 0 0 454 452 0 1 455 446 0 0 456 448 0 0 457 455 0 0 457 456 0 0 458 456 0 0 459 455 0 0 460 454 0 0 463 461 0 1 468 463 0 1 462 461 0 0 461 460 0 1 464 460 0 1 465 464 0 0 466 464 0 1 467 466 0 0 468 466 0 1 469 468 0 0 470 463 0 0 471 469 0 0 471 470 0 0 472 470 0 0 473 469 0 0 471 395 0 0 457 358 0 0 474 62 0 0 475 437 0 0 @end @Columns Bond AsymmetricBond reference AsymmetricBond Atom1 reference Atom Atom2 reference Atom CellOffset2 int {{0 0 0}} Key int 0 @end @data 0 4 1 {0 0 -1} 0 1 4 2 {0 0 -1} 0 2 9 4 {0 0 0} 0 3 3 2 {0 0 0} 0 4 2 0 {0 0 1} 0 5 5 0 {0 0 0} 0 6 6 5 {0 0 0} 0 7 7 5 {0 0 0} 0 8 8 7 {0 0 0} 0 9 9 7 {0 0 0} 0 10 10 9 {0 0 0} 0 11 11 10 {0 0 0} 0 12 15 12 {0 0 0} 0 13 15 13 {0 0 0} 0 14 20 15 {0 0 0} 0 15 14 13 {0 0 0} 0 16 13 11 {0 0 0} 0 17 16 11 {0 0 0} 0 18 17 16 {0 0 0} 0 19 18 16 {0 0 0} 0 20 19 18 {0 0 0} 0 21 20 18 {0 0 0} 0 22 21 20 {0 0 0} 0 23 22 21 {0 0 0} 0 24 26 23 {1 0 0} 0 25 26 24 {0 0 0} 0 26 31 26 {0 0 0} 0 27 25 24 {0 0 0} 0 28 24 22 {0 0 0} 0 29 27 22 {0 0 0} 0 30 28 27 {0 0 0} 0 31 29 27 {0 0 0} 0 32 30 29 {0 0 0} 0 33 31 29 {0 0 0} 0 34 32 31 {-1 0 0} 0 35 33 32 {0 0 0} 0 36 37 34 {0 0 0} 0 37 37 35 {0 0 0} 0 38 42 37 {0 0 0} 0 39 36 35 {0 0 0} 0 40 35 33 {0 0 0} 0 41 38 33 {0 0 0} 0 42 39 38 {0 0 0} 0 43 40 38 {0 0 0} 0 44 41 40 {0 0 0} 0 45 42 40 {0 0 0} 0 46 43 21 {0 0 0} 0 47 44 21 {0 0 0} 0 48 45 43 {0 0 0} 0 49 46 43 {0 0 0} 0 50 47 43 {0 0 0} 0 51 48 44 {0 0 0} 0 52 49 44 {0 0 0} 0 53 50 44 {0 0 0} 0 54 54 52 {0 0 0} 0 55 54 53 {0 0 0} 0 56 59 54 {0 0 0} 0 57 53 51 {0 0 0} 0 58 55 51 {0 0 0} 0 59 56 55 {0 0 0} 0 60 57 55 {0 0 0} 0 61 58 57 {0 0 -1} 0 62 59 57 {0 0 0} 0 63 60 51 {0 0 0} 0 64 61 53 {0 0 0} 0 65 62 60 {0 0 0} 0 66 62 61 {0 0 0} 0 67 63 61 {0 0 0} 0 68 64 60 {1 0 0} 0 69 65 59 {0 0 0} 0 70 68 66 {0 0 0} 0 71 73 68 {0 0 -1} 0 72 67 66 {0 0 0} 0 73 66 65 {0 0 0} 0 74 69 65 {0 0 -1} 0 75 70 69 {0 0 0} 0 76 71 69 {0 0 0} 0 77 72 71 {0 0 0} 0 78 73 71 {0 0 0} 0 79 74 73 {0 0 0} 0 80 75 68 {0 0 0} 0 81 76 74 {0 0 0} 0 82 76 75 {0 0 -1} 0 83 77 75 {0 -1 0} 0 84 78 74 {0 0 0} 0 85 76 0 {0 1 0} 0 86 83 80 {0 0 0} 0 87 83 81 {0 0 0} 0 88 88 83 {0 0 0} 0 89 82 81 {0 0 0} 0 90 81 79 {0 0 0} 0 91 84 79 {0 0 0} 0 92 85 84 {0 0 0} 0 93 86 84 {0 0 0} 0 94 87 86 {0 0 0} 0 95 88 86 {0 0 0} 0 96 89 88 {0 0 0} 0 97 90 89 {0 0 0} 0 98 94 91 {0 0 0} 0 99 94 92 {0 0 0} 0 100 99 94 {0 0 0} 0 101 93 92 {0 0 0} 0 102 92 90 {0 0 -1} 0 103 95 90 {0 0 0} 0 104 96 95 {0 0 0} 0 105 97 95 {0 0 0} 0 106 98 97 {0 0 0} 0 107 99 97 {0 0 -1} 0 108 100 99 {-1 0 0} 0 109 101 100 {0 0 0} 0 110 105 102 {0 0 0} 0 111 105 103 {0 0 0} 0 112 110 105 {0 0 0} 0 113 104 103 {0 0 0} 0 114 103 101 {0 0 0} 0 115 106 101 {0 0 0} 0 116 107 106 {0 0 1} 0 117 108 106 {0 0 0} 0 118 109 108 {0 0 0} 0 119 110 108 {0 0 0} 0 120 111 110 {0 0 0} 0 121 112 111 {0 0 0} 0 122 116 113 {0 1 0} 0 123 116 114 {0 0 0} 0 124 121 116 {0 -1 0} 0 125 115 114 {0 0 0} 0 126 114 112 {0 0 0} 0 127 117 112 {0 0 0} 0 128 118 117 {0 0 0} 0 129 119 117 {0 -1 0} 0 130 120 119 {0 0 0} 0 131 121 119 {0 0 0} 0 132 122 100 {0 0 0} 0 133 123 100 {0 0 0} 0 134 124 122 {0 0 0} 0 135 125 122 {0 0 0} 0 136 126 122 {1 0 0} 0 137 127 123 {0 0 0} 0 138 128 123 {0 0 0} 0 139 129 123 {0 0 0} 0 140 133 131 {0 0 0} 0 141 133 132 {0 0 0} 0 142 138 133 {0 -1 0} 0 143 132 130 {0 0 0} 0 144 134 130 {0 0 0} 0 145 135 134 {0 0 0} 0 146 136 134 {0 0 0} 0 147 137 136 {0 -1 0} 0 148 138 136 {0 -1 0} 0 149 139 130 {0 0 0} 0 150 140 132 {0 0 0} 0 151 141 139 {0 0 0} 0 152 141 140 {0 0 0} 0 153 142 140 {0 0 0} 0 154 143 139 {0 0 0} 0 155 144 138 {0 0 0} 0 156 147 145 {0 0 0} 0 157 152 147 {0 0 0} 0 158 146 145 {0 0 0} 0 159 145 144 {0 0 0} 0 160 148 144 {0 0 0} 0 161 149 148 {0 0 0} 0 162 150 148 {0 0 0} 0 163 151 150 {0 0 0} 0 164 152 150 {0 0 0} 0 165 153 152 {0 0 0} 0 166 154 147 {0 0 0} 0 167 155 153 {0 0 0} 0 168 155 154 {0 0 0} 0 169 156 154 {0 0 0} 0 170 157 153 {0 0 0} 0 171 155 79 {0 0 0} 0 172 141 42 {0 0 0} 0 173 162 159 {0 0 0} 0 174 162 160 {0 0 0} 0 175 167 162 {0 0 0} 0 176 161 160 {0 0 0} 0 177 160 158 {0 0 0} 0 178 163 158 {0 0 0} 0 179 164 163 {0 0 0} 0 180 165 163 {0 0 0} 0 181 166 165 {0 0 0} 0 182 167 165 {0 0 0} 0 183 168 167 {0 0 0} 0 184 169 168 {0 0 0} 0 185 173 170 {0 0 0} 0 186 173 171 {0 0 0} 0 187 178 173 {0 0 0} 0 188 172 171 {0 0 0} 0 189 171 169 {0 0 0} 0 190 174 169 {0 0 0} 0 191 175 174 {0 0 -1} 0 192 176 174 {0 0 -1} 0 193 177 176 {0 0 0} 0 194 178 176 {0 0 1} 0 195 179 178 {0 -1 0} 0 196 180 179 {-1 0 -1} 0 197 184 181 {0 0 0} 0 198 184 182 {0 0 0} 0 199 189 184 {0 0 0} 0 200 183 182 {0 1 1} 0 201 182 180 {0 0 0} 0 202 185 180 {0 0 0} 0 203 186 185 {1 0 0} 0 204 187 185 {0 0 0} 0 205 188 187 {0 0 0} 0 206 189 187 {0 0 0} 0 207 190 189 {0 0 0} 0 208 191 190 {0 0 0} 0 209 195 192 {0 0 0} 0 210 195 193 {0 0 0} 0 211 200 195 {0 0 0} 0 212 194 193 {0 0 0} 0 213 193 191 {0 0 0} 0 214 196 191 {0 0 0} 0 215 197 196 {0 0 0} 0 216 198 196 {0 0 0} 0 217 199 198 {0 0 0} 0 218 200 198 {0 0 0} 0 219 201 179 {-1 0 0} 0 220 202 179 {0 0 0} 0 221 203 201 {0 0 0} 0 222 204 201 {0 0 0} 0 223 205 201 {0 1 0} 0 224 206 202 {0 0 0} 0 225 207 202 {0 0 0} 0 226 208 202 {0 0 0} 0 227 212 210 {0 0 0} 0 228 212 211 {0 0 0} 0 229 217 212 {0 0 0} 0 230 211 209 {0 0 0} 0 231 213 209 {0 0 0} 0 232 214 213 {0 0 0} 0 233 215 213 {0 0 0} 0 234 216 215 {0 0 0} 0 235 217 215 {0 0 0} 0 236 218 209 {0 0 0} 0 237 219 211 {0 0 0} 0 238 220 218 {0 0 0} 0 239 220 219 {0 0 0} 0 240 221 219 {0 0 0} 0 241 222 218 {0 0 0} 0 242 223 217 {0 0 0} 0 243 226 224 {0 0 0} 0 244 231 226 {0 0 0} 0 245 225 224 {0 0 0} 0 246 224 223 {0 0 0} 0 247 227 223 {0 0 0} 0 248 228 227 {0 0 0} 0 249 229 227 {0 0 0} 0 250 230 229 {0 0 0} 0 251 231 229 {0 0 0} 0 252 232 231 {0 0 0} 0 253 233 226 {0 0 0} 0 254 234 232 {0 0 0} 0 255 234 233 {0 0 0} 0 256 235 233 {0 0 0} 0 257 236 232 {0 0 0} 0 258 234 158 {0 0 0} 0 259 220 121 {0 0 0} 0 260 241 238 {0 1 0} 0 261 241 239 {0 0 0} 0 262 246 241 {-1 -1 0} 0 263 240 239 {0 0 0} 0 264 239 237 {0 0 0} 0 265 242 237 {-1 0 0} 0 266 243 242 {0 0 0} 0 267 244 242 {0 0 0} 0 268 245 244 {0 0 0} 0 269 246 244 {0 -1 0} 0 270 247 246 {0 0 0} 0 271 248 247 {0 0 0} 0 272 252 249 {0 0 0} 0 273 252 250 {0 0 0} 0 274 257 252 {0 0 0} 0 275 251 250 {0 0 0} 0 276 250 248 {0 0 0} 0 277 253 248 {0 0 0} 0 278 254 253 {0 0 0} 0 279 255 253 {0 0 0} 0 280 256 255 {0 0 0} 0 281 257 255 {0 0 0} 0 282 258 257 {0 0 0} 0 283 259 258 {0 0 0} 0 284 263 260 {0 0 0} 0 285 263 261 {0 0 0} 0 286 268 263 {0 0 0} 0 287 262 261 {0 0 0} 0 288 261 259 {0 0 0} 0 289 264 259 {0 0 0} 0 290 265 264 {0 0 0} 0 291 266 264 {0 0 0} 0 292 267 266 {0 0 0} 0 293 268 266 {0 0 0} 0 294 269 268 {0 0 0} 0 295 270 269 {0 0 0} 0 296 274 271 {0 0 0} 0 297 274 272 {0 0 -1} 0 298 279 274 {0 0 0} 0 299 273 272 {0 0 0} 0 300 272 270 {0 0 0} 0 301 275 270 {0 0 -1} 0 302 276 275 {0 0 0} 0 303 277 275 {0 0 0} 0 304 278 277 {0 0 0} 0 305 279 277 {0 0 0} 0 306 280 258 {0 0 0} 0 307 281 258 {0 0 0} 0 308 282 280 {0 0 -1} 0 309 283 280 {0 0 0} 0 310 284 280 {0 0 0} 0 311 285 281 {0 0 -1} 0 312 286 281 {0 0 0} 0 313 287 281 {0 0 0} 0 314 291 289 {0 0 0} 0 315 291 290 {0 0 0} 0 316 296 291 {0 0 0} 0 317 290 288 {0 0 0} 0 318 292 288 {0 0 0} 0 319 293 292 {0 0 0} 0 320 294 292 {0 0 0} 0 321 295 294 {0 0 0} 0 322 296 294 {0 0 0} 0 323 297 288 {0 0 0} 0 324 298 290 {0 0 0} 0 325 299 297 {0 0 0} 0 326 299 298 {0 0 0} 0 327 300 298 {0 0 0} 0 328 301 297 {0 0 0} 0 329 302 296 {0 0 0} 0 330 305 303 {0 0 0} 0 331 310 305 {0 0 0} 0 332 304 303 {0 0 0} 0 333 303 302 {0 0 0} 0 334 306 302 {0 0 0} 0 335 307 306 {0 0 0} 0 336 308 306 {0 0 0} 0 337 309 308 {0 0 0} 0 338 310 308 {0 0 0} 0 339 311 310 {0 0 0} 0 340 312 305 {0 0 0} 0 341 313 311 {0 0 0} 0 342 313 312 {0 0 0} 0 343 314 312 {0 0 0} 0 344 315 311 {-1 0 0} 0 345 313 237 {0 0 0} 0 346 299 200 {0 0 0} 0 347 320 317 {0 0 0} 0 348 320 318 {0 0 0} 0 349 325 320 {0 0 0} 0 350 319 318 {0 0 0} 0 351 318 316 {0 0 0} 0 352 321 316 {0 0 0} 0 353 322 321 {0 0 0} 0 354 323 321 {0 0 0} 0 355 324 323 {0 0 0} 0 356 325 323 {0 0 0} 0 357 326 325 {-1 0 0} 0 358 327 326 {0 0 0} 0 359 331 328 {0 0 0} 0 360 331 329 {0 0 0} 0 361 336 331 {0 0 0} 0 362 330 329 {0 0 0} 0 363 329 327 {0 0 0} 0 364 332 327 {0 0 0} 0 365 333 332 {0 0 0} 0 366 334 332 {0 0 0} 0 367 335 334 {0 0 0} 0 368 336 334 {0 0 0} 0 369 337 336 {0 0 0} 0 370 338 337 {0 0 0} 0 371 342 339 {0 0 0} 0 372 342 340 {0 0 0} 0 373 347 342 {0 0 0} 0 374 341 340 {0 0 0} 0 375 340 338 {0 0 0} 0 376 343 338 {0 0 0} 0 377 344 343 {0 0 0} 0 378 345 343 {0 0 0} 0 379 346 345 {0 0 0} 0 380 347 345 {0 0 0} 0 381 348 347 {0 0 0} 0 382 349 348 {0 0 0} 0 383 353 350 {0 0 0} 0 384 353 351 {0 0 0} 0 385 358 353 {0 0 0} 0 386 352 351 {0 0 0} 0 387 351 349 {0 0 0} 0 388 354 349 {0 0 0} 0 389 355 354 {0 0 0} 0 390 356 354 {0 0 0} 0 391 357 356 {0 0 0} 0 392 358 356 {0 0 0} 0 393 359 337 {0 0 0} 0 394 360 337 {0 0 0} 0 395 361 359 {0 0 0} 0 396 362 359 {0 0 0} 0 397 363 359 {0 0 0} 0 398 364 360 {0 0 0} 0 399 365 360 {0 0 0} 0 400 366 360 {0 0 0} 0 401 370 368 {0 0 0} 0 402 370 369 {0 0 0} 0 403 375 370 {0 0 0} 0 404 369 367 {0 0 0} 0 405 371 367 {0 0 0} 0 406 372 371 {0 0 0} 0 407 373 371 {0 0 0} 0 408 374 373 {0 0 0} 0 409 375 373 {0 0 0} 0 410 376 367 {0 0 0} 0 411 377 369 {0 0 0} 0 412 378 376 {0 0 0} 0 413 378 377 {0 0 0} 0 414 379 377 {0 0 0} 0 415 380 376 {0 0 0} 0 416 381 375 {0 0 0} 0 417 384 382 {0 -1 0} 0 418 389 384 {0 0 0} 0 419 383 382 {0 0 0} 0 420 382 381 {0 0 0} 0 421 385 381 {0 -1 0} 0 422 386 385 {0 0 0} 0 423 387 385 {0 0 0} 0 424 388 387 {0 0 0} 0 425 389 387 {0 0 0} 0 426 390 389 {0 0 0} 0 427 391 384 {0 0 0} 0 428 392 390 {0 0 0} 0 429 392 391 {0 0 0} 0 430 393 391 {0 1 0} 0 431 394 390 {0 0 0} 0 432 392 316 {0 0 0} 0 433 378 279 {0 0 0} 0 434 399 396 {0 0 0} 0 435 399 397 {0 0 0} 0 436 404 399 {0 0 0} 0 437 398 397 {0 0 0} 0 438 397 395 {0 0 0} 0 439 400 395 {0 0 0} 0 440 401 400 {0 0 0} 0 441 402 400 {0 0 0} 0 442 403 402 {0 0 0} 0 443 404 402 {0 0 0} 0 444 405 404 {0 0 0} 0 445 406 405 {0 0 0} 0 446 410 407 {0 0 0} 0 447 410 408 {0 0 0} 0 448 415 410 {0 0 0} 0 449 409 408 {0 0 0} 0 450 408 406 {0 0 0} 0 451 411 406 {0 0 0} 0 452 412 411 {0 0 0} 0 453 413 411 {0 0 0} 0 454 414 413 {0 0 0} 0 455 415 413 {0 0 0} 0 456 416 415 {0 0 0} 0 457 417 416 {0 0 0} 0 458 421 418 {0 0 0} 0 459 421 419 {0 0 0} 0 460 426 421 {0 0 0} 0 461 420 419 {0 0 0} 0 462 419 417 {0 0 0} 0 463 422 417 {0 0 0} 0 464 423 422 {0 0 0} 0 465 424 422 {0 0 0} 0 466 425 424 {0 0 0} 0 467 426 424 {0 0 0} 0 468 427 426 {0 0 0} 0 469 428 427 {0 0 0} 0 470 432 429 {0 0 0} 0 471 432 430 {0 0 0} 0 472 437 432 {0 0 0} 0 473 431 430 {0 0 0} 0 474 430 428 {0 0 0} 0 475 433 428 {0 0 0} 0 476 434 433 {0 0 0} 0 477 435 433 {0 0 0} 0 478 436 435 {0 0 0} 0 479 437 435 {0 0 0} 0 480 438 416 {0 0 0} 0 481 439 416 {0 0 0} 0 482 440 438 {0 0 0} 0 483 441 438 {0 0 0} 0 484 442 438 {0 0 0} 0 485 443 439 {0 0 0} 0 486 444 439 {0 0 0} 0 487 445 439 {0 0 0} 0 488 449 447 {0 1 0} 0 489 449 448 {0 0 0} 0 490 454 449 {0 0 0} 0 491 448 446 {0 0 0} 0 492 450 446 {0 0 0} 0 493 451 450 {0 0 0} 0 494 452 450 {0 0 0} 0 495 453 452 {0 0 0} 0 496 454 452 {0 0 0} 0 497 455 446 {0 0 0} 0 498 456 448 {0 0 0} 0 499 457 455 {0 0 0} 0 500 457 456 {0 0 0} 0 501 458 456 {0 0 0} 0 502 459 455 {0 0 0} 0 503 460 454 {0 0 0} 0 504 463 461 {0 0 0} 0 505 468 463 {-1 0 0} 0 506 462 461 {0 0 0} 0 507 461 460 {0 -1 0} 0 508 464 460 {0 0 0} 0 509 465 464 {0 0 0} 0 510 466 464 {0 0 0} 0 511 467 466 {-1 0 0} 0 512 468 466 {-1 -1 0} 0 513 469 468 {0 0 0} 0 514 470 463 {0 0 0} 0 515 471 469 {0 0 0} 0 516 471 470 {-1 0 0} 0 517 472 470 {0 0 0} 0 518 473 469 {0 0 0} 0 519 471 395 {0 0 0} 0 520 457 358 {0 0 -1} 0 521 474 62 {0 0 0} 0 522 475 437 {0 0 0} 0 @end @Columns Subset Color string {{#65d9f0}} Criteria string {{}} DisplayLine int 0 IeqJ int 1 IgtJ int 0 IltJ int 0 Length int 1 Name string {{}} Table string {{}} Type string atom UseColor int 0 @end @data @end}} } Namespace { ::thread { } } Namespace { ::tsv { } } Namespace { ::tpool { } } Namespace { ::chemistry { } } Namespace { ::chemistry::PeriodicTable { scalar ::chemistry::PeriodicTable::gProperties {symbol {atomic radius} {covalent radius} {atomic number} {atomic mass} {discovery date} {electrical conductivity} {thermal conductivity} {specific heat} electronegativity {boiling point} {melting point} density {atomic volume} {lattice spacing a} structure {c/a, alpha, b/a} {coherent scattering length} {incoherent X-section} {absorption @1.8A} name state valency {ldf spin-polarization energy} {atomic heat of formation at 0 K} {Pettifor index} {alternate radius}} scalar ::chemistry::PeriodicTable::gSymbols {X H He Li Be B C N O F Ne Na Mg Al Si P S Cl Ar K Ca Sc Ti V Cr Mn Fe Co Ni Cu Zn Ga Ge As Se Br Kr Rb Sr Y Zr Nb Mo Tc Ru Rh Pd Ag Cd In Sn Sb Te I Xe Cs Ba La Ce Pr Nd Pm Sm Eu Gd Tb Dy Ho Er Tm Yb Lu Hf Ta W Re Os Ir Pt Au Hg Tl Pb Bi Po At Rn Fr Ra Ac Th Pa U Np Pu Am Cm Bk Cf Es Fm Md No Lr Rf Db Sg Bh Hs Mt Ds Rg Cn Nh Fl Mc Lv Ts Og } scalar ::chemistry::PeriodicTable::gType {{} continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous discrete {} continuous continuous continuous {} discrete discrete continuous continuous discrete continuous} scalar ::chemistry::PeriodicTable::gUnits {{} Ang Ang {} amu {} {10^6 / (cm * ohm)} {W /(cm * K)} {[J/g/K]} {} K\] K {} {} Ang {} {} {1.0E-12 cm} barn barn {} {} {} kJ/mol kJ/mol {} Ang} scalar ::chemistry::PeriodicTable::gNElements 118 scalar ::chemistry::PeriodicTable::gElementData {{X --- --- 0 0.0 ---- --- ---- --- --- --- --- --- --- --- --- --- --- --- --- Dummy --- --- --- --- 999 1.10} {H 0.79 0.32 1 1.00794 1766 --- 0.001815 14.304 2.20 20.268 14.025 0.0899 14.4 3.75 HEX --- -0.374 79.9 0.3326 Hydrogen gas 1 86.64 216.035 103 0.20} {He 0.49 0.93 2 4.002602 1895 --- 0.00152 5.193 --- 4.215 0.95 0.1787 0.0 3.57 HEX --- 0.326 0.0 0.00747 Helium gas 0 0.00 0 1 1.00} {Li 2.05 1.23 3 6.941 1817 0.108 0.847 3.6 0.98 1615 453.7 0.53 13.10 3.49 BCC --- -0.190 0.91 70.5 Lithium solid 1 23.00 157.735 12 0.90} {Be 1.40 0.90 4 9.012182 1798 0.313 2.00 1.82 1.57 2745 1560.0 1.85 5.0 2.29 HEX 1.567 0.779 0.005 0.0076 Beryllium solid 2 0.00 319.753 77 0.80} {B 1.17 0.82 5 10.811 1828 1.0e-12 0.270 1.02 2.04 4275 2300.0 2.34 4.6 8.73 TET 0.576 0.530 1.7 767.0 Boron solid 3 24.72 559.906 86 0.65} {C 0.91 0.77 6 12.011 ???? 0.00061 1.29 0.71 2.55 4470.0 4100.0 2.62 4.58 3.57 DIA --- 0.6648 0.001 0.0035 Carbon solid 4 116.26 711.194 95 0.70} {N 0.75 0.75 7 14.00674 1772 --- 0.0002598 1.04 3.04 77.35 63.14 1.251 17.3 4.039 HEX 1.051 0.936 0.49 1.90 Nitrogen gas 3 293.49 470.818 100 0.80} {O 0.65 0.73 8 15.9994 1774 --- 0.0002674 0.92 3.44 90.18 50.35 1.429 14.0 6.83 CUB --- 0.5805 0.000 0.00019 Oxygen gas 2 142.65 246.795 101 0.90} {F 0.57 0.72 9 18.9984032 1886 --- 0.000279 0.82 3.98 84.95 53.48 1.696 17.1 --- MCL --- 0.5654 0.0008 0.0096 Fluorine gas 1 38.19 77.2745 102 0.95} {Ne 0.51 0.71 10 20.1797 1898 --- 0.000493 0.904 --- 27.096 24.553 0.901 16.7 4.43 FCC --- 0.4547 0.008 0.039 Neon gas 0 0.00 0 2 1.40} {Na 2.23 1.54 11 22.989768 1807 0.139 1.41 1.23 0.93 1156 371.0 0.97 23.7 4.23 BCC --- 0.363 1.62 0.530 Sodium solid 1 19.86 107.763 11 1.10} {Mg 1.72 1.36 12 24.3050 1808 0.226 1.56 1.02 1.31 1363 922 1.74 13.97 3.21 HEX 1.624 0.5375 0.077 0.063 Magnesium solid 2 0.00 145.901 73 0.95} {Al 1.82 1.18 13 26.981539 1825 0.377 2.37 0.90 1.61 2793 933.25 2.70 10.0 4.05 FCC --- 0.3449 0.0085 0.231 Aluminum solid 3 14.66 327.621 80 0.85} {Si 1.46 1.11 14 28.0855 1823 2.52e-12 1.48 0.71 1.90 3540.0 1685 2.33 12.1 5.43 DIA --- 0.4149 0.015 0.171 Silicon solid 4 64.45 445.667 85 0.80} {P 1.23 1.06 15 30.97362 1669 1.0e-17 0.00235 0.77 2.19 550.0 317.30 1.82 17.0 7.17 CUB --- 0.513 0.006 0.172 Phosphorus solid 3 156.41 315.663 90 0.90} {S 1.09 1.02 16 32.066 ???? 0.5e-23 0.00269 0.71 2.58 717.75 388.36 2.07 15.5 10.47 ORC 2.339/1.229 0.2847 0.007 0.53 Sulfur solid 2 73.16 274.925 94 1.25} {Cl 0.97 0.99 17 35.4527 1774 --- 0.000089 0.48 3.16 239.1 172.16 3.17 22.7 6.24 ORC 1.324/0.718 0.95792 5.2 33.5 Chlorine gas 1 19.12 119.6195 99 1.35} {Ar 0.88 0.98 18 39.948 1894 --- 0.0001772 0.520 --- 87.30 83.81 1.784 28.5 5.26 FCC --- 0.1909 0.22 0.675 Argon gas 0 0.00 0 3 1.70} {K 2.77 2.03 19 39.0983 1807 0.139 1 0.75 0.82 1032 336.35 0.86 45.46 5.23 BCC --- 0.371 0.25 2.1 Potassium solid 1 14.29 89.891 10 1.50} {Ca 2.23 1.91 20 40.078 1808 0.298 2.00 0.63 1.00 1757 1112 1.55 29.9 5.58 FCC --- 0.490 0.03 0.43 Calcium solid 2 0.00 177.339 16 1.30} {Sc 2.09 1.62 21 44.955910 1879 0.0177 0.158 0.6 1 3104 1812 3.0 15.0 3.31 HEX 1.594 1.229 4.5 27.2 Scandium solid 3 15.68 376.22 19 1.05} {Ti 2.00 1.45 22 47.88 1791 0.0234 0.219 0.52 1.54 3562 1943 4.50 10.64 2.95 HEX 1.588 -0.330 2.67 6.09 Titanium solid 4 68.91 470.285 51 1.00} {V 1.92 1.34 23 50.9415 1830 0.0489 0.307 0.49 1.63 3682 2175 5.8 8.78 3.02 BCC --- -0.0382 5.187 5.08 Vanadium solid 5 166.19 514.84 54 0.98} {Cr 1.85 1.18 24 51.9961 1797 0.0774 0.937 0.45 1.66 2945 2130.0 7.19 7.23 2.88 BCC --- 0.3635 1.83 3.07 Chromium solid 3 493.88 394.86 57 0.97} {Mn 1.79 1.17 25 54.93085 1774 0.00695 0.0782 0.48 1.55 2335 1517 7.43 1.39 8.89 FCC --- -0.373 0.40 13.3 Manganese solid 2 511.24 279.8 60 0.96} {Fe 1.72 1.17 26 55.847 ???? 0.0993 0.802 0.44 1.83 3135 1809 7.86 7.1 2.87 BCC --- 0.954 0.39 2.56 Iron solid 2 341.93 411.405 61 0.95} {Co 1.67 1.16 27 58.93320 1737 0.172 1.00 0.42 1.88 3201 1768 8.90 6.7 2.51 HEX 1.622 0.250 4.8 37.18 Cobalt solid 2 199.63 423.41 64 0.94} {Ni 1.62 1.15 28 58.69 1751 0.143 0.907 0.44 1.91 3187 1726 8.90 6.59 3.52 FCC --- 1.03 5.2 4.49 Nickel solid 2 91.65 427.97 67 0.93} {Cu 1.57 1.17 29 63.546 ???? 0.596 4.01 0.38 1.90 2836 1357.6 8.96 7.1 3.61 FCC --- 0.7718 0.52 3.78 Copper solid 2 19.68 336.207 72 0.95} {Zn 1.53 1.25 30 65.39 1746 0.166 1.16 0.39 1.65 1180.0 692.73 7.14 9.2 2.66 HEX 1.856 0.5680 0.077 1.11 Zinc solid 2 0.00 129.86 76 1.00} {Ga 1.81 1.26 31 69.723 1875 0.0678 0.406 0.37 1.81 2478 302.90 5.91 11.8 4.51 ORC 1.695/1.001 0.7288 0.0 2.9 Gallium solid 3 14.36 276.02 81 0.90} {Ge 1.52 1.22 32 72.61 1886 1 0.599 0.32 2.01 3107 1210.4 5.32 13.6 5.66 DIA --- 0.81929 0.17 2.3 Germanium solid 4 59.15 369.238 84 0.85} {As 1.33 1.20 33 74.92159 ???? 0.0345 0.500 0.33 2.18 876 1081 5.72 13.1 4.13 RHL 54\"10' 0.658 0.060 4.5 Arsenic solid 3 136.99 301.93 89 1.00} {Se 1.22 1.16 34 78.96 1817 1.0e-12 0.0204 0.32 2.55 958 494 4.80 16.45 4.36 HEX 1.136 0.797 0.33 11.7 Selenium solid 2 61.67 226.421 93 1.30} {Br 1.12 1.14 35 79.904 1826 --- 0.00122 0.473 2.96 332.25 265.90 3.12 23.5 6.67 ORC 1.307/0.672 0.679 0.10 6.9 Bromine liquid 1 15.62 117.933 98 1.40} {Kr 1.03 1.12 36 83.80 1898 --- 0.0000949 0.248 --- 119.80 115.78 3.74 38.9 5.72 FCC --- 0.780 0.03 25. Krypton gas 0 0.00 0 4 1.90} {Rb 2.98 2.16 37 85.4678 1861 0.0779 0.582 0.363 0.82 961 312.64 1.53 55.9 5.59 BCC --- 0.708 0.3 0.38 Rubidium solid 1 12.78 82.192 9 1.80} {Sr 2.45 1.91 38 87.62 1790 0.0762 0.353 0.30 0.95 1650.0 1041 2.6 33.7 6.08 FCC --- 0.702 0.04 1.28 Strontium solid 2 0.00 164 15 1.60} {Y 2.27 1.62 39 88.90585 1794 0.0166 0.172 0.30 1.22 3611 1799 4.5 19.8 3.65 HEX 1.571 0.775 0.15 1.28 Yttrium solid 3 11.91 420.11 25 1.30} {Zr 2.16 1.45 40 91.224 1789 0.0236 0.227 0.27 1.33 4682 2125 6.49 14.1 3.23 HEX 1.593 0.716 0.16 0.185 Zirconium solid 4 51.13 607.71 49 1.15} {Nb 2.09 1.34 41 92.90638 1801 0.0693 0.537 0.26 1.6 5017 2740.0 8.55 10.87 3.30 BCC --- 0.7054 0.0024 1.15 Niobium solid 5 261.09 722.89 53 1.12} {Mo 2.01 1.30 42 95.94 1778 0.187 1.38 0.25 2.16 4912 2890.0 10.2 9.4 3.15 BCC --- 0.695 0.28 2.55 Molybdenum solid 6 392.14 656.393 56 1.11} {Tc 1.95 1.27 43 98.91 1937 0.067 0.506 0.21 1.9 4538 2473 11.5 8.5 2.74 HEX 1.604 0.68 0.0 20.0 Technetium solid ? 359.05 678 59 1.10} {Ru 1.89 1.25 44 101.07 1844 0.137 1.17 0.238 2.2 4423 2523 12.2 8.3 2.70 HEX 1.584 0.721 0.07 2.56 Ruthenium solid 3 166.40 641.37 62 1.09} {Rh 1.83 1.25 45 102.90550 1803 0.211 1.50 0.242 2.28 3970.0 2236 12.4 8.3 3.90 FCC --- 0.588 0.0 145.0 Rhodium solid 3 88.99 555.71 65 1.08} {Pd 1.79 1.28 46 106.42 1803 0.0950 0.718 0.24 2.20 3237 1825 12.0 8.9 3.89 FCC --- 0.591 0.093 6.9 Palladium solid 2 0.00 377.24 69 1.07} {Ag 1.75 1.34 47 107.8682 ???? 0.630 4.29 0.235 1.93 2436 1234 10.5 10.3 4.09 FCC --- 0.5922 0.58 63.3 Silver solid 1 16.11 284.45 71 1.10} {Cd 1.71 1.48 48 112.411 1817 0.138 0.968 0.23 1.69 1040.0 594.18 8.65 13.1 2.98 HEX 1.886 0.51 2.4 2520.0 Cadmium solid 2 0.00 111.85 75 1.20} {In 2.00 1.44 49 114.82 1863 0.116 0.816 0.23 1.78 2346 429.76 7.31 15.7 4.59 TET 1.076 0.4065 0.54 193.8 Indium solid 3 12.46 243.7 79 1.05} {Sn 1.72 1.41 50 118.710 ???? 0.0917 0.666 0.227 1.96 2876 505.06 7.30 16.3 5.82 TET 0.546 0.6228 0.022 0.626 Tin solid 4 49.86 301.308 83 1.00} {Sb 1.53 1.40 51 121.75 ???? 0.0288 0.243 0.21 2.05 1860.0 904 6.68 18.23 4.51 RHL 58\"6' 0.5641 0.3 5.1 Antimony solid 3 113.05 262.7 88 1.30} {Te 1.42 1.36 52 127.60 1782 2.0e-6 0.0235 0.20 2.1 1261 722.65 6.24 20.5 4.45 HEX 1.33 0.543 0.02 4.7 Tellurium solid 2 50.05 196.62 92 1.70} {I 1.32 1.33 53 126.90447 1804 8.0e-16 0.00449 0.214 2.66 458.4 386.7 4.92 25.74 7.27 ORC 1.347/0.659 0.528 0.0 6.2 Iodine solid 1 12.51 113.759 97 1.80} {Xe 1.24 1.31 54 131.29 1898 --- 0.0000569 0.158 --- 165.03 161.36 5.89 37.3 6.20 FCC --- 0.485 0.0 23.9 Xenon gas 0 0.00 0 5 2.10} {Cs 3.34 2.35 55 132.90543 1860 0.0489 0.359 0.24 0.79 944 301.55 1.87 71.07 6.05 BCC --- 0.542 0.21 29.0 Cesium solid 1 10.91 78.014 8 1.80} {Ba 2.78 1.98 56 137.327 1808 0.030 0.184 0.204 0.89 2171 1002 3.5 39.24 5.02 BCC --- 0.525 0.01 1.2 Barium solid 2 0.00 181.7 14 1.60} {La 2.74 1.69 57 138.9055 1839 0.0126 0.135 0.19 1.10 3730.0 1193 6.7 20.73 3.75 HEX 1.619 0.824 1.13 8.97 Lanthanum solid 3 10.68 431.36 33 1.30} {Ce 2.70 1.65 58 140.115 1803 0.0115 0.114 0.19 1.12 3699 1071 6.78 20.67 5.16 FCC --- 0.484 0.0 0.63 Cerium solid 3 33.37 424.33 32 1.20} {Pr 2.67 1.65 59 140.90765 1885 0.0148 0.125 0.19 1.13 3785 1204 6.77 20.8 3.67 HEX 1.614 0.445 0.016 11.5 Praseodymium solid 3 134.97 357.08 31 1.19} {Nd 2.64 1.64 60 144.24 1925 0.0157 0.165 0.19 1.14 3341 1289 7.00 20.6 3.66 HEX 1.614 0.769 11. 50.5 Neodymium solid 3 248.46 328.93 30 1.18} {Pm 2.62 1.63 61 146.9151 1945 --- 0.179 0.18 1.13 3785 1204 6.475 22.39 --- --- --- 1.26 1.3 168.4 Promethium solid 3 399.56 --- 29 1.17} {Sm 2.59 1.62 62 150.36 1879 0.00956 0.133 0.20 1.17 2064 1345 7.54 19.95 9.00 RHL 23\"13' 0.42 50. 5670. Samarium solid 3 589.70 206.43 28 1.16} {Eu 2.56 1.85 63 151.965 1901 0.0112 0.139 0.18 1.2 1870.0 1090.0 5.26 28.9 4.61 BCC --- 0.668 2.2 4600. Europium solid 3 820.13 176.8 18 1.15} {Gd 2.54 1.61 64 157.25 1880 0.00736 0.106 0.23 1.20 3539 1585 7.89 19.9 3.64 HEX 1.588 0.95 158.0 48890. Gadolinium solid 3 949.67 398.47 27 1.14} {Tb 2.51 1.59 65 158.92534 1843 0.00889 0.111 0.18 1.2 3496 1630.0 8.27 19.2 3.60 HEX 1.581 0.738 0.004 23.4 Terbium solid 3 436.00 390.91 26 1.13} {Dy 2.49 1.59 66 162.50 1886 0.0108 0.107 0.17 1.22 2835 1682 8.54 19.0 3.59 HEX 1.573 1.69 54.5 940. Dysprosium solid 3 283.86 291.8 24 1.12} {Ho 2.47 1.58 67 164.93032 1878 0.0124 0.162 0.16 1.23 2968 1743 8.80 18.7 3.58 HEX 1.570 0.808 0.36 64.7 Holmium solid 3 162.17 302.8 23 1.11} {Er 2.45 1.57 68 167.26 1843 0.0117 0.143 0.17 1.24 3136 1795 9.05 18.4 3.56 HEX 1.570 0.803 1.2 159.2 Erbium solid 3 73.11 318.18 22 1.10} {Tm 2.42 1.56 69 168.93421 1879 0.0150 0.168 0.16 1.25 2220.0 1818 9.33 18.1 3.54 HEX 1.570 0.705 0.41 105. Thulium solid 3 18.52 233.19 21 1.09} {Yb 2.40 1.74 70 173.04 1878 0.0351 0.349 0.15 1.1 1467 1097 6.98 24.79 5.49 FCC --- 1.24 3.0 35.1 Ytterbium solid 3 0.00 152.51 17 1.08} {Lu 2.25 1.56 71 174.967 1907 0.0185 0.164 0.15 1.27 3668 1936 9.84 17.78 3.51 HEX 1.585 0.73 0.1 76.4 Lutetium solid 3 11.53 428.18 20 1.07} {Hf 2.16 1.44 72 178.49 1923 0.0312 0.230 0.14 1.3 4876 2500.0 13.1 13.6 3.20 HEX 1.582 0.777 2.6 104.1 Hafnium solid 4 48.55 618.65 50 1.15} {Ta 2.09 1.34 73 180.9479 1802 0.0761 0.575 0.14 1.5 5731 3287 16.6 10.90 3.31 BCC --- 0.691 0.02 20.6 Tantalum solid 5 112.72 781.44 52 1.12} {W 2.02 1.30 74 183.85 1783 0.189 1.74 0.13 2.36 5828 3680.0 19.3 9.53 3.16 BCC --- 0.477 2.00 18.4 Tungsten solid 6 204.93 847.76 55 1.11} {Re 1.97 1.28 75 186.207 1925 0.0542 0.479 0.13 1.9 5869 3453 21.0 8.85 2.76 HEX 1.615 0.92 0.9 90.7 Rhenium solid 5 325.85 769.22 58 1.10} {Os 1.92 1.26 76 190.2 1804 0.109 0.876 0.13 2.2 5285 3300.0 22.4 8.49 2.74 HEX 1.579 1.10 0.4 16.0 Osmium solid 4 210.26 791 63 1.09} {Ir 1.87 1.27 77 192.22 1804 0.197 1.47 0.130 2.20 4701 2716 22.5 8.54 3.84 FCC --- 1.06 0.2 425.3 Iridium solid 4 119.17 664.07 66 1.08} {Pt 1.83 1.30 78 195.08 1735 0.0966 0.716 0.13 2.28 4100.0 2045 21.4 9.10 3.92 FCC --- 0.963 0.13 10.3 Platinum solid 4 36.06 564.16 68 1.07} {Au 1.79 1.34 79 196.96654 ???? 0.452 3.17 0.128 2.54 3130.0 1337.58 19.3 10.2 4.08 FCC --- 0.763 0.36 98.65 Gold solid 3 14.78 365.81 70 1.10} {Hg 1.76 1.49 80 200.59 ???? 0.0104 0.0834 0.139 2.00 630.0 234.28 13.53 14.82 2.99 RHL 70\"45' 1.266 6.7 372.3 Mercury liquid 2 0.00 64.525 74 1.20} {Tl 2.08 1.48 81 204.3833 1861 0.0617 0.461 0.13 2.04 1746 577 11.85 17.2 3.46 HEX 1.599 0.8785 0.14 3.43 Thallium solid 3 11.75 182.83 78 1.20} {Pb 1.81 1.47 82 207.2 ???? 0.0481 0.353 0.13 2.33 2023 600.6 11.4 18.17 4.95 FCC --- 0.94003 0.003 0.171 Lead solid 4 46.28 195.873 82 1.10} {Bi 1.63 1.46 83 208.98037 ???? 0.00867 0.0787 0.12 2.02 1837 544.52 9.8 21.3 4.75 RHL 58\"14' 0.85256 0.0072 0.0338 Bismuth solid 3 103.69 207.23 87 1.30} {Po 1.53 1.46 84 209.98 1898 0.0219 0.20 0.12 2.0 1235 527 9.4 22.23 3.35 SC --- --- --- --- Polonium solid 2 45.46 --- 91 1.90} {At 1.43 1.45 85 209.9871 1940 --- 0.017 --- 2.2 610.0 575 --- --- --- --- --- --- --- --- Astatine solid 1 11.27 --- 96 2.00} {Rn 1.34 1.43 86 (222) 1898 --- 0.0000364 0.09 --- 211 202 9.91 50.5 --- --- --- --- --- --- Radon gas 0 0.00 0 6 2.20} {Fr 3.50 2.50 87 223.0197 1939 0.03 0.15 --- 0.7 950.0 300.0 --- --- --- --- --- 0.8495 0.0072 0.036 Francium solid 1 10.15 --- 7 2.00} {Ra 3.00 2.40 88 226.025 1898 --- 0.186 0.12 0.9 1809 973 5 45.20 --- --- --- 1.0 0.0 12.8 Radium solid 2 0.00 159 13 1.50} {Ac 3.20 2.20 89 227.028 1899 --- 0.12 --- 1.1 3473 1323 10.07 22.54 5.31 FCC --- --- --- --- Actinium solid 3 9.74 406 48 1.30} {Th 3.16 1.65 90 232.0381 1828 0.0653 0.540 0.12 1.3 5061 2028 11.7 19.9 5.08 FCC --- 0.984 0.0 7.37 Thorium solid 3 39.72 602 47 1.20} {Pa 3.14 1.535 91 231.03588 1917 0.0529 0.47 0.12 1.5 --- --- 15.4 15.0 3.92 TET 0.825 0.91 0.0 200.6 Protactinium solid 3 75.76 607 46 1.10} {U 3.11 1.42 92 238.0289 1789 0.0380 0.276 0.12 1.38 4407 1405 18.90 12.59 2.85 ORC 2.056/1.736 0.8417 0.004 7.57 Uranium solid 3 148.67 533 45 1.10} {Np 3.08 1.42 93 237.048 1940 0.00822 0.063 0.12 1.36 --- 910.0 20.4 11.62 4.72 ORC 1.411/1.035 1.055 0.0 175.9 Neptunium solid 3 {} --- 44 1.10} {Pu 3.05 1.42 94 244.0642 1940 0.00666 0.0674 0.13 1.28 3503 913 19.8 12.32 --- MCL --- 1.41 0.0 558. Plutonium solid 3 {} --- 43 1.10} {Am 3.02 --- 95 243.061375 1945 0.022 0.1 0.11 1.3 2880.0 1268 13.6 17.86 --- --- --- 0.83 0.0 75.3 Americium solid 3 {} --- 42 1.10} {Cm 2.99 --- 96 247.0703 1944 --- 0.1 --- 1.3 --- 1340.0 13.511 18.28 --- --- --- 0.7 0.0 0.0 Curium solid 3 {} --- 41 1.10} {Bk 2.97 --- 97 (247) 1949 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Berkelium solid 3 {} --- 40 1.10} {Cf 2.95 --- 98 (251) 1950 --- 0.1 --- 1.3 --- 900.0 --- --- --- --- --- --- --- --- Californium solid 3 {} --- 39 1.10} {Es 2.92 --- 99 (252) 1952 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Einsteinium solid 3 {} --- 38 1.10} {Fm 2.90 --- 100 257.0951 1953 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Fermium solid 3 {} --- 37 1.10} {Md 2.87 --- 101 (258) 1955 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Mendelevium solid 3 {} --- 36 1.10} {No 2.85 --- 102 (259) 1957 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Nobelium solid 3 {} --- 35 1.10} {Lr 2.82 --- 103 (266) 1961 --- 0.1 --- --- --- --- --- --- --- --- --- --- --- --- Lawrencium solid 3 {} --- 34 1.10} {Rf --- --- 104 261.1087 1964 --- 0.23 --- --- --- --- --- --- --- --- --- --- --- --- Rutherfordium solid ? {} --- 104 1.10} {Db --- --- 105 262.1138 1970 --- 0.58 --- --- --- --- --- --- --- --- --- --- --- --- Dubnium solid ? {} --- 105 1.10} {Sg --- --- 106 263.1182 1974 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Seaborgium solid ? {} --- 106 1.10} {Bh --- --- 107 262.1229 1976 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Bohrium solid ? {} --- 107 1.10} {Hs --- --- 108 (270) 1984 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Hassium solid ? {} --- 108 1.10} {Mt --- --- 109 (268) 1982 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Meitnerium solid ? {} --- 109 1.10} {Ds --- --- 110 (281) 1994 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Darmstadtium solid ? {} --- {} 1.10} {Rg --- --- 111 (280) 1994 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Roentgenium solid ? {} {} {} {}} {Cn --- --- 112 (277) 1996 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Copernicium solid ? {} {} {} {}} {Nh --- --- 113 (287) 2003 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Nihonium solid ? {} {} {} {}} {Fl --- --- 114 (289) 1999 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Flerovium solid ? {} {} {} {}} {Mc --- --- 115 (289) 2004 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Moscovium solid ? {} {} {} {}} {Lv --- --- 116 (293) 2000 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Livermorium solid ? {} {} {} {}} {Ts --- --- 117 (294) 2010 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Tennessine solid ? {} {} {} {}} {Og --- --- 118 (294) 2006 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Oganesson solid ? {} {} {} {}}} } } }