job.id 993 job.name {response tensor ODPABAPP_6_geo from job 986} job.description { } job.status finished job.submitted {2025-07-23 21:09:07} job.started {2025-07-23 21:09:08} job.finished {2025-07-24 03:00:10} job.queue 9 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.366 0.366 0.366} 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 1 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 {response tensor ODPABAPP_6_geo from job 986} 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 {Single Point} 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.508374693045 0.0339399187405 0.449256604409} Untitled_1::C1 1 1 1 {} H 0.0 {0.63893299956 0.0741849914896 0.309271561339} Untitled_1::H1 2 1 6 {} C 0.0 {0.561015762314 0.0772765333634 0.404454130931} Untitled_1::C2 3 1 1 {} H 0.0 {0.571883260985 0.138721145015 0.414213353781} Untitled_1::H2 4 1 6 {} C 0.0 {0.601024494354 0.03959158616 0.34637540348} Untitled_1::C3 5 1 6 {} C 0.0 {0.496109520608 0.954542202555 0.434997845845} Untitled_1::C4 6 1 1 {} H 0.0 {0.458245604507 0.920862385194 0.473016613377} Untitled_1::H3 7 1 6 {} C 0.0 {0.531327965129 0.919189635683 0.371186785799} Untitled_1::C5 8 1 1 {} H 0.0 {0.516876259461 0.859897869574 0.353060738089} Untitled_1::H4 9 1 6 {} C 0.0 {0.581773725109 -0.0363814853782 0.326303883045} Untitled_1::C6 10 1 8 {} O 0.0 {0.597153356479 0.942270060244 0.248602639512} Untitled_1::O1 11 1 6 {} C 0.0 {0.539034160264 -0.0106990654253 0.212859135843} Untitled_1::C7 12 1 1 {} H 0.0 {0.500300744469 0.179706563299 0.185882372818} Untitled_1::H5 13 1 6 {} C 0.0 {0.552199453507 0.0683826722146 0.19992309551} Untitled_1::C8 14 1 1 {} H 0.0 {0.611241259484 0.0918597438179 0.198837579723} Untitled_1::H6 15 1 6 {} C 0.0 {0.488710543744 0.117967001164 0.193980938817} Untitled_1::C9 16 1 6 {} C 0.0 {0.463891968996 0.959847052875 0.21333033006} Untitled_1::C10 17 1 1 {} H 0.0 {0.455757076025 0.898315318306 0.227343481559} Untitled_1::H7 18 1 6 {} C 0.0 {0.400662444056 0.00998102766183 0.206374796147} Untitled_1::C11 19 1 1 {} H 0.0 {0.341963822523 0.985386681758 0.210722514308} Untitled_1::H8 20 1 6 {} C 0.0 {0.411803356394 0.0898888497423 0.19579370001} Untitled_1::C12 21 1 6 {} C 0.0 {0.342568966141 0.144502625483 0.186564551382} Untitled_1::C13 22 1 6 {} C 0.0 {0.36415814295 0.208210494617 0.127685491776} Untitled_1::C14 23 1 1 {} H 0.0 {0.343780447558 0.250294676302 0.932784416627} Untitled_1::H9 24 1 6 {} C 0.0 {0.342692104854 0.202213062378 0.0494339578832} Untitled_1::C15 25 1 1 {} H 0.0 {0.310594548918 0.151949979128 0.0291274071595} Untitled_1::H10 26 1 6 {} C 0.0 {0.362448833303 0.25778197596 0.993153855606} Untitled_1::C16 27 1 6 {} C 0.0 {0.409141150138 0.273674405466 0.147718865866} Untitled_1::C17 28 1 1 {} H 0.0 {0.428036737921 0.2830731832 0.207325699239} Untitled_1::H11 29 1 6 {} C 0.0 {0.431277130126 0.328458127578 0.0923704920057} Untitled_1::C18 30 1 1 {} H 0.0 {0.466254043177 0.37805525376 0.110247218504} Untitled_1::H12 31 1 6 {} C 0.0 {0.406726342313 0.322039366334 0.0152120405334} Untitled_1::C19 32 1 8 {} O 0.0 {0.425198943834 0.377146284777 0.958425674377} Untitled_1::O2 33 1 6 {} C 0.0 {0.474822580156 0.437965900671 0.978903283422} Untitled_1::C20 34 1 1 {} H 0.0 {0.46672140375 0.635112285156 0.991489753223} Untitled_1::H13 35 1 6 {} C 0.0 {0.445758641581 0.513092568778 0.970464705228} Untitled_1::C21 36 1 1 {} H 0.0 {0.38635370854 0.522100608804 0.950673595673} Untitled_1::H14 37 1 6 {} C 0.0 {0.489910433649 0.57602817343 0.994876451543} Untitled_1::C22 38 1 6 {} C 0.0 {0.551365944184 0.426468573496 0.00495566349901} Untitled_1::C23 39 1 1 {} H 0.0 {0.577077349587 0.368666322229 0.00780143988154} Untitled_1::H15 40 1 6 {} C 0.0 {0.595486100049 0.489251937107 0.0308774268535} Untitled_1::C24 41 1 1 {} H 0.0 {0.654464537195 0.479809507057 0.052933815638} Untitled_1::H16 42 1 6 {} C 0.0 {0.562769655417 0.563439050613 0.0286229645714} Untitled_1::C25 43 1 6 {} C 0.0 {0.269189712067 0.10050588114 0.159158573754} Untitled_1::C26 44 1 6 {} C 0.0 {0.323253425919 0.177587085995 0.267307957799} Untitled_1::C27 45 1 1 {} H 0.0 {0.220131307021 0.14090141645 0.152730839817} Untitled_1::H17 46 1 1 {} H 0.0 {0.251372908942 0.0551846882144 0.200711632651} Untitled_1::H18 47 1 1 {} H 0.0 {0.278878137208 0.0718304529701 0.103044622269} Untitled_1::H19 48 1 1 {} H 0.0 {0.270406454625 0.213335607866 0.26304671898} Untitled_1::H20 49 1 1 {} H 0.0 {0.370403214865 0.213431245421 0.292218504455} Untitled_1::H21 50 1 1 {} H 0.0 {0.310632977557 0.130038654771 0.308214625089} Untitled_1::H22 51 1 8 {} O 0.0 {0.0975764768078 0.300099166469 0.551663206061} Untitled_1::O3 52 1 6 {} C 0.0 {0.113617000814 0.239268414614 0.585179723218} Untitled_1::C28 53 1 7 {} N 0.0 {0.0990384644723 0.163673710232 0.555346307367} Untitled_1::N1 54 1 6 {} C 0.0 {0.129928053485 0.10471553065 0.601748879328} Untitled_1::C29 55 1 8 {} O 0.0 {0.12950549211 0.0345371045696 0.588165549954} Untitled_1::O4 56 1 6 {} C 0.0 {0.16459127171 0.145843176993 0.669287449156} Untitled_1::C30 57 1 6 {} C 0.0 {0.213490858393 0.115600157216 0.725470443641} Untitled_1::C31 58 1 6 {} C 0.0 {0.252878076589 0.16779554017 0.773679819863} Untitled_1::C32 59 1 8 {} O 0.0 {0.320366281528 0.144413326321 0.812646223731} Untitled_1::O5 60 1 6 {} C 0.0 {0.37989849946 0.12590919065 0.759474634634} Untitled_1::C33 61 1 6 {} C 0.0 {0.447509685036 0.170954286604 0.763137101538} Untitled_1::C34 62 1 6 {} C 0.0 {0.501070876619 0.166075292328 0.702585755787} Untitled_1::C35 63 1 6 {} C 0.0 {0.481514456356 0.124244180296 0.637297410092} Untitled_1::C36 64 1 6 {} C 0.0 {0.516391078809 0.126623194876 0.560097628118} Untitled_1::C37 65 1 8 {} O 0.0 {0.567919287404 0.170738090094 0.536128838688} Untitled_1::O6 66 1 6 {} C 0.0 {0.410831709956 0.0401851978312 0.55803980011} Untitled_1::C38 67 1 8 {} O 0.0 {0.359504497113 -0.000626293818221 0.531727775728} Untitled_1::O7 68 1 6 {} C 0.0 {0.417952206411 0.0745445571577 0.636811004154} Untitled_1::C39 69 1 6 {} C 0.0 {0.368794240355 0.0695679111132 0.700660851683} Untitled_1::C40 70 1 6 {} C 0.0 {0.230397847778 0.245955216333 0.777293813594} Untitled_1::C41 71 1 6 {} C 0.0 {0.182281156311 0.275817653006 0.718972248825} Untitled_1::C42 72 1 6 {} C 0.0 {0.152949926207 0.226049565836 0.661826405018} Untitled_1::C43 73 1 1 {} H 0.0 {0.224358167891 0.0532706439464 0.729395336639} Untitled_1::H23 74 1 1 {} H 0.0 {0.456524154309 0.212331498723 0.810720008901} Untitled_1::H24 75 1 1 {} H 0.0 {0.554544096461 0.197912905401 0.702729616577} Untitled_1::H25 76 1 1 {} H 0.0 {0.320638694709 0.0285815962877 0.700063087588} Untitled_1::H26 77 1 1 {} H 0.0 {0.252325220716 0.283250728503 0.823962114658} Untitled_1::H27 78 1 1 {} H 0.0 {0.169977228616 0.338139698471 0.716679320186} Untitled_1::H28 79 1 7 {} N 0.0 {0.47607885307 0.0691506080575 0.515677726251} Untitled_1::N2 80 1 6 {} C 0.0 {0.831016767573 0.290814749727 0.274831069929} Untitled_2::C1 81 1 1 {} H 0.0 {0.854459466787 0.440684273328 0.147314283785} Untitled_2::H1 82 1 6 {} C 0.0 {0.861184771039 0.335794142219 0.214205600552} Untitled_2::C2 83 1 1 {} H 0.0 {0.909492293648 0.312985824525 0.18103867697} Untitled_2::H2 84 1 6 {} C 0.0 {0.831247652676 0.40836687297 0.196868825994} Untitled_2::C3 85 1 6 {} C 0.0 {0.772588803399 0.321692199991 0.321774215498} Untitled_2::C4 86 1 1 {} H 0.0 {0.749381078853 0.287944680871 0.369410096109} Untitled_2::H3 87 1 6 {} C 0.0 {0.74602524462 0.396657470421 0.307791616327} Untitled_2::C5 88 1 1 {} H 0.0 {0.704687745572 0.424359720977 0.346352923118} Untitled_2::H4 89 1 6 {} C 0.0 {0.776555382683 0.440491877856 0.247749571407} Untitled_2::C6 90 1 8 {} O 0.0 {0.754871887907 0.517508304413 0.247006859085} Untitled_2::O1 91 1 6 {} C 0.0 {0.812628131661 0.569792348611 0.227813995387} Untitled_2::C7 92 1 1 {} H 0.0 {0.824509377061 0.757728035301 0.176305020137} Untitled_2::H5 93 1 6 {} C 0.0 {0.78824338556 0.645605640936 0.214651171504} Untitled_2::C8 94 1 1 {} H 0.0 {0.728088522762 0.661212013498 0.226394724066} Untitled_2::H6 95 1 6 {} C 0.0 {0.841757993608 0.697976027962 0.185505020801} Untitled_2::C9 96 1 6 {} C 0.0 {0.891478091601 0.550529065651 0.222871165029} Untitled_2::C10 97 1 1 {} H 0.0 {0.913271152948 0.495786465562 0.245285141794} Untitled_2::H7 98 1 6 {} C 0.0 {0.94272428263 0.602261339795 0.188270580831} Untitled_2::C11 99 1 1 {} H 0.0 {0.00328872499468 0.584116004918 0.181337466011} Untitled_2::H8 100 1 6 {} C 0.0 {0.917478802188 0.676018982601 0.166298794945} Untitled_2::C12 101 1 6 {} C 0.0 {0.968285187794 0.734428256113 0.124274104344} Untitled_2::C13 102 1 6 {} C 0.0 {0.934913139759 0.740109886191 0.0408574694007} Untitled_2::C14 103 1 1 {} H 0.0 {0.931272127574 0.642186478459 0.866567366426} Untitled_2::H9 104 1 6 {} C 0.0 {0.947648431719 0.681449003291 0.984762464047} Untitled_2::C15 105 1 1 {} H 0.0 {0.982180524777 0.629982732031 0.998748144398} Untitled_2::H10 106 1 6 {} C 0.0 {0.917390325354 0.686968117048 0.909499556194} Untitled_2::C16 107 1 6 {} C 0.0 {0.889795113703 0.803045598012 0.0172879708783} Untitled_2::C17 108 1 1 {} H 0.0 {0.88208490293 0.851276474603 0.0571530335103} Untitled_2::H11 109 1 6 {} C 0.0 {0.857143091414 0.808556333006 0.943273180458} Untitled_2::C18 110 1 1 {} H 0.0 {0.822998700244 0.859318074427 0.926530074692} Untitled_2::H12 111 1 6 {} C 0.0 {0.870153552853 0.750285081857 0.88910814856} Untitled_2::C19 112 1 8 {} O 0.0 {0.837166779857 0.760174752903 0.814799483948} Untitled_2::O2 113 1 6 {} C 0.0 {0.768021067496 0.718705736656 0.804313035616} Untitled_2::C20 114 1 1 {} H 0.0 {0.691714931284 0.545324047753 0.854048690027} Untitled_2::H13 115 1 6 {} C 0.0 {0.764324506133 0.641483250289 0.828416181923} Untitled_2::C21 116 1 1 {} H 0.0 {0.81557982142 0.611460520394 0.850545792792} Untitled_2::H14 117 1 6 {} C 0.0 {0.693736709996 0.603177510297 0.828767965351} Untitled_2::C22 118 1 6 {} C 0.0 {0.702456782404 0.754763768489 0.772210816913} Untitled_2::C23 119 1 1 {} H 0.0 {0.705160981264 0.815818995493 0.753465913765} Untitled_2::H15 120 1 6 {} C 0.0 {0.632167867479 0.71337685261 0.766982209955} Untitled_2::C24 121 1 1 {} H 0.0 {0.581476574635 0.741518092773 0.741403614327} Untitled_2::H16 122 1 6 {} C 0.0 {0.626303847676 0.638152420319 0.798154650867} Untitled_2::C25 123 1 6 {} C 0.0 {0.968246825115 0.810171808708 0.173402318702} Untitled_2::C26 124 1 6 {} C 0.0 {0.0520684084022 0.706885889337 0.120698036706} Untitled_2::C27 125 1 1 {} H 0.0 {0.00807450413147 0.854588550242 0.151421340882} Untitled_2::H17 126 1 1 {} H 0.0 {-0.0121941516357 0.796028532809 0.23267418838} Untitled_2::H18 127 1 1 {} H 0.0 {0.91098387425 0.837546820181 0.178692855357} Untitled_2::H19 128 1 1 {} H 0.0 {0.0864441812347 0.749672240121 0.0882398980469} Untitled_2::H20 129 1 1 {} H 0.0 {0.0594937846375 0.651165786431 0.0905759798622} Untitled_2::H21 130 1 1 {} H 0.0 {0.0761124378447 0.701178679521 0.179676094547} Untitled_2::H22 131 1 8 {} O 0.0 {0.595948162033 0.693989915705 0.935833141197} Untitled_2::O3 132 1 6 {} C 0.0 {0.621171979578 0.689480634136 0.00226260052121} Untitled_2::C28 133 1 7 {} N 0.0 {0.60451767818 0.628800667442 0.0560208225167} Untitled_2::N1 134 1 6 {} C 0.0 {0.615409515075 0.655401660008 0.133136966692} Untitled_2::C29 135 1 8 {} O 0.0 {0.592396865374 0.62386752499 0.193023906038} Untitled_2::O4 136 1 6 {} C 0.0 {0.657530641826 0.731291041568 0.124377992062} Untitled_2::C30 137 1 6 {} C 0.0 {0.685661843045 0.782544621278 0.179559422346} Untitled_2::C31 138 1 6 {} C 0.0 {0.730722409048 0.844612069904 0.15184292078} Untitled_2::C32 139 1 8 {} O 0.0 {0.762408418584 0.889534548603 0.209249273328} Untitled_2::O5 140 1 6 {} C 0.0 {0.79887187304 0.959871170312 0.201499013381} Untitled_2::C33 141 1 6 {} C 0.0 {0.853526884824 0.980536006725 0.144244636888} Untitled_2::C34 142 1 6 {} C 0.0 {0.894365621831 0.0503824610131 0.149319946385} Untitled_2::C35 143 1 6 {} C 0.0 {0.878467604519 0.0991088697587 0.210942369819} Untitled_2::C36 144 1 6 {} C 0.0 {0.908774216659 0.1765598656 0.230109777453} Untitled_2::C37 145 1 8 {} O 0.0 {0.970000733245 0.207058601902 0.20916927513} Untitled_2::O6 146 1 6 {} C 0.0 {0.794797323194 0.154644932168 0.301063189858} Untitled_2::C38 147 1 8 {} O 0.0 {0.733951079192 0.166974611462 0.336842263016} Untitled_2::O7 148 1 6 {} C 0.0 {0.81743503526 0.0823181498416 0.261638704629} Untitled_2::C39 149 1 6 {} C 0.0 {0.77824375629 0.0124565633075 0.259969210058} Untitled_2::C40 150 1 6 {} C 0.0 {0.741035024427 0.858131415967 0.0723497016516} Untitled_2::C41 151 1 6 {} C 0.0 {0.70617411148 0.809885337296 0.0177948556932} Untitled_2::C42 152 1 6 {} C 0.0 {0.666080741379 0.746112539978 0.0450438423006} Untitled_2::C43 153 1 1 {} H 0.0 {0.677194525264 0.775092840933 0.242199182055} Untitled_2::H23 154 1 1 {} H 0.0 {0.866536846304 0.942434442748 0.0958404791805} Untitled_2::H24 155 1 1 {} H 0.0 {0.934185000305 0.0689939638749 0.104005410498} Untitled_2::H25 156 1 1 {} H 0.0 {0.731056053365 -0.0025211425601 0.29930819346} Untitled_2::H26 157 1 1 {} H 0.0 {0.770938726147 0.909708704295 0.051623027361} Untitled_2::H27 158 1 1 {} H 0.0 {0.708451946201 0.821753197613 0.955383446177} Untitled_2::H28 159 1 7 {} N 0.0 {0.851563309111 0.211281529429 0.280455178772} Untitled_2::N2 160 1 6 {} C 0.0 {0.23124441387 0.352521166004 0.316631054386} Untitled_3::C1 161 1 1 {} H 0.0 {0.325765879927 0.412031195581 0.15487409409} Untitled_3::H1 162 1 6 {} C 0.0 {0.290993656072 0.383073694417 0.271344266825} Untitled_3::C2 163 1 1 {} H 0.0 {0.346708205109 0.396777268789 0.297923361665} Untitled_3::H2 164 1 6 {} C 0.0 {0.279836108261 0.391820837402 0.192886552587} Untitled_3::C3 165 1 6 {} C 0.0 {0.159070157607 0.334009913887 0.283893302149} Untitled_3::C4 166 1 1 {} H 0.0 {0.113309644117 0.308768217252 0.320400246275} Untitled_3::H3 167 1 6 {} C 0.0 {0.146546326156 0.344400415559 0.203953619316} Untitled_3::C5 168 1 1 {} H 0.0 {0.0891722336672 0.331233616956 0.180342878005} Untitled_3::H4 169 1 6 {} C 0.0 {0.208971787062 0.371794394743 0.158995025011} Untitled_3::C6 170 1 8 {} O 0.0 {0.209959571666 0.389025811753 0.0811527783745} Untitled_3::O1 171 1 6 {} C 0.0 {0.180711297685 0.344449168331 0.0227975891926} Untitled_3::C7 172 1 1 {} H 0.0 {0.0588095984987 0.200623458691 0.969735840186} Untitled_3::H5 173 1 6 {} C 0.0 {0.138448957081 0.275441557564 0.0286458797602} Untitled_3::C8 174 1 1 {} H 0.0 {0.132439963459 0.244537827513 0.0839577213401} Untitled_3::H6 175 1 6 {} C 0.0 {0.0948580335244 0.252303221652 0.963798936374} Untitled_3::C9 176 1 6 {} C 0.0 {0.195855430886 0.375636560638 0.949191662462} Untitled_3::C10 177 1 1 {} H 0.0 {0.242826626747 0.417665609008 0.941238012144} Untitled_3::H7 178 1 6 {} C 0.0 {0.144811506572 0.357555943635 0.889402477995} Untitled_3::C11 179 1 1 {} H 0.0 {0.147930372311 0.389823824162 0.835270255748} Untitled_3::H8 180 1 6 {} C 0.0 {0.087646102742 0.300896525508 0.898599258827} Untitled_3::C12 181 1 6 {} C 0.0 {0.0151185291645 0.299007409626 0.848603984627} Untitled_3::C13 182 1 6 {} C 0.0 {0.946140368923 0.324443187259 0.899237008723} Untitled_3::C14 183 1 1 {} H 0.0 {0.748123172545 0.330946354125 0.886972681776} Untitled_3::H9 184 1 6 {} C 0.0 {0.871863708503 0.33260376493 0.866908052286} Untitled_3::C15 185 1 1 {} H 0.0 {0.863273141782 0.336613328321 0.804324994682} Untitled_3::H10 186 1 6 {} C 0.0 {0.805565302812 0.331029547625 0.913340993876} Untitled_3::C16 187 1 6 {} C 0.0 {0.952892039951 0.332787721144 0.979863441023} Untitled_3::C17 188 1 1 {} H 0.0 {0.00926769124439 0.335915902963 0.00817830305055} Untitled_3::H11 189 1 6 {} C 0.0 {0.887319442293 0.328754491619 0.0265597830312} Untitled_3::C18 190 1 1 {} H 0.0 {0.892572518179 0.324671627113 0.0889232583603} Untitled_3::H12 191 1 6 {} C 0.0 {0.815097558443 0.320773485068 0.992487320819} Untitled_3::C19 192 1 8 {} O 0.0 {0.75446637376 0.290299935874 0.036388597048} Untitled_3::O2 193 1 6 {} C 0.0 {0.744160078896 0.212223604435 0.0223238593958} Untitled_3::C20 194 1 1 {} H 0.0 {0.612730180781 0.0791663636774 0.0774459644391} Untitled_3::H13 195 1 6 {} C 0.0 {0.685471214556 0.177342698061 0.0659592973309} Untitled_3::C21 196 1 1 {} H 0.0 {0.654565766761 0.211497593923 0.109786289687} Untitled_3::H14 197 1 6 {} C 0.0 {0.663100149739 0.102311198429 0.0486106190071} Untitled_3::C22 198 1 6 {} C 0.0 {0.787014583421 0.166757043777 0.969011338005} Untitled_3::C23 199 1 1 {} H 0.0 {0.836241856104 0.191122282969 0.937048979104} Untitled_3::H15 200 1 6 {} C 0.0 {0.765525973251 0.0893934027745 0.953983580219} Untitled_3::C24 201 1 1 {} H 0.0 {0.799027041513 0.0565094080007 0.911032867435} Untitled_3::H16 202 1 6 {} C 0.0 {0.700252309129 0.0578225163981 0.991321183246} Untitled_3::C25 203 1 6 {} C 0.0 {0.0175575646837 0.356282157043 0.780079959296} Untitled_3::C26 204 1 6 {} C 0.0 {0.00111608566048 0.2123919408 0.82594253944} Untitled_3::C27 205 1 1 {} H 0.0 {-0.0399150871719 0.359350238612 0.75274423007} Untitled_3::H17 206 1 1 {} H 0.0 {0.0590129835146 0.341264300324 0.733822416821} Untitled_3::H18 207 1 1 {} H 0.0 {0.030377933961 0.415882385075 0.799845220846} Untitled_3::H19 208 1 1 {} H 0.0 {0.964639836602 0.206536437721 0.774573607476} Untitled_3::H20 209 1 1 {} H 0.0 {-0.0285684966138 0.181411475194 0.873753412427} Untitled_3::H21 210 1 1 {} H 0.0 {0.0558560696219 0.181272309504 0.813405374032} Untitled_3::H22 211 1 8 {} O 0.0 {0.453949666267 0.686533853196 0.804147607901} Untitled_3::O3 212 1 6 {} C 0.0 {0.475966210446 0.618403627031 0.8016673424} Untitled_3::C28 213 1 7 {} N 0.0 {0.555726462074 0.593875279701 0.800686731057} Untitled_3::N1 214 1 6 {} C 0.0 {0.557761032429 0.512050306832 0.806366749325} Untitled_3::C29 215 1 8 {} O 0.0 {0.61521823192 0.470704298248 0.812744388031} Untitled_3::O4 216 1 6 {} C 0.0 {0.478089723399 0.483852671463 0.796827735612} Untitled_3::C30 217 1 6 {} C 0.0 {0.456739623925 0.408471623286 0.780528304538} Untitled_3::C31 218 1 6 {} C 0.0 {0.382423484487 0.399047912223 0.749170506021} Untitled_3::C32 219 1 8 {} O 0.0 {0.366934924178 0.327294852306 0.717180323474} Untitled_3::O5 220 1 6 {} C 0.0 {0.352482295156 0.313933402205 0.639599646825} Untitled_3::C33 221 1 6 {} C 0.0 {0.335481046826 0.235571078748 0.624770292165} Untitled_3::C34 222 1 6 {} C 0.0 {0.30919060085 0.20759551085 0.554073506688} Untitled_3::C35 223 1 6 {} C 0.0 {0.299047482725 0.26258829841 0.49637090187} Untitled_3::C36 224 1 6 {} C 0.0 {0.253899684452 0.257346669798 0.424176431501} Untitled_3::C37 225 1 8 {} O 0.0 {0.220708878244 0.200060617773 0.39585888685} Untitled_3::O6 226 1 6 {} C 0.0 {0.297882270921 0.384139545867 0.439497155052} Untitled_3::C38 227 1 8 {} O 0.0 {0.314692973299 0.451388309108 0.420498245538} Untitled_3::O7 228 1 6 {} C 0.0 {0.32097906471 0.339621681009 0.509129328124} Untitled_3::C39 229 1 6 {} C 0.0 {0.349597193934 0.368604897975 0.579161061541} Untitled_3::C40 230 1 6 {} C 0.0 {0.327599873125 0.458899313762 0.75530891019} Untitled_3::C41 231 1 6 {} C 0.0 {0.348539519505 0.532412104045 0.784109571028} Untitled_3::C42 232 1 6 {} C 0.0 {0.427421386284 0.54689158065 0.796422640294} Untitled_3::C43 233 1 1 {} H 0.0 {0.496188691929 0.3597534519 0.787593397634} Untitled_3::H23 234 1 1 {} H 0.0 {0.336945617167 0.197359683166 0.67370262617} Untitled_3::H24 235 1 1 {} H 0.0 {0.292060727039 0.147082642847 0.54590197608} Untitled_3::H25 236 1 1 {} H 0.0 {0.361551169165 0.430368981893 0.586122668107} Untitled_3::H26 237 1 1 {} H 0.0 {0.268720768627 0.450660280804 0.73242773918} Untitled_3::H27 238 1 1 {} H 0.0 {0.303065392426 0.575585292063 0.792593899198} Untitled_3::H28 239 1 7 {} N 0.0 {0.251377230211 0.334032300125 0.394081929426} Untitled_3::N2 240 1 6 {} C 0.0 {0.27889288007 0.813775238 0.44582884305} Untitled_4::C1 241 1 1 {} H 0.0 {0.330173637046 0.840551473811 0.635864934024} Untitled_4::H1 242 1 6 {} C 0.0 {0.324032111222 0.833889622816 0.51063894502} Untitled_4::C2 243 1 1 {} H 0.0 {0.384340865567 0.850918083569 0.504170322235} Untitled_4::H2 244 1 6 {} C 0.0 {0.29366380572 0.828094118463 0.58548587266} Untitled_4::C3 245 1 6 {} C 0.0 {0.20151752624 0.79125699793 0.457620001191} Untitled_4::C4 246 1 1 {} H 0.0 {0.166866879896 0.776365430962 0.406858616921} Untitled_4::H3 247 1 6 {} C 0.0 {0.170487328704 0.785549548664 0.532333001339} Untitled_4::C5 248 1 1 {} H 0.0 {0.110280281105 0.766680014323 0.539744757351} Untitled_4::H4 249 1 6 {} C 0.0 {0.217992979021 0.801453142598 0.596722813523} Untitled_4::C6 250 1 8 {} O 0.0 {0.191153877757 0.78230387193 0.670292141751} Untitled_4::O1 251 1 6 {} C 0.0 {0.208996442098 0.828511606754 0.734012380437} Untitled_4::C7 252 1 1 {} H 0.0 {0.15177694962 0.00134615936222 0.808398967963} Untitled_4::H5 253 1 6 {} C 0.0 {0.173908530862 0.901189242209 0.73907805652} Untitled_4::C8 254 1 1 {} H 0.0 {0.13694010776 0.920407685209 0.691108929931} Untitled_4::H6 255 1 6 {} C 0.0 {0.183354465595 0.946701596697 0.805741372284} Untitled_4::C9 256 1 6 {} C 0.0 {0.253020880159 0.800939019335 0.796918489347} Untitled_4::C10 257 1 1 {} H 0.0 {0.278789909413 0.742677163615 0.796396514832} Untitled_4::H7 258 1 6 {} C 0.0 {0.262967814119 0.848325021404 0.862222524371} Untitled_4::C11 259 1 1 {} H 0.0 {0.296135517965 0.826564444019 0.911344028977} Untitled_4::H8 260 1 6 {} C 0.0 {0.231471200765 0.923508328751 0.867159542393} Untitled_4::C12 261 1 6 {} C 0.0 {0.250180348397 0.974958984119 0.937447320022} Untitled_4::C13 262 1 6 {} C 0.0 {0.338042145742 -0.00909584176644 0.944151953355} Untitled_4::C14 263 1 1 {} H 0.0 {0.47116405038 0.0495205622852 0.0806844073956} Untitled_4::H9 264 1 6 {} C 0.0 {0.374615903349 0.99940689669 0.0167745644389} Untitled_4::C15 265 1 1 {} H 0.0 {0.350688832839 0.973923084046 0.0695083601757} Untitled_4::H10 266 1 6 {} C 0.0 {0.443751240046 0.0404871105129 0.0242860116032} Untitled_4::C16 267 1 6 {} C 0.0 {0.385101586891 0.00597391514865 0.879603354933} Untitled_4::C17 268 1 1 {} H 0.0 {0.364543278809 -0.0121933251852 0.822732605983} Untitled_4::H11 269 1 6 {} C 0.0 {0.456076439205 0.0453476361336 0.885657953217} Untitled_4::C18 270 1 1 {} H 0.0 {0.491319872661 0.0544022690098 0.834167164926} Untitled_4::H12 271 1 6 {} C 0.0 {0.47796184823 0.0736006038982 0.958639451697} Untitled_4::C19 272 1 8 {} O 0.0 {0.530009161709 0.133359718262 -0.0257392393412} Untitled_4::O2 273 1 6 {} C 0.0 {0.565055327089 0.177582279377 0.917535861391} Untitled_4::C20 274 1 1 {} H 0.0 {0.596208962822 0.370131902875 0.881531964262} Untitled_4::H13 275 1 6 {} C 0.0 {0.564269652871 0.257859549164 0.928217310744} Untitled_4::C21 276 1 1 {} H 0.0 {0.5360598503 0.278500259929 0.98083501946} Untitled_4::H14 277 1 6 {} C 0.0 {0.595892095667 0.307624941181 0.872018402186} Untitled_4::C22 278 1 6 {} C 0.0 {0.605282435835 0.14668292311 0.854759642092} Untitled_4::C23 279 1 1 {} H 0.0 {0.612690868985 0.0843620999043 0.848431128481} Untitled_4::H15 280 1 6 {} C 0.0 {0.636354061203 0.19665547466 0.799127162235} Untitled_4::C24 281 1 1 {} H 0.0 {0.665630824033 0.171967539362 0.749538578397} Untitled_4::H16 282 1 6 {} C 0.0 {0.628281344625 0.277388686029 0.803033175142} Untitled_4::C25 283 1 6 {} C 0.0 {0.206745237962 0.0536117352392 0.930252825175} Untitled_4::C26 284 1 6 {} C 0.0 {0.218771619066 0.934955147807 0.0100752639023} Untitled_4::C27 285 1 1 {} H 0.0 {0.213188280094 0.0899521226036 0.982370325877} Untitled_4::H17 286 1 1 {} H 0.0 {0.144276205448 0.0427835694868 0.922594449551} Untitled_4::H18 287 1 1 {} H 0.0 {0.227238789367 0.0880274478333 0.881000460639} Untitled_4::H19 288 1 1 {} H 0.0 {0.236497473011 -0.0378223952645 0.0648704201603} Untitled_4::H20 289 1 1 {} H 0.0 {0.232654496297 0.872521215501 0.0109847961365} Untitled_4::H21 290 1 1 {} H 0.0 {0.156223646908 0.941298704892 0.00604353436408} Untitled_4::H22 291 1 8 {} O 0.0 {0.667321938934 -0.0246750491572 0.837442974463} Untitled_4::O3 292 1 6 {} C 0.0 {0.637028831343 0.956105021705 0.89964085102} Untitled_4::C28 293 1 7 {} N 0.0 {0.663181354986 -0.0147441130421 0.973665766024} Untitled_4::N1 294 1 6 {} C 0.0 {0.620902428335 0.948519865108 0.0335577680672} Untitled_4::C29 295 1 8 {} O 0.0 {0.631966340843 0.958863307285 0.103695787557} Untitled_4::O4 296 1 6 {} C 0.0 {0.563916738739 0.897855208947 -0.00243167889393} Untitled_4::C30 297 1 6 {} C 0.0 {0.506167057969 0.858275811076 0.0366584522057} Untitled_4::C31 298 1 6 {} C 0.0 {0.448764242335 0.822270674436 -0.00790945751951} Untitled_4::C32 299 1 8 {} O 0.0 {0.384215398347 0.787178532844 0.0279019731133} Untitled_4::O5 300 1 6 {} C 0.0 {0.384606851063 0.779907743621 0.109068019895} Untitled_4::C33 301 1 6 {} C 0.0 {0.448766559815 0.745253205152 0.14520950689} Untitled_4::C34 302 1 6 {} C 0.0 {0.457046993027 0.743021987732 0.225959285348} Untitled_4::C35 303 1 6 {} C 0.0 {0.395926208057 0.772508364187 0.269731498411} Untitled_4::C36 304 1 6 {} C 0.0 {0.386044011443 0.775119269613 0.355180228131} Untitled_4::C37 305 1 8 {} O 0.0 {0.432235630347 0.751794837214 0.405246635187} Untitled_4::O6 306 1 6 {} C 0.0 {0.273131709029 0.822255552794 0.298509495416} Untitled_4::C38 307 1 8 {} O 0.0 {0.205419722371 0.845848960886 0.291397546542} Untitled_4::O7 308 1 6 {} C 0.0 {0.328626252337 0.801409456353 0.234635997413} Untitled_4::C39 309 1 6 {} C 0.0 {0.320962860882 0.805969315663 0.153750569846} Untitled_4::C40 310 1 6 {} C 0.0 {0.454055786523 0.825277680142 0.910221630312} Untitled_4::C41 311 1 6 {} C 0.0 {0.514441248004 0.864925060864 0.871728971695} Untitled_4::C42 312 1 6 {} C 0.0 {0.570558954989 0.902804456943 0.916854511576} Untitled_4::C43 313 1 1 {} H 0.0 {0.504559707501 0.859580374046 0.0998717048504} Untitled_4::H23 314 1 1 {} H 0.0 {0.493131777343 0.720364303844 0.107795346295} Untitled_4::H24 315 1 1 {} H 0.0 {0.509382080007 0.719071273453 0.253158960103} Untitled_4::H25 316 1 1 {} H 0.0 {0.266958365707 0.826945816527 0.127830128765} Untitled_4::H26 317 1 1 {} H 0.0 {0.408904744211 0.799466128868 0.874174669648} Untitled_4::H27 318 1 1 {} H 0.0 {0.515001482224 0.868957239722 0.80801553005} Untitled_4::H28 319 1 7 {} N 0.0 {0.312241566737 0.808751597299 0.369728434713} Untitled_4::N2 320 1 6 {} C 0.0 {0.318688246888 0.572908018865 0.15732049143} Untitled_5::C1 321 1 1 {} H 0.0 {0.179627176673 0.707010033651 0.118406121785} Untitled_5::H1 322 1 6 {} C 0.0 {0.264511241589 0.632653465101 0.169168358652} Untitled_5::C2 323 1 1 {} H 0.0 {0.258696046376 0.659993846339 0.225824403581} Untitled_5::H2 324 1 6 {} C 0.0 {0.217840038537 0.65799291134 0.108393459253} Untitled_5::C3 325 1 6 {} C 0.0 {0.318551182603 0.536899669475 0.0841845589344} Untitled_5::C4 326 1 1 {} H 0.0 {0.358641390384 0.489811363636 0.0730350982884} Untitled_5::H3 327 1 6 {} C 0.0 {0.269029298697 0.559794996871 0.024043971141} Untitled_5::C5 328 1 1 {} H 0.0 {0.271395815589 0.528388132691 0.969096742824} Untitled_5::H4 329 1 6 {} C 0.0 {0.218164994914 0.621947829419 0.0352121053581} Untitled_5::C6 330 1 8 {} O 0.0 {0.167269981679 0.654112876298 0.981567766352} Untitled_5::O1 331 1 6 {} C 0.0 {0.151823538046 0.627677340959 0.906616745133} Untitled_5::C7 332 1 1 {} H 0.0 {0.0917904136098 0.712821622166 0.739304762112} Untitled_5::H5 333 1 6 {} C 0.0 {0.125696461269 0.684579947521 0.8547948602} Untitled_5::C8 334 1 1 {} H 0.0 {0.123687739199 0.744938770177 0.873380777089} Untitled_5::H6 335 1 6 {} C 0.0 {0.107108653922 0.665589377709 0.778337421831} Untitled_5::C9 336 1 6 {} C 0.0 {0.156073409687 0.550875921543 0.880833200072} Untitled_5::C10 337 1 1 {} H 0.0 {0.171503438645 0.504180003779 0.920286476206} Untitled_5::H7 338 1 6 {} C 0.0 {0.140720795505 0.534124874886 0.802723622147} Untitled_5::C11 339 1 1 {} H 0.0 {0.15112942202 0.475436606708 0.782230324036} Untitled_5::H8 340 1 6 {} C 0.0 {0.116507215154 0.59006498691 0.74894128792} Untitled_5::C12 341 1 6 {} C 0.0 {0.115749353729 0.573160596836 0.660565635953} Untitled_5::C13 342 1 6 {} C 0.0 {0.196936491027 0.59155774405 0.628616922404} Untitled_5::C14 343 1 1 {} H 0.0 {0.366140695987 0.654914784642 0.705199262426} Untitled_5::H9 344 1 6 {} C 0.0 {0.249723072406 0.628724130274 0.676825613242} Untitled_5::C15 345 1 1 {} H 0.0 {0.230462203581 0.650888943406 0.732468861239} Untitled_5::H10 346 1 6 {} C 0.0 {0.327862556442 0.634085161464 0.65982495135} Untitled_5::C16 347 1 6 {} C 0.0 {0.224495161956 0.565632036078 0.555929707043} Untitled_5::C17 348 1 1 {} H 0.0 {0.186751777516 0.535179091146 0.514822117733} Untitled_5::H11 349 1 6 {} C 0.0 {0.302292209738 0.576176768005 0.535087624626} Untitled_5::C18 350 1 1 {} H 0.0 {0.322927362971 0.556304471096 0.47867222975} Untitled_5::H12 351 1 6 {} C 0.0 {0.354473200643 0.608217568376 0.588326253131} Untitled_5::C19 352 1 8 {} O 0.0 {0.43294592656 0.609972214441 0.567565659244} Untitled_5::O2 353 1 6 {} C 0.0 {0.473504783603 0.678836521793 0.577318552314} Untitled_5::C20 354 1 1 {} H 0.0 {0.629187146901 0.764937336127 0.491609068078} Untitled_5::H13 355 1 6 {} C 0.0 {0.538891287791 0.689087871042 0.530140805132} Untitled_5::C21 356 1 1 {} H 0.0 {0.556383704142 0.644515785573 0.489009020515} Untitled_5::H14 357 1 6 {} C 0.0 {0.580534705234 0.757960876489 0.531042242176} Untitled_5::C22 358 1 6 {} C 0.0 {0.451374009572 0.738901297044 0.627322645915} Untitled_5::C23 359 1 1 {} H 0.0 {0.402028102828 0.735777809584 0.665958310757} Untitled_5::H15 360 1 6 {} C 0.0 {0.491375638226 0.808566246284 0.626789108583} Untitled_5::C24 361 1 1 {} H 0.0 {0.471248379498 0.854445039452 0.665345617734} Untitled_5::H16 362 1 6 {} C 0.0 {0.556213601176 0.819017183567 0.578965150278} Untitled_5::C25 363 1 6 {} C 0.0 {0.102859174406 0.486608345004 0.644868051845} Untitled_5::C26 364 1 6 {} C 0.0 {0.0544360950767 0.621732427173 0.616003132482} Untitled_5::C27 365 1 1 {} H 0.0 {0.10095982588 0.475633529566 0.582394241726} Untitled_5::H17 366 1 1 {} H 0.0 {0.0477856459716 0.465859921426 0.669371666558} Untitled_5::H18 367 1 1 {} H 0.0 {0.151420980713 0.451645953276 0.667648730594} Untitled_5::H19 368 1 1 {} H 0.0 {0.0564861404598 0.606266795351 0.553941636509} Untitled_5::H20 369 1 1 {} H 0.0 {0.0668561882581 0.684187798501 0.620628099275} Untitled_5::H21 370 1 1 {} H 0.0 {-0.00505800806582 0.610727965904 0.637018653538} Untitled_5::H22 371 1 8 {} O 0.0 {0.7617545716 0.39412059864 0.772855041901} Untitled_5::O3 372 1 6 {} C 0.0 {0.705773169048 0.386121523745 0.729964984908} Untitled_5::C28 373 1 7 {} N 0.0 {0.647331962259 0.325284512407 0.734961136884} Untitled_5::N1 374 1 6 {} C 0.0 {0.593061635491 0.3382093192 0.673077656166} Untitled_5::C29 375 1 8 {} O 0.0 {0.528814171351 0.307617237783 0.665266777887} Untitled_5::O4 376 1 6 {} C 0.0 {0.623574683652 0.401346358513 0.624550247124} Untitled_5::C30 377 1 6 {} C 0.0 {0.593045303406 0.431859013748 0.557431889245} Untitled_5::C31 378 1 6 {} C 0.0 {0.622696036692 0.503486641791 0.533758112575} Untitled_5::C32 379 1 8 {} O 0.0 {0.598163292215 0.538500253989 0.466863460835} Untitled_5::O5 380 1 6 {} C 0.0 {0.545559365828 0.505808775042 0.414745667742} Untitled_5::C33 381 1 6 {} C 0.0 {0.567664072427 0.442204234869 0.368810186174} Untitled_5::C34 382 1 6 {} C 0.0 {0.531052399787 0.430597837896 0.297254271251} Untitled_5::C35 383 1 6 {} C 0.0 {0.471579817008 0.481543205771 0.277918655344} Untitled_5::C36 384 1 6 {} C 0.0 {0.437318445261 0.501568246395 0.202842253899} Untitled_5::C37 385 1 8 {} O 0.0 {0.464936887434 0.486311775579 0.138906565377} Untitled_5::O6 386 1 6 {} C 0.0 {0.370957912739 0.572101663099 0.296050265304} Untitled_5::C38 387 1 8 {} O 0.0 {0.324376481939 0.616031981953 0.327300790396} Untitled_5::O7 388 1 6 {} C 0.0 {0.439889044327 0.532906556231 0.331697877826} Untitled_5::C39 389 1 6 {} C 0.0 {0.476544843294 0.547244828606 0.401740792814} Untitled_5::C40 390 1 6 {} C 0.0 {0.676840842442 0.544831248437 0.579616554273} Untitled_5::C41 391 1 6 {} C 0.0 {0.709774458109 0.51060366832 0.645025685708} Untitled_5::C42 392 1 6 {} C 0.0 {0.684255669667 0.436546991904 0.664274771345} Untitled_5::C43 393 1 1 {} H 0.0 {0.548818062693 0.400480049968 0.524532085024} Untitled_5::H23 394 1 1 {} H 0.0 {0.616738864982 0.406279638444 0.386743551885} Untitled_5::H24 395 1 1 {} H 0.0 {0.550821805648 0.38671740231 0.255743969946} Untitled_5::H25 396 1 1 {} H 0.0 {0.454860497917 0.590722021734 0.44232654855} Untitled_5::H26 397 1 1 {} H 0.0 {0.690105342299 0.604718789999 0.563256445987} Untitled_5::H27 398 1 1 {} H 0.0 {0.749222869858 0.540285407529 0.684995232106} Untitled_5::H28 399 1 7 {} N 0.0 {0.371052031825 0.548936974531 0.216649410979} Untitled_5::N2 400 1 6 {} C 0.0 {0.893383558515 0.481402571297 0.436783138359} Untitled_6::C1 401 1 1 {} H 0.0 {0.0490784422819 0.568982717355 0.348070169944} Untitled_6::H1 402 1 6 {} C 0.0 {0.968163332643 0.490715448789 0.404979152533} Untitled_6::C2 403 1 1 {} H 0.0 {0.0106051140173 0.44340849621 0.407485853484} Untitled_6::H2 404 1 6 {} C 0.0 {0.991113539636 0.562421255551 0.37422521407} Untitled_6::C3 405 1 6 {} C 0.0 {0.841605672639 0.544041238567 0.437102480658} Untitled_6::C4 406 1 1 {} H 0.0 {0.78374544218 0.537443215039 0.462419539576} Untitled_6::H3 407 1 6 {} C 0.0 {0.864759790532 0.615687774109 0.407582480201} Untitled_6::C5 408 1 1 {} H 0.0 {0.823260022349 0.663198520241 0.409342804988} Untitled_6::H4 409 1 6 {} C 0.0 {0.939271239547 0.625570551934 0.376393165756} Untitled_6::C6 410 1 8 {} O 0.0 {0.964605080086 0.694799833339 0.343759763582} Untitled_6::O1 411 1 6 {} C 0.0 {0.943155994384 0.765171404947 0.378376223289} Untitled_6::C7 412 1 1 {} H 0.0 {0.0409200464955 0.905359010757 0.477410812796} Untitled_6::H5 413 1 6 {} C 0.0 {0.00468824701946 0.812823251554 0.401764208912} Untitled_6::C8 414 1 1 {} H 0.0 {0.0634259195254 0.799552425288 0.382040023188} Untitled_6::H6 415 1 6 {} C 0.0 {0.991266060641 0.87371972711 0.45319401898} Untitled_6::C9 416 1 6 {} C 0.0 {0.866718810507 0.789654134351 0.391455218056} Untitled_6::C10 417 1 1 {} H 0.0 {0.816884194501 0.761315439127 0.3641532172} Untitled_6::H7 418 1 6 {} C 0.0 {0.85384516037 0.850631613118 0.44369782958} Untitled_6::C11 419 1 1 {} H 0.0 {0.79352906546 0.864956418119 0.457064365181} Untitled_6::H8 420 1 6 {} C 0.0 {0.915796043645 0.888530626702 0.480431764635} Untitled_6::C12 421 1 6 {} C 0.0 {0.905349007161 0.938158147463 0.552313304927} Untitled_6::C13 422 1 6 {} C 0.0 {0.959815480582 0.910806423845 0.61656439594} Untitled_6::C14 423 1 1 {} H 0.0 {-0.0224063096823 0.743724526804 0.722170062335} Untitled_6::H9 424 1 6 {} C 0.0 {0.96548290343 0.830553090936 0.632638351126} Untitled_6::C15 425 1 1 {} H 0.0 {0.951598573174 0.787783471685 0.58754049532} Untitled_6::H10 426 1 6 {} C 0.0 {-0.0189604375713 0.80514917974 0.707255297786} Untitled_6::C16 427 1 6 {} C 0.0 {0.981331395602 0.963764639617 0.673910981624} Untitled_6::C17 428 1 1 {} H 0.0 {0.979032758653 0.0261806037012 0.662549783728} Untitled_6::H11 429 1 6 {} C 0.0 {-0.00157599867082 0.939195724214 0.748404191892} Untitled_6::C18 430 1 1 {} H 0.0 {0.0119713774379 -0.0180668737461 0.792740239897} Untitled_6::H12 431 1 6 {} C 0.0 {-0.00647994572471 0.860176801711 0.765597856955} Untitled_6::C19 432 1 8 {} O 0.0 {0.00486508988666 0.830499368622 0.838433530382} Untitled_6::O2 433 1 6 {} C 0.0 {0.00446092341345 0.878240236326 0.902221882906} Untitled_6::C20 434 1 1 {} H 0.0 {0.925240575037 0.0378654936885 0.986628430593} Untitled_6::H13 435 1 6 {} C 0.0 {-0.0413552127768 0.945110486908 0.911347878044} Untitled_6::C21 436 1 1 {} H 0.0 {0.915324571648 0.96053400142 0.867326675247} Untitled_6::H14 437 1 6 {} C 0.0 {0.964001946845 0.987742481881 0.980103673716} Untitled_6::C22 438 1 6 {} C 0.0 {0.0487403378512 0.850565649264 0.963611869213} Untitled_6::C23 439 1 1 {} H 0.0 {0.0753359210116 0.793105748212 0.958532024511} Untitled_6::H15 440 1 6 {} C 0.0 {0.0540870409178 0.89384755169 0.0312149214399} Untitled_6::C24 441 1 1 {} H 0.0 {0.091347946611 0.872934424022 0.0780174064975} Untitled_6::H16 442 1 6 {} C 0.0 {0.0139888206556 0.963594717849 0.039355620103} Untitled_6::C25 443 1 6 {} C 0.0 {0.915440936403 0.0252972730238 0.531860314518} Untitled_6::C26 444 1 6 {} C 0.0 {0.825746441085 0.922969693105 0.591558037819} Untitled_6::C27 445 1 1 {} H 0.0 {0.901203895086 0.0637628838116 0.581470221999} Untitled_6::H17 446 1 1 {} H 0.0 {0.876503889189 0.0410315534519 0.483329153046} Untitled_6::H18 447 1 1 {} H 0.0 {0.975751149293 0.0368829814879 0.51355712203} Untitled_6::H19 448 1 1 {} H 0.0 {0.815482925579 0.963719755858 0.640150781653} Untitled_6::H20 449 1 1 {} H 0.0 {0.821632449104 0.863978550552 0.616643398063} Untitled_6::H21 450 1 1 {} H 0.0 {0.779276350239 0.92932734922 0.549283675242} Untitled_6::H22 451 1 8 {} O 0.0 {0.667698546144 0.882012264488 0.463768456641} Untitled_6::O3 452 1 6 {} C 0.0 {0.644600896388 0.919399620949 0.520585102335} Untitled_6::C28 453 1 7 {} N 0.0 {0.595407531859 0.890367921032 0.580503596388} Untitled_6::N1 454 1 6 {} C 0.0 {0.59049369265 0.943942954232 0.641979925937} Untitled_6::C29 455 1 8 {} O 0.0 {0.549437717402 0.940303046845 0.701013688154} Untitled_6::O4 456 1 6 {} C 0.0 {0.64358922619 0.00671937684029 0.621402863891} Untitled_6::C30 457 1 6 {} C 0.0 {0.672842706945 0.061926712733 0.67099034142} Untitled_6::C31 458 1 6 {} C 0.0 {0.72562540886 0.113338343475 0.637565205434} Untitled_6::C32 459 1 8 {} O 0.0 {0.75842448874 0.165854491065 0.687413725366} Untitled_6::O5 460 1 6 {} C 0.0 {0.798779541971 0.224938658625 0.652286516726} Untitled_6::C33 461 1 6 {} C 0.0 {0.87461854202 0.230945467005 0.677811386237} Untitled_6::C34 462 1 6 {} C 0.0 {0.92571086793 0.283021297245 0.643087678771} Untitled_6::C35 463 1 6 {} C 0.0 {0.895421100913 0.327241830629 0.582941944637} Untitled_6::C36 464 1 6 {} C 0.0 {0.931235748951 0.39005659864 0.537818798947} Untitled_6::C37 465 1 8 {} O 0.0 {-0.00742471858352 0.423663482457 0.5494761906} Untitled_6::O6 466 1 6 {} C 0.0 {0.803523887835 0.378206644843 0.495702849507} Untitled_6::C38 467 1 8 {} O 0.0 {0.739782643853 0.393579183516 0.467163745628} Untitled_6::O7 468 1 6 {} C 0.0 {0.817848206093 0.320959292565 0.558894289111} Untitled_6::C39 469 1 6 {} C 0.0 {0.765982511118 0.270824858999 0.593913867362} Untitled_6::C40 470 1 6 {} C 0.0 {0.747847337063 0.108802857382 0.559097744505} Untitled_6::C41 471 1 6 {} C 0.0 {0.719040212947 0.0505080084281 0.511428911704} Untitled_6::C42 472 1 6 {} C 0.0 {0.667879605617 0.997802588313 0.54479618116} Untitled_6::C43 473 1 1 {} H 0.0 {0.658830676185 0.0605985224107 0.732584936361} Untitled_6::H23 474 1 1 {} H 0.0 {0.889816770438 0.193141066859 0.726193588384} Untitled_6::H24 475 1 1 {} H 0.0 {0.985518367144 0.289459071622 0.662487490194} Untitled_6::H25 476 1 1 {} H 0.0 {0.705539108653 0.264099239895 0.575823449943} Untitled_6::H26 477 1 1 {} H 0.0 {0.791352873525 0.14889250742 0.536779983206} Untitled_6::H27 478 1 1 {} H 0.0 {0.739478173715 0.0453425144391 0.451713643728} Untitled_6::H28 479 1 7 {} N 0.0 {0.87613277018 0.412819462677 0.479791029304} Untitled_6::N2 480 1 1 {} H 0.0 {0.0774075675853 0.153360754905 0.501099937849} H_head 481 1 1 {} H 0.0 {0.0210272497248 0.996457032118 0.0932039869366} H_tail 482 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.16304694 17.16304694 17.16304694 90 90 90} {{1 0 0} {0 1 0} {0 0 1}} {{1 0 0} {0 1 0} {0 0 1}} P1 1 {{17.16304694 0 0} {0 17.16304694 0} {0 0 17.16304694}} {{0.0582647127573 0 0} {0 0.0582647127573 0} {0 0 0.0582647127573}} @end @Columns AsymmetricBond Atom1 reference AsymmetricAtom Atom2 reference AsymmetricAtom Key int 0 Order int 0 @end @data 2 0 0 0 5 0 0 0 79 0 0 0 4 1 0 0 3 2 0 0 4 2 0 0 9 4 0 0 6 5 0 0 7 5 0 0 8 7 0 0 9 7 0 0 10 9 0 0 11 10 0 0 13 11 0 0 16 11 0 0 15 12 0 0 14 13 0 0 15 13 0 0 20 15 0 0 17 16 0 0 18 16 0 0 19 18 0 0 20 18 0 0 21 20 0 0 22 21 0 0 43 21 0 0 44 21 0 0 24 22 0 0 27 22 0 0 26 23 0 0 25 24 0 0 26 24 0 0 31 26 0 0 28 27 0 0 29 27 0 0 30 29 0 0 31 29 0 0 32 31 0 0 33 32 0 0 35 33 0 0 38 33 0 0 37 34 0 0 36 35 0 0 37 35 0 0 42 37 0 0 39 38 0 0 40 38 0 0 41 40 0 0 42 40 0 0 133 42 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 52 51 0 0 53 52 0 0 72 52 0 0 54 53 0 0 480 53 0 0 55 54 0 0 56 54 0 0 57 56 0 0 72 56 0 0 58 57 0 0 73 57 0 0 59 58 0 0 70 58 0 0 60 59 0 0 61 60 0 0 69 60 0 0 62 61 0 0 74 61 0 0 63 62 0 0 75 62 0 0 64 63 0 0 68 63 0 0 65 64 0 0 79 64 0 0 67 66 0 0 68 66 0 0 79 66 0 0 69 68 0 0 76 69 0 0 71 70 0 0 77 70 0 0 72 71 0 0 78 71 0 0 82 80 0 0 85 80 0 0 159 80 0 0 84 81 0 0 83 82 0 0 84 82 0 0 89 84 0 0 86 85 0 0 87 85 0 0 88 87 0 0 89 87 0 0 90 89 0 0 91 90 0 0 93 91 0 0 96 91 0 0 95 92 0 0 94 93 0 0 95 93 0 0 100 95 0 0 97 96 0 0 98 96 0 0 99 98 0 0 100 98 0 0 101 100 0 0 102 101 0 0 123 101 0 0 124 101 0 0 104 102 0 0 107 102 0 0 106 103 0 0 105 104 0 0 106 104 0 0 111 106 0 0 108 107 0 0 109 107 0 0 110 109 0 0 111 109 0 0 112 111 0 0 113 112 0 0 115 113 0 0 118 113 0 0 117 114 0 0 116 115 0 0 117 115 0 0 122 117 0 0 119 118 0 0 120 118 0 0 121 120 0 0 122 120 0 0 213 122 0 0 125 123 0 0 126 123 0 0 127 123 0 0 128 124 0 0 129 124 0 0 130 124 0 0 132 131 0 0 133 132 0 0 152 132 0 0 134 133 0 0 135 134 0 0 136 134 0 0 137 136 0 0 152 136 0 0 138 137 0 0 153 137 0 0 139 138 0 0 150 138 0 0 140 139 0 0 141 140 0 0 149 140 0 0 142 141 0 0 154 141 0 0 143 142 0 0 155 142 0 0 144 143 0 0 148 143 0 0 145 144 0 0 159 144 0 0 147 146 0 0 148 146 0 0 159 146 0 0 149 148 0 0 156 149 0 0 151 150 0 0 157 150 0 0 152 151 0 0 158 151 0 0 162 160 0 0 165 160 0 0 239 160 0 0 164 161 0 0 163 162 0 0 164 162 0 0 169 164 0 0 166 165 0 0 167 165 0 0 168 167 0 0 169 167 0 0 170 169 0 0 171 170 0 0 173 171 0 0 176 171 0 0 175 172 0 0 174 173 0 0 175 173 0 0 180 175 0 0 177 176 0 0 178 176 0 0 179 178 0 0 180 178 0 0 181 180 0 0 182 181 0 0 203 181 0 0 204 181 0 0 184 182 0 0 187 182 0 0 186 183 0 0 185 184 0 0 186 184 0 0 191 186 0 0 188 187 0 0 189 187 0 0 190 189 0 0 191 189 0 0 192 191 0 0 193 192 0 0 195 193 0 0 198 193 0 0 197 194 0 0 196 195 0 0 197 195 0 0 202 197 0 0 199 198 0 0 200 198 0 0 201 200 0 0 202 200 0 0 293 202 0 0 205 203 0 0 206 203 0 0 207 203 0 0 208 204 0 0 209 204 0 0 210 204 0 0 212 211 0 0 213 212 0 0 232 212 0 0 214 213 0 0 215 214 0 0 216 214 0 0 217 216 0 0 232 216 0 0 218 217 0 0 233 217 0 0 219 218 0 0 230 218 0 0 220 219 0 0 221 220 0 0 229 220 0 0 222 221 0 0 234 221 0 0 223 222 0 0 235 222 0 0 224 223 0 0 228 223 0 0 225 224 0 0 239 224 0 0 227 226 0 0 228 226 0 0 239 226 0 0 229 228 0 0 236 229 0 0 231 230 0 0 237 230 0 0 232 231 0 0 238 231 0 0 242 240 0 0 245 240 0 0 319 240 0 0 244 241 0 0 243 242 0 0 244 242 0 0 249 244 0 0 246 245 0 0 247 245 0 0 248 247 0 0 249 247 0 0 250 249 0 0 251 250 0 0 253 251 0 0 256 251 0 0 255 252 0 0 254 253 0 0 255 253 0 0 260 255 0 0 257 256 0 0 258 256 0 0 259 258 0 0 260 258 0 0 261 260 0 0 262 261 0 0 283 261 0 0 284 261 0 0 264 262 0 0 267 262 0 0 266 263 0 0 265 264 0 0 266 264 0 0 271 266 0 0 268 267 0 0 269 267 0 0 270 269 0 0 271 269 0 0 272 271 0 0 273 272 0 0 275 273 0 0 278 273 0 0 277 274 0 0 276 275 0 0 277 275 0 0 282 277 0 0 279 278 0 0 280 278 0 0 281 280 0 0 282 280 0 0 373 282 0 0 285 283 0 0 286 283 0 0 287 283 0 0 288 284 0 0 289 284 0 0 290 284 0 0 292 291 0 0 293 292 0 0 312 292 0 0 294 293 0 0 295 294 0 0 296 294 0 0 297 296 0 0 312 296 0 0 298 297 0 0 313 297 0 0 299 298 0 0 310 298 0 0 300 299 0 0 301 300 0 0 309 300 0 0 302 301 0 0 314 301 0 0 303 302 0 0 315 302 0 0 304 303 0 0 308 303 0 0 305 304 0 0 319 304 0 0 307 306 0 0 308 306 0 0 319 306 0 0 309 308 0 0 316 309 0 0 311 310 0 0 317 310 0 0 312 311 0 0 318 311 0 0 322 320 0 0 325 320 0 0 399 320 0 0 324 321 0 0 323 322 0 0 324 322 0 0 329 324 0 0 326 325 0 0 327 325 0 0 328 327 0 0 329 327 0 0 330 329 0 0 331 330 0 0 333 331 0 0 336 331 0 0 335 332 0 0 334 333 0 0 335 333 0 0 340 335 0 0 337 336 0 0 338 336 0 0 339 338 0 0 340 338 0 0 341 340 0 0 342 341 0 0 363 341 0 0 364 341 0 0 344 342 0 0 347 342 0 0 346 343 0 0 345 344 0 0 346 344 0 0 351 346 0 0 348 347 0 0 349 347 0 0 350 349 0 0 351 349 0 0 352 351 0 0 353 352 0 0 355 353 0 0 358 353 0 0 357 354 0 0 356 355 0 0 357 355 0 0 362 357 0 0 359 358 0 0 360 358 0 0 361 360 0 0 362 360 0 0 453 362 0 0 365 363 0 0 366 363 0 0 367 363 0 0 368 364 0 0 369 364 0 0 370 364 0 0 372 371 0 0 373 372 0 0 392 372 0 0 374 373 0 0 375 374 0 0 376 374 0 0 377 376 0 0 392 376 0 0 378 377 0 0 393 377 0 0 379 378 0 0 390 378 0 0 380 379 0 0 381 380 0 0 389 380 0 0 382 381 0 0 394 381 0 0 383 382 0 0 395 382 0 0 384 383 0 0 388 383 0 0 385 384 0 0 399 384 0 0 387 386 0 0 388 386 0 0 399 386 0 0 389 388 0 0 396 389 0 0 391 390 0 0 397 390 0 0 392 391 0 0 398 391 0 0 402 400 0 0 405 400 0 0 479 400 0 0 404 401 0 0 403 402 0 0 404 402 0 0 409 404 0 0 406 405 0 0 407 405 0 0 408 407 0 0 409 407 0 0 410 409 0 0 411 410 0 0 413 411 0 0 416 411 0 0 415 412 0 0 414 413 0 0 415 413 0 0 420 415 0 0 417 416 0 0 418 416 0 0 419 418 0 0 420 418 0 0 421 420 0 0 422 421 0 0 443 421 0 0 444 421 0 0 424 422 0 0 427 422 0 0 426 423 0 0 425 424 0 0 426 424 0 0 431 426 0 0 428 427 0 0 429 427 0 0 430 429 0 0 431 429 0 0 432 431 0 0 433 432 0 0 435 433 0 0 438 433 0 0 437 434 0 0 436 435 0 0 437 435 0 0 442 437 0 0 439 438 0 0 440 438 0 0 441 440 0 0 442 440 0 0 481 442 0 0 445 443 0 0 446 443 0 0 447 443 0 0 448 444 0 0 449 444 0 0 450 444 0 0 452 451 0 0 453 452 0 0 472 452 0 0 454 453 0 0 455 454 0 0 456 454 0 0 457 456 0 0 472 456 0 0 458 457 0 0 473 457 0 0 459 458 0 0 470 458 0 0 460 459 0 0 461 460 0 0 469 460 0 0 462 461 0 0 474 461 0 0 463 462 0 0 475 462 0 0 464 463 0 0 468 463 0 0 465 464 0 0 479 464 0 0 467 466 0 0 468 466 0 0 479 466 0 0 469 468 0 0 476 469 0 0 471 470 0 0 477 470 0 0 472 471 0 0 478 471 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 2 0 {0 0 0} 0 1 5 0 {0 1 0} 0 2 79 0 {0 0 0} 0 3 4 1 {0 0 0} 0 4 3 2 {0 0 0} 0 5 4 2 {0 0 0} 0 6 9 4 {0 1 0} 0 7 6 5 {0 0 0} 0 8 7 5 {0 0 0} 0 9 8 7 {0 0 0} 0 10 9 7 {0 0 0} 0 11 10 9 {0 0 0} 0 12 11 10 {0 0 0} 0 13 11 13 {0 1 0} 0 14 16 11 {0 0 0} 0 15 15 12 {0 0 0} 0 16 14 13 {0 0 0} 0 17 15 13 {0 0 0} 0 18 20 15 {0 0 0} 0 19 17 16 {0 0 0} 0 20 16 18 {0 1 0} 0 21 19 18 {0 1 0} 0 22 20 18 {0 0 0} 0 23 21 20 {0 0 0} 0 24 22 21 {0 0 0} 0 25 43 21 {0 0 0} 0 26 44 21 {0 0 0} 0 27 24 22 {0 0 0} 0 28 27 22 {0 0 0} 0 29 26 23 {0 0 0} 0 30 25 24 {0 0 0} 0 31 26 24 {0 0 1} 0 32 26 31 {0 0 1} 0 33 28 27 {0 0 0} 0 34 29 27 {0 0 0} 0 35 30 29 {0 0 0} 0 36 31 29 {0 0 0} 0 37 32 31 {0 0 1} 0 38 33 32 {0 0 0} 0 39 35 33 {0 0 0} 0 40 33 38 {0 0 1} 0 41 37 34 {0 0 0} 0 42 36 35 {0 0 0} 0 43 37 35 {0 0 0} 0 44 37 42 {0 0 1} 0 45 39 38 {0 0 0} 0 46 40 38 {0 0 0} 0 47 41 40 {0 0 0} 0 48 42 40 {0 0 0} 0 49 133 42 {0 0 0} 0 50 45 43 {0 0 0} 0 51 46 43 {0 0 0} 0 52 47 43 {0 0 0} 0 53 48 44 {0 0 0} 0 54 49 44 {0 0 0} 0 55 50 44 {0 0 0} 0 56 52 51 {0 0 0} 0 57 53 52 {0 0 0} 0 58 72 52 {0 0 0} 0 59 54 53 {0 0 0} 0 60 480 53 {0 0 0} 0 61 55 54 {0 0 0} 0 62 56 54 {0 0 0} 0 63 57 56 {0 0 0} 0 64 72 56 {0 0 0} 0 65 58 57 {0 0 0} 0 66 73 57 {0 0 0} 0 67 59 58 {0 0 0} 0 68 70 58 {0 0 0} 0 69 60 59 {0 0 0} 0 70 61 60 {0 0 0} 0 71 69 60 {0 0 0} 0 72 62 61 {0 0 0} 0 73 74 61 {0 0 0} 0 74 63 62 {0 0 0} 0 75 75 62 {0 0 0} 0 76 64 63 {0 0 0} 0 77 68 63 {0 0 0} 0 78 65 64 {0 0 0} 0 79 79 64 {0 0 0} 0 80 67 66 {0 1 0} 0 81 68 66 {0 0 0} 0 82 79 66 {0 0 0} 0 83 69 68 {0 0 0} 0 84 76 69 {0 0 0} 0 85 71 70 {0 0 0} 0 86 77 70 {0 0 0} 0 87 72 71 {0 0 0} 0 88 78 71 {0 0 0} 0 89 82 80 {0 0 0} 0 90 85 80 {0 0 0} 0 91 159 80 {0 0 0} 0 92 84 81 {0 0 0} 0 93 83 82 {0 0 0} 0 94 84 82 {0 0 0} 0 95 89 84 {0 0 0} 0 96 86 85 {0 0 0} 0 97 87 85 {0 0 0} 0 98 88 87 {0 0 0} 0 99 89 87 {0 0 0} 0 100 90 89 {0 0 0} 0 101 91 90 {0 0 0} 0 102 93 91 {0 0 0} 0 103 96 91 {0 0 0} 0 104 95 92 {0 0 0} 0 105 94 93 {0 0 0} 0 106 95 93 {0 0 0} 0 107 100 95 {0 0 0} 0 108 97 96 {0 0 0} 0 109 98 96 {0 0 0} 0 110 98 99 {1 0 0} 0 111 100 98 {0 0 0} 0 112 101 100 {0 0 0} 0 113 102 101 {0 0 0} 0 114 123 101 {0 0 0} 0 115 101 124 {1 0 0} 0 116 104 102 {0 0 1} 0 117 107 102 {0 0 0} 0 118 106 103 {0 0 0} 0 119 105 104 {0 0 0} 0 120 106 104 {0 0 0} 0 121 111 106 {0 0 0} 0 122 108 107 {0 0 0} 0 123 109 107 {0 0 1} 0 124 110 109 {0 0 0} 0 125 111 109 {0 0 0} 0 126 112 111 {0 0 0} 0 127 113 112 {0 0 0} 0 128 115 113 {0 0 0} 0 129 118 113 {0 0 0} 0 130 117 114 {0 0 0} 0 131 116 115 {0 0 0} 0 132 117 115 {0 0 0} 0 133 122 117 {0 0 0} 0 134 119 118 {0 0 0} 0 135 120 118 {0 0 0} 0 136 121 120 {0 0 0} 0 137 122 120 {0 0 0} 0 138 213 122 {0 0 0} 0 139 123 125 {1 0 0} 0 140 126 123 {0 0 0} 0 141 127 123 {0 0 0} 0 142 128 124 {0 0 0} 0 143 129 124 {0 0 0} 0 144 130 124 {0 0 0} 0 145 131 132 {0 0 1} 0 146 133 132 {0 0 0} 0 147 152 132 {0 0 0} 0 148 134 133 {0 0 0} 0 149 135 134 {0 0 0} 0 150 136 134 {0 0 0} 0 151 137 136 {0 0 0} 0 152 152 136 {0 0 0} 0 153 138 137 {0 0 0} 0 154 153 137 {0 0 0} 0 155 139 138 {0 0 0} 0 156 150 138 {0 0 0} 0 157 140 139 {0 0 0} 0 158 141 140 {0 0 0} 0 159 140 149 {0 1 0} 0 160 141 142 {0 1 0} 0 161 154 141 {0 0 0} 0 162 143 142 {0 0 0} 0 163 155 142 {0 0 0} 0 164 144 143 {0 0 0} 0 165 148 143 {0 0 0} 0 166 145 144 {0 0 0} 0 167 159 144 {0 0 0} 0 168 147 146 {0 0 0} 0 169 148 146 {0 0 0} 0 170 159 146 {0 0 0} 0 171 149 148 {0 0 0} 0 172 156 149 {0 1 0} 0 173 151 150 {0 0 0} 0 174 157 150 {0 0 0} 0 175 152 151 {0 0 0} 0 176 158 151 {0 0 1} 0 177 162 160 {0 0 0} 0 178 165 160 {0 0 0} 0 179 239 160 {0 0 0} 0 180 164 161 {0 0 0} 0 181 163 162 {0 0 0} 0 182 164 162 {0 0 0} 0 183 169 164 {0 0 0} 0 184 166 165 {0 0 0} 0 185 167 165 {0 0 0} 0 186 168 167 {0 0 0} 0 187 169 167 {0 0 0} 0 188 170 169 {0 0 0} 0 189 171 170 {0 0 0} 0 190 173 171 {0 0 0} 0 191 176 171 {0 0 1} 0 192 175 172 {0 0 0} 0 193 174 173 {0 0 0} 0 194 175 173 {0 0 1} 0 195 180 175 {0 0 0} 0 196 177 176 {0 0 0} 0 197 178 176 {0 0 0} 0 198 179 178 {0 0 0} 0 199 180 178 {0 0 0} 0 200 181 180 {0 0 0} 0 201 182 181 {1 0 0} 0 202 203 181 {0 0 0} 0 203 204 181 {0 0 0} 0 204 184 182 {0 0 0} 0 205 187 182 {0 0 0} 0 206 186 183 {0 0 0} 0 207 185 184 {0 0 0} 0 208 186 184 {0 0 0} 0 209 191 186 {0 0 0} 0 210 187 188 {1 0 1} 0 211 187 189 {0 0 1} 0 212 190 189 {0 0 0} 0 213 191 189 {0 0 1} 0 214 191 192 {0 0 1} 0 215 193 192 {0 0 0} 0 216 195 193 {0 0 0} 0 217 198 193 {0 0 1} 0 218 197 194 {0 0 0} 0 219 196 195 {0 0 0} 0 220 197 195 {0 0 0} 0 221 202 197 {0 0 1} 0 222 199 198 {0 0 0} 0 223 200 198 {0 0 0} 0 224 201 200 {0 0 0} 0 225 202 200 {0 0 0} 0 226 293 202 {0 1 0} 0 227 205 203 {1 0 0} 0 228 206 203 {0 0 0} 0 229 207 203 {0 0 0} 0 230 208 204 {1 0 0} 0 231 209 204 {1 0 0} 0 232 210 204 {0 0 0} 0 233 212 211 {0 0 0} 0 234 213 212 {0 0 0} 0 235 232 212 {0 0 0} 0 236 214 213 {0 0 0} 0 237 215 214 {0 0 0} 0 238 216 214 {0 0 0} 0 239 217 216 {0 0 0} 0 240 232 216 {0 0 0} 0 241 218 217 {0 0 0} 0 242 233 217 {0 0 0} 0 243 219 218 {0 0 0} 0 244 230 218 {0 0 0} 0 245 220 219 {0 0 0} 0 246 221 220 {0 0 0} 0 247 229 220 {0 0 0} 0 248 222 221 {0 0 0} 0 249 234 221 {0 0 0} 0 250 223 222 {0 0 0} 0 251 235 222 {0 0 0} 0 252 224 223 {0 0 0} 0 253 228 223 {0 0 0} 0 254 225 224 {0 0 0} 0 255 239 224 {0 0 0} 0 256 227 226 {0 0 0} 0 257 228 226 {0 0 0} 0 258 239 226 {0 0 0} 0 259 229 228 {0 0 0} 0 260 236 229 {0 0 0} 0 261 231 230 {0 0 0} 0 262 237 230 {0 0 0} 0 263 232 231 {0 0 0} 0 264 238 231 {0 0 0} 0 265 242 240 {0 0 0} 0 266 245 240 {0 0 0} 0 267 319 240 {0 0 0} 0 268 244 241 {0 0 0} 0 269 243 242 {0 0 0} 0 270 244 242 {0 0 0} 0 271 249 244 {0 0 0} 0 272 246 245 {0 0 0} 0 273 247 245 {0 0 0} 0 274 248 247 {0 0 0} 0 275 249 247 {0 0 0} 0 276 250 249 {0 0 0} 0 277 251 250 {0 0 0} 0 278 253 251 {0 0 0} 0 279 256 251 {0 0 0} 0 280 255 252 {0 1 0} 0 281 254 253 {0 0 0} 0 282 255 253 {0 0 0} 0 283 260 255 {0 0 0} 0 284 257 256 {0 0 0} 0 285 258 256 {0 0 0} 0 286 259 258 {0 0 0} 0 287 260 258 {0 0 0} 0 288 261 260 {0 0 0} 0 289 262 261 {0 0 0} 0 290 261 283 {0 1 0} 0 291 261 284 {0 0 1} 0 292 262 264 {0 0 1} 0 293 262 267 {0 1 0} 0 294 266 263 {0 0 0} 0 295 265 264 {0 0 0} 0 296 264 266 {0 1 0} 0 297 271 266 {0 0 1} 0 298 268 267 {0 1 0} 0 299 269 267 {0 0 0} 0 300 270 269 {0 0 0} 0 301 271 269 {0 0 0} 0 302 272 271 {0 0 0} 0 303 273 272 {0 0 0} 0 304 275 273 {0 0 0} 0 305 278 273 {0 0 0} 0 306 277 274 {0 0 0} 0 307 276 275 {0 0 0} 0 308 277 275 {0 0 0} 0 309 282 277 {0 0 0} 0 310 279 278 {0 0 0} 0 311 280 278 {0 0 0} 0 312 281 280 {0 0 0} 0 313 282 280 {0 0 0} 0 314 373 282 {0 0 0} 0 315 285 283 {0 0 0} 0 316 286 283 {0 0 0} 0 317 287 283 {0 0 0} 0 318 288 284 {0 0 0} 0 319 289 284 {0 0 0} 0 320 290 284 {0 0 0} 0 321 292 291 {0 0 0} 0 322 293 292 {0 0 0} 0 323 312 292 {0 0 0} 0 324 293 294 {0 0 1} 0 325 295 294 {0 0 0} 0 326 296 294 {0 0 1} 0 327 296 297 {0 0 1} 0 328 312 296 {0 0 0} 0 329 298 297 {0 0 1} 0 330 313 297 {0 0 0} 0 331 298 299 {0 0 1} 0 332 310 298 {0 0 0} 0 333 300 299 {0 0 0} 0 334 301 300 {0 0 0} 0 335 309 300 {0 0 0} 0 336 302 301 {0 0 0} 0 337 314 301 {0 0 0} 0 338 303 302 {0 0 0} 0 339 315 302 {0 0 0} 0 340 304 303 {0 0 0} 0 341 308 303 {0 0 0} 0 342 305 304 {0 0 0} 0 343 319 304 {0 0 0} 0 344 307 306 {0 0 0} 0 345 308 306 {0 0 0} 0 346 319 306 {0 0 0} 0 347 309 308 {0 0 0} 0 348 316 309 {0 0 0} 0 349 311 310 {0 0 0} 0 350 317 310 {0 0 0} 0 351 312 311 {0 0 0} 0 352 318 311 {0 0 0} 0 353 322 320 {0 0 0} 0 354 325 320 {0 0 0} 0 355 399 320 {0 0 0} 0 356 324 321 {0 0 0} 0 357 323 322 {0 0 0} 0 358 324 322 {0 0 0} 0 359 329 324 {0 0 0} 0 360 326 325 {0 0 0} 0 361 327 325 {0 0 0} 0 362 328 327 {0 0 1} 0 363 329 327 {0 0 0} 0 364 330 329 {0 0 1} 0 365 331 330 {0 0 0} 0 366 333 331 {0 0 0} 0 367 336 331 {0 0 0} 0 368 335 332 {0 0 0} 0 369 334 333 {0 0 0} 0 370 335 333 {0 0 0} 0 371 340 335 {0 0 0} 0 372 337 336 {0 0 0} 0 373 338 336 {0 0 0} 0 374 339 338 {0 0 0} 0 375 340 338 {0 0 0} 0 376 341 340 {0 0 0} 0 377 342 341 {0 0 0} 0 378 363 341 {0 0 0} 0 379 364 341 {0 0 0} 0 380 344 342 {0 0 0} 0 381 347 342 {0 0 0} 0 382 346 343 {0 0 0} 0 383 345 344 {0 0 0} 0 384 346 344 {0 0 0} 0 385 351 346 {0 0 0} 0 386 348 347 {0 0 0} 0 387 349 347 {0 0 0} 0 388 350 349 {0 0 0} 0 389 351 349 {0 0 0} 0 390 352 351 {0 0 0} 0 391 353 352 {0 0 0} 0 392 355 353 {0 0 0} 0 393 358 353 {0 0 0} 0 394 357 354 {0 0 0} 0 395 356 355 {0 0 0} 0 396 357 355 {0 0 0} 0 397 362 357 {0 0 0} 0 398 359 358 {0 0 0} 0 399 360 358 {0 0 0} 0 400 361 360 {0 0 0} 0 401 362 360 {0 0 0} 0 402 453 362 {0 0 0} 0 403 365 363 {0 0 0} 0 404 366 363 {0 0 0} 0 405 367 363 {0 0 0} 0 406 368 364 {0 0 0} 0 407 369 364 {0 0 0} 0 408 370 364 {1 0 0} 0 409 372 371 {0 0 0} 0 410 373 372 {0 0 0} 0 411 392 372 {0 0 0} 0 412 374 373 {0 0 0} 0 413 375 374 {0 0 0} 0 414 376 374 {0 0 0} 0 415 377 376 {0 0 0} 0 416 392 376 {0 0 0} 0 417 378 377 {0 0 0} 0 418 393 377 {0 0 0} 0 419 379 378 {0 0 0} 0 420 390 378 {0 0 0} 0 421 380 379 {0 0 0} 0 422 381 380 {0 0 0} 0 423 389 380 {0 0 0} 0 424 382 381 {0 0 0} 0 425 394 381 {0 0 0} 0 426 383 382 {0 0 0} 0 427 395 382 {0 0 0} 0 428 384 383 {0 0 0} 0 429 388 383 {0 0 0} 0 430 385 384 {0 0 0} 0 431 399 384 {0 0 0} 0 432 387 386 {0 0 0} 0 433 388 386 {0 0 0} 0 434 399 386 {0 0 0} 0 435 389 388 {0 0 0} 0 436 396 389 {0 0 0} 0 437 391 390 {0 0 0} 0 438 397 390 {0 0 0} 0 439 392 391 {0 0 0} 0 440 398 391 {0 0 0} 0 441 402 400 {0 0 0} 0 442 405 400 {0 0 0} 0 443 479 400 {0 0 0} 0 444 404 401 {1 0 0} 0 445 402 403 {1 0 0} 0 446 404 402 {0 0 0} 0 447 409 404 {0 0 0} 0 448 406 405 {0 0 0} 0 449 407 405 {0 0 0} 0 450 408 407 {0 0 0} 0 451 409 407 {0 0 0} 0 452 410 409 {0 0 0} 0 453 411 410 {0 0 0} 0 454 411 413 {1 0 0} 0 455 416 411 {0 0 0} 0 456 415 412 {1 0 0} 0 457 414 413 {0 0 0} 0 458 415 413 {1 0 0} 0 459 420 415 {0 0 0} 0 460 417 416 {0 0 0} 0 461 418 416 {0 0 0} 0 462 419 418 {0 0 0} 0 463 420 418 {0 0 0} 0 464 421 420 {0 0 0} 0 465 422 421 {0 0 0} 0 466 421 443 {0 1 0} 0 467 444 421 {0 0 0} 0 468 424 422 {0 0 0} 0 469 427 422 {0 0 0} 0 470 426 423 {0 0 0} 0 471 425 424 {0 0 0} 0 472 426 424 {0 0 0} 0 473 431 426 {0 0 0} 0 474 427 428 {0 1 0} 0 475 429 427 {0 0 0} 0 476 429 430 {1 0 0} 0 477 431 429 {0 0 0} 0 478 431 432 {1 0 0} 0 479 433 432 {0 0 0} 0 480 435 433 {1 0 0} 0 481 438 433 {0 0 0} 0 482 437 434 {0 1 0} 0 483 436 435 {0 0 0} 0 484 437 435 {0 0 0} 0 485 437 442 {1 0 1} 0 486 439 438 {0 0 0} 0 487 438 440 {0 0 1} 0 488 441 440 {0 0 0} 0 489 442 440 {0 0 0} 0 490 481 442 {0 0 0} 0 491 445 443 {0 0 0} 0 492 446 443 {0 0 0} 0 493 447 443 {0 0 0} 0 494 448 444 {0 0 0} 0 495 449 444 {0 0 0} 0 496 450 444 {0 0 0} 0 497 452 451 {0 0 0} 0 498 453 452 {0 0 0} 0 499 472 452 {0 0 0} 0 500 454 453 {0 0 0} 0 501 455 454 {0 0 0} 0 502 454 456 {0 1 0} 0 503 457 456 {0 0 0} 0 504 472 456 {0 1 0} 0 505 458 457 {0 0 0} 0 506 473 457 {0 0 0} 0 507 459 458 {0 0 0} 0 508 470 458 {0 0 0} 0 509 460 459 {0 0 0} 0 510 461 460 {0 0 0} 0 511 469 460 {0 0 0} 0 512 462 461 {0 0 0} 0 513 474 461 {0 0 0} 0 514 463 462 {0 0 0} 0 515 475 462 {0 0 0} 0 516 464 463 {0 0 0} 0 517 468 463 {0 0 0} 0 518 465 464 {0 0 0} 0 519 479 464 {0 0 0} 0 520 467 466 {0 0 0} 0 521 468 466 {0 0 0} 0 522 479 466 {0 0 0} 0 523 469 468 {0 0 0} 0 524 476 469 {0 0 0} 0 525 471 470 {0 0 0} 0 526 477 470 {0 0 0} 0 527 472 471 {0 1 0} 0 528 478 471 {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 ? {} {} {} {}}} } } }