job.id 989 job.name Structure_opt_ODPA6FPDA_6 job.description { } job.status finished job.submitted {2025-07-22 22:07:19} job.started {2025-07-22 22:07:20} job.finished {2025-07-23 20:49:39} job.queue 2 job.errormsg {} job.pid 0 job.userid 1 job.priority 5 job.jobserverid 2 data.joboptions {_protocol_type_ JobControl _description_ {} passwd {} _name_ {} nproc 3 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.385 0.385 0.385} 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_ {} _protocol_id_ 0 _protocol_pid_ 0 _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 9 F 1 H 6 C 7 N}} potentials_version {Version 54} potim {} prec Accurate precision Accurate 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_ODPA6FPDA_6 tebeg {} teend {} thomasFermi 1.8 thomasFermi_choice {average valence density} thomasFermi_fromDensity 1.6284480066363363 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_ {} _protocol_id_ 0 _protocol_pid_ 0 _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 800 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.868619122718 0.906278329306 0.291528599508} Untitled_1::C1 1 -1 1 {} H 0.0 {0.711347974094 0.770704870843 0.253434404199} Untitled_1::H1 2 -1 6 {} C 0.0 {0.802141420559 0.869405483412 0.250174257253} Untitled_1::C2 3 -1 1 {} H 0.0 {0.779811095608 0.895220678724 0.192493912928} Untitled_1::H2 4 -1 6 {} C 0.0 {0.76421331338 0.798104512021 0.284025817882} Untitled_1::C3 5 -1 6 {} C 0.0 {0.900095211801 0.87055920342 0.361505818531} Untitled_1::C4 6 -1 1 {} H 0.0 {0.948340864077 0.902961841526 0.39532834546} Untitled_1::H3 7 -1 6 {} C 0.0 {0.869160144566 0.793945826155 0.390522726249} Untitled_1::C5 8 -1 1 {} H 0.0 {0.902755823142 0.759010401907 0.437048746001} Untitled_1::H4 9 -1 6 {} C 0.0 {0.795214196263 0.762600535425 0.357557014639} Untitled_1::C6 10 -1 6 {} C 0.0 {0.746759657017 0.68716272069 0.399441515368} Untitled_1::C7 11 -1 6 {} C 0.0 {0.756694078433 0.679253824319 0.498935919468} Untitled_1::C8 12 -1 1 {} H 0.0 {0.840380680687 0.768191363276 0.671791158931} Untitled_1::H5 13 -1 6 {} C 0.0 {0.799931521374 0.737708754383 0.55027069984} Untitled_1::C9 14 -1 1 {} H 0.0 {0.827077313967 0.790632118093 0.526329635371} Untitled_1::H6 15 -1 6 {} C 0.0 {0.808558234555 0.723338609961 0.63388754152} Untitled_1::C10 16 -1 6 {} C 0.0 {0.722220779113 0.60982438802 0.537133615423} Untitled_1::C11 17 -1 1 {} H 0.0 {0.686258827804 0.566487481405 0.500960991748} Untitled_1::H7 18 -1 6 {} C 0.0 {0.733563932753 0.59613438734 0.621803249017} Untitled_1::C12 19 -1 1 {} H 0.0 {0.707919405327 0.541335611723 0.650349814155} Untitled_1::H8 20 -1 6 {} C 0.0 {0.777813195245 0.652732190957 0.669363018207} Untitled_1::C13 21 -1 6 {} C 0.0 {0.655441455877 0.69762964872 0.380670116383} Untitled_1::C14 22 -1 6 {} C 0.0 {0.776331059773 0.606336168597 0.360783955126} Untitled_1::C15 23 -1 9 {} F 0.0 {0.726790672172 0.536871796625 0.393739674748} Untitled_1::F1 24 -1 9 {} F 0.0 {0.76633286313 0.610596140912 0.270158756013} Untitled_1::F2 25 -1 9 {} F 0.0 {0.864615212695 0.593498120436 0.380730179945} Untitled_1::F3 26 -1 9 {} F 0.0 {0.642428275899 0.698081204027 0.290373792186} Untitled_1::F4 27 -1 9 {} F 0.0 {0.609169770415 0.628325371635 0.417999646061} Untitled_1::F5 28 -1 9 {} F 0.0 {0.626042773961 0.776423881204 0.416608291607} Untitled_1::F6 29 -1 8 {} O 0.0 {0.857336252112 0.00203464823663 0.114085183019} Untitled_1::O1 30 -1 6 {} C 0.0 {0.901694959393 0.0279516396308 0.179918411642} Untitled_1::C16 31 -1 7 {} N 0.0 {0.907402520711 0.986772230544 0.262934710332} Untitled_1::N1 32 -1 6 {} C 0.0 {0.964316558584 0.038930183435 0.313705655235} Untitled_1::C17 33 -1 8 {} O 0.0 {0.988746962826 0.0235134714755 0.392089528902} Untitled_1::O2 34 -1 6 {} C 0.0 {0.989263918644 0.112889357756 0.261609580107} Untitled_1::C18 35 -1 6 {} C 0.0 {0.0369592699433 0.177942203052 0.285275406707} Untitled_1::C19 36 -1 6 {} C 0.0 {0.0561181083847 0.238700627703 0.226582828364} Untitled_1::C20 37 -1 8 {} O 0.0 {0.107430096547 0.31240591997 0.252680224404} Untitled_1::O3 38 -1 6 {} C 0.0 {0.161664574203 0.342179151366 0.184310191914} Untitled_1::C21 39 -1 6 {} C 0.0 {0.168569258002 0.429074524664 0.168196729626} Untitled_1::C22 40 -1 6 {} C 0.0 {0.21750897318 0.457052456219 0.101882023541} Untitled_1::C23 41 -1 6 {} C 0.0 {0.257056374196 0.39886874093 0.0546839752247} Untitled_1::C24 42 -1 6 {} C 0.0 {0.311994763213 0.41259475291 0.978503266549} Untitled_1::C25 43 -1 8 {} O 0.0 {0.330959813973 0.486015451243 0.943260572588} Untitled_1::O4 44 -1 6 {} C 0.0 {0.302883242754 0.267659006673 0.00821247766982} Untitled_1::C26 45 -1 8 {} O 0.0 {0.312349627386 0.184723624036 0.00540890992536} Untitled_1::O5 46 -1 6 {} C 0.0 {0.251651075698 0.316228123307 0.0712064115201} Untitled_1::C27 47 -1 6 {} C 0.0 {0.205537694899 0.285663472617 0.135227685374} Untitled_1::C28 48 -1 6 {} C 0.0 {0.0260413240797 0.229495006611 0.143184096713} Untitled_1::C29 49 -1 6 {} C 0.0 {0.973995763761 0.16180086336 0.123367671795} Untitled_1::C30 50 -1 6 {} C 0.0 {0.956602454763 0.106004571594 0.184532933331} Untitled_1::C31 51 -1 1 {} H 0.0 {0.0589383758539 0.18297149174 0.348124918717} Untitled_1::H9 52 -1 1 {} H 0.0 {0.136263161602 0.473099454173 0.206946326825} Untitled_1::H10 53 -1 1 {} H 0.0 {0.223641447476 0.522384973029 0.0886800926401} Untitled_1::H11 54 -1 1 {} H 0.0 {0.20337075899 0.220122462602 0.147889759163} Untitled_1::H12 55 -1 1 {} H 0.0 {0.0434506994911 0.273115049412 0.095705489178} Untitled_1::H13 56 -1 1 {} H 0.0 {0.949034612988 0.154316983537 0.0619149487876} Untitled_1::H14 57 -1 7 {} N 0.0 {0.340417342986 0.329238387125 0.950344809832} Untitled_1::N2 58 -1 6 {} C 0.0 {0.440342505396 0.249562720692 0.247752416071} Untitled_2::C1 59 -1 1 {} H 0.0 {0.231894895049 0.240296294195 0.242686621076} Untitled_2::H1 60 -1 6 {} C 0.0 {0.360766676432 0.255938146664 0.216964526004} Untitled_2::C2 61 -1 1 {} H 0.0 {0.350532978627 0.279462296988 0.155323054487} Untitled_2::H2 62 -1 6 {} C 0.0 {0.294427300493 0.231663367858 0.265309914468} Untitled_2::C3 63 -1 6 {} C 0.0 {0.455454518638 0.202054401867 0.317971128228} Untitled_2::C4 64 -1 1 {} H 0.0 {0.518204384764 0.1870387975 0.33575460598} Untitled_2::H3 65 -1 6 {} C 0.0 {0.389343273758 0.174067193584 0.365140621142} Untitled_2::C5 66 -1 1 {} H 0.0 {0.400062073957 0.134472485924 0.418069907561} Untitled_2::H4 67 -1 6 {} C 0.0 {0.309195709723 0.196825517846 0.343673394656} Untitled_2::C6 68 -1 6 {} C 0.0 {0.238635682001 0.183858908364 0.40717074856} Untitled_2::C7 69 -1 6 {} C 0.0 {0.276975230733 0.145458581763 0.488174579218} Untitled_2::C8 70 -1 1 {} H 0.0 {0.326103493473 0.208963710797 0.681615780564} Untitled_2::H5 71 -1 6 {} C 0.0 {0.282721550316 0.195822822226 0.55747378965} Untitled_2::C9 72 -1 1 {} H 0.0 {0.25710172929 0.257333196663 0.555628468481} Untitled_2::H6 73 -1 6 {} C 0.0 {0.32099241193 0.168165692061 0.629026813444} Untitled_2::C10 74 -1 6 {} C 0.0 {0.308642433918 0.0644382552867 0.491789356945} Untitled_2::C11 75 -1 1 {} H 0.0 {0.30629151426 0.0249180818267 0.438165813208} Untitled_2::H7 76 -1 6 {} C 0.0 {0.345008607835 0.0355234872063 0.566089073016} Untitled_2::C12 77 -1 1 {} H 0.0 {0.367138706658 0.972404457653 0.570500404979} Untitled_2::H8 78 -1 6 {} C 0.0 {0.352469631289 0.0889651253858 0.633911726929} Untitled_2::C13 79 -1 6 {} C 0.0 {0.208224981087 0.270355565909 0.429588417991} Untitled_2::C14 80 -1 6 {} C 0.0 {0.158499272142 0.137829112294 0.371149527799} Untitled_2::C15 81 -1 9 {} F 0.0 {0.0906850638873 0.144179143197 0.432429901919} Untitled_2::F1 82 -1 9 {} F 0.0 {0.133405094195 0.181957783912 0.295138885014} Untitled_2::F2 83 -1 9 {} F 0.0 {0.170379246771 0.0494304937851 0.350059868164} Untitled_2::F3 84 -1 9 {} F 0.0 {0.176791803375 0.311703585652 0.354512924187} Untitled_2::F4 85 -1 9 {} F 0.0 {0.140617497494 0.263483479277 0.490930543266} Untitled_2::F5 86 -1 9 {} F 0.0 {0.276793969369 0.319248828183 0.464903719561} Untitled_2::F6 87 -1 8 {} O 0.0 {0.43659864016 0.344620655724 0.0753055225461} Untitled_2::O1 88 -1 6 {} C 0.0 {0.503386340803 0.341991427591 0.125838091038} Untitled_2::C16 89 -1 7 {} N 0.0 {0.509766102979 0.295631480442 0.204991518751} Untitled_2::N1 90 -1 6 {} C 0.0 {0.597160637702 0.306332353165 0.234894131987} Untitled_2::C17 91 -1 8 {} O 0.0 {0.631372531815 0.271376875503 0.302756691592} Untitled_2::O2 92 -1 6 {} C 0.0 {0.639933291943 0.365437646119 0.173903828156} Untitled_2::C18 93 -1 6 {} C 0.0 {0.718563682669 0.397357279642 0.1775208672} Untitled_2::C19 94 -1 6 {} C 0.0 {0.742230043142 0.454008382025 0.114807446291} Untitled_2::C20 95 -1 8 {} O 0.0 {0.825629882946 0.4926369194 0.114320372187} Untitled_2::O3 96 -1 6 {} C 0.0 {0.831578062218 0.547917821274 0.0399069136912} Untitled_2::C21 97 -1 6 {} C 0.0 {0.868838944854 0.62787689244 0.0463476257695} Untitled_2::C22 98 -1 6 {} C 0.0 {0.872413086657 0.679782971451 0.976197298888} Untitled_2::C23 99 -1 6 {} C 0.0 {0.839330302412 0.650955098572 0.903575867526} Untitled_2::C24 100 -1 6 {} C 0.0 {0.835447862433 0.69499711022 0.819719475743} Untitled_2::C25 101 -1 8 {} O 0.0 {0.864459631601 0.771596713522 0.802540997968} Untitled_2::O4 102 -1 6 {} C 0.0 {0.771269822176 0.561700272494 0.80876052656} Untitled_2::C26 103 -1 8 {} O 0.0 {0.730032676263 0.494800011725 0.780273694617} Untitled_2::O5 104 -1 6 {} C 0.0 {0.803712333785 0.574817363882 0.897329046491} Untitled_2::C27 105 -1 6 {} C 0.0 {0.799383081139 0.521372984636 0.963002109827} Untitled_2::C28 106 -1 6 {} C 0.0 {0.685649499204 0.474818116931 0.0514035931145} Untitled_2::C29 107 -1 6 {} C 0.0 {0.607561565728 0.438701406383 0.0495892256571} Untitled_2::C30 108 -1 6 {} C 0.0 {0.586548069956 0.385507317549 0.112036274934} Untitled_2::C31 109 -1 1 {} H 0.0 {0.760677353846 0.380116693111 0.22649917228} Untitled_2::H9 110 -1 1 {} H 0.0 {0.894083518213 0.648557166819 0.104670104184} Untitled_2::H10 111 -1 1 {} H 0.0 {0.900431004993 0.740454304528 0.979588788638} Untitled_2::H11 112 -1 1 {} H 0.0 {0.772631903065 0.460563171722 0.956044123022} Untitled_2::H12 113 -1 1 {} H 0.0 {0.702796402596 0.519253746624 0.00476588062801} Untitled_2::H13 114 -1 1 {} H 0.0 {0.565236717495 0.45221749453 0.000122890963048} Untitled_2::H14 115 -1 7 {} N 0.0 {0.79368719858 0.637117347114 0.760299344521} Untitled_2::N2 116 -1 6 {} C 0.0 {0.102976881299 0.812491842658 0.302542705507} Untitled_3::C1 117 -1 1 {} H 0.0 {0.895075897161 0.786062349147 0.307575373974} Untitled_3::H1 118 -1 6 {} C 0.0 {0.0230087328292 0.795412224021 0.275400085034} Untitled_3::C2 119 -1 1 {} H 0.0 {0.0125891763721 0.778336575598 0.21164765923} Untitled_3::H2 120 -1 6 {} C 0.0 {0.956773121246 0.800050319017 0.329661797715} Untitled_3::C3 121 -1 6 {} C 0.0 {0.118517463775 0.823078660141 0.385812932851} Untitled_3::C4 122 -1 1 {} H 0.0 {0.181432180945 0.827933106758 0.407923214915} Untitled_3::H3 123 -1 6 {} C 0.0 {0.0528872700903 0.827804864195 0.44114151674} Untitled_3::C5 124 -1 1 {} H 0.0 {0.0649872867791 0.835054524195 0.506494072422} Untitled_3::H4 125 -1 6 {} C 0.0 {0.971289714679 0.822704769037 0.41296193778} Untitled_3::C6 126 -1 6 {} C 0.0 {0.899817813681 0.841565610184 0.477609912394} Untitled_3::C7 127 -1 6 {} C 0.0 {0.928051379839 0.79841742721 0.556260080641} Untitled_3::C8 128 -1 1 {} H 0.0 {0.0647125977479 0.827325491923 0.709537744695} Untitled_3::H5 129 -1 6 {} C 0.0 {0.984551763118 0.837867116107 0.605865948387} Untitled_3::C9 130 -1 1 {} H 0.0 {0.00334374279081 0.900258863 0.5917702572} Untitled_3::H6 131 -1 6 {} C 0.0 {0.0174344819971 0.797715359085 0.673095335431} Untitled_3::C10 132 -1 6 {} C 0.0 {0.901379531571 0.718459888617 0.576527180544} Untitled_3::C11 133 -1 1 {} H 0.0 {0.861942971973 0.683914343473 0.53500498689} Untitled_3::H7 134 -1 6 {} C 0.0 {0.928767822261 0.682078667988 0.648181383433} Untitled_3::C12 135 -1 1 {} H 0.0 {0.902008384737 0.624602836805 0.669056828471} Untitled_3::H8 136 -1 6 {} C 0.0 {0.990244326939 0.719147549895 0.69333708919} Untitled_3::C13 137 -1 6 {} C 0.0 {0.894552496559 0.934764766609 0.49187404345} Untitled_3::C14 138 -1 6 {} C 0.0 {0.812249901364 0.811461373008 0.450647819192} Untitled_3::C15 139 -1 9 {} F 0.0 {0.750551213342 0.829837650519 0.516524663227} Untitled_3::F1 140 -1 9 {} F 0.0 {0.787242354275 0.854367452467 0.373489137021} Untitled_3::F2 141 -1 9 {} F 0.0 {0.818002615363 0.721422237443 0.437891219988} Untitled_3::F3 142 -1 9 {} F 0.0 {0.868815809385 0.975551717414 0.41412530148} Untitled_3::F4 143 -1 9 {} F 0.0 {0.832557025696 0.952135313603 0.556900181664} Untitled_3::F5 144 -1 9 {} F 0.0 {0.975879250463 0.966857728926 0.517651721551} Untitled_3::F6 145 -1 8 {} O 0.0 {0.0856081566253 0.810217795171 0.109665216246} Untitled_3::O1 146 -1 6 {} C 0.0 {0.158766703888 0.818493229826 0.149018384293} Untitled_3::C16 147 -1 7 {} N 0.0 {0.171517758072 0.817517382011 0.239581172719} Untitled_3::N1 148 -1 6 {} C 0.0 {0.263522637269 0.826810925901 0.253446866432} Untitled_3::C17 149 -1 8 {} O 0.0 {0.303517457919 0.827995097935 0.326950520332} Untitled_3::O2 150 -1 6 {} C 0.0 {0.303020101923 0.834651415367 0.166694912052} Untitled_3::C18 151 -1 6 {} C 0.0 {0.385139999233 0.845575518926 0.145611340891} Untitled_3::C19 152 -1 6 {} C 0.0 {0.404046469626 0.855180401216 0.0600816526097} Untitled_3::C20 153 -1 8 {} O 0.0 {0.490728726268 0.870895325081 0.0310080660312} Untitled_3::O3 154 -1 6 {} C 0.0 {0.486409456981 0.936143080234 0.965429344578} Untitled_3::C21 155 -1 6 {} C 0.0 {0.501912249576 0.0204988449506 0.986297569676} Untitled_3::C22 156 -1 6 {} C 0.0 {0.484660547027 0.0830921063878 0.928178681329} Untitled_3::C23 157 -1 6 {} C 0.0 {0.452890449457 0.0599092060371 0.853023830862} Untitled_3::C24 158 -1 6 {} C 0.0 {0.422057644993 0.115967501007 0.783420554962} Untitled_3::C25 159 -1 8 {} O 0.0 {0.421977627475 0.199667877231 0.783890621319} Untitled_3::O4 160 -1 6 {} C 0.0 {0.408659919762 0.973870349598 0.742134621856} Untitled_3::C26 161 -1 8 {} O 0.0 {0.396311753403 0.904321461254 0.697412501673} Untitled_3::O5 162 -1 6 {} C 0.0 {0.443473419834 0.979080936037 0.830854301032} Untitled_3::C27 163 -1 6 {} C 0.0 {0.461575785999 0.915461953313 0.883964420089} Untitled_3::C28 164 -1 6 {} C 0.0 {0.339339833807 0.851158333883 0.000853989519432} Untitled_3::C29 165 -1 6 {} C 0.0 {0.258034898104 0.838379487905 0.0265512511242} Untitled_3::C30 166 -1 6 {} C 0.0 {0.242585092309 0.830597318916 0.108379347376} Untitled_3::C31 167 -1 1 {} H 0.0 {0.433032874923 0.846711648705 0.1921187728} Untitled_3::H9 168 -1 1 {} H 0.0 {0.526669315583 0.0362974069836 0.046336763062} Untitled_3::H10 169 -1 1 {} H 0.0 {0.49611794894 0.147387995023 0.942353970645} Untitled_3::H11 170 -1 1 {} H 0.0 {0.457269249912 0.851735075548 0.864194246989} Untitled_3::H12 171 -1 1 {} H 0.0 {0.352953767019 0.858376918392 0.935837045206} Untitled_3::H13 172 -1 1 {} H 0.0 {0.208865697089 0.835631620519 0.982815078539} Untitled_3::H14 173 -1 7 {} N 0.0 {0.39135995089 0.0607610044574 0.714982932226} Untitled_3::N2 174 -1 6 {} C 0.0 {0.954776185813 0.430619516814 0.462891946222} Untitled_4::C1 175 -1 1 {} H 0.0 {0.890976026377 0.54398617212 0.623693711809} Untitled_4::H1 176 -1 6 {} C 0.0 {0.937876099487 0.498879184702 0.510126555106} Untitled_4::C2 177 -1 1 {} H 0.0 {0.949520536331 0.560053178617 0.485557056126} Untitled_4::H2 178 -1 6 {} C 0.0 {0.906882952869 0.489966300127 0.588016879567} Untitled_4::C3 179 -1 6 {} C 0.0 {0.939278652281 0.351663370378 0.493160013114} Untitled_4::C4 180 -1 1 {} H 0.0 {0.950473708401 0.297998048826 0.454816070842} Untitled_4::H3 181 -1 6 {} C 0.0 {0.909344967165 0.3423226135 0.573075188991} Untitled_4::C5 182 -1 1 {} H 0.0 {0.897161422517 0.281404749306 0.59764850302} Untitled_4::H4 183 -1 6 {} C 0.0 {0.895205248415 0.412050792621 0.621029145107} Untitled_4::C6 184 -1 6 {} C 0.0 {0.867415386838 0.405116730306 0.709988111768} Untitled_4::C7 185 -1 6 {} C 0.0 {0.931860878675 0.356109848576 0.758466084189} Untitled_4::C8 186 -1 1 {} H 0.0 {0.122917241156 0.276485093214 0.733758704904} Untitled_4::H5 187 -1 6 {} C 0.0 {0.00566327905159 0.335677830396 0.720779801739} Untitled_4::C9 188 -1 1 {} H 0.0 {0.017106133267 0.354389661508 0.657576093095} Untitled_4::H6 189 -1 6 {} C 0.0 {0.0649007292304 0.291407491338 0.763440619061} Untitled_4::C10 190 -1 6 {} C 0.0 {0.917029084895 0.332434000419 0.84019997618} Untitled_4::C11 191 -1 1 {} H 0.0 {0.859639023663 0.349356719218 0.870097966087} Untitled_4::H7 192 -1 6 {} C 0.0 {0.97675977431 0.287008365072 0.883359237619} Untitled_4::C12 193 -1 1 {} H 0.0 {0.965728658839 0.268550765684 0.946707596332} Untitled_4::H8 194 -1 6 {} C 0.0 {0.0505528615578 0.26602765247 0.844259306029} Untitled_4::C13 195 -1 6 {} C 0.0 {0.863830217415 0.491558852088 0.743998050649} Untitled_4::C14 196 -1 6 {} C 0.0 {0.782599771933 0.363721025011 0.717151649284} Untitled_4::C15 197 -1 9 {} F 0.0 {0.756903829229 0.363259122194 0.804366622122} Untitled_4::F1 198 -1 9 {} F 0.0 {0.721273395155 0.410567752997 0.668152187785} Untitled_4::F2 199 -1 9 {} F 0.0 {0.787238963117 0.27800015589 0.685640775024} Untitled_4::F3 200 -1 9 {} F 0.0 {0.80008202816 0.53962615603 0.699640795125} Untitled_4::F4 201 -1 9 {} F 0.0 {0.844065569772 0.488299864432 0.833043604478} Untitled_4::F5 202 -1 9 {} F 0.0 {0.94593983999 0.53039882117 0.732229748639} Untitled_4::F6 203 -1 8 {} O 0.0 {0.0054238564079 0.59924488145 0.380721527123} Untitled_4::O1 204 -1 6 {} C 0.0 {0.0102769931819 0.524915466649 0.342545369809} Untitled_4::C16 205 -1 7 {} N 0.0 {0.98841562029 0.443483792826 0.379057318942} Untitled_4::N1 206 -1 6 {} C 0.0 {0.0071552664231 0.379682206392 0.315687542858} Untitled_4::C17 207 -1 8 {} O 0.0 {0.997606873013 0.296964862488 0.32359337382} Untitled_4::O2 208 -1 6 {} C 0.0 {0.0391351666943 0.425772244907 0.239858310382} Untitled_4::C18 209 -1 6 {} C 0.0 {0.0637760073028 0.393550127761 0.166773372756} Untitled_4::C19 210 -1 6 {} C 0.0 {0.0891853956656 0.448248600517 0.10511826005} Untitled_4::C20 211 -1 8 {} O 0.0 {0.117591277185 0.416917326547 0.0252141615915} Untitled_4::O3 212 -1 6 {} C 0.0 {0.119575382252 0.486992730679 0.968095491847} Untitled_4::C21 213 -1 6 {} C 0.0 {0.192843890019 0.535021711944 0.959569194336} Untitled_4::C22 214 -1 6 {} C 0.0 {0.193794224712 0.601895062364 0.905131562835} Untitled_4::C23 215 -1 6 {} C 0.0 {0.123944793382 0.618301175699 0.862044144591} Untitled_4::C24 216 -1 6 {} C 0.0 {0.110624353262 0.685916110512 0.798515395539} Untitled_4::C25 217 -1 8 {} O 0.0 {0.166209973743 0.743721143467 0.775333096262} Untitled_4::O4 218 -1 6 {} C 0.0 {0.988189299429 0.604228416761 0.810831779486} Untitled_4::C26 219 -1 8 {} O 0.0 {0.909806466285 0.575640835126 0.803060666468} Untitled_4::O5 220 -1 6 {} C 0.0 {0.0540330193115 0.572111483455 0.869825551661} Untitled_4::C27 221 -1 6 {} C 0.0 {0.0490690036511 0.507080489779 0.92239778954} Untitled_4::C28 222 -1 6 {} C 0.0 {0.0875762569982 0.535130142355 0.119680312469} Untitled_4::C29 223 -1 6 {} C 0.0 {0.0629186453603 0.56507613897 0.196927468381} Untitled_4::C30 224 -1 6 {} C 0.0 {0.0396822607948 0.508730561485 0.25499787824} Untitled_4::C31 225 -1 1 {} H 0.0 {0.0640126481855 0.328121055234 0.156688918824} Untitled_4::H9 226 -1 1 {} H 0.0 {0.247294490835 0.519969696887 0.995114345308} Untitled_4::H10 227 -1 1 {} H 0.0 {0.248382199292 0.638762966928 0.896922797839} Untitled_4::H11 228 -1 1 {} H 0.0 {0.992455487194 0.4720561516 0.929018446608} Untitled_4::H12 229 -1 1 {} H 0.0 {0.104857131994 0.577684078915 0.071020300686} Untitled_4::H13 230 -1 1 {} H 0.0 {0.0621575386483 0.63068111063 0.210022867228} Untitled_4::H14 231 -1 7 {} N 0.0 {0.0260396285892 0.674660122627 0.764724627087} Untitled_4::N2 232 -1 6 {} C 0.0 {0.201872524844 0.970883044964 0.560196489638} Untitled_5::C1 233 -1 1 {} H 0.0 {0.112685401829 0.0685828982026 0.72069719385} Untitled_5::H1 234 -1 6 {} C 0.0 {0.164572735142 0.0330397642438 0.605454226433} Untitled_5::C2 235 -1 1 {} H 0.0 {0.153115787766 0.0926014141284 0.577137447354} Untitled_5::H2 236 -1 6 {} C 0.0 {0.141954587923 0.0196776800869 0.685819349229} Untitled_5::C3 237 -1 6 {} C 0.0 {0.211727664021 0.892773196648 0.593851245748} Untitled_5::C4 238 -1 1 {} H 0.0 {0.237816934485 0.843271542419 0.55711325739} Untitled_5::H3 239 -1 6 {} C 0.0 {0.187703712856 0.87859063789 0.675308770876} Untitled_5::C5 240 -1 1 {} H 0.0 {0.192858372561 0.817406906752 0.701682038421} Untitled_5::H4 241 -1 6 {} C 0.0 {0.156240588986 0.944030479166 0.722300270222} Untitled_5::C6 242 -1 6 {} C 0.0 {0.13682643388 0.933779561177 0.813660449509} Untitled_5::C7 243 -1 6 {} C 0.0 {0.18368923938 0.861660074846 0.848623351183} Untitled_5::C8 244 -1 1 {} H 0.0 {0.364757988799 0.759621051886 0.829002420207} Untitled_5::H5 245 -1 6 {} C 0.0 {0.260855189799 0.840686233438 0.817509964369} Untitled_5::C9 246 -1 1 {} H 0.0 {0.286734067039 0.874562467356 0.766176422573} Untitled_5::H6 247 -1 6 {} C 0.0 {0.304429097537 0.776126004156 0.852462087786} Untitled_5::C10 248 -1 6 {} C 0.0 {0.149587196525 0.817161111107 0.912544733701} Untitled_5::C11 249 -1 1 {} H 0.0 {0.0889006175451 0.833066531431 0.935755486117} Untitled_5::H7 250 -1 6 {} C 0.0 {0.192787335293 0.752739215867 0.946946676448} Untitled_5::C12 251 -1 1 {} H 0.0 {0.165787827367 0.71732383831 0.996807384506} Untitled_5::H8 252 -1 6 {} C 0.0 {0.270625800064 0.732976947031 0.917561130894} Untitled_5::C13 253 -1 6 {} C 0.0 {0.163352236983 0.0131231530604 0.85758175449} Untitled_5::C14 254 -1 6 {} C 0.0 {0.0445266171557 0.919890040726 0.826657123943} Untitled_5::C15 255 -1 9 {} F 0.0 {0.0273308939437 0.914001936198 0.916293044233} Untitled_5::F1 256 -1 9 {} F 0.0 {0.997829086195 0.989658671999 0.79120065588} Untitled_5::F2 257 -1 9 {} F 0.0 {0.0191127619213 0.842387695295 0.785960993107} Untitled_5::F3 258 -1 9 {} F 0.0 {0.118863901026 0.0839717731319 0.820952594771} Untitled_5::F4 259 -1 9 {} F 0.0 {0.143810701954 0.00754329062625 0.946620082361} Untitled_5::F5 260 -1 9 {} F 0.0 {0.253319816221 0.0252627599414 0.846357328296} Untitled_5::F6 261 -1 8 {} O 0.0 {0.1810330497 0.13772867695 0.468030031366} Untitled_5::O1 262 -1 6 {} C 0.0 {0.217641573011 0.0703140879896 0.433606309724} Untitled_5::C16 263 -1 7 {} N 0.0 {0.229844895338 0.990189265487 0.474876502762} Untitled_5::N1 264 -1 6 {} C 0.0 {0.274157642308 0.935216512376 0.414614855619} Untitled_5::C17 265 -1 8 {} O 0.0 {0.300004334567 0.856965398479 0.428356049932} Untitled_5::O2 266 -1 6 {} C 0.0 {0.284319533464 0.985854756677 0.33398040909} Untitled_5::C18 267 -1 6 {} C 0.0 {0.316385726312 0.961242968455 0.259601952553} Untitled_5::C19 268 -1 6 {} C 0.0 {0.311678700516 0.0175613380159 0.192474907343} Untitled_5::C20 269 -1 8 {} O 0.0 {0.340251104651 0.99183524314 0.109109176052} Untitled_5::O3 270 -1 6 {} C 0.0 {0.304764143724 0.0463626893932 0.0424021417041} Untitled_5::C21 271 -1 6 {} C 0.0 {0.351772839841 0.0598196792758 0.969705759106} Untitled_5::C22 272 -1 6 {} C 0.0 {0.3203821266 0.108527716696 0.905715117178} Untitled_5::C23 273 -1 6 {} C 0.0 {0.244176227585 0.141565067856 0.914326653163} Untitled_5::C24 274 -1 6 {} C 0.0 {0.198191246382 0.194429976301 0.851616602062} Untitled_5::C25 275 -1 8 {} O 0.0 {0.22675775236 0.218149616673 0.77671151919} Untitled_5::O4 276 -1 6 {} C 0.0 {0.11380731691 0.176234985418 0.972178545913} Untitled_5::C26 277 -1 8 {} O 0.0 {0.0512686143856 0.180521653111 0.0273438112095} Untitled_5::O5 278 -1 6 {} C 0.0 {0.19718112588 0.130349904851 0.9833472936} Untitled_5::C27 279 -1 6 {} C 0.0 {0.225083597969 0.08348014202 0.0498440884287} Untitled_5::C28 280 -1 6 {} C 0.0 {0.278962388066 0.0979822756714 0.205436078896} Untitled_5::C29 281 -1 6 {} C 0.0 {0.249680254436 0.119916767455 0.284333083096} Untitled_5::C30 282 -1 6 {} C 0.0 {0.252800411083 0.0625098754563 0.34524525789} Untitled_5::C31 283 -1 1 {} H 0.0 {0.344447705762 0.901101719395 0.25227774264} Untitled_5::H9 284 -1 1 {} H 0.0 {0.411408919062 0.0321290209399 0.963654688223} Untitled_5::H10 285 -1 1 {} H 0.0 {0.355897495285 0.11962612881 0.850857349235} Untitled_5::H11 286 -1 1 {} H 0.0 {0.187915295243 0.0754208883393 0.104865426801} Untitled_5::H12 287 -1 1 {} H 0.0 {0.276391213372 0.141924626799 0.154944897117} Untitled_5::H13 288 -1 1 {} H 0.0 {0.224384992878 0.179677168427 0.296193788007} Untitled_5::H14 289 -1 7 {} N 0.0 {0.116294698286 0.215237738005 0.887331659008} Untitled_5::N2 290 -1 6 {} C 0.0 {0.581316341995 0.360038958036 0.618595827529} Untitled_6::C1 291 -1 1 {} H 0.0 {0.611977857928 0.429280244809 0.814298417771} Untitled_6::H1 292 -1 6 {} C 0.0 {0.58581271082 0.41521334397 0.684327361443} Untitled_6::C2 293 -1 1 {} H 0.0 {0.572382257639 0.480073638121 0.674869796069} Untitled_6::H2 294 -1 6 {} C 0.0 {0.607573637484 0.386409674563 0.763076349426} Untitled_6::C3 295 -1 6 {} C 0.0 {0.599847244744 0.276454462255 0.631383697272} Untitled_6::C4 296 -1 1 {} H 0.0 {0.598282437748 0.233746490913 0.579861989196} Untitled_6::H3 297 -1 6 {} C 0.0 {0.620217022352 0.247862098741 0.709752155557} Untitled_6::C5 298 -1 1 {} H 0.0 {0.633036903208 0.182860550376 0.719271952397} Untitled_6::H4 299 -1 6 {} C 0.0 {0.623592666299 0.302295896054 0.775689774418} Untitled_6::C6 300 -1 6 {} C 0.0 {0.644761875232 0.270487552976 0.862558786049} Untitled_6::C7 301 -1 6 {} C 0.0 {0.654164457354 0.176606360541 0.86183841552} Untitled_6::C8 302 -1 1 {} H 0.0 {0.740393747393 0.0236619051686 0.747813875201} Untitled_6::H5 303 -1 6 {} C 0.0 {0.69697375846 0.138421271091 0.797778306532} Untitled_6::C9 304 -1 1 {} H 0.0 {0.723146810638 0.175150046629 0.748347441502} Untitled_6::H6 305 -1 6 {} C 0.0 {0.706364225277 0.053204633601 0.797247277121} Untitled_6::C10 306 -1 6 {} C 0.0 {0.621222962775 0.129468296713 0.925438829358} Untitled_6::C11 307 -1 1 {} H 0.0 {0.589113885859 0.159263522927 0.975988453899} Untitled_6::H7 308 -1 6 {} C 0.0 {0.62995397812 0.0440743171144 0.924433072736} Untitled_6::C12 309 -1 1 {} H 0.0 {0.603761749574 0.0073082373581 0.973611462839} Untitled_6::H8 310 -1 6 {} C 0.0 {0.672459068973 0.00595124251517 0.860277539187} Untitled_6::C13 311 -1 6 {} C 0.0 {0.72487233119 0.307570361125 0.891227520852} Untitled_6::C14 312 -1 6 {} C 0.0 {0.57677925518 0.296600112339 0.921788821815} Untitled_6::C15 313 -1 9 {} F 0.0 {0.596540066057 0.266843727947 0.0059006933542} Untitled_6::F1 314 -1 9 {} F 0.0 {0.571380615303 0.387756234464 0.922253923654} Untitled_6::F2 315 -1 9 {} F 0.0 {0.497073451589 0.2613658789 0.89469364411} Untitled_6::F3 316 -1 9 {} F 0.0 {0.717686093718 0.39859888544 0.890390340781} Untitled_6::F4 317 -1 9 {} F 0.0 {0.742346116689 0.278970501684 0.976164616957} Untitled_6::F5 318 -1 9 {} F 0.0 {0.792132165588 0.281001139211 0.835288820448} Untitled_6::F6 319 -1 8 {} O 0.0 {0.52658808624 0.543490720511 0.549370471962} Untitled_6::O1 320 -1 6 {} C 0.0 {0.528162183752 0.473222347061 0.503930552103} Untitled_6::C16 321 -1 7 {} N 0.0 {0.555536874878 0.388111401442 0.532514499154} Untitled_6::N1 322 -1 6 {} C 0.0 {0.550468378263 0.333613384788 0.459060819327} Untitled_6::C17 323 -1 8 {} O 0.0 {0.573658442527 0.253376735055 0.455572834779} Untitled_6::O2 324 -1 6 {} C 0.0 {0.514264544469 0.384081160601 0.388298156683} Untitled_6::C18 325 -1 6 {} C 0.0 {0.493539207727 0.355796974272 0.31273097915} Untitled_6::C19 326 -1 6 {} C 0.0 {0.454173985225 0.40978084295 0.257181360642} Untitled_6::C20 327 -1 8 {} O 0.0 {0.422034260117 0.375961110696 0.177091903703} Untitled_6::O3 328 -1 6 {} C 0.0 {0.419001031076 0.439896308761 0.111425091366} Untitled_6::C21 329 -1 6 {} C 0.0 {0.476059067465 0.436684015678 0.0439197652623} Untitled_6::C22 330 -1 6 {} C 0.0 {0.472392560837 0.496679899762 0.981674278842} Untitled_6::C23 331 -1 6 {} C 0.0 {0.412285363578 0.554403223265 0.987000707613} Untitled_6::C24 332 -1 6 {} C 0.0 {0.393597604901 0.623692737437 0.926632438664} Untitled_6::C25 333 -1 8 {} O 0.0 {0.437364382038 0.643053116569 0.858006933914} Untitled_6::O4 334 -1 6 {} C 0.0 {0.293403240802 0.623103769659 0.0349762077176} Untitled_6::C26 335 -1 8 {} O 0.0 {0.227667770949 0.641390093214 0.0831169759632} Untitled_6::O5 336 -1 6 {} C 0.0 {0.356554700861 0.555913275993 0.0501611868765} Untitled_6::C27 337 -1 6 {} C 0.0 {0.359166136379 0.501938164222 0.113880040827} Untitled_6::C28 338 -1 6 {} C 0.0 {0.443962841815 0.495139535084 0.279068692126} Untitled_6::C29 339 -1 6 {} C 0.0 {0.469819469297 0.522462278855 0.358755829518} Untitled_6::C30 340 -1 6 {} C 0.0 {0.502254142631 0.463771628411 0.412133103326} Untitled_6::C31 341 -1 1 {} H 0.0 {0.507295370584 0.293208023883 0.295744597296} Untitled_6::H9 342 -1 1 {} H 0.0 {0.520916469658 0.387564478552 0.0402615092783} Untitled_6::H10 343 -1 1 {} H 0.0 {0.515722807448 0.496631055582 0.930792847055} Untitled_6::H11 344 -1 1 {} H 0.0 {0.316536961597 0.506996292021 0.165009784464} Untitled_6::H12 345 -1 1 {} H 0.0 {0.41690771782 0.538348532385 0.235472125852} Untitled_6::H13 346 -1 1 {} H 0.0 {0.464491989656 0.586764753587 0.376773157941} Untitled_6::H14 347 -1 7 {} N 0.0 {0.317131249767 0.665222239982 0.957419594746} Untitled_6::N2 348 -1 1 {} H 0.0 {0.379478941298 0.31627763382 0.899257605747} H_head 349 -1 1 {} H 0.0 {0.678988154198 0.939544242842 0.859401571782} H_tail 350 -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} {16.302209749 16.302209749 16.302209749 90 90 90} {{1 0 0} {0 1 0} {0 0 1}} {{1 0 0} {0 1 0} {0 0 1}} P1 1 {{16.302209749 0 0} {0 16.302209749 0} {0 0 16.302209749}} {{0.0613413773591 0 0} {0 0.0613413773591 0} {0 0 0.0613413773591}} @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 10 0 0 22 10 0 0 23 22 0 0 24 22 0 0 25 22 0 0 26 21 0 0 27 21 0 0 28 21 0 0 30 29 0 2 31 30 0 0 32 31 0 0 33 32 0 2 34 32 0 0 35 34 0 1 36 35 0 1 37 36 0 0 38 37 0 0 39 38 0 1 40 39 0 1 41 40 0 1 42 41 0 0 43 42 0 2 45 44 0 2 46 44 0 0 46 41 0 1 47 46 0 1 47 38 0 1 48 36 0 1 49 48 0 1 50 49 0 1 50 30 0 0 50 34 0 1 51 35 0 0 52 39 0 0 53 40 0 0 54 47 0 0 55 48 0 0 56 49 0 0 57 42 0 0 57 44 0 0 31 0 0 0 62 59 0 0 62 60 0 1 67 62 0 1 61 60 0 0 60 58 0 1 63 58 0 1 64 63 0 0 65 63 0 1 66 65 0 0 67 65 0 1 68 67 0 0 69 68 0 0 73 70 0 0 73 71 0 1 78 73 0 1 72 71 0 0 71 69 0 1 74 69 0 1 75 74 0 0 76 74 0 1 77 76 0 0 78 76 0 1 79 68 0 0 80 68 0 0 81 80 0 0 82 80 0 0 83 80 0 0 84 79 0 0 85 79 0 0 86 79 0 0 88 87 0 2 89 88 0 0 90 89 0 0 91 90 0 2 92 90 0 0 93 92 0 1 94 93 0 1 95 94 0 0 96 95 0 0 97 96 0 1 98 97 0 1 99 98 0 1 100 99 0 0 101 100 0 2 103 102 0 2 104 102 0 0 104 99 0 1 105 104 0 1 105 96 0 1 106 94 0 1 107 106 0 1 108 107 0 1 108 88 0 0 108 92 0 1 109 93 0 0 110 97 0 0 111 98 0 0 112 105 0 0 113 106 0 0 114 107 0 0 115 100 0 0 115 102 0 0 89 58 0 0 115 20 0 0 120 117 0 0 120 118 0 1 125 120 0 1 119 118 0 0 118 116 0 1 121 116 0 1 122 121 0 0 123 121 0 1 124 123 0 0 125 123 0 1 126 125 0 0 127 126 0 0 131 128 0 0 131 129 0 1 136 131 0 1 130 129 0 0 129 127 0 1 132 127 0 1 133 132 0 0 134 132 0 1 135 134 0 0 136 134 0 1 137 126 0 0 138 126 0 0 139 138 0 0 140 138 0 0 141 138 0 0 142 137 0 0 143 137 0 0 144 137 0 0 146 145 0 2 147 146 0 0 148 147 0 0 149 148 0 2 150 148 0 0 151 150 0 1 152 151 0 1 153 152 0 0 154 153 0 0 155 154 0 1 156 155 0 1 157 156 0 1 158 157 0 0 159 158 0 2 161 160 0 2 162 160 0 0 162 157 0 1 163 162 0 1 163 154 0 1 164 152 0 1 165 164 0 1 166 165 0 1 166 146 0 0 166 150 0 1 167 151 0 0 168 155 0 0 169 156 0 0 170 163 0 0 171 164 0 0 172 165 0 0 173 158 0 0 173 160 0 0 147 116 0 0 173 78 0 0 178 175 0 0 178 176 0 1 183 178 0 1 177 176 0 0 176 174 0 1 179 174 0 1 180 179 0 0 181 179 0 1 182 181 0 0 183 181 0 1 184 183 0 0 185 184 0 0 189 186 0 0 189 187 0 1 194 189 0 1 188 187 0 0 187 185 0 1 190 185 0 1 191 190 0 0 192 190 0 1 193 192 0 0 194 192 0 1 195 184 0 0 196 184 0 0 197 196 0 0 198 196 0 0 199 196 0 0 200 195 0 0 201 195 0 0 202 195 0 0 204 203 0 2 205 204 0 0 206 205 0 0 207 206 0 2 208 206 0 0 209 208 0 1 210 209 0 1 211 210 0 0 212 211 0 0 213 212 0 1 214 213 0 1 215 214 0 1 216 215 0 0 217 216 0 2 219 218 0 2 220 218 0 0 220 215 0 1 221 220 0 1 221 212 0 1 222 210 0 1 223 222 0 1 224 223 0 1 224 204 0 0 224 208 0 1 225 209 0 0 226 213 0 0 227 214 0 0 228 221 0 0 229 222 0 0 230 223 0 0 231 216 0 0 231 218 0 0 205 174 0 0 231 136 0 0 236 233 0 0 236 234 0 1 241 236 0 1 235 234 0 0 234 232 0 1 237 232 0 1 238 237 0 0 239 237 0 1 240 239 0 0 241 239 0 1 242 241 0 0 243 242 0 0 247 244 0 0 247 245 0 1 252 247 0 1 246 245 0 0 245 243 0 1 248 243 0 1 249 248 0 0 250 248 0 1 251 250 0 0 252 250 0 1 253 242 0 0 254 242 0 0 255 254 0 0 256 254 0 0 257 254 0 0 258 253 0 0 259 253 0 0 260 253 0 0 262 261 0 2 263 262 0 0 264 263 0 0 265 264 0 2 266 264 0 0 267 266 0 1 268 267 0 1 269 268 0 0 270 269 0 0 271 270 0 1 272 271 0 1 273 272 0 1 274 273 0 0 275 274 0 2 277 276 0 2 278 276 0 0 278 273 0 1 279 278 0 1 279 270 0 1 280 268 0 1 281 280 0 1 282 281 0 1 282 262 0 0 282 266 0 1 283 267 0 0 284 271 0 0 285 272 0 0 286 279 0 0 287 280 0 0 288 281 0 0 289 274 0 0 289 276 0 0 263 232 0 0 289 194 0 0 294 291 0 0 294 292 0 1 299 294 0 1 293 292 0 0 292 290 0 1 295 290 0 1 296 295 0 0 297 295 0 1 298 297 0 0 299 297 0 1 300 299 0 0 301 300 0 0 305 302 0 0 305 303 0 1 310 305 0 1 304 303 0 0 303 301 0 1 306 301 0 1 307 306 0 0 308 306 0 1 309 308 0 0 310 308 0 1 311 300 0 0 312 300 0 0 313 312 0 0 314 312 0 0 315 312 0 0 316 311 0 0 317 311 0 0 318 311 0 0 320 319 0 2 321 320 0 0 322 321 0 0 323 322 0 2 324 322 0 0 325 324 0 1 326 325 0 1 327 326 0 0 328 327 0 0 329 328 0 1 330 329 0 1 331 330 0 1 332 331 0 0 333 332 0 2 335 334 0 2 336 334 0 0 336 331 0 1 337 336 0 1 337 328 0 1 338 326 0 1 339 338 0 1 340 339 0 1 340 320 0 0 340 324 0 1 341 325 0 0 342 329 0 0 343 330 0 0 344 337 0 0 345 338 0 0 346 339 0 0 347 332 0 0 347 334 0 0 321 290 0 0 347 252 0 0 348 57 0 0 349 310 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 0} 0 1 4 2 {0 0 0} 0 2 9 4 {0 0 0} 0 3 3 2 {0 0 0} 0 4 2 0 {0 0 0} 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 10 {0 0 0} 0 23 22 10 {0 0 0} 0 24 23 22 {0 0 0} 0 25 24 22 {0 0 0} 0 26 25 22 {0 0 0} 0 27 26 21 {0 0 0} 0 28 27 21 {0 0 0} 0 29 28 21 {0 0 0} 0 30 30 29 {0 0 0} 0 31 31 30 {0 1 0} 0 32 32 31 {0 -1 0} 0 33 33 32 {0 0 0} 0 34 34 32 {0 0 0} 0 35 35 34 {-1 0 0} 0 36 36 35 {0 0 0} 0 37 37 36 {0 0 0} 0 38 38 37 {0 0 0} 0 39 39 38 {0 0 0} 0 40 40 39 {0 0 0} 0 41 41 40 {0 0 0} 0 42 42 41 {0 0 1} 0 43 43 42 {0 0 0} 0 44 45 44 {0 0 0} 0 45 46 44 {0 0 0} 0 46 46 41 {0 0 0} 0 47 47 46 {0 0 0} 0 48 47 38 {0 0 0} 0 49 48 36 {0 0 0} 0 50 49 48 {1 0 0} 0 51 50 49 {0 0 0} 0 52 50 30 {0 0 0} 0 53 50 34 {0 0 0} 0 54 51 35 {0 0 0} 0 55 52 39 {0 0 0} 0 56 53 40 {0 0 0} 0 57 54 47 {0 0 0} 0 58 55 48 {0 0 0} 0 59 56 49 {0 0 0} 0 60 57 42 {0 0 0} 0 61 57 44 {0 0 1} 0 62 31 0 {0 0 0} 0 63 62 59 {0 0 0} 0 64 62 60 {0 0 0} 0 65 67 62 {0 0 0} 0 66 61 60 {0 0 0} 0 67 60 58 {0 0 0} 0 68 63 58 {0 0 0} 0 69 64 63 {0 0 0} 0 70 65 63 {0 0 0} 0 71 66 65 {0 0 0} 0 72 67 65 {0 0 0} 0 73 68 67 {0 0 0} 0 74 69 68 {0 0 0} 0 75 73 70 {0 0 0} 0 76 73 71 {0 0 0} 0 77 78 73 {0 0 0} 0 78 72 71 {0 0 0} 0 79 71 69 {0 0 0} 0 80 74 69 {0 0 0} 0 81 75 74 {0 0 0} 0 82 76 74 {0 0 0} 0 83 77 76 {0 1 0} 0 84 78 76 {0 0 0} 0 85 79 68 {0 0 0} 0 86 80 68 {0 0 0} 0 87 81 80 {0 0 0} 0 88 82 80 {0 0 0} 0 89 83 80 {0 0 0} 0 90 84 79 {0 0 0} 0 91 85 79 {0 0 0} 0 92 86 79 {0 0 0} 0 93 88 87 {0 0 0} 0 94 89 88 {0 0 0} 0 95 90 89 {0 0 0} 0 96 91 90 {0 0 0} 0 97 92 90 {0 0 0} 0 98 93 92 {0 0 0} 0 99 94 93 {0 0 0} 0 100 95 94 {0 0 0} 0 101 96 95 {0 0 0} 0 102 97 96 {0 0 0} 0 103 98 97 {0 0 1} 0 104 99 98 {0 0 0} 0 105 100 99 {0 0 0} 0 106 101 100 {0 0 0} 0 107 103 102 {0 0 0} 0 108 104 102 {0 0 0} 0 109 104 99 {0 0 0} 0 110 105 104 {0 0 0} 0 111 105 96 {0 0 1} 0 112 106 94 {0 0 0} 0 113 107 106 {0 0 0} 0 114 108 107 {0 0 0} 0 115 108 88 {0 0 0} 0 116 108 92 {0 0 0} 0 117 109 93 {0 0 0} 0 118 110 97 {0 0 0} 0 119 111 98 {0 0 0} 0 120 112 105 {0 0 0} 0 121 113 106 {0 0 0} 0 122 114 107 {0 0 0} 0 123 115 100 {0 0 0} 0 124 115 102 {0 0 0} 0 125 89 58 {0 0 0} 0 126 115 20 {0 0 0} 0 127 120 117 {0 0 0} 0 128 120 118 {1 0 0} 0 129 125 120 {0 0 0} 0 130 119 118 {0 0 0} 0 131 118 116 {0 0 0} 0 132 121 116 {0 0 0} 0 133 122 121 {0 0 0} 0 134 123 121 {0 0 0} 0 135 124 123 {0 0 0} 0 136 125 123 {1 0 0} 0 137 126 125 {0 0 0} 0 138 127 126 {0 0 0} 0 139 131 128 {0 0 0} 0 140 131 129 {-1 0 0} 0 141 136 131 {1 0 0} 0 142 130 129 {-1 0 0} 0 143 129 127 {0 0 0} 0 144 132 127 {0 0 0} 0 145 133 132 {0 0 0} 0 146 134 132 {0 0 0} 0 147 135 134 {0 0 0} 0 148 136 134 {0 0 0} 0 149 137 126 {0 0 0} 0 150 138 126 {0 0 0} 0 151 139 138 {0 0 0} 0 152 140 138 {0 0 0} 0 153 141 138 {0 0 0} 0 154 142 137 {0 0 0} 0 155 143 137 {0 0 0} 0 156 144 137 {0 0 0} 0 157 146 145 {0 0 0} 0 158 147 146 {0 0 0} 0 159 148 147 {0 0 0} 0 160 149 148 {0 0 0} 0 161 150 148 {0 0 0} 0 162 151 150 {0 0 0} 0 163 152 151 {0 0 0} 0 164 153 152 {0 0 0} 0 165 154 153 {0 0 1} 0 166 155 154 {0 -1 0} 0 167 156 155 {0 0 0} 0 168 157 156 {0 0 0} 0 169 158 157 {0 0 0} 0 170 159 158 {0 0 0} 0 171 161 160 {0 0 0} 0 172 162 160 {0 0 0} 0 173 162 157 {0 1 0} 0 174 163 162 {0 0 0} 0 175 163 154 {0 0 0} 0 176 164 152 {0 0 0} 0 177 165 164 {0 0 0} 0 178 166 165 {0 0 0} 0 179 166 146 {0 0 0} 0 180 166 150 {0 0 0} 0 181 167 151 {0 0 0} 0 182 168 155 {0 0 -1} 0 183 169 156 {0 0 0} 0 184 170 163 {0 0 0} 0 185 171 164 {0 0 1} 0 186 172 165 {0 0 1} 0 187 173 158 {0 0 0} 0 188 173 160 {0 -1 0} 0 189 147 116 {0 0 0} 0 190 173 78 {0 0 0} 0 191 178 175 {0 0 0} 0 192 178 176 {0 0 0} 0 193 183 178 {0 0 0} 0 194 177 176 {0 0 0} 0 195 176 174 {0 0 0} 0 196 179 174 {0 0 0} 0 197 180 179 {0 0 0} 0 198 181 179 {0 0 0} 0 199 182 181 {0 0 0} 0 200 183 181 {0 0 0} 0 201 184 183 {0 0 0} 0 202 185 184 {0 0 0} 0 203 189 186 {0 0 0} 0 204 189 187 {0 0 0} 0 205 194 189 {0 0 0} 0 206 188 187 {0 0 0} 0 207 187 185 {-1 0 0} 0 208 190 185 {0 0 0} 0 209 191 190 {0 0 0} 0 210 192 190 {0 0 0} 0 211 193 192 {0 0 0} 0 212 194 192 {-1 0 0} 0 213 195 184 {0 0 0} 0 214 196 184 {0 0 0} 0 215 197 196 {0 0 0} 0 216 198 196 {0 0 0} 0 217 199 196 {0 0 0} 0 218 200 195 {0 0 0} 0 219 201 195 {0 0 0} 0 220 202 195 {0 0 0} 0 221 204 203 {0 0 0} 0 222 205 204 {1 0 0} 0 223 206 205 {-1 0 0} 0 224 207 206 {1 0 0} 0 225 208 206 {0 0 0} 0 226 209 208 {0 0 0} 0 227 210 209 {0 0 0} 0 228 211 210 {0 0 0} 0 229 212 211 {0 0 1} 0 230 213 212 {0 0 0} 0 231 214 213 {0 0 0} 0 232 215 214 {0 0 0} 0 233 216 215 {0 0 0} 0 234 217 216 {0 0 0} 0 235 219 218 {0 0 0} 0 236 220 218 {-1 0 0} 0 237 220 215 {0 0 0} 0 238 221 220 {0 0 0} 0 239 221 212 {0 0 0} 0 240 222 210 {0 0 0} 0 241 223 222 {0 0 0} 0 242 224 223 {0 0 0} 0 243 224 204 {0 0 0} 0 244 224 208 {0 0 0} 0 245 225 209 {0 0 0} 0 246 226 213 {0 0 0} 0 247 227 214 {0 0 0} 0 248 228 221 {1 0 0} 0 249 229 222 {0 0 0} 0 250 230 223 {0 0 0} 0 251 231 216 {0 0 0} 0 252 231 218 {-1 0 0} 0 253 205 174 {0 0 0} 0 254 231 136 {-1 0 0} 0 255 236 233 {0 0 0} 0 256 236 234 {0 0 0} 0 257 241 236 {0 1 0} 0 258 235 234 {0 0 0} 0 259 234 232 {0 -1 0} 0 260 237 232 {0 0 0} 0 261 238 237 {0 0 0} 0 262 239 237 {0 0 0} 0 263 240 239 {0 0 0} 0 264 241 239 {0 0 0} 0 265 242 241 {0 0 0} 0 266 243 242 {0 0 0} 0 267 247 244 {0 0 0} 0 268 247 245 {0 0 0} 0 269 252 247 {0 0 0} 0 270 246 245 {0 0 0} 0 271 245 243 {0 0 0} 0 272 248 243 {0 0 0} 0 273 249 248 {0 0 0} 0 274 250 248 {0 0 0} 0 275 251 250 {0 0 0} 0 276 252 250 {0 0 0} 0 277 253 242 {0 -1 0} 0 278 254 242 {0 0 0} 0 279 255 254 {0 0 0} 0 280 256 254 {1 0 0} 0 281 257 254 {0 0 0} 0 282 258 253 {0 0 0} 0 283 259 253 {0 0 0} 0 284 260 253 {0 0 0} 0 285 262 261 {0 0 0} 0 286 263 262 {0 1 0} 0 287 264 263 {0 0 0} 0 288 265 264 {0 0 0} 0 289 266 264 {0 0 0} 0 290 267 266 {0 0 0} 0 291 268 267 {0 -1 0} 0 292 269 268 {0 1 0} 0 293 270 269 {0 -1 0} 0 294 271 270 {0 0 1} 0 295 272 271 {0 0 0} 0 296 273 272 {0 0 0} 0 297 274 273 {0 0 0} 0 298 275 274 {0 0 0} 0 299 277 276 {0 0 -1} 0 300 278 276 {0 0 0} 0 301 278 273 {0 0 0} 0 302 279 278 {0 0 -1} 0 303 279 270 {0 0 0} 0 304 280 268 {0 0 0} 0 305 281 280 {0 0 0} 0 306 282 281 {0 0 0} 0 307 282 262 {0 0 0} 0 308 282 266 {0 -1 0} 0 309 283 267 {0 0 0} 0 310 284 271 {0 0 0} 0 311 285 272 {0 0 0} 0 312 286 279 {0 0 0} 0 313 287 280 {0 0 0} 0 314 288 281 {0 0 0} 0 315 289 274 {0 0 0} 0 316 289 276 {0 0 0} 0 317 263 232 {0 0 0} 0 318 289 194 {0 0 0} 0 319 294 291 {0 0 0} 0 320 294 292 {0 0 0} 0 321 299 294 {0 0 0} 0 322 293 292 {0 0 0} 0 323 292 290 {0 0 0} 0 324 295 290 {0 0 0} 0 325 296 295 {0 0 0} 0 326 297 295 {0 0 0} 0 327 298 297 {0 0 0} 0 328 299 297 {0 0 0} 0 329 300 299 {0 0 0} 0 330 301 300 {0 0 0} 0 331 305 302 {0 0 0} 0 332 305 303 {0 0 0} 0 333 310 305 {0 0 0} 0 334 304 303 {0 0 0} 0 335 303 301 {0 0 0} 0 336 306 301 {0 0 0} 0 337 307 306 {0 0 0} 0 338 308 306 {0 0 0} 0 339 309 308 {0 0 0} 0 340 310 308 {0 0 0} 0 341 311 300 {0 0 0} 0 342 312 300 {0 0 0} 0 343 313 312 {0 0 -1} 0 344 314 312 {0 0 0} 0 345 315 312 {0 0 0} 0 346 316 311 {0 0 0} 0 347 317 311 {0 0 0} 0 348 318 311 {0 0 0} 0 349 320 319 {0 0 0} 0 350 321 320 {0 0 0} 0 351 322 321 {0 0 0} 0 352 323 322 {0 0 0} 0 353 324 322 {0 0 0} 0 354 325 324 {0 0 0} 0 355 326 325 {0 0 0} 0 356 327 326 {0 0 0} 0 357 328 327 {0 0 0} 0 358 329 328 {0 0 0} 0 359 330 329 {0 0 1} 0 360 331 330 {0 0 0} 0 361 332 331 {0 0 0} 0 362 333 332 {0 0 0} 0 363 335 334 {0 0 0} 0 364 336 334 {0 0 0} 0 365 336 331 {0 0 -1} 0 366 337 336 {0 0 0} 0 367 337 328 {0 0 0} 0 368 338 326 {0 0 0} 0 369 339 338 {0 0 0} 0 370 340 339 {0 0 0} 0 371 340 320 {0 0 0} 0 372 340 324 {0 0 0} 0 373 341 325 {0 0 0} 0 374 342 329 {0 0 0} 0 375 343 330 {0 0 0} 0 376 344 337 {0 0 0} 0 377 345 338 {0 0 0} 0 378 346 339 {0 0 0} 0 379 347 332 {0 0 0} 0 380 347 334 {0 0 1} 0 381 321 290 {0 0 0} 0 382 347 252 {0 0 0} 0 383 348 57 {0 0 0} 0 384 349 310 {0 1 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 ? {} {} {} {}}} } } }