mySQL Benson Tables
A Benson rule basically consists of two elements
A structure consisting of a center atom and the atoms to which it is connected.
The thermodynamic information represented as Standard enthapy, standard entropy and several Cp temperature dependent Cp values.
JThermodyanics represents this information in three separate tables:
GroupElement: Center atom connectivity
GroupStandardEnthalpy: Standard Enthalpy Value
Standard Entropy Value
The Cp values
These tables are connected with a given Benson rule through the 'ElementName' field. The complete Benson rule consists of all entries in these three tables with the given 'ElementName'
GroupElement: Center Atom Connectivity mySQL Table
The center atom connectivity of a single Benson rule is represented by several entries within the GroupElement table. All these entries has the same 'ElementName' of the given Benson rule. Each entry in the GroupElement table describes one connection to the center atom. The entry consists the following elements:
CenterAtom: The atom or meta atom structure representing the center atom
ConnectingAtom: One of the connecting atom or meta-atoms to the center atom.
Count: The number of connections of this type.
ElementName: The Benson rule name
ConnectElementName: The name of this particular connection
For example, the set of connecting atoms for a primary carbon as the center atom is represented with two elements:
+------------+----------------+-------+-------------+--------------------+
| CenterAtom | ConnectingAtom | Count | ElementName | ConnectElementName |
+------------+----------------+-------+-------------+--------------------+
| c | c | 1 | c-(h)/3-(c) | c-(h)/3-(c)-1 |
| c | h | 3 | c-(h)/3-(c) | c-(h)/3-(c)-0 |
+------------+----------------+-------+-------------+--------------------+
The ElementName is c-(h)/3-(c) and the first is the connection to the (single) carbon in the rest of the chain. There is one of these, hence Count is 1. The second connection is the carbon-hydrogen connections. There are three of these (for the three primary hydrogens of the methyl), hence Count is 3.
GroupStandardEnthalpy: The standard enthalpy value
The standard enthalpy of a particular Benson rule is represented by the following elements in the GroupStandardEnthalpy mySQL table:
ElementName: The name of the Benson rule
StandardEnthalpy: The standard enthalpy value.
Reference: This is a string reference to the value. This could be used to manage updates or deleting
Time: The time the entry was created.
For example, the GroupStandardEnthalpy table for the primary carbon with the ElementName of c-(h)/3-(c) is:
+-------------+------------------+-----------+---------------------+
| ElementName | StandardEnthalpy | Reference | Time |
+-------------+------------------+-----------+---------------------+
| c-(h)/3-(c) | -10.098 | Standard | 2011-03-18 15:04:46 |
+-------------+------------------+-----------+---------------------+
The StandardEnthalpy value is given -10.098 Kilocalories/mole (following the convention of Thermochemical Kinetics: Methods for the Estimation of Thermochemical Data and Rate Parameters.
GroupStandardEntropy: The standard entropy value
The standard enthalpy of a particular Benson rule is represented by the following elements in the GroupStandardEntropy mySQL table:
ElementName: The name of the Benson rule
StandardEntropy: The standard enthalpy value.
Reference: This is a string reference to the value. This could be used to manage updates or deleting
Time: The time the entry was created.
For example, the GroupStandardEntropy table for the primary carbon with the ElementName of c-(h)/3-(c) is:
+-------------+------------------+-----------+---------------------+
| ElementName | StandardEntropy | Reference | Time |
+-------------+------------------+-----------+---------------------+
| c-(h)/3-(c) | 30.423 | Standard | 2011-03-18 15:04:46 |
+-------------+------------------+-----------+---------------------+
The StandardEnthalpy value is given 30.423 calories/(K mole) (following the convention of Thermochemical Kinetics: Methods for the Estimation of Thermochemical Data and Rate Parameters.
Finding a given connectivity
Finding a particular Benson rule entails collecting the set of elements that have each individual connection and the same ElementName. For the example of c-(h)/3-(c) there are two connections to the center atom c:
three hydrogens (h)
one carbon (c)
The mySQL query accomplishes this using a JOIN of the two connections and AND to set up the set of conditions for CenterAtom and ConnectingAtom:
SELECT DISTINCT p1.ElementName From GroupElement as p1
INNER JOIN GroupElement as p2
INNER JOIN GroupElement as p3
WHERE p1.ElementName = p2.ElementName AND
p2.ElementName = p3.ElementName AND
p1.CenterAtom = "c" AND
p1.ConnectingAtom = "h" AND
p1.Count = 3 AND
p2.ConnectingAtom = "c" AND
p2.Count = 1;
Within the JThermodynamic system, this query is built up. The result of this query is the ElementName that satisfies these conditions:
+-------------+
| ElementName |
+-------------+
| c-(h)/3-(c) |
+-------------+
We can check by seeing which elements have the corresponding ElementName:
select * from GroupElement where ElementName='c-(h)/3-(c)';
+------------+----------------+-------+-------------+--------------------+
| CenterAtom | ConnectingAtom | Count | ElementName | ConnectElementName |
+------------+----------------+-------+-------------+--------------------+
| c | c | 1 | c-(h)/3-(c) | c-(h)/3-(c)-1 |
| c | h | 3 | c-(h)/3-(c) | c-(h)/3-(c)-0 |
+------------+----------------+-------+-------------+--------------------+
The thermodynamic information is collected by queries to the GroupStandardEntropy, GroupStandardEnthalpy and the HeatCapacityElement.
Enthalpy:
select * from GroupStandardEnthalpy where ElementName='c-(h)/3-(c)';
+-------------+------------------+-----------+---------------------+
| ElementName | StandardEnthalpy | Reference | Time |
+-------------+------------------+-----------+---------------------+
| c-(h)/3-(c) | -10.098 | Standard | 2011-03-18 15:04:46 |
+-------------+------------------+-----------+---------------------+
Entropy:
select * from GroupStandardEntropy where ElementName='c-(h)/3-(c)';
+-------------+-----------+---------------------+-----------------+
| ElementName | Reference | Time | StandardEntropy |
+-------------+-----------+---------------------+-----------------+
| c-(h)/3-(c) | Standard | 2011-03-18 15:04:46 | 30.423 |
+-------------+-----------+---------------------+-----------------+
Heat Capacity:
select * from HeatCapacityElement where ElementName='c-(h)/3-(c)';
+-------------+--------------+-----------+---------------------+-------------+
| Temperature | HeatCapacity | Reference | Time | ElementName |
+-------------+--------------+-----------+---------------------+-------------+
| 1500 | 17.58 | Standard | 2011-03-18 15:04:46 | c-(h)/3-(c) |
| 1000 | 14.77 | Standard | 2011-03-18 15:04:46 | c-(h)/3-(c) |
| 800 | 13.02 | Standard | 2011-03-18 15:04:46 | c-(h)/3-(c) |
| 600 | 10.79 | Standard | 2011-03-18 15:04:46 | c-(h)/3-(c) |
| 500 | 9.4 | Standard | 2011-03-18 15:04:46 | c-(h)/3-(c) |
| 400 | 7.84 | Standard | 2011-03-18 15:04:46 | c-(h)/3-(c) |
| 300 | 6.15 | Standard | 2011-03-18 15:04:46 | c-(h)/3-(c) |
+-------------+--------------+-----------+---------------------+-------------+
The heat capacity has several elements, one for each of the temperatures.
GroupElement: Connectivity Table
The complete GroupElement connectivity table looks like this (read in from the standard thermodynamic values read as described here):
select * from GroupElement;
+------------+----------------+-------+-------------------------+---------------------------+| CenterAtom | ConnectingAtom | Count | ElementName | ConnectElementName |+------------+----------------+-------+-------------------------+---------------------------+| c | c | 1 | c-(h)/3-(c) | c-(h)/3-(c)-1 || c | h | 3 | c-(h)/3-(c) | c-(h)/3-(c)-0 || c | h | 3 | c-(c/b)(h)/3 | c-(c/b)(h)/3-1 || c | h | 3 | c-(c/d)(h)/3 | c-(c/d)(h)/3-1 || c | c/b | 1 | c-(c/b)(h)/3 | c-(c/b)(h)/3-0 || c | c/d | 1 | c-(c/d)(h)/3 | c-(c/d)(h)/3-0 || c | c/t | 1 | c-(c/t)(h)/3 | c-(c/t)(h)/3-0 || c | c | 2 | c-(h)/2-(c)/2 | c-(h)/2-(c)/2-1 || c | h | 2 | c-(h)/2-(c)/2 | c-(h)/2-(c)/2-0 || c | c | 3 | c-(h)-(c)/3 | c-(h)-(c)/3-1 || c | h | 1 | c-(h)-(c)/3 | c-(h)-(c)/3-0 || c | c | 4 | c-(c)/4 | c-(c)/4-0 || c/d | h | 2 | c/d-(h)/2 | c/d-(h)/2-0 || c/d | c | 1 | c/d-(h)-(c) | c/d-(h)-(c)-1 || c/d | h | 1 | c/d-(h)-(c) | c/d-(h)-(c)-0 || c/d | c | 2 | c/d-(c)/2 | c/d-(c)/2-0 || c/d | c/d | 1 | c/d-(c/d)-(h) | c/d-(c/d)-(h)-0 || c/d | h | 1 | c/d-(c/d)-(h) | c/d-(c/d)-(h)-1 || c/d | c/d | 1 | c/d-(c/d)-(c) | c/d-(c/d)-(c)-0 || c/d | c | 1 | c/d-(c/d)-(c) | c/d-(c/d)-(c)-1 || c/d | c/b | 1 | c/d-(c/b)-(h) | c/d-(c/b)-(h)-0 || c/d | h | 1 | c/d-(c/b)-(h) | c/d-(c/b)-(h)-1 || c/d | c/b | 1 | c/d-(c/b)-(c) | c/d-(c/b)-(c)-0 || c/d | c | 1 | c/d-(c/b)-(c) | c/d-(c/b)-(c)-1 || c/d | c/t | 1 | c/d-(c/t)-(h) | c/d-(c/t)-(h)-0 || c/d | h | 1 | c/d-(c/t)-(h) | c/d-(c/t)-(h)-1 || c/d | c/b | 2 | c/d-(c/b)/2 | c/d-(c/b)/2-0 || c/d | c/d | 2 | c/d-(c/d)/2 | c/d-(c/d)/2-0 || c | h | 2 | c-(c/d)-(c)-(h)/2 | c-(c/d)-(c)-(h)/2-2 || c | c | 1 | c-(c/d)-(c)-(h)/2 | c-(c/d)-(c)-(h)/2-1 || c | c/d | 1 | c-(c/d)-(c)-(h)/2 | c-(c/d)-(c)-(h)/2-0 || c | h | 2 | c-(c/d)/2-(h)/2 | c-(c/d)/2-(h)/2-1 || c | c/d | 2 | c-(c/d)/2-(h)/2 | c-(c/d)/2-(h)/2-0 || c | h | 2 | c-(c/d)-(c/b)-(h)/2 | c-(c/d)-(c/b)-(h)/2-2 || c | c/b | 1 | c-(c/d)-(c/b)-(h)/2 | c-(c/d)-(c/b)-(h)/2-1 || c | c/d | 1 | c-(c/d)-(c/b)-(h)/2 | c-(c/d)-(c/b)-(h)/2-0 || c | h | 2 | c-(c/t)-(c)-(h)/2 | c-(c/t)-(c)-(h)/2-2 || c | c | 1 | c-(c/t)-(c)-(h)/2 | c-(c/t)-(c)-(h)/2-1 || c | c/t | 1 | c-(c/t)-(c)-(h)/2 | c-(c/t)-(c)-(h)/2-0 || c | h | 2 | c-(c/b)-(c)-(h)/2 | c-(c/b)-(c)-(h)/2-2 || c | c | 1 | c-(c/b)-(c)-(h)/2 | c-(c/b)-(c)-(h)/2-1 || c | c/b | 1 | c-(c/b)-(c)-(h)/2 | c-(c/b)-(c)-(h)/2-0 || c | h | 1 | c-(c/d)-(c)/2-(h) | c-(c/d)-(c)/2-(h)-2 || c | c | 2 | c-(c/d)-(c)/2-(h) | c-(c/d)-(c)/2-(h)-1 || c | c/d | 1 | c-(c/d)-(c)/2-(h) | c-(c/d)-(c)/2-(h)-0 || c | h | 1 | c-(c/t)-(c)/2-(h) | c-(c/t)-(c)/2-(h)-2 || c | c | 2 | c-(c/t)-(c)/2-(h) | c-(c/t)-(c)/2-(h)-1 || c | c/t | 1 | c-(c/t)-(c)/2-(h) | c-(c/t)-(c)/2-(h)-0 || c | h | 1 | c-(c/b)-(c)/2-(h) | c-(c/b)-(c)/2-(h)-2 || c | c | 2 | c-(c/b)-(c)/2-(h) | c-(c/b)-(c)/2-(h)-1 || c | c/b | 1 | c-(c/b)-(c)/2-(h) | c-(c/b)-(c)/2-(h)-0 || c | c | 3 | c-(c/d)-(c)/3 | c-(c/d)-(c)/3-1 || c | c/d | 1 | c-(c/d)-(c)/3 | c-(c/d)-(c)/3-0 || c | c | 3 | c-(c/b)-(c)/3 | c-(c/b)-(c)/3-1 || c | c/b | 1 | c-(c/b)-(c)/3 | c-(c/b)-(c)/3-0 || c/t | h | 1 | c/t-(h) | c/t-(h)-0 || c/t | c | 1 | c/t-(c) | c/t-(c)-0 || c/t | c/d | 1 | c/t-(c/d) | c/t-(c/d)-0 || c/t | c/b | 1 | c/t-(c/b) | c/t-(c/b)-0 || c/b | h | 1 | c/b-(h)-(c/b)/2 | c/b-(h)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(h)-(c/b)/2 | c/b-(h)-(c/b)/2-1 || c/b | c | 1 | c/b-(c)-(c/b)/2 | c/b-(c)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(c)-(c/b)/2 | c/b-(c)-(c/b)/2-1 || c/b | c/b | 2 | c/b-(c/d)-(c/b)/2 | c/b-(c/d)-(c/b)/2-1 || c/b | c/d | 1 | c/b-(c/d)-(c/b)/2 | c/b-(c/d)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(c/t)-(c/b)/2 | c/b-(c/t)-(c/b)/2-1 || c/b | c/t | 1 | c/b-(c/t)-(c/b)/2 | c/b-(c/t)-(c/b)/2-0 || c/b | c/b | 3 | c/b-(c/b)/3 | c/b-(c/b)/3-0 || c/t | c/t | 1 | c/t-(c/t) | c/t-(c/t)-0 || c | c | 3 | c-(c)/3(c/t) | c-(c)/3(c/t)-0 || c/bf | c/bf | 1 | c/bf-(c/bf) | c/bf-(c/bf)-0 || c/bf | c/bf | 2 | c/bf-(c/bf)/2 | c/bf-(c/bf)/2-0 || c/bf | c/bf | 3 | c/bf-(c/bf)/3 | c/bf-(c/bf)/3-0 || c | h | 1 | c-(c/b)-(c/d)-(c)-(h) | c-(c/b)-(c/d)-(c)-(h)-3 || c | c | 1 | c-(c/b)-(c/d)-(c)-(h) | c-(c/b)-(c/d)-(c)-(h)-2 || c | c/d | 1 | c-(c/b)-(c/d)-(c)-(h) | c-(c/b)-(c/d)-(c)-(h)-1 || c | c/b | 1 | c-(c/b)-(c/d)-(c)-(h) | c-(c/b)-(c/d)-(c)-(h)-0 || co | c | 1 | co-(co)-(c) | co-(co)-(c)-1 || co | co | 1 | co-(co)-(c) | co-(co)-(c)-0 || co | o | 1 | co-(o)-(c/d) | co-(o)-(c/d)-0 || co | o | 1 | co-(o)-(c/b) | co-(o)-(c/b)-0 || co | c | 1 | co-(o)-(c) | co-(o)-(c)-1 || co | o | 1 | co-(o)-(c) | co-(o)-(c)-0 || co | h | 1 | co-(o)-(h) | co-(o)-(h)-1 || co | o | 1 | co-(o)-(h) | co-(o)-(h)-0 || co | c/d | 1 | co-(c/d)-(h) | co-(c/d)-(h)-0 || co | c/b | 2 | co-(c/b)/2 | co-(c/b)/2-0 || co | c/b | 1 | co-(c/b)-(c) | co-(c/b)-(c)-0 || co | c/b | 1 | co-(c/b)-(h) | co-(c/b)-(h)-0 || co | c | 2 | co-(c)/2 | co-(c)/2-0 || co | h | 1 | co-(c)-(h) | co-(c)-(h)-1 || co | c | 1 | co-(c)-(h) | co-(c)-(h)-0 || co | co | 1 | co-(co)(h) | co-(co)(h)-0 || co | co | 1 | co-(co)(o) | co-(co)(o)-0 || o | co | 1 | o-(c/b)(co) | o-(c/b)(co)-1 || o | c/b | 1 | o-(c/b)(co) | o-(c/b)(co)-0 || o | co | 2 | o-(co)/2 | o-(co)/2-0 || o | o | 1 | o-(co)-(o) | o-(co)-(o)-1 || o | co | 1 | o-(co)-(o) | o-(co)-(o)-0 || o | co | 1 | o-(co)-(c/d) | o-(co)-(c/d)-0 || o | c | 1 | o-(co)-(c) | o-(co)-(c)-1 || o | co | 1 | o-(co)-(c) | o-(co)-(c)-0 || o | h | 1 | o-(co)-(h) | o-(co)-(h)-1 || o | co | 1 | o-(co)-(h) | o-(co)-(h)-0 || o | c | 1 | o-(o)-(c) | o-(o)-(c)-1 || o | o | 1 | o-(o)-(c) | o-(o)-(c)-0 || o | o | 2 | o-(o)/2 | o-(o)/2-0 || o | h | 1 | o-(o)-(h) | o-(o)-(h)-1 || o | o | 1 | o-(o)-(h) | o-(o)-(h)-0 || o | c/d | 2 | o-(c/d)/2 | o-(c/d)/2-0 || o | c | 1 | o-(c/d)-(c) | o-(c/d)-(c)-1 || o | c/d | 1 | o-(c/d)-(c) | o-(c/d)-(c)-0 || o | c/b | 2 | o-(c/b)/2 | o-(c/b)/2-0 || o | c | 1 | o-(c/b)-(c) | o-(c/b)-(c)-1 || o | c/b | 1 | o-(c/b)-(c) | o-(c/b)-(c)-0 || o | h | 1 | o-(c/b)-(h) | o-(c/b)-(h)-1 || o | c/b | 1 | o-(c/b)-(h) | o-(c/b)-(h)-0 || o | c | 2 | o-(c)/2 | o-(c)/2-0 || o | h | 1 | o-(c)-(h) | o-(c)-(h)-1 || o | c | 1 | o-(c)-(h) | o-(c)-(h)-0 || c/d | o | 1 | c/d-(co)-(o) | c/d-(co)-(o)-1 || c/d | co | 1 | c/d-(co)-(o) | c/d-(co)-(o)-0 || c/d | c | 1 | c/d-(co)-(c) | c/d-(co)-(c)-1 || c/d | co | 1 | c/d-(co)-(c) | c/d-(co)-(c)-0 || c/d | h | 1 | c/d-(co)-(h) | c/d-(co)-(h)-1 || c/d | co | 1 | c/d-(co)-(h) | c/d-(co)-(h)-0 || c/d | o | 1 | c/d-(o)-(c/d) | c/d-(o)-(c/d)-0 || c/d | c/d | 1 | c/d-(o)-(c/d) | c/d-(o)-(c/d)-1 || c/d | c | 1 | c/d-(o)-(c) | c/d-(o)-(c)-1 || c/d | o | 1 | c/d-(o)-(c) | c/d-(o)-(c)-0 || c/d | h | 1 | c/d-(o)-(h) | c/d-(o)-(h)-1 || c/d | o | 1 | c/d-(o)-(h) | c/d-(o)-(h)-0 || c/b | c/b | 2 | c/b-(co)-(c/b)/2 | c/b-(co)-(c/b)/2-1 || c/b | co | 1 | c/b-(co)-(c/b)/2 | c/b-(co)-(c/b)/2-0 || c/b | o | 1 | c/b-(o)-(c/b)/2 | c/b-(o)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(o)-(c/b)/2 | c/b-(o)-(c/b)/2-1 || c | h | 2 | c-(co)/2-(h)/2 | c-(co)/2-(h)/2-1 || c | co | 2 | c-(co)/2-(h)/2 | c-(co)/2-(h)/2-0 || c | h | 1 | c-(co)-(c)/2-(h) | c-(co)-(c)/2-(h)-2 || c | c | 2 | c-(co)-(c)/2-(h) | c-(co)-(c)/2-(h)-1 || c | co | 1 | c-(co)-(c)/2-(h) | c-(co)-(c)/2-(h)-0 || c | h | 2 | c-(co)-(c)-(h)/2 | c-(co)-(c)-(h)/2-2 || c | c | 1 | c-(co)-(c)-(h)/2 | c-(co)-(c)-(h)/2-1 || c | co | 1 | c-(co)-(c)-(h)/2 | c-(co)-(c)-(h)/2-0 || c | c | 3 | c-(co)-(c)/3 | c-(co)-(c)/3-1 || c | co | 1 | c-(co)-(c)/3 | c-(co)-(c)/3-0 || c | h | 3 | c-(co)-(h)/3 | c-(co)-(h)/3-1 || c | co | 1 | c-(co)-(h)/3 | c-(co)-(h)/3-0 || c | c | 2 | c-(o)/2-(c)/2 | c-(o)/2-(c)/2-1 || c | o | 2 | c-(o)/2-(c)/2 | c-(o)/2-(c)/2-0 || c | h | 1 | c-(o)/2-(c)-(h) | c-(o)/2-(c)-(h)-2 || c | c | 1 | c-(o)/2-(c)-(h) | c-(o)/2-(c)-(h)-1 || c | o | 2 | c-(o)/2-(c)-(h) | c-(o)/2-(c)-(h)-0 || c | h | 2 | c-(o)/2-(h)/2 | c-(o)/2-(h)/2-1 || c | o | 2 | c-(o)/2-(h)/2 | c-(o)/2-(h)/2-0 || c | h | 2 | c-(o)-(c/b)-(h)/2 | c-(o)-(c/b)-(h)/2-2 || c | c/b | 1 | c-(o)-(c/b)-(h)/2 | c-(o)-(c/b)-(h)/2-1 || c | o | 1 | c-(o)-(c/b)-(h)/2 | c-(o)-(c/b)-(h)/2-0 || c | h | 2 | c-(o)-(c/d)-(h)/2 | c-(o)-(c/d)-(h)/2-2 || c | c/d | 1 | c-(o)-(c/d)-(h)/2 | c-(o)-(c/d)-(h)/2-1 || c | o | 1 | c-(o)-(c/d)-(h)/2 | c-(o)-(c/d)-(h)/2-0 || c | c | 3 | c-(o)-(c)/3 | c-(o)-(c)/3-1 || c | o | 1 | c-(o)-(c)/3 | c-(o)-(c)/3-0 || c | h | 1 | c-(o)-(c)/2-(h) | c-(o)-(c)/2-(h)-2 || c | c | 2 | c-(o)-(c)/2-(h) | c-(o)-(c)/2-(h)-1 || c | o | 1 | c-(o)-(c)/2-(h) | c-(o)-(c)/2-(h)-0 || c | h | 2 | c-(o)-(c)-(h)/2 | c-(o)-(c)-(h)/2-2 || c | c | 1 | c-(o)-(c)-(h)/2 | c-(o)-(c)-(h)/2-1 || c | o | 1 | c-(o)-(c)-(h)/2 | c-(o)-(c)-(h)/2-0 || c | h | 3 | c-(o)-(h)/3 | c-(o)-(h)/3-1 || c | o | 1 | c-(o)-(h)/3 | c-(o)-(h)/3-0 || c | h | 2 | c-(o)(c/t)(h)/2 | c-(o)(c/t)(h)/2-2 || c | c/t | 1 | c-(o)(c/t)(h)/2 | c-(o)(c/t)(h)/2-1 || c | o | 1 | c-(o)(c/t)(h)/2 | c-(o)(c/t)(h)/2-0 || o | c/d | 1 | o-(c/d)(h) | o-(c/d)(h)-0 || o | c/t | 1 | o-(c/t)(h) | o-(c/t)(h)-0 || c | h | 2 | c-(co)(c/t)(h)/2 | c-(co)(c/t)(h)/2-2 || c | c/t | 1 | c-(co)(c/t)(h)/2 | c-(co)(c/t)(h)/2-1 || c | co | 1 | c-(co)(c/t)(h)/2 | c-(co)(c/t)(h)/2-0 || c | h | 2 | c-(co)-(c/b)-(h)/2 | c-(co)-(c/b)-(h)/2-2 || c | c/b | 1 | c-(co)-(c/b)-(h)/2 | c-(co)-(c/b)-(h)/2-1 || c | co | 1 | c-(co)-(c/b)-(h)/2 | c-(co)-(c/b)-(h)/2-0 || c | h | 1 | c-(co)/2(c)(h) | c-(co)/2(c)(h)-2 || c | c | 1 | c-(co)/2(c)(h) | c-(co)/2(c)(h)-1 || c | co | 2 | c-(co)/2(c)(h) | c-(co)/2(c)(h)-0 || co | h | 1 | co-(c/t)(h) | co-(c/t)(h)-1 || co | c/t | 1 | co-(c/t)(h) | co-(c/t)(h)-0 || co | co | 1 | co-(c/b)(co) | co-(c/b)(co)-1 || co | c/b | 1 | co-(c/b)(co) | co-(c/b)(co)-0 || co | o | 2 | co-(o)/2 | co-(o)/2-0 || co | c/d | 1 | co-(c/d)-(c) | co-(c/d)-(c)-0 || c | h | 2 | c-(co)-(c/d)-(h)/2 | c-(co)-(c/d)-(h)/2-2 || c | c/d | 1 | c-(co)-(c/d)-(h)/2 | c-(co)-(c/d)-(h)/2-1 || c | co | 1 | c-(co)-(c/d)-(h)/2 | c-(co)-(c/d)-(h)/2-0 || o | c/d | 1 | o-(o)-(c/d) | o-(o)-(c/d)-1 || o | o | 1 | o-(o)-(c/d) | o-(o)-(c/d)-0 || c | h | 1 | c-(c)-(o)-(c/d)-(h) | c-(c)-(o)-(c/d)-(h)-3 || c | c/d | 1 | c-(c)-(o)-(c/d)-(h) | c-(c)-(o)-(c/d)-(h)-2 || c | o | 1 | c-(c)-(o)-(c/d)-(h) | c-(c)-(o)-(c/d)-(h)-1 || c | c | 1 | c-(c)-(o)-(c/d)-(h) | c-(c)-(o)-(c/d)-(h)-0 || c | c/d | 1 | c-(c)/2-(o)-(c/d) | c-(c)/2-(o)-(c/d)-2 || c | o | 1 | c-(c)/2-(o)-(c/d) | c-(c)/2-(o)-(c/d)-1 || c | c | 2 | c-(c)/2-(o)-(c/d) | c-(c)/2-(o)-(c/d)-0 || c | h | 1 | c-(o)/2-(c/d)-(h) | c-(o)/2-(c/d)-(h)-2 || c | c/d | 1 | c-(o)/2-(c/d)-(h) | c-(o)/2-(c/d)-(h)-1 || c | o | 2 | c-(o)/2-(c/d)-(h) | c-(o)/2-(c/d)-(h)-0 || c | c | 1 | c-(o)/2-(c/d)-(c) | c-(o)/2-(c/d)-(c)-2 || c | c/d | 1 | c-(o)/2-(c/d)-(c) | c-(o)/2-(c/d)-(c)-1 || c | o | 2 | c-(o)/2-(c/d)-(c) | c-(o)/2-(c/d)-(c)-0 || c | h | 1 | c-(o)-(co)-(c)-(h) | c-(o)-(co)-(c)-(h)-3 || c | c | 1 | c-(o)-(co)-(c)-(h) | c-(o)-(co)-(c)-(h)-2 || c | co | 1 | c-(o)-(co)-(c)-(h) | c-(o)-(co)-(c)-(h)-1 || c | o | 1 | c-(o)-(co)-(c)-(h) | c-(o)-(co)-(c)-(h)-0 || c | h | 1 | c-(o)/3-(h) | c-(o)/3-(h)-1 || c | o | 3 | c-(o)/3-(h) | c-(o)/3-(h)-0 || c | c | 1 | c-(o)/3-(c) | c-(o)/3-(c)-1 || c | o | 3 | c-(o)/3-(c) | c-(o)/3-(c)-0 || c | c/d | 1 | c-(o)/3-(c/d) | c-(o)/3-(c/d)-1 || c | o | 3 | c-(o)/3-(c/d) | c-(o)/3-(c/d)-0 || c | co | 1 | c-(h)/2-(o)-(co) | c-(h)/2-(o)-(co)-2 || c | o | 1 | c-(h)/2-(o)-(co) | c-(h)/2-(o)-(co)-1 || c | h | 2 | c-(h)/2-(o)-(co) | c-(h)/2-(o)-(co)-0 || c | co | 1 | c-(c)-(o)/2-(co) | c-(c)-(o)/2-(co)-2 || c | o | 2 | c-(c)-(o)/2-(co) | c-(c)-(o)/2-(co)-1 || c | c | 1 | c-(c)-(o)/2-(co) | c-(c)-(o)/2-(co)-0 || c | co | 1 | c-(o)/2-(h)-(co) | c-(o)/2-(h)-(co)-2 || c | h | 1 | c-(o)/2-(h)-(co) | c-(o)/2-(h)-(co)-1 || c | o | 2 | c-(o)/2-(h)-(co) | c-(o)/2-(h)-(co)-0 || c | h | 1 | c-(h)-(c)-(c/d)2 | c-(h)-(c)-(c/d)2-0 || c | c | 1 | c-(h)-(c)-(c/d)2 | c-(h)-(c)-(c/d)2-1 || c | c/t | 1 | c-(h)-(c)-(c/d)-(c/t) | c-(h)-(c)-(c/d)-(c/t)-3 || c | c/d | 1 | c-(h)-(c)-(c/d)-(c/t) | c-(h)-(c)-(c/d)-(c/t)-2 || c | c | 1 | c-(h)-(c)-(c/d)-(c/t) | c-(h)-(c)-(c/d)-(c/t)-1 || c | h | 1 | c-(h)-(c)-(c/d)-(c/t) | c-(h)-(c)-(c/d)-(c/t)-0 || o | c/b | 1 | o-(o)-(c/b) | o-(o)-(c/b)-1 || o | o | 1 | o-(o)-(c/b) | o-(o)-(c/b)-0 || c | o | 1 | c-(h)-(c/d)2-(o) | c-(h)-(c/d)2-(o)-2 || c | c/d | 2 | c-(h)-(c/d)2-(o) | c-(h)-(c/d)2-(o)-1 || c | h | 1 | c-(h)-(c/d)2-(o) | c-(h)-(c/d)2-(o)-0 || c | c/b | 1 | c-(c/d)-(h)-(o)-(c/b) | c-(c/d)-(h)-(o)-(c/b)-3 || c | o | 1 | c-(c/d)-(h)-(o)-(c/b) | c-(c/d)-(h)-(o)-(c/b)-2 || c | h | 1 | c-(c/d)-(h)-(o)-(c/b) | c-(c/d)-(h)-(o)-(c/b)-1 || c | c/d | 1 | c-(c/d)-(h)-(o)-(c/b) | c-(c/d)-(h)-(o)-(c/b)-0 || c | h | 3 | c-(n)-(h)/3 | c-(n)-(h)/3-1 || c | n | 1 | c-(n)-(h)/3 | c-(n)-(h)/3-0 || c | h | 2 | c-(n)-(c)-(h)/2 | c-(n)-(c)-(h)/2-2 || c | c | 1 | c-(n)-(c)-(h)/2 | c-(n)-(c)-(h)/2-1 || c | n | 1 | c-(n)-(c)-(h)/2 | c-(n)-(c)-(h)/2-0 || c | h | 1 | c-(n)-(c)/2-(h) | c-(n)-(c)/2-(h)-2 || c | c | 2 | c-(n)-(c)/2-(h) | c-(n)-(c)/2-(h)-1 || c | n | 1 | c-(n)-(c)/2-(h) | c-(n)-(c)/2-(h)-0 || c | c | 3 | c-(n)-(c)/3 | c-(n)-(c)/3-1 || c | n | 1 | c-(n)-(c)/3 | c-(n)-(c)/3-0 || c | h | 1 | c-(n/i)(c)(h) | c-(n/i)(c)(h)-2 || c | c | 1 | c-(n/i)(c)(h) | c-(n/i)(c)(h)-1 || c | n/i | 1 | c-(n/i)(c)(h) | c-(n/i)(c)(h)-0 || n | h | 2 | n-(c)-(h)/2 | n-(c)-(h)/2-1 || n | c | 1 | n-(c)-(h)/2 | n-(c)-(h)/2-0 || n | h | 1 | n-(c)/2-(h) | n-(c)/2-(h)-1 || n | c | 2 | n-(c)/2-(h) | n-(c)/2-(h)-0 || n | c | 3 | n-(c)/3 | n-(c)/3-0 || n | h | 2 | n-(n)-(h)/2 | n-(n)-(h)/2-1 || n | n | 1 | n-(n)-(h)/2 | n-(n)-(h)/2-0 || n | h | 1 | n-(n)-(c)-(h) | n-(n)-(c)-(h)-2 || n | c | 1 | n-(n)-(c)-(h) | n-(n)-(c)-(h)-1 || n | n | 1 | n-(n)-(c)-(h) | n-(n)-(c)-(h)-0 || n | c | 2 | n-(n)-(c)/2 | n-(n)-(c)/2-1 || n | n | 1 | n-(n)-(c)/2 | n-(n)-(c)/2-0 || n | h | 1 | n-(n)-(c/b)-(h) | n-(n)-(c/b)-(h)-2 || n | c/b | 1 | n-(n)-(c/b)-(h) | n-(n)-(c/b)-(h)-1 || n | n | 1 | n-(n)-(c/b)-(h) | n-(n)-(c/b)-(h)-0 || n/i | h | 1 | n/i-(h) | n/i-(h)-0 || n/i | c | 1 | n/i-(c) | n/i-(c)-0 || n/i | c/b | 1 | n/i-(c/b) | n/i-(c/b)-0 || n/a | h | 1 | n/a-(h) | n/a-(h)-0 || n/a | c | 1 | n/a-(c) | n/a-(c)-0 || n | h | 2 | n-(c/b)-(h)/2 | n-(c/b)-(h)/2-1 || n | c/b | 1 | n-(c/b)-(h)/2 | n-(c/b)-(h)/2-0 || n | h | 1 | n-(c/b)-(c)-(h) | n-(c/b)-(c)-(h)-2 || n | c | 1 | n-(c/b)-(c)-(h) | n-(c/b)-(c)-(h)-1 || n | c/b | 1 | n-(c/b)-(c)-(h) | n-(c/b)-(c)-(h)-0 || n | c | 2 | n-(c/b)-(c)/2 | n-(c/b)-(c)/2-1 || n | c/b | 1 | n-(c/b)-(c)/2 | n-(c/b)-(c)/2-0 || n | h | 1 | n-(c/b)/2-(h) | n-(c/b)/2-(h)-1 || n | c/b | 2 | n-(c/b)/2-(h) | n-(c/b)/2-(h)-0 || c/b | n | 1 | c/b-(n)-(c/b)/2 | c/b-(n)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(n)-(c/b)/2 | c/b-(n)-(c/b)/2-1 || c/b | c/b | 2 | c/b-('no2')-(c/b)/2 | c/b-('no2')-(c/b)/2-1 || c/b | 'no2' | 1 | c/b-('no2')-(c/b)/2 | c/b-('no2')-(c/b)/2-0 || n/a | n | 1 | n/a-(n) | n/a-(n)-0 || co | h | 1 | co-(n)-(h) | co-(n)-(h)-1 || co | n | 1 | co-(n)-(h) | co-(n)-(h)-0 || co | c | 1 | co-(n)-(c) | co-(n)-(c)-1 || co | n | 1 | co-(n)-(c) | co-(n)-(c)-0 || n | h | 2 | n-(co)-(h)/2 | n-(co)-(h)/2-1 || n | co | 1 | n-(co)-(h)/2 | n-(co)-(h)/2-0 || n | h | 1 | n-(co)-(c)-(h) | n-(co)-(c)-(h)-2 || n | c | 1 | n-(co)-(c)-(h) | n-(co)-(c)-(h)-1 || n | co | 1 | n-(co)-(c)-(h) | n-(co)-(c)-(h)-0 || n | c | 2 | n-(co)-(c)/2 | n-(co)-(c)/2-1 || n | co | 1 | n-(co)-(c)/2 | n-(co)-(c)/2-0 || n | h | 1 | n-(co)-(c/b)-(h) | n-(co)-(c/b)-(h)-2 || n | c/b | 1 | n-(co)-(c/b)-(h) | n-(co)-(c/b)-(h)-1 || n | co | 1 | n-(co)-(c/b)-(h) | n-(co)-(c/b)-(h)-0 || n | h | 1 | n-(co)/2-(h) | n-(co)/2-(h)-1 || n | co | 2 | n-(co)/2-(h) | n-(co)/2-(h)-0 || n | c | 1 | n-(co)/2-(c) | n-(co)/2-(c)-1 || n | co | 2 | n-(co)/2-(c) | n-(co)/2-(c)-0 || c | h | 2 | c-(cn)-(c)-(h)/2 | c-(cn)-(c)-(h)/2-2 || c | c | 1 | c-(cn)-(c)-(h)/2 | c-(cn)-(c)-(h)/2-1 || c | cn | 1 | c-(cn)-(c)-(h)/2 | c-(cn)-(c)-(h)/2-0 || c | h | 1 | c-(cn)-(c)/2-(h) | c-(cn)-(c)/2-(h)-2 || c | c | 2 | c-(cn)-(c)/2-(h) | c-(cn)-(c)/2-(h)-1 || c | cn | 1 | c-(cn)-(c)/2-(h) | c-(cn)-(c)/2-(h)-0 || c | c | 3 | c-(cn)-(c)/3 | c-(cn)-(c)/3-1 || c | cn | 1 | c-(cn)-(c)/3 | c-(cn)-(c)/3-0 || c | c | 2 | c-(cn)/2-(c)/2 | c-(cn)/2-(c)/2-1 || c | cn | 2 | c-(cn)/2-(c)/2 | c-(cn)/2-(c)/2-0 || c/d | h | 1 | c/d-(cn)-(h) | c/d-(cn)-(h)-1 || c/d | cn | 1 | c/d-(cn)-(h) | c/d-(cn)-(h)-0 || c/d | cn | 2 | c/d-(cn)/2 | c/d-(cn)/2-0 || c/d | 'no2' | 1 | c/d-('no2')(h) | c/d-('no2')(h)-0 || c/d | h | 1 | c/d-('no2')(h) | c/d-('no2')(h)-1 || c/b | c/b | 2 | c/b-(cn)-(c/b)/2 | c/b-(cn)-(c/b)/2-1 || c/b | cn | 1 | c/b-(cn)-(c/b)/2 | c/b-(cn)-(c/b)/2-0 || c/t | cn | 1 | c/t-(cn) | c/t-(cn)-0 || c | h | 2 | c-('no2')(c)-(h)/2 | c-('no2')(c)-(h)/2-2 || c | 'no2' | 1 | c-('no2')(c)-(h)/2 | c-('no2')(c)-(h)/2-0 || c | c | 1 | c-('no2')(c)-(h)/2 | c-('no2')(c)-(h)/2-1 || c | h | 1 | c-('no2')(c)/2-(h) | c-('no2')(c)/2-(h)-2 || c | 'no2' | 1 | c-('no2')(c)/2-(h) | c-('no2')(c)/2-(h)-0 || c | c | 2 | c-('no2')(c)/2-(h) | c-('no2')(c)/2-(h)-1 || c | 'no2' | 1 | c-('no2')(c)/3 | c-('no2')(c)/3-0 || c | h | 1 | c-('no2')/2(c)-(h) | c-('no2')/2(c)-(h)-2 || c | 'no2' | 2 | c-('no2')/2(c)-(h) | c-('no2')/2(c)-(h)-0 || c | c | 1 | c-('no2')/2(c)-(h) | c-('no2')/2(c)-(h)-1 || o | c | 1 | o-(no)-(c) | o-(no)-(c)-1 || o | no | 1 | o-(no)-(c) | o-(no)-(c)-0 || o | 'no2' | 1 | o-('no2')(c) | o-('no2')(c)-0 || c/b | c/b | 2 | c/b-(no)-(c/b)/2 | c/b-(no)-(c/b)/2-1 || c/b | no | 1 | c/b-(no)-(c/b)/2 | c/b-(no)-(c/b)/2-0 || c | c | 2 | c-(c)/2-('no2')/2 | c-(c)/2-('no2')/2-0 || c | 'no2' | 2 | c-(c)/2-('no2')/2 | c-(c)/2-('no2')/2-1 || c | c | 1 | c-(c)('no2')/3 | c-(c)('no2')/3-0 || c | 'no2' | 3 | c-(c)('no2')/3 | c-(c)('no2')/3-1 || c/d | c | 1 | c/d-(c)('no2') | c/d-(c)('no2')-0 || c/d | 'no2' | 1 | c/d-(c)('no2') | c/d-(c)('no2')-1 || c | co | 1 | c-(n)-(c)/2-(co) | c-(n)-(c)/2-(co)-2 || c | c | 2 | c-(n)-(c)/2-(co) | c-(n)-(c)/2-(co)-1 || c | n | 1 | c-(n)-(c)/2-(co) | c-(n)-(c)/2-(co)-0 || n | c/b | 1 | n-(c/b)-(co) | n-(c/b)-(co)-0 || c | c | 1 | c-(f)/3-(c) | c-(f)/3-(c)-1 || c | f | 3 | c-(f)/3-(c) | c-(f)/3-(c)-0 || c | c | 1 | c-(f)/2-(h)-(c) | c-(f)/2-(h)-(c)-2 || c | h | 1 | c-(f)/2-(h)-(c) | c-(f)/2-(h)-(c)-1 || c | f | 2 | c-(f)/2-(h)-(c) | c-(f)/2-(h)-(c)-0 || c | c | 1 | c-(f)-(h)/2-(c) | c-(f)-(h)/2-(c)-2 || c | h | 2 | c-(f)-(h)/2-(c) | c-(f)-(h)/2-(c)-1 || c | f | 1 | c-(f)-(h)/2-(c) | c-(f)-(h)/2-(c)-0 || c | c | 2 | c-(f)/2-(c)/2 | c-(f)/2-(c)/2-1 || c | f | 2 | c-(f)/2-(c)/2 | c-(f)/2-(c)/2-0 || c | c | 2 | c-(f)-(h)-(c)/2 | c-(f)-(h)-(c)/2-2 || c | h | 1 | c-(f)-(h)-(c)/2 | c-(f)-(h)-(c)/2-1 || c | f | 1 | c-(f)-(h)-(c)/2 | c-(f)-(h)-(c)/2-0 || c | c | 3 | c-(f)-(c)/3 | c-(f)-(c)/3-1 || c | f | 1 | c-(f)-(c)/3 | c-(f)-(c)/3-0 || c | c | 1 | c-(f)/2-(cl)-(c) | c-(f)/2-(cl)-(c)-2 || c | cl | 1 | c-(f)/2-(cl)-(c) | c-(f)/2-(cl)-(c)-1 || c | f | 2 | c-(f)/2-(cl)-(c) | c-(f)/2-(cl)-(c)-0 || c | c | 1 | c-(cl)/3-(c) | c-(cl)/3-(c)-1 || c | cl | 3 | c-(cl)/3-(c) | c-(cl)/3-(c)-0 || c | c | 1 | c-(cl)/2-(h)-(c) | c-(cl)/2-(h)-(c)-2 || c | h | 1 | c-(cl)/2-(h)-(c) | c-(cl)/2-(h)-(c)-1 || c | cl | 2 | c-(cl)/2-(h)-(c) | c-(cl)/2-(h)-(c)-0 || c | c | 1 | c-(cl)-(h)/2-(c) | c-(cl)-(h)/2-(c)-2 || c | h | 2 | c-(cl)-(h)/2-(c) | c-(cl)-(h)/2-(c)-1 || c | cl | 1 | c-(cl)-(h)/2-(c) | c-(cl)-(h)/2-(c)-0 || c | c | 2 | c-(cl)/2-(c)/2 | c-(cl)/2-(c)/2-1 || c | cl | 2 | c-(cl)/2-(c)/2 | c-(cl)/2-(c)/2-0 || c | c | 2 | c-(cl)-(h)-(c)/2 | c-(cl)-(h)-(c)/2-2 || c | h | 1 | c-(cl)-(h)-(c)/2 | c-(cl)-(h)-(c)/2-1 || c | cl | 1 | c-(cl)-(h)-(c)/2 | c-(cl)-(h)-(c)/2-0 || c | c | 3 | c-(cl)-(c)/3 | c-(cl)-(c)/3-1 || c | cl | 1 | c-(cl)-(c)/3 | c-(cl)-(c)/3-0 || c | c | 1 | c-(br)/3-(c) | c-(br)/3-(c)-1 || c | br | 3 | c-(br)/3-(c) | c-(br)/3-(c)-0 || c | c | 1 | c-(br)-(h)/2-(c) | c-(br)-(h)/2-(c)-2 || c | h | 2 | c-(br)-(h)/2-(c) | c-(br)-(h)/2-(c)-1 || c | br | 1 | c-(br)-(h)/2-(c) | c-(br)-(h)/2-(c)-0 || c | c | 2 | c-(br)-(h)-(c)/2 | c-(br)-(h)-(c)/2-2 || c | h | 1 | c-(br)-(h)-(c)/2 | c-(br)-(h)-(c)/2-1 || c | br | 1 | c-(br)-(h)-(c)/2 | c-(br)-(h)-(c)/2-0 || c | c | 3 | c-(br)-(c)/3 | c-(br)-(c)/3-1 || c | br | 1 | c-(br)-(c)/3 | c-(br)-(c)/3-0 || c | c | 1 | c-(i)-(h)/2-(c) | c-(i)-(h)/2-(c)-2 || c | h | 2 | c-(i)-(h)/2-(c) | c-(i)-(h)/2-(c)-1 || c | i | 1 | c-(i)-(h)/2-(c) | c-(i)-(h)/2-(c)-0 || c | c | 2 | c-(i)-(h)-(c)/2 | c-(i)-(h)-(c)/2-2 || c | h | 1 | c-(i)-(h)-(c)/2 | c-(i)-(h)-(c)/2-1 || c | i | 1 | c-(i)-(h)-(c)/2 | c-(i)-(h)-(c)/2-0 || c | c | 3 | c-(i)-(c)/3 | c-(i)-(c)/3-1 || c | i | 1 | c-(i)-(c)/3 | c-(i)-(c)/3-0 || c | h | 1 | c-(i)/2(c)(h) | c-(i)/2(c)(h)-2 || c | c | 1 | c-(i)/2(c)(h) | c-(i)/2(c)(h)-1 || c | i | 2 | c-(i)/2(c)(h) | c-(i)/2(c)(h)-0 || c | c | 1 | c-(cl)-(br)-(h)-(c) | c-(cl)-(br)-(h)-(c)-3 || c | h | 1 | c-(cl)-(br)-(h)-(c) | c-(cl)-(br)-(h)-(c)-2 || c | br | 1 | c-(cl)-(br)-(h)-(c) | c-(cl)-(br)-(h)-(c)-1 || c | cl | 1 | c-(cl)-(br)-(h)-(c) | c-(cl)-(br)-(h)-(c)-0 || n | c | 1 | n-(f)/2-(c) | n-(f)/2-(c)-1 || n | f | 2 | n-(f)/2-(c) | n-(f)/2-(c)-0 || c | h | 1 | c-(cl)-(c)-(o)-(h) | c-(cl)-(c)-(o)-(h)-3 || c | o | 1 | c-(cl)-(c)-(o)-(h) | c-(cl)-(c)-(o)-(h)-2 || c | c | 1 | c-(cl)-(c)-(o)-(h) | c-(cl)-(c)-(o)-(h)-1 || c | cl | 1 | c-(cl)-(c)-(o)-(h) | c-(cl)-(c)-(o)-(h)-0 || c | h | 2 | c-(i)(o)(h)/2 | c-(i)(o)(h)/2-2 || c | o | 1 | c-(i)(o)(h)/2 | c-(i)(o)(h)/2-1 || c | i | 1 | c-(i)(o)(h)/2 | c-(i)(o)(h)/2-0 || c/d | cl | 1 | c/d-(c)(cl) | c/d-(c)(cl)-1 || c/d | c | 1 | c/d-(c)(cl) | c/d-(c)(cl)-0 || c/d | f | 2 | c/d-(f)/2 | c/d-(f)/2-0 || c/d | cl | 2 | c/d-(cl)/2 | c/d-(cl)/2-0 || c/d | br | 2 | c/d-(br)/2 | c/d-(br)/2-0 || c/d | cl | 1 | c/d-(f)-(cl) | c/d-(f)-(cl)-1 || c/d | f | 1 | c/d-(f)-(cl) | c/d-(f)-(cl)-0 || c/d | br | 1 | c/d-(f)-(br) | c/d-(f)-(br)-1 || c/d | f | 1 | c/d-(f)-(br) | c/d-(f)-(br)-0 || c/d | br | 1 | c/d-(cl)-(br) | c/d-(cl)-(br)-1 || c/d | cl | 1 | c/d-(cl)-(br) | c/d-(cl)-(br)-0 || c/d | h | 1 | c/d-(f)-(h) | c/d-(f)-(h)-1 || c/d | f | 1 | c/d-(f)-(h) | c/d-(f)-(h)-0 || c/d | h | 1 | c/d-(cl)-(h) | c/d-(cl)-(h)-1 || c/d | cl | 1 | c/d-(cl)-(h) | c/d-(cl)-(h)-0 || c/d | h | 1 | c/d-(br)-(h) | c/d-(br)-(h)-1 || c/d | br | 1 | c/d-(br)-(h) | c/d-(br)-(h)-0 || c/d | h | 1 | c/d-(i)-(h) | c/d-(i)-(h)-1 || c/d | i | 1 | c/d-(i)-(h) | c/d-(i)-(h)-0 || c/t | cl | 1 | c/t-(cl) | c/t-(cl)-0 || c/t | br | 1 | c/t-(br) | c/t-(br)-0 || c/t | i | 1 | c/t-(i) | c/t-(i)-0 || c/b | f | 1 | c/b-(f)-(c/b)/2 | c/b-(f)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(f)-(c/b)/2 | c/b-(f)-(c/b)/2-1 || c/b | c/b | 2 | c/b-(cl)-(c/b)/2 | c/b-(cl)-(c/b)/2-1 || c/b | cl | 1 | c/b-(cl)-(c/b)/2 | c/b-(cl)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(br)-(c/b)/2 | c/b-(br)-(c/b)/2-1 || c/b | br | 1 | c/b-(br)-(c/b)/2 | c/b-(br)-(c/b)/2-0 || c/b | i | 1 | c/b-(i)-(c/b)/2 | c/b-(i)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(i)-(c/b)/2 | c/b-(i)-(c/b)/2-1 || c | f | 3 | c-(c/b)-(f)/3 | c-(c/b)-(f)/3-1 || c | c/b | 1 | c-(c/b)-(f)/3 | c-(c/b)-(f)/3-0 || c | h | 2 | c-(c/b)-(br)-(h)/2 | c-(c/b)-(br)-(h)/2-2 || c | c/b | 1 | c-(c/b)-(br)-(h)/2 | c-(c/b)-(br)-(h)/2-0 || c | br | 1 | c-(c/b)-(br)-(h)/2 | c-(c/b)-(br)-(h)/2-1 || c | h | 2 | c-(c/b)-(i)-(h)/2 | c-(c/b)-(i)-(h)/2-2 || c | i | 1 | c-(c/b)-(i)-(h)/2 | c-(c/b)-(i)-(h)/2-1 || c | c/b | 1 | c-(c/b)-(i)-(h)/2 | c-(c/b)-(i)-(h)/2-0 || co | cl | 1 | co-(c/b)(cl) | co-(c/b)(cl)-1 || co | c/b | 1 | co-(c/b)(cl) | co-(c/b)(cl)-0 || co | br | 1 | co-(c/b)(br) | co-(c/b)(br)-1 || co | c/b | 1 | co-(c/b)(br) | co-(c/b)(br)-0 || co | i | 1 | co-(c/b)(i) | co-(c/b)(i)-1 || co | c/b | 1 | co-(c/b)(i) | co-(c/b)(i)-0 || c | cl | 3 | c-(cl)/3-(c/d) | c-(cl)/3-(c/d)-0 || c | c/d | 1 | c-(cl)/3-(c/d) | c-(cl)/3-(c/d)-1 || c | s | 1 | c-(h)/3-(s) | c-(h)/3-(s)-1 || c | h | 3 | c-(h)/3-(s) | c-(h)/3-(s)-0 || c | s | 1 | c-(c)-(h)/2-(s) | c-(c)-(h)/2-(s)-2 || c | h | 2 | c-(c)-(h)/2-(s) | c-(c)-(h)/2-(s)-1 || c | c | 1 | c-(c)-(h)/2-(s) | c-(c)-(h)/2-(s)-0 || c | s | 1 | c-(c)/2-(h)-(s) | c-(c)/2-(h)-(s)-2 || c | h | 1 | c-(c)/2-(h)-(s) | c-(c)/2-(h)-(s)-1 || c | c | 2 | c-(c)/2-(h)-(s) | c-(c)/2-(h)-(s)-0 || c | s | 1 | c-(c)/3-(s) | c-(c)/3-(s)-1 || c | c | 3 | c-(c)/3-(s) | c-(c)/3-(s)-0 || c | s | 1 | c-(c/b)-(h)/2-(s) | c-(c/b)-(h)/2-(s)-2 || c | h | 2 | c-(c/b)-(h)/2-(s) | c-(c/b)-(h)/2-(s)-1 || c | c/b | 1 | c-(c/b)-(h)/2-(s) | c-(c/b)-(h)/2-(s)-0 || c | s | 1 | c-(c/d)-(h)/2-(s) | c-(c/d)-(h)/2-(s)-2 || c | h | 2 | c-(c/d)-(h)/2-(s) | c-(c/d)-(h)/2-(s)-1 || c | c/d | 1 | c-(c/d)-(h)/2-(s) | c-(c/d)-(h)/2-(s)-0 || c/b | s | 1 | c/b-(s)-(c/b)/2 | c/b-(s)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(s)-(c/b)/2 | c/b-(s)-(c/b)/2-1 || c/d | s | 1 | c/d-(h)-(s) | c/d-(h)-(s)-1 || c/d | h | 1 | c/d-(h)-(s) | c/d-(h)-(s)-0 || c/d | s | 1 | c/d-(c)-(s) | c/d-(c)-(s)-1 || c/d | c | 1 | c/d-(c)-(s) | c/d-(c)-(s)-0 || s | h | 1 | s-(c)-(h) | s-(c)-(h)-1 || s | c | 1 | s-(c)-(h) | s-(c)-(h)-0 || s | h | 1 | s-(c/b)-(h) | s-(c/b)-(h)-1 || s | c/b | 1 | s-(c/b)-(h) | s-(c/b)-(h)-0 || s | c | 2 | s-(c)/2 | s-(c)/2-0 || s | c/d | 1 | s-(c)-(c/d) | s-(c)-(c/d)-1 || s | c | 1 | s-(c)-(c/d) | s-(c)-(c/d)-0 || s | c/d | 2 | s-(c/d)/2 | s-(c/d)/2-0 || s | c | 1 | s-(c/b)-(c) | s-(c/b)-(c)-1 || s | c/b | 1 | s-(c/b)-(c) | s-(c/b)-(c)-0 || s | c/b | 2 | s-(c/b)/2 | s-(c/b)/2-0 || s | c | 1 | s-(s)-(c) | s-(s)-(c)-1 || s | s | 1 | s-(s)-(c) | s-(s)-(c)-0 || s | c/b | 1 | s-(s)-(c/b) | s-(s)-(c/b)-1 || s | s | 1 | s-(s)-(c/b) | s-(s)-(c/b)-0 || s | s | 2 | s-(s)/2 | s-(s)/2-0 || c | h | 3 | c-(so)-(h)/3 | c-(so)-(h)/3-1 || c | so | 1 | c-(so)-(h)/3 | c-(so)-(h)/3-0 || c | h | 2 | c-(c)-(so)-(h)/2 | c-(c)-(so)-(h)/2-2 || c | so | 1 | c-(c)-(so)-(h)/2 | c-(c)-(so)-(h)/2-1 || c | c | 1 | c-(c)-(so)-(h)/2 | c-(c)-(so)-(h)/2-0 || c | so | 1 | c-(c)/3-(so) | c-(c)/3-(so)-1 || c | c | 3 | c-(c)/3-(so) | c-(c)/3-(so)-0 || c | h | 2 | c-(c/d)-(so)-(h)/2 | c-(c/d)-(so)-(h)/2-2 || c | c/d | 1 | c-(c/d)-(so)-(h)/2 | c-(c/d)-(so)-(h)/2-0 || c | so | 1 | c-(c/d)-(so)-(h)/2 | c-(c/d)-(so)-(h)/2-1 || c/b | c/b | 2 | c/b-(so)-(c/b)/2 | c/b-(so)-(c/b)/2-1 || c/b | so | 1 | c/b-(so)-(c/b)/2 | c/b-(so)-(c/b)/2-0 || so | c | 2 | so-(c)/2 | so-(c)/2-0 || so | c/b | 2 | so-(c/b)/2 | so-(c/b)/2-0 || c | 'so2' | 1 | c-('so2')(h)/3 | c-('so2')(h)/3-0 || c | h | 2 | c-(c)-('so2')(h)/2 | c-(c)-('so2')(h)/2-2 || c | 'so2' | 1 | c-(c)-('so2')(h)/2 | c-(c)-('so2')(h)/2-1 || c | c | 1 | c-(c)-('so2')(h)/2 | c-(c)-('so2')(h)/2-0 || c | h | 1 | c-(c)/2-('so2')(h) | c-(c)/2-('so2')(h)-2 || c | 'so2' | 1 | c-(c)/2-('so2')(h) | c-(c)/2-('so2')(h)-1 || c | c | 2 | c-(c)/2-('so2')(h) | c-(c)/2-('so2')(h)-0 || c | c | 3 | c-(c)/3-('so2') | c-(c)/3-('so2')-0 || c | 'so2' | 1 | c-(c)/3-('so2') | c-(c)/3-('so2')-1 || c | h | 2 | c-(c/d)-('so2')(h)/2 | c-(c/d)-('so2')(h)/2-2 || c | c/d | 1 | c-(c/d)-('so2')(h)/2 | c-(c/d)-('so2')(h)/2-0 || c | 'so2' | 1 | c-(c/d)-('so2')(h)/2 | c-(c/d)-('so2')(h)/2-1 || c | h | 2 | c-(c/b)-('so2')(h)/2 | c-(c/b)-('so2')(h)/2-2 || c | c/b | 1 | c-(c/b)-('so2')(h)/2 | c-(c/b)-('so2')(h)/2-0 || c | 'so2' | 1 | c-(c/b)-('so2')(h)/2 | c-(c/b)-('so2')(h)/2-1 || c/b | c/b | 2 | c/b-('so2')-(c/b)/2 | c/b-('so2')-(c/b)/2-1 || c/b | 'so2' | 1 | c/b-('so2')-(c/b)/2 | c/b-('so2')-(c/b)/2-0 || c/d | h | 1 | c/d-(h)-('so2') | c/d-(h)-('so2')-0 || c/d | 'so2' | 1 | c/d-(h)-('so2') | c/d-(h)-('so2')-1 || c/d | c | 1 | c/d-(c)-('so2') | c/d-(c)-('so2')-0 || c/d | 'so2' | 1 | c/d-(c)-('so2') | c/d-(c)-('so2')-1 || 'so2' | c/b | 1 | 'so2'-(c/d)(c/b) | 'so2'-(c/d)(c/b)-1 || 'so2' | c/d | 1 | 'so2'-(c/d)(c/b) | 'so2'-(c/d)(c/b)-0 || 'so2' | c/d | 2 | 'so2'-(c/d)/2 | 'so2'-(c/d)/2-0 || 'so2' | c | 2 | 'so2'-(c)/2 | 'so2'-(c)/2-0 || 'so2' | c | 1 | 'so2'-(c)(c/b) | 'so2'-(c)(c/b)-0 || 'so2' | c/b | 1 | 'so2'-(c)(c/b) | 'so2'-(c)(c/b)-1 || 'so2' | c/b | 2 | 'so2'-(c/b)/2 | 'so2'-(c/b)/2-0 || 'so2' | c/b | 1 | 'so2'-('so2')(c/b) | 'so2'-('so2')(c/b)-1 || 'so2' | 'so2' | 1 | 'so2'-('so2')(c/b) | 'so2'-('so2')(c/b)-0 || 'so2' | c/d | 1 | 'so2'-(c/d)(c) | 'so2'-(c/d)(c)-0 || 'so2' | c | 1 | 'so2'-(c/d)(c) | 'so2'-(c/d)(c)-1 || co | c | 1 | co-(s)-(c) | co-(s)-(c)-1 || co | s | 1 | co-(s)-(c) | co-(s)-(c)-0 || s | co | 1 | s-(h)-(co) | s-(h)-(co)-1 || s | h | 1 | s-(h)-(co) | s-(h)-(co)-0 || c | f | 3 | c-(s)-(f)/3 | c-(s)-(f)/3-1 || c | s | 1 | c-(s)-(f)/3 | c-(s)-(f)/3-0 || cs | n | 2 | cs-(n)/2 | cs-(n)/2-0 || n | h | 2 | n-(cs)-(h)/2 | n-(cs)-(h)/2-1 || n | cs | 1 | n-(cs)-(h)/2 | n-(cs)-(h)/2-0 || s | n | 1 | s-(s)-(n) | s-(s)-(n)-1 || s | s | 1 | s-(s)-(n) | s-(s)-(n)-0 || n | c | 2 | n-(s)-(c)/2 | n-(s)-(c)/2-1 || n | s | 1 | n-(s)-(c)/2 | n-(s)-(c)/2-0 || so | n | 2 | so-(n)/2 | so-(n)/2-0 || n | c | 2 | n-(so)-(c)/2 | n-(so)-(c)/2-1 || n | so | 1 | n-(so)-(c)/2 | n-(so)-(c)/2-0 || 'so2' | n | 2 | 'so2'-(n)/2 | 'so2'-(n)/2-0 || n | 'so2' | 1 | n-('so2')(c)/2 | n-('so2')(c)/2-0 || c/b | c/b | 2 | c/b-('so2n3')-(c/b)/2 | c/b-('so2n3')-(c/b)/2-1 || c/b | 'so2n3' | 1 | c/b-('so2n3')-(c/b)/2 | c/b-('so2n3')-(c/b)/2-0 || so | c | 1 | so-(c/b)(c) | so-(c/b)(c)-1 || so | c/b | 1 | so-(c/b)(c) | so-(c/b)(c)-0 || c | h | 3 | c-(h)/3('so4') | c-(h)/3('so4')-0 || c | 'so4' | 1 | c-(h)/3('so4') | c-(h)/3('so4')-1 || 'so4' | c | 2 | 'so4'-(c)/2 | 'so4'-(c)/2-0 || c | h | 2 | c-(h)/2(c)('so4') | c-(h)/2(c)('so4')-0 || c | c | 1 | c-(h)/2(c)('so4') | c-(h)/2(c)('so4')-1 || c | 'so4' | 1 | c-(h)/2(c)('so4') | c-(h)/2(c)('so4')-2 || c | h | 3 | c-(h)/3('so3') | c-(h)/3('so3')-0 || c | 'so3' | 1 | c-(h)/3('so3') | c-(h)/3('so3')-1 || 'so3' | c | 2 | 'so3'-(c)/2 | 'so3'-(c)/2-0 || c | h | 2 | c-(h)/2(c)('so3') | c-(h)/2(c)('so3')-0 || c | c | 1 | c-(h)/2(c)('so3') | c-(h)/2(c)('so3')-1 || c | 'so3' | 1 | c-(h)/2(c)('so3') | c-(h)/2(c)('so3')-2 || c | h | 1 | c-(h)(c)/2('so4') | c-(h)(c)/2('so4')-0 || c | c | 2 | c-(h)(c)/2('so4') | c-(h)(c)/2('so4')-1 || c | 'so4' | 1 | c-(h)(c)/2('so4') | c-(h)(c)/2('so4')-2 || c | c | 3 | c-(c)/3('so4') | c-(c)/3('so4')-0 || c | 'so4' | 1 | c-(c)/3('so4') | c-(c)/3('so4')-1 || c | h | 1 | c-(h)(c)/2('so3') | c-(h)(c)/2('so3')-0 || c | c | 2 | c-(h)(c)/2('so3') | c-(h)(c)/2('so3')-1 || c | 'so3' | 1 | c-(h)(c)/2('so3') | c-(h)(c)/2('so3')-2 || c | c | 3 | c-(c)/3('so3') | c-(c)/3('so3')-0 || c | 'so3' | 1 | c-(c)/3('so3') | c-(c)/3('so3')-1 || c | so | 1 | c-(h)(c)/2(so) | c-(h)(c)/2(so)-2 || c | c | 2 | c-(h)(c)/2(so) | c-(h)(c)/2(so)-1 || c | h | 1 | c-(h)(c)/2(so) | c-(h)(c)/2(so)-0 || c/b | c/b | 2 | c/b-('so3h')-(c/b)/2 | c/b-('so3h')-(c/b)/2-1 || c/b | 'so3h' | 1 | c/b-('so3h')-(c/b)/2 | c/b-('so3h')-(c/b)/2-0 || c | c | 2 | c-(s)/2-(c)/2 | c-(s)/2-(c)/2-1 || c | s | 2 | c-(s)/2-(c)/2 | c-(s)/2-(c)/2-0 || c | h | 3 | c-(sn)-(h)/3 | c-(sn)-(h)/3-1 || c | sn | 1 | c-(sn)-(h)/3 | c-(sn)-(h)/3-0 || c | h | 2 | c-(sn)-(c)-(h)/2 | c-(sn)-(c)-(h)/2-2 || c | c | 1 | c-(sn)-(c)-(h)/2 | c-(sn)-(c)-(h)/2-1 || c | sn | 1 | c-(sn)-(c)-(h)/2 | c-(sn)-(c)-(h)/2-0 || c | h | 1 | c-(sn)-(c)/2-(h) | c-(sn)-(c)/2-(h)-2 || c | c | 2 | c-(sn)-(c)/2-(h) | c-(sn)-(c)/2-(h)-1 || c | sn | 1 | c-(sn)-(c)/2-(h) | c-(sn)-(c)/2-(h)-0 || c | c | 3 | c-(sn)-(c)/3 | c-(sn)-(c)/3-1 || c | sn | 1 | c-(sn)-(c)/3 | c-(sn)-(c)/3-0 || c | h | 2 | c-(sn)-(c/b)-(h)/2 | c-(sn)-(c/b)-(h)/2-2 || c | c/b | 1 | c-(sn)-(c/b)-(h)/2 | c-(sn)-(c/b)-(h)/2-1 || c | sn | 1 | c-(sn)-(c/b)-(h)/2 | c-(sn)-(c/b)-(h)/2-0 || c/b | c/b | 2 | c/b-(sn)-(c/b)/2 | c/b-(sn)-(c/b)/2-1 || c/b | sn | 1 | c/b-(sn)-(c/b)/2 | c/b-(sn)-(c/b)/2-0 || c/d | h | 1 | c/d-(sn)-(h) | c/d-(sn)-(h)-1 || c/d | sn | 1 | c/d-(sn)-(h) | c/d-(sn)-(h)-0 || sn | c | 4 | sn-(c)/4 | sn-(c)/4-0 || sn | cl | 1 | sn-(c)/3-(cl) | sn-(c)/3-(cl)-1 || sn | c | 3 | sn-(c)/3-(cl) | sn-(c)/3-(cl)-0 || sn | cl | 2 | sn-(c)/2-(cl)/2 | sn-(c)/2-(cl)/2-1 || sn | c | 2 | sn-(c)/2-(cl)/2 | sn-(c)/2-(cl)/2-0 || sn | cl | 3 | sn-(c)-(cl)/3 | sn-(c)-(cl)/3-1 || sn | c | 1 | sn-(c)-(cl)/3 | sn-(c)-(cl)/3-0 || sn | br | 1 | sn-(c)/3-(br) | sn-(c)/3-(br)-1 || sn | c | 3 | sn-(c)/3-(br) | sn-(c)/3-(br)-0 || sn | i | 1 | sn-(c)/3-(i) | sn-(c)/3-(i)-1 || sn | c | 3 | sn-(c)/3-(i) | sn-(c)/3-(i)-0 || sn | h | 1 | sn-(c)/3-(h) | sn-(c)/3-(h)-1 || sn | c | 3 | sn-(c)/3-(h) | sn-(c)/3-(h)-0 || sn | c/d | 4 | sn-(c/d)/4 | sn-(c/d)/4-0 || sn | cl | 1 | sn-(c/d)/3-(cl) | sn-(c/d)/3-(cl)-1 || sn | c/d | 3 | sn-(c/d)/3-(cl) | sn-(c/d)/3-(cl)-0 || sn | cl | 2 | sn-(c/d)/2-(cl)/2 | sn-(c/d)/2-(cl)/2-1 || sn | c/d | 2 | sn-(c/d)/2-(cl)/2 | sn-(c/d)/2-(cl)/2-0 || sn | cl | 3 | sn-(c/d)-(cl)/3 | sn-(c/d)-(cl)/3-1 || sn | c/d | 1 | sn-(c/d)-(cl)/3 | sn-(c/d)-(cl)/3-0 || sn | c | 3 | sn-(c)/3-(c/d) | sn-(c)/3-(c/d)-0 || sn | c/d | 1 | sn-(c)/3-(c/d) | sn-(c)/3-(c/d)-1 || sn | c/b | 4 | sn-(c/b)/4 | sn-(c/b)/4-0 || sn | c | 3 | sn-(c)/3-(c/b) | sn-(c)/3-(c/b)-0 || sn | c/b | 1 | sn-(c)/3-(c/b) | sn-(c)/3-(c/b)-1 || sn | sn | 1 | sn-(c)/3-(sn) | sn-(c)/3-(sn)-1 || sn | c | 3 | sn-(c)/3-(sn) | sn-(c)/3-(sn)-0 || c | h | 3 | c-(pb)-(h)/3 | c-(pb)-(h)/3-1 || c | pb | 1 | c-(pb)-(h)/3 | c-(pb)-(h)/3-0 || c | h | 2 | c-(pb)-(c)-(h)/2 | c-(pb)-(c)-(h)/2-2 || c | c | 1 | c-(pb)-(c)-(h)/2 | c-(pb)-(c)-(h)/2-1 || c | pb | 1 | c-(pb)-(c)-(h)/2 | c-(pb)-(c)-(h)/2-0 || pb | c | 4 | pb-(c)/4 | pb-(c)/4-0 || o | c | 1 | o-(cr)-(c) | o-(cr)-(c)-1 || o | cr | 1 | o-(cr)-(c) | o-(cr)-(c)-0 || cr | o | 4 | cr-(o)/4 | cr-(o)/4-0 || c | h | 3 | c-(zn)-(h)/3 | c-(zn)-(h)/3-1 || c | zn | 1 | c-(zn)-(h)/3 | c-(zn)-(h)/3-0 || c | h | 2 | c-(zn)-(c)-(h)/2 | c-(zn)-(c)-(h)/2-2 || c | c | 1 | c-(zn)-(c)-(h)/2 | c-(zn)-(c)-(h)/2-1 || c | zn | 1 | c-(zn)-(c)-(h)/2 | c-(zn)-(c)-(h)/2-0 || zn | c | 2 | zn-(c)/2 | zn-(c)/2-0 || o | c | 1 | o-(ti)-(c) | o-(ti)-(c)-1 || o | ti | 1 | o-(ti)-(c) | o-(ti)-(c)-0 || ti | o | 4 | ti-(o)/4 | ti-(o)/4-0 || n | c | 2 | n-(ti)-(c)/2 | n-(ti)-(c)/2-1 || n | ti | 1 | n-(ti)-(c)/2 | n-(ti)-(c)/2-0 || ti | n | 4 | ti-(n)/4 | ti-(n)/4-0 || o | c | 1 | o-(v)-(c) | o-(v)-(c)-1 || o | v | 1 | o-(v)-(c) | o-(v)-(c)-0 || v | o | 4 | v-(o)/4 | v-(o)/4-0 || c | h | 3 | c-(cd)-(h)/3 | c-(cd)-(h)/3-1 || c | cd | 1 | c-(cd)-(h)/3 | c-(cd)-(h)/3-0 || c | h | 2 | c-(cd)-(c)-(h)/2 | c-(cd)-(c)-(h)/2-2 || c | c | 1 | c-(cd)-(c)-(h)/2 | c-(cd)-(c)-(h)/2-1 || c | cd | 1 | c-(cd)-(c)-(h)/2 | c-(cd)-(c)-(h)/2-0 || cd | c | 2 | cd-(c)/2 | cd-(c)/2-0 || c | h | 3 | c-(al)-(h)/3 | c-(al)-(h)/3-1 || c | al | 1 | c-(al)-(h)/3 | c-(al)-(h)/3-0 || c | h | 2 | c-(al)-(c)-(h)/2 | c-(al)-(c)-(h)/2-2 || c | c | 1 | c-(al)-(c)-(h)/2 | c-(al)-(c)-(h)/2-1 || c | al | 1 | c-(al)-(c)-(h)/2 | c-(al)-(c)-(h)/2-0 || al | c | 3 | al-(c)/3 | al-(c)/3-0 || c | h | 2 | c-(ge)-(c)-(h)/2 | c-(ge)-(c)-(h)/2-2 || c | c | 1 | c-(ge)-(c)-(h)/2 | c-(ge)-(c)-(h)/2-1 || c | ge | 1 | c-(ge)-(c)-(h)/2 | c-(ge)-(c)-(h)/2-0 || ge | c | 4 | ge-(c)/4 | ge-(c)/4-0 || ge | c | 3 | ge-(ge)-(c)/3 | ge-(ge)-(c)/3-1 || ge | ge | 1 | ge-(ge)-(c)/3 | ge-(ge)-(c)/3-0 || c | h | 3 | c-(hg)-(h)/3 | c-(hg)-(h)/3-1 || c | hg | 1 | c-(hg)-(h)/3 | c-(hg)-(h)/3-0 || c | h | 2 | c-(hg)-(c)-(h)/2 | c-(hg)-(c)-(h)/2-2 || c | c | 1 | c-(hg)-(c)-(h)/2 | c-(hg)-(c)-(h)/2-1 || c | hg | 1 | c-(hg)-(c)-(h)/2 | c-(hg)-(c)-(h)/2-0 || c | h | 1 | c-(hg)-(c)/2-(h) | c-(hg)-(c)/2-(h)-2 || c | c | 2 | c-(hg)-(c)/2-(h) | c-(hg)-(c)/2-(h)-1 || c | hg | 1 | c-(hg)-(c)/2-(h) | c-(hg)-(c)/2-(h)-0 || c/b | c/b | 2 | c/b-(hg)-(c/b)/2 | c/b-(hg)-(c/b)/2-1 || c/b | hg | 1 | c/b-(hg)-(c/b)/2 | c/b-(hg)-(c/b)/2-0 || hg | c | 2 | hg-(c)/2 | hg-(c)/2-0 || hg | cl | 1 | hg-(c)-(cl) | hg-(c)-(cl)-1 || hg | c | 1 | hg-(c)-(cl) | hg-(c)-(cl)-0 || hg | br | 1 | hg-(c)-(br) | hg-(c)-(br)-1 || hg | c | 1 | hg-(c)-(br) | hg-(c)-(br)-0 || hg | i | 1 | hg-(c)-(i) | hg-(c)-(i)-1 || hg | c | 1 | hg-(c)-(i) | hg-(c)-(i)-0 || hg | c/b | 2 | hg-(c/b)/2 | hg-(c/b)/2-0 || hg | cl | 1 | hg-(c/b)-(cl) | hg-(c/b)-(cl)-1 || hg | c/b | 1 | hg-(c/b)-(cl) | hg-(c/b)-(cl)-0 || hg | br | 1 | hg-(c/b)-(br) | hg-(c/b)-(br)-1 || hg | c/b | 1 | hg-(c/b)-(br) | hg-(c/b)-(br)-0 || hg | c/b | 1 | hg-(c/b)-(i) | hg-(c/b)-(i)-0 || c | h | 3 | c-(p)(h)/3 | c-(p)(h)/3-1 || c | p | 1 | c-(p)(h)/3 | c-(p)(h)/3-0 || c | h | 2 | c-(p)(c)(h)/2 | c-(p)(c)(h)/2-2 || c | c | 1 | c-(p)(c)(h)/2 | c-(p)(c)(h)/2-1 || c | p | 1 | c-(p)(c)(h)/2 | c-(p)(c)(h)/2-0 || c | h | 3 | c-(po)(h)/3 | c-(po)(h)/3-1 || c | po | 1 | c-(po)(h)/3 | c-(po)(h)/3-0 || c | h | 2 | c-(po)(c)(h)/2 | c-(po)(c)(h)/2-2 || c | c | 1 | c-(po)(c)(h)/2 | c-(po)(c)(h)/2-1 || c | po | 1 | c-(po)(c)(h)/2 | c-(po)(c)(h)/2-0 || c | h | 3 | c-(pn)-(h)/3 | c-(pn)-(h)/3-1 || c | pn | 1 | c-(pn)-(h)/3 | c-(pn)-(h)/3-0 || c | h | 2 | c-(pn)-(c)-(h)/2 | c-(pn)-(c)-(h)/2-2 || c | c | 1 | c-(pn)-(c)-(h)/2 | c-(pn)-(c)-(h)/2-1 || c | pn | 1 | c-(pn)-(c)-(h)/2 | c-(pn)-(c)-(h)/2-0 || c/b | p | 1 | c/b-(p)-(c/b)/2 | c/b-(p)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(p)-(c/b)/2 | c/b-(p)-(c/b)/2-1 || c/b | c/b | 2 | c/b-(po)-(c/b)/2 | c/b-(po)-(c/b)/2-1 || c/b | po | 1 | c/b-(po)-(c/b)/2 | c/b-(po)-(c/b)/2-0 || c/b | c/b | 2 | c/b-(pn)-(c/b)/2 | c/b-(pn)-(c/b)/2-1 || c/b | pn | 1 | c/b-(pn)-(c/b)/2 | c/b-(pn)-(c/b)/2-0 || p | c | 3 | p-(c)/3 | p-(c)/3-0 || p | cl | 2 | p-(c)(cl)/2 | p-(c)(cl)/2-1 || p | c | 1 | p-(c)(cl)/2 | p-(c)(cl)/2-0 || p | c/b | 3 | p-(c/b)/3 | p-(c/b)/3-0 || p | o | 3 | p-(o)/3 | p-(o)/3-0 || p | n | 3 | p-(n)/3 | p-(n)/3-0 || po | c | 3 | po-(c)/3 | po-(c)/3-0 || po | f | 2 | po-(c)(f)/2 | po-(c)(f)/2-1 || po | c | 1 | po-(c)(f)/2 | po-(c)(f)/2-0 || po | f | 1 | po-(c)(cl)(f) | po-(c)(cl)(f)-2 || po | cl | 1 | po-(c)(cl)(f) | po-(c)(cl)(f)-1 || po | c | 1 | po-(c)(cl)(f) | po-(c)(cl)(f)-0 || po | c | 1 | po-(c)(cl)/2 | po-(c)(cl)/2-0 || po | cl | 1 | po-(c)(o)(cl) | po-(c)(o)(cl)-2 || po | o | 1 | po-(c)(o)(cl) | po-(c)(o)(cl)-1 || po | c | 1 | po-(c)(o)(cl) | po-(c)(o)(cl)-0 || po | o | 2 | po-(c)(o)/2 | po-(c)(o)/2-1 || po | c | 1 | po-(c)(o)/2 | po-(c)(o)/2-0 || po | o | 3 | po-(o)/3 | po-(o)/3-0 || po | f | 1 | po-(o)/2(f) | po-(o)/2(f)-1 || po | o | 2 | po-(o)/2(f) | po-(o)/2(f)-0 || po | c/b | 3 | po-(c/b)/3 | po-(c/b)/3-0 || po | n | 3 | po-(n)/3 | po-(n)/3-0 || o | p | 1 | o-(c)(p) | o-(c)(p)-1 || o | c | 1 | o-(c)(p) | o-(c)(p)-0 || o | p | 1 | o-(h)(p) | o-(h)(p)-1 || o | h | 1 | o-(h)(p) | o-(h)(p)-0 || o | po | 1 | o-(c)(po) | o-(c)(po)-1 || o | c | 1 | o-(c)(po) | o-(c)(po)-0 || o | po | 1 | o-(h)(po) | o-(h)(po)-1 || o | h | 1 | o-(h)(po) | o-(h)(po)-0 || o | po | 2 | o-(po)/2 | o-(po)/2-0 || o | c | 1 | o-(pn)-(c) | o-(pn)-(c)-1 || o | pn | 1 | o-(pn)-(c) | o-(pn)-(c)-0 || n | c | 2 | n-(p)(c)/2 | n-(p)(c)/2-1 || n | p | 1 | n-(p)(c)/2 | n-(p)(c)/2-0 || n | c | 2 | n-(po)(c)/2 | n-(po)(c)/2-1 || n | po | 1 | n-(po)(c)/2 | n-(po)(c)/2-0 || pn | c | 4 | pn-(c)/4 | pn-(c)/4-0 || pn | c/b | 3 | pn-(c/b)/3-(c) | pn-(c/b)/3-(c)-0 || pn | c | 1 | pn-(c/b)/3-(c) | pn-(c/b)/3-(c)-1 || pn | c | 2 | pn-(pn)/2-(c)/2 | pn-(pn)/2-(c)/2-1 || pn | pn | 2 | pn-(pn)/2-(c)/2 | pn-(pn)/2-(c)/2-0 || pn | c/b | 2 | pn-(pn)/2-(c/b)/2 | pn-(pn)/2-(c/b)/2-1 || pn | pn | 2 | pn-(pn)/2-(c/b)/2 | pn-(pn)/2-(c/b)/2-0 || pn | cl | 2 | pn-(pn)/2-(cl)/2 | pn-(pn)/2-(cl)/2-1 || pn | pn | 2 | pn-(pn)/2-(cl)/2 | pn-(pn)/2-(cl)/2-0 || pn | pn | 2 | pn-(pn)/2(o)/2 | pn-(pn)/2(o)/2-0 || pn | o | 2 | pn-(pn)/2(o)/2 | pn-(pn)/2(o)/2-1 || c | h | 3 | c-(b)(h)/3 | c-(b)(h)/3-1 || c | b | 1 | c-(b)(h)/3 | c-(b)(h)/3-0 || c | h | 2 | c-(b)(c)(h)/2 | c-(b)(c)(h)/2-2 || c | c | 1 | c-(b)(c)(h)/2 | c-(b)(c)(h)/2-1 || c | b | 1 | c-(b)(c)(h)/2 | c-(b)(c)(h)/2-0 || c | h | 1 | c-(b)(c)/2(h) | c-(b)(c)/2(h)-2 || c | c | 2 | c-(b)(c)/2(h) | c-(b)(c)/2(h)-1 || c | b | 1 | c-(b)(c)/2(h) | c-(b)(c)/2(h)-0 || c | 'bo3' | 1 | c-('bo3')(h)/3 | c-('bo3')(h)/3-0 || c | h | 2 | c-('bo3')(c)(h)/2 | c-('bo3')(c)(h)/2-2 || c | 'bo3' | 1 | c-('bo3')(c)(h)/2 | c-('bo3')(c)(h)/2-0 || c | c | 1 | c-('bo3')(c)(h)/2 | c-('bo3')(c)(h)/2-1 || c/d | h | 1 | c/d-(b)(h) | c/d-(b)(h)-1 || c/d | b | 1 | c/d-(b)(h) | c/d-(b)(h)-0 || b | c | 3 | b-(c)/3 | b-(c)/3-0 || b | f | 2 | b-(c)(f)/2 | b-(c)(f)/2-1 || b | c | 1 | b-(c)(f)/2 | b-(c)(f)/2-0 || b | cl | 1 | b-(c)/2(cl) | b-(c)/2(cl)-1 || b | c | 2 | b-(c)/2(cl) | b-(c)/2(cl)-0 || b | br | 1 | b-(c)/2(br) | b-(c)/2(br)-1 || b | c | 2 | b-(c)/2(br) | b-(c)/2(br)-0 || b | i | 1 | b-(c)/2(i) | b-(c)/2(i)-1 || b | c | 2 | b-(c)/2(i) | b-(c)/2(i)-0 || b | o | 1 | b-(c)/2(o) | b-(c)/2(o)-1 || b | c | 2 | b-(c)/2(o) | b-(c)/2(o)-0 || b | c/d | 1 | b-(c/d)(f)/2 | b-(c/d)(f)/2-0 || b | o | 3 | b-(o)/3 | b-(o)/3-0 || b | cl | 1 | b-(o)/2(cl) | b-(o)/2(cl)-1 || b | o | 2 | b-(o)/2(cl) | b-(o)/2(cl)-0 || b | cl | 2 | b-(o)(cl)/2 | b-(o)(cl)/2-1 || b | o | 1 | b-(o)(cl)/2 | b-(o)(cl)/2-0 || b | h | 1 | b-(o)/2(h) | b-(o)/2(h)-1 || b | o | 2 | b-(o)/2(h) | b-(o)/2(h)-0 || b | n | 3 | b-(n)/3 | b-(n)/3-0 || b | cl | 1 | b-(n)/2(cl) | b-(n)/2(cl)-1 || b | n | 2 | b-(n)/2(cl) | b-(n)/2(cl)-0 || b | cl | 2 | b-(n)(cl)/2 | b-(n)(cl)/2-1 || b | n | 1 | b-(n)(cl)/2 | b-(n)(cl)/2-0 || 'bo3' | c | 3 | 'bo3'-(c)/3 | 'bo3'-(c)/3-0 || o | h | 1 | o-(b)(h) | o-(b)(h)-1 || o | b | 1 | o-(b)(h) | o-(b)(h)-0 || o | c | 1 | o-(b)(c) | o-(b)(c)-1 || o | b | 1 | o-(b)(c) | o-(b)(c)-0 || n | c | 2 | n-(b)(c)/2 | n-(b)(c)/2-1 || n | b | 1 | n-(b)(c)/2 | n-(b)(c)/2-0 || b | s | 3 | b-(s)/3 | b-(s)/3-0 || s | c | 1 | s-(b)(c) | s-(b)(c)-1 || s | b | 1 | s-(b)(c) | s-(b)(c)-0 || s | b | 1 | s-(b)(c/b) | s-(b)(c/b)-0 || c/b | c/b | 2 | c/b-(pb)-(c/b)/2 | c/b-(pb)-(c/b)/2-1 || c/b | pb | 1 | c/b-(pb)-(c/b)/2 | c/b-(pb)-(c/b)/2-0 || pb | c/b | 4 | pb-(c/b)/4 | pb-(c/b)/4-0 || c | si | 1 | c-(h)/3(si) | c-(h)/3(si)-1 || c | h | 3 | c-(h)/3(si) | c-(h)/3(si)-0 || si | c | 4 | si-(c)/4 | si-(c)/4-0 || si | h | 3 | si-(c)(h)/3 | si-(c)(h)/3-1 || si | c | 1 | si-(c)(h)/3 | si-(c)(h)/3-0 || si | c/b | 4 | si-(c/b)/4 | si-(c/b)/4-0 || c/b | c/b | 2 | c/b-(si)-(c/b)/2 | c/b-(si)-(c/b)/2-1 || c/b | si | 1 | c/b-(si)-(c/b)/2 | c/b-(si)-(c/b)/2-0 || c | si | 1 | c-(h)/2(c)(si) | c-(h)/2(c)(si)-2 || c | c | 1 | c-(h)/2(c)(si) | c-(h)/2(c)(si)-1 || c | h | 2 | c-(h)/2(c)(si) | c-(h)/2(c)(si)-0 || c | h | 1 | c-(c/d)/2-(c)-(h) | c-(c/d)/2-(c)-(h)-2 || c | c | 1 | c-(c/d)/2-(c)-(h) | c-(c/d)/2-(c)-(h)-1 || c | c/d | 2 | c-(c/d)/2-(c)-(h) | c-(c/d)/2-(c)-(h)-0 || c | c/t | 2 | c-(h)/2-(c/t)/2 | c-(h)/2-(c/t)/2-1 || c | h | 2 | c-(h)/2-(c/t)/2 | c-(h)/2-(c/t)/2-0 || c | c/b | 2 | c-(h)/2-(c/b)/2 | c-(h)/2-(c/b)/2-1 || c | h | 2 | c-(h)/2-(c/b)/2 | c-(h)/2-(c/b)/2-0 || c | c/b | 3 | c-(h)-(c/b)/3 | c-(h)-(c/b)/3-1 || c | h | 1 | c-(h)-(c/b)/3 | c-(h)-(c/b)/3-0 || c | c/b | 4 | c-(c/b)/4 | c-(c/b)/4-0 || c | c | 1 | c-(h)-(o)-(co)-(c) | c-(h)-(o)-(co)-(c)-3 || c | co | 1 | c-(h)-(o)-(co)-(c) | c-(h)-(o)-(co)-(c)-2 || c | o | 1 | c-(h)-(o)-(co)-(c) | c-(h)-(o)-(co)-(c)-1 || c | h | 1 | c-(h)-(o)-(co)-(c) | c-(h)-(o)-(co)-(c)-0 || c | o | 4 | c-(o)/4 | c-(o)/4-0 || c | o | 3 | c-(h)-(o)/3 | c-(h)-(o)/3-1 || c | h | 1 | c-(h)-(o)/3 | c-(h)-(o)/3-0 || c | c/b | 1 | c-(c)/2-(o)-(c/b) | c-(c)/2-(o)-(c/b)-2 || c | o | 1 | c-(c)/2-(o)-(c/b) | c-(c)/2-(o)-(c/b)-1 || c | c | 2 | c-(c)/2-(o)-(c/b) | c-(c)/2-(o)-(c/b)-0 || c | n | 2 | c-(h)/2-(n)/2 | c-(h)/2-(n)/2-1 || c | h | 2 | c-(h)/2-(n)/2 | c-(h)/2-(n)/2-0 || c | n | 1 | c-(h)/2-(c/b)-(n) | c-(h)/2-(c/b)-(n)-2 || c | c/b | 1 | c-(h)/2-(c/b)-(n) | c-(h)/2-(c/b)-(n)-1 || c | h | 2 | c-(h)/2-(c/b)-(n) | c-(h)/2-(c/b)-(n)-0 || n | c/d | 2 | n-(h)-(c/d)/2 | n-(h)-(c/d)/2-1 || n | h | 1 | n-(h)-(c/d)/2 | n-(h)-(c/d)/2-0 || n | c/d | 2 | n-(c)-(c/d)/2 | n-(c)-(c/d)/2-1 || n | c | 1 | n-(c)-(c/d)/2 | n-(c)-(c/d)/2-0 || n | c/b | 2 | n-(c)-(c/b)/2 | n-(c)-(c/b)/2-1 || n | c | 1 | n-(c)-(c/b)/2 | n-(c)-(c/b)/2-0 || n | c/b | 3 | n-(c/b)/3 | n-(c/b)/3-0 || n/a | c/b | 1 | n/a-(c/b) | n/a-(c/b)-0 || c | n/a | 1 | c-(h)/2-(c)-(n/a) | c-(h)/2-(c)-(n/a)-2 || c | c | 1 | c-(h)/2-(c)-(n/a) | c-(h)/2-(c)-(n/a)-1 || c | h | 2 | c-(h)/2-(c)-(n/a) | c-(h)/2-(c)-(n/a)-0 || c | n/a | 1 | c-(h)-(c)/2-(n/a) | c-(h)-(c)/2-(n/a)-2 || c | c | 2 | c-(h)-(c)/2-(n/a) | c-(h)-(c)/2-(n/a)-1 || c | h | 1 | c-(h)-(c)/2-(n/a) | c-(h)-(c)/2-(n/a)-0 || c | n/a | 1 | c-(c)/3-(n/a) | c-(c)/3-(n/a)-1 || c | c | 3 | c-(c)/3-(n/a) | c-(c)/3-(n/a)-0 || c/d | n | 1 | c/d-(h)-(n) | c/d-(h)-(n)-1 || c/d | h | 1 | c/d-(h)-(n) | c/d-(h)-(n)-0 || c/d | n | 1 | c/d-(c)-(n) | c/d-(c)-(n)-1 || c/d | c | 1 | c/d-(c)-(n) | c/d-(c)-(n)-0 || c/b | c/b | 2 | c/b-(n/a)-(c/b)/2 | c/b-(n/a)-(c/b)/2-1 || c/b | n/a | 1 | c/b-(n/a)-(c/b)/2 | c/b-(n/a)-(c/b)/2-0 || c/b | h | 1 | c/b-(h)-(n/i)/2 | c/b-(h)-(n/i)/2-0 || c/b | n/i | 2 | c/b-(h)-(n/i)/2 | c/b-(h)-(n/i)/2-1 || co | c/d | 1 | co-(c/d)-(n) | co-(c/d)-(n)-0 || co | n | 2 | co-(n)/2 | co-(n)/2-0 || c | h | 2 | c-(c/d)-(cn)-(h)/2 | c-(c/d)-(cn)-(h)/2-2 || c | c/d | 1 | c-(c/d)-(cn)-(h)/2 | c-(c/d)-(cn)-(h)/2-0 || c | cn | 1 | c-(c/d)-(cn)-(h)/2 | c-(c/d)-(cn)-(h)/2-1 || c | h | 2 | c-(c/b)-('no2')-(h)/2 | c-(c/b)-('no2')-(h)/2-2 || c | 'no2' | 1 | c-(c/b)-('no2')-(h)/2 | c-(c/b)-('no2')-(h)/2-1 || c | c/b | 1 | c-(c/b)-('no2')-(h)/2 | c-(c/b)-('no2')-(h)/2-0 || c | h | 1 | c-(co)-(n)-(c)-(h) | c-(co)-(n)-(c)-(h)-3 || c | c | 1 | c-(co)-(n)-(c)-(h) | c-(co)-(n)-(c)-(h)-2 || c | n | 1 | c-(co)-(n)-(c)-(h) | c-(co)-(n)-(c)-(h)-1 || c | co | 1 | c-(co)-(n)-(c)-(h) | c-(co)-(n)-(c)-(h)-0 || c | h | 2 | c-(co)-(n)-(h)/2 | c-(co)-(n)-(h)/2-2 || c | n | 1 | c-(co)-(n)-(h)/2 | c-(co)-(n)-(h)/2-1 || c | co | 1 | c-(co)-(n)-(h)/2 | c-(co)-(n)-(h)/2-0 || n | c | 1 | n-(c)-('no2')/2 | n-(c)-('no2')/2-0 || n | 'no2' | 2 | n-(c)-('no2')/2 | n-(c)-('no2')/2-1 || n | c | 1 | n-(c)-(c/b)-('no2') | n-(c)-(c/b)-('no2')-0 || n | c/b | 1 | n-(c)-(c/b)-('no2') | n-(c)-(c/b)-('no2')-1 || n | 'no2' | 1 | n-(c)-(c/b)-('no2') | n-(c)-(c/b)-('no2')-2 || n | no | 1 | n-(c)/2-(no) | n-(c)/2-(no)-1 || n | c | 2 | n-(c)/2-(no) | n-(c)/2-(no)-0 || n | c | 2 | n-(c)/2-('no2') | n-(c)/2-('no2')-0 || n | 'no2' | 1 | n-(c)/2-('no2') | n-(c)/2-('no2')-1 || c | h | 2 | c-(s)/2-(h)/2 | c-(s)/2-(h)/2-1 || c | s | 2 | c-(s)/2-(h)/2 | c-(s)/2-(h)/2-0 || s | h | 1 | s-(c/d)-(h) | s-(c/d)-(h)-1 || s | c/d | 1 | s-(c/d)-(h) | s-(c/d)-(h)-0 || s | h | 1 | s-(s)-(h) | s-(s)-(h)-1 || s | s | 1 | s-(s)-(h) | s-(s)-(h)-0 || o | h | 1 | o-(so)-(h) | o-(so)-(h)-1 || o | so | 1 | o-(so)-(h) | o-(so)-(h)-0 || o | c | 1 | o-(so)-(c) | o-(so)-(c)-1 || o | so | 1 | o-(so)-(c) | o-(so)-(c)-0 || so | o | 2 | so-(o)/2 | so-(o)/2-0 || c | h | 1 | c-(c/d)-(c)-('so2')-(h) | c-(c/d)-(c)-('so2')-(h)-3 || c | c | 1 | c-(c/d)-(c)-('so2')-(h) | c-(c/d)-(c)-('so2')-(h)-1 || c | c/d | 1 | c-(c/d)-(c)-('so2')-(h) | c-(c/d)-(c)-('so2')-(h)-0 || c | h | 2 | c-(c/t)-('so2')-(h)/2 | c-(c/t)-('so2')-(h)/2-2 || c | 'so2' | 1 | c-(c/t)-('so2')-(h)/2 | c-(c/t)-('so2')-(h)/2-1 || c | c/t | 1 | c-(c/t)-('so2')-(h)/2 | c-(c/t)-('so2')-(h)/2-0 || c/t | 'so2' | 1 | c/t-('so2') | c/t-('so2')-0 || 'so2' | o | 2 | 'so2'-(o)/2 | 'so2'-(o)/2-0 || 'so2' | c/b | 1 | 'so2'-(c/t)-(c/b) | 'so2'-(c/t)-(c/b)-1 || 'so2' | c/t | 1 | 'so2'-(c/t)-(c/b) | 'so2'-(c/t)-(c/b)-0 || o | 'so2' | 1 | o-('so2')-(h) | o-('so2')-(h)-0 || o | h | 1 | o-('so2')-(h) | o-('so2')-(h)-1 || o | 'so2' | 1 | o-('so2')-(c) | o-('so2')-(c)-0 || o | c | 1 | o-('so2')-(c) | o-('so2')-(c)-1 || c | h | 1 | c-(c)-('cl')-(f)-(h) | c-(c)-('cl')-(f)-(h)-3 || c | 'cl' | 1 | c-(c)-('cl')-(f)-(h) | c-(c)-('cl')-(f)-(h)-1 || c | f | 1 | c-(c)-('cl')-(f)-(h) | c-(c)-('cl')-(f)-(h)-2 || c | f | 1 | c-(c)-(cl)/2-(f) | c-(c)-(cl)/2-(f)-2 || c | cl | 2 | c-(c)-(cl)/2-(f) | c-(c)-(cl)/2-(f)-1 || c | c | 1 | c-(c)-(cl)/2-(f) | c-(c)-(cl)/2-(f)-0 || c | f | 2 | c-(c)-(br)-(f)/2 | c-(c)-(br)-(f)/2-2 || c | br | 1 | c-(c)-(br)-(f)/2 | c-(c)-(br)-(f)/2-1 || c | c | 1 | c-(c)-(br)-(f)/2 | c-(c)-(br)-(f)/2-0 || c | cl | 1 | c-(h)/2-(co)-(cl) | c-(h)/2-(co)-(cl)-2 || c | co | 1 | c-(h)/2-(co)-(cl) | c-(h)/2-(co)-(cl)-1 || c | h | 2 | c-(h)/2-(co)-(cl) | c-(h)/2-(co)-(cl)-0 || c | cl | 2 | c-(h)-(co)-(cl)/2 | c-(h)-(co)-(cl)/2-2 || c | co | 1 | c-(h)-(co)-(cl)/2 | c-(h)-(co)-(cl)/2-1 || c | h | 1 | c-(h)-(co)-(cl)/2 | c-(h)-(co)-(cl)/2-0 || co | f | 1 | co-(c)-(f) | co-(c)-(f)-1 || co | c | 1 | co-(c)-(f) | co-(c)-(f)-0 || c | h | 2 | c-(c/b)-(cl)-(h)/2 | c-(c/b)-(cl)-(h)/2-2 || c | c/b | 1 | c-(c/b)-(cl)-(h)/2 | c-(c/b)-(cl)-(h)/2-0 || c | cl | 1 | c-(c/b)-(cl)-(h)/2 | c-(c/b)-(cl)-(h)/2-1 || co | cl | 1 | co-(c)-(cl) | co-(c)-(cl)-1 || co | c | 1 | co-(c)-(cl) | co-(c)-(cl)-0 || co | br | 1 | co-(c)-(br) | co-(c)-(br)-1 || co | c | 1 | co-(c)-(br) | co-(c)-(br)-0 || co | i | 1 | co-(c)-(i) | co-(c)-(i)-1 || co | c | 1 | co-(c)-(i) | co-(c)-(i)-0 || c | h | 1 | c-(co)-(cl)-(c)-(h) | c-(co)-(cl)-(c)-(h)-3 || c | c | 1 | c-(co)-(cl)-(c)-(h) | c-(co)-(cl)-(c)-(h)-2 || c | cl | 1 | c-(co)-(cl)-(c)-(h) | c-(co)-(cl)-(c)-(h)-1 || c | co | 1 | c-(co)-(cl)-(c)-(h) | c-(co)-(cl)-(c)-(h)-0 || c | n/a | 1 | c-(h)/3-(n/a) | c-(h)/3-(n/a)-1 || c | h | 3 | c-(h)/3-(n/a) | c-(h)/3-(n/a)-0 || c | n/i | 1 | c-(h)/3-(n/i) | c-(h)/3-(n/i)-1 || c | h | 3 | c-(h)/3-(n/i) | c-(h)/3-(n/i)-0 || c | h | 3 | c-(c/t)(h)/3 | c-(c/t)(h)/3-1 || c | c/t | 1 | c-(c)/3(c/t) | c-(c)/3(c/t)-1 || co | c/d | 1 | co-(o)-(c/d) | co-(o)-(c/d)-1 || co | c/b | 1 | co-(o)-(c/b) | co-(o)-(c/b)-1 || co | h | 1 | co-(c/d)-(h) | co-(c/d)-(h)-1 || co | c | 1 | co-(c/b)-(c) | co-(c/b)-(c)-1 || co | h | 1 | co-(c/b)-(h) | co-(c/b)-(h)-1 || co | h | 1 | co-(co)(h) | co-(co)(h)-1 || co | o | 1 | co-(co)(o) | co-(co)(o)-1 || o | c/d | 1 | o-(co)-(c/d) | o-(co)-(c/d)-1 || o | h | 1 | o-(c/d)(h) | o-(c/d)(h)-1 || o | h | 1 | o-(c/t)(h) | o-(c/t)(h)-1 || co | c | 1 | co-(c/d)-(c) | co-(c/d)-(c)-1 || c | c/d | 2 | c-(h)-(c)-(c/d)2 | c-(h)-(c)-(c/d)2-2 || c | c | 3 | c-('no2')(c)/3 | c-('no2')(c)/3-1 || o | c | 1 | o-('no2')(c) | o-('no2')(c)-1 || n | co | 1 | n-(c/b)-(co) | n-(c/b)-(co)-1 || c | h | 3 | c-('so2')(h)/3 | c-('so2')(h)/3-1 || n | c | 2 | n-('so2')(c)/2 | n-('so2')(c)/2-1 || hg | i | 1 | hg-(c/b)-(i) | hg-(c/b)-(i)-1 || po | cl | 2 | po-(c)(cl)/2 | po-(c)(cl)/2-1 || c | h | 3 | c-('bo3')(h)/3 | c-('bo3')(h)/3-1 || b | f | 2 | b-(c/d)(f)/2 | b-(c/d)(f)/2-1 || s | c/b | 1 | s-(b)(c/b) | s-(b)(c/b)-1 || co | n | 1 | co-(c/d)-(n) | co-(c/d)-(n)-1 || c | 'so2' | 1 | c-(c/d)-(c)-('so2')-(h) | c-(c/d)-(c)-('so2')-(h)-2 || c | c | 1 | c-(c)-('cl')-(f)-(h) | c-(c)-('cl')-(f)-(h)-0 |+------------+----------------+-------+-------------------------+---------------------------+1000 rows in set (0.00 sec)GroupStandardEnthalpy
select * from GroupStandardEnthalpy where ElementName='c-(h)/3-(c)';
+-------------+------------------+-----------+---------------------+
| ElementName | StandardEnthalpy | Reference | Time |
+-------------+------------------+-----------+---------------------+
| c-(h)/3-(c) | -10.098 | Standard | 2011-03-18 15:04:46 |
+-------------+------------------+-----------+---------------------+
select * from GroupStandardEnthalpy;
+----------------------------------+------------------+-----------------+---------------------+| ElementName | StandardEnthalpy | Reference | Time |+----------------------------------+------------------+-----------------+---------------------+| bromine | 0 | ReWritten | 2009-11-17 10:54:57 || chlorine | 0 | ReWritten | 2009-11-17 10:54:57 || fluorine | 0 | ReWritten | 2009-11-17 10:54:57 || hydrogen | 0 | ReWritten | 2009-11-17 10:54:57 || iodine | 0 | ReWritten | 2009-11-17 10:54:57 || nitrogen | 0 | ReWritten | 2009-11-17 10:54:57 || oxygen | 0 | ReWritten | 2009-11-17 10:54:57 || hypochlorous acid | -22 | ReWritten | 2009-11-17 10:54:57 || dichlorine monoxide | 21 | ReWritten | 2009-11-17 10:54:57 || sulfur dichloride | -5.2 | ReWritten | 2009-11-17 10:54:57 || hypofluorous acid | -30 | ReWritten | 2009-11-17 10:54:57 || difluorine monoxide | -4.39 | ReWritten | 2009-11-17 10:54:57 || sulfur difluoride | -51.8 | ReWritten | 2009-11-17 10:54:57 || water | -57.8 | ReWritten | 2009-11-17 10:54:57 || hydrogen sulfide | -4.8 | ReWritten | 2009-11-17 10:54:57 || dinitrogen monoxide | 19.61 | ReWritten | 2009-11-17 10:54:57 || carbon dioxide | -94.05 | ReWritten | 2009-11-17 10:54:57 || carbon oxide sulfide | -33.1 | ReWritten | 2009-11-17 10:54:57 || disulfur dichloride | -4.4 | ReWritten | 2009-11-17 10:54:57 || nitrogen trifluoride | -31 | ReWritten | 2009-11-17 10:54:57 || hydrogren peroxide (GAZ) | -32.53 | ReWritten | 2009-11-17 10:54:57 || formyl fluoride | -90 | ReWritten | 2009-11-17 10:54:57 || formaldehyde | -27.7 | ReWritten | 2009-11-17 10:54:57 || difluoroacetylene | -100 | ReWritten | 2009-11-17 10:54:57 || acetylene (ethyne) | 54.19 | ReWritten | 2009-11-17 10:54:57 || cyanogen | 73.9 | ReWritten | 2009-11-17 10:54:57 || difluorodiamine | -15.6 | ReWritten | 2009-11-17 10:54:57 || tetrafluorohydrazine | -2 | ReWritten | 2009-11-17 10:54:57 || iodine pentafluoride | -196.35 | ReWritten | 2009-11-17 10:54:57 || phosphorus pentafluoride | -377.2 | ReWritten | 2009-11-17 10:54:57 || sulfur hexafluoride | -291.8 | ReWritten | 2009-11-17 10:54:57 || iodine heptafluoride | -224 | ReWritten | 2009-11-17 10:54:57 || nitric acid | -32.1 | ReWritten | 2009-11-17 10:54:57 || hydrazine | 22.79 | ReWritten | 2009-11-17 10:54:57 || methyl nitrate | -28.8 | ReWritten | 2009-11-17 10:54:57 || methanol | -48.08 | ReWritten | 2009-11-17 10:54:57 || hexachloroethane | -35.3 | ReWritten | 2009-11-17 10:54:57 || hexafluoroethane | -317 | ReWritten | 2009-11-17 10:54:57 || ethylene | 12.5 | ReWritten | 2009-11-17 10:54:57 || fluoroethane | -62.5 | ReWritten | 2009-11-17 10:54:57 || ethane | -20.24 | ReWritten | 2009-11-17 10:54:57 || dimethyl sulfone | -89.1 | ReWritten | 2009-11-17 10:54:57 || 4-methylthiazole | 26.79 | ReWritten | 2009-11-17 10:54:57 || phenol | -23.03 | StandardWorking | 2009-11-17 19:25:25 || benzene | 19.82 | StandardWorking | 2009-11-17 19:25:25 || nitrobenzene | 16.5 | StandardWorking | 2009-11-17 19:25:25 || iodobenzene | 38.85 | StandardWorking | 2009-11-17 19:25:25 || fluorobenzene | -27.86 | StandardWorking | 2009-11-17 19:25:25 || chlorobenzene | 12.39 | StandardWorking | 2009-11-17 19:25:25 || bromobenzene | 25.1 | StandardWorking | 2009-11-17 19:25:25 || p-benzoquinone | -28.3 | StandardWorking | 2009-11-17 19:25:25 || n-pentanethiol | -25.91 | StandardWorking | 2009-11-17 19:25:25 || tert-butyl methyl alcohol | -70 | StandardWorking | 2009-11-17 19:25:25 || n-pentane | -35 | StandardWorking | 2009-11-17 19:25:25 || iso-pentane | -36.92 | StandardWorking | 2009-11-17 19:25:25 || n-chloropentane | -41.8 | StandardWorking | 2009-11-17 19:25:25 || n-bromopentane | -30.87 | StandardWorking | 2009-11-17 19:25:25 || 3-pentanone | -61.82 | StandardWorking | 2009-11-17 19:25:25 || 2-pentene,trans | -7.59 | StandardWorking | 2009-11-17 19:25:25 || 2-pentene,cis | -6.71 | StandardWorking | 2009-11-17 19:25:25 || 2-methyl-1-butene | -8.68 | StandardWorking | 2009-11-17 19:25:25 || 1,3-pentadiene,trans | 18.1 | StandardWorking | 2009-11-17 19:25:25 || 1,3-pentadiene,cis | 19.77 | StandardWorking | 2009-11-17 19:25:25 || 2-methyl-1,3-butadiene | 18.1 | StandardWorking | 2009-11-17 19:25:25 || pyridine | 33.5 | StandardWorking | 2009-11-17 19:25:25 || n-butylamine | -22 | StandardWorking | 2009-11-17 19:25:25 || diethylamine | -17.3 | StandardWorking | 2009-11-17 19:25:25 || ethyl peroxide | -46.6 | StandardWorking | 2009-11-17 19:25:25 || oxyde de methyl et de n-propyl | -56.82 | StandardWorking | 2009-11-17 19:25:25 || diethyl ether (ether) | -60.28 | StandardWorking | 2009-11-17 19:25:25 || ter-butyl alcohol | -77.87 | StandardWorking | 2009-11-17 19:25:25 || sec-butyl alcohol | -69.86 | StandardWorking | 2009-11-17 19:25:25 || n-butane | -30.15 | StandardWorking | 2009-11-17 19:25:25 || n-nitrobutane | -34.4 | StandardWorking | 2009-11-17 19:25:25 || ethyl acetate | -105.86 | StandardWorking | 2009-11-17 19:25:25 || p-dioxane (1,4-dioxane) | -75.3 | StandardWorking | 2009-11-17 19:25:25 || tetrahydrofuran (THF) | -44.03 | StandardWorking | 2009-11-17 19:25:25 || 2-butanone | -56.97 | StandardWorking | 2009-11-17 19:25:25 || 2-methylpropene | -4.04 | StandardWorking | 2009-11-17 19:25:25 || 2-butene,trans | -2.67 | StandardWorking | 2009-11-17 19:25:25 || 2-butene,cis | -1.67 | StandardWorking | 2009-11-17 19:25:25 || 1-butene | -0.03 | StandardWorking | 2009-11-17 19:25:25 || n-butyronitrile | 8.14 | StandardWorking | 2009-11-17 19:25:25 || acetic anhydride | -137.6 | StandardWorking | 2009-11-17 19:25:25 || 2-butyne | 34.97 | StandardWorking | 2009-11-17 19:25:25 || 1-butyne | 39.48 | StandardWorking | 2009-11-17 19:25:25 || 1,3-butadiene | 26.33 | StandardWorking | 2009-11-17 19:25:25 || 1,2-butadiene | 38.77 | StandardWorking | 2009-11-17 19:25:25 || 1-buten-3-yne | 72.8 | StandardWorking | 2009-11-17 19:25:25 || 1,3-butadiyne | 113 | StandardWorking | 2009-11-17 19:25:25 || n-propyl alcohol | -61.55 | StandardWorking | 2009-11-17 19:25:25 || isopropyl alcohol | -65.15 | StandardWorking | 2009-11-17 19:25:25 || propane | -24.82 | StandardWorking | 2009-11-17 19:25:25 || iso-nitropropane | -33.5 | StandardWorking | 2009-11-17 19:25:25 || n-nitropropane | -29.8 | StandardWorking | 2009-11-17 19:25:25 || n-iodopropane | -7.3 | StandardWorking | 2009-11-17 19:25:24 || methyl acetate | -97.9 | StandardWorking | 2009-11-17 19:25:24 || propylene oxide | -22.17 | StandardWorking | 2009-11-17 19:25:24 || allyl alcohol | -31.55 | StandardWorking | 2009-11-17 19:25:24 || acetone | -52 | StandardWorking | 2009-11-17 19:25:24 || propylene (propene) | 4.88 | StandardWorking | 2009-11-17 19:25:24 || acrylic acid | -80.36 | StandardWorking | 2009-11-17 19:25:24 || propyne | 44.32 | StandardWorking | 2009-11-17 19:25:24 || cyclopropene | 66 | StandardWorking | 2009-11-17 19:25:24 || allene | 45.92 | StandardWorking | 2009-11-17 19:25:24 || s-triazine (1,3,5) | 51.9 | StandardWorking | 2009-11-17 19:25:24 || ethylamine | -11 | StandardWorking | 2009-11-17 19:25:24 || dimethyl sulfoxide | -34.6 | StandardWorking | 2009-11-17 19:25:24 || dimethyl ether (methyl ether) | -43.99 | StandardWorking | 2009-11-17 19:25:24 || ethanol | -56.12 | StandardWorking | 2009-11-17 19:25:24 || nitroethane | -24.2 | StandardWorking | 2009-11-17 19:25:24 || acetamide | -61.9 | StandardWorking | 2009-11-17 19:25:24 || methyl formate | -83.6 | StandardWorking | 2009-11-17 19:25:24 || acetic acid | -103.93 | StandardWorking | 2009-11-17 19:25:24 || acetaldehyde | -39.76 | StandardWorking | 2009-11-17 19:25:24 || 1,1-dichloroethane | -31.05 | StandardWorking | 2009-11-17 19:25:24 || acetonitrile | 22.7 | StandardWorking | 2009-11-17 19:25:24 || acetyl chloride | -58.3 | StandardWorking | 2009-11-17 19:25:24 || ketene | -11.4 | StandardWorking | 2009-11-17 19:25:24 || nitroglycerine (vapor) | -81.6 | StandardWorking | 2009-11-17 19:25:24 || methyl hydrazine | 22.6 | StandardWorking | 2009-11-17 19:25:24 || methyl hydroperoxide | -31.3 | StandardWorking | 2009-11-17 19:25:24 || urea | -58.7 | StandardWorking | 2009-11-17 19:25:24 || methane | -17.89 | StandardWorking | 2009-11-17 19:25:24 || nitromethane | -17.86 | StandardWorking | 2009-11-17 19:25:24 || methyl nitrite | -15.3 | StandardWorking | 2009-11-17 19:25:24 || formic acid | -90.49 | StandardWorking | 2009-11-17 19:25:24 || diazomethane | 71 | StandardWorking | 2009-11-17 19:25:24 || fluoroform | -166.8 | StandardWorking | 2009-11-17 19:25:24 || chloroform | -25 | StandardWorking | 2009-11-17 19:25:24 || carbon tetrafluoride | -223 | StandardWorking | 2009-11-17 19:25:24 || carbon tetrachloride | -24 | StandardWorking | 2009-11-17 19:25:24 || dichlorodifluoromethane | -115 | StandardWorking | 2009-11-17 19:25:24 || carbon tetrabromide | 12 | StandardWorking | 2009-11-17 19:25:24 || perchloric acid | 1.25 | StandardWorking | 2009-11-17 19:25:24 || chlorine pentafluoride | -57 | StandardWorking | 2009-11-17 19:25:24 || bromine pentafluoride | -102.5 | StandardWorking | 2009-11-17 19:25:24 || cis-difluorodiazine | 17.9 | StandardWorking | 2009-11-17 19:25:24 || trans-difluorodiazine | 19.4 | StandardWorking | 2009-11-17 19:25:24 || cyanic acid | -24 | StandardWorking | 2009-11-17 19:25:24 || isocyanic acid | -24.304 | StandardWorking | 2009-11-17 19:25:24 || carbonyl difluoride | -151.7 | StandardWorking | 2009-11-17 19:25:24 || carbonyl dichloride | -52.8 | StandardWorking | 2009-11-17 19:25:24 || ammonia | -10.97 | StandardWorking | 2009-11-17 19:25:24 || nitrous acid, trans | -18.84 | StandardWorking | 2009-11-17 19:25:24 || disulfur difluoride | -54.5 | StandardWorking | 2009-11-17 19:25:24 || nitryl fluoride | -26 | StandardWorking | 2009-11-17 19:25:24 || nitryl chloride | 2.9 | StandardWorking | 2009-11-17 19:25:24 || chlorine trifluoride | -38 | StandardWorking | 2009-11-17 19:25:24 || bromine trifluoride | -61.1 | StandardWorking | 2009-11-17 19:25:24 || carbonyl dibromide | -23.6 | StandardWorking | 2009-11-17 19:25:24 || hydrogen cyanide | 31.2 | StandardWorking | 2009-11-17 19:25:24 || cyanogen fluoride | -3 | StandardWorking | 2009-11-17 19:25:24 || cyanogen chloride | 33 | StandardWorking | 2009-11-17 19:25:24 || cyanogen bromide | 43.3 | StandardWorking | 2009-11-17 19:25:24 || nitrogen dioxide | 7.9 | StandardWorking | 2009-11-17 19:25:24 || nitrosyl fluoride | -15.7 | StandardWorking | 2009-11-17 19:25:24 || nitrosyl chloride | 12.4 | StandardWorking | 2009-11-17 19:25:24 || nitrosyl bromide | 19.6 | StandardWorking | 2009-11-17 19:25:24 || hypobromous acid | -19 | StandardWorking | 2009-11-17 19:25:24 || carbon monoxide | -26.42 | StandardWorking | 2009-11-17 19:25:24 || nitric oxide | 21.58 | StandardWorking | 2009-11-17 19:25:24 || hydrogen iodide | 6.3 | StandardWorking | 2009-11-17 19:25:24 || iodine monofluoride | -13.86 | StandardWorking | 2009-11-17 19:25:24 || hydrogen fluoride | -64.8 | StandardWorking | 2009-11-17 19:25:24 || chlorine monofluoride | -12.14 | StandardWorking | 2009-11-17 19:25:24 || hydrogen chloride | -22.06 | StandardWorking | 2009-11-17 19:25:24 || hydrogen bromide | -8.66 | StandardWorking | 2009-11-17 19:25:24 || bromine monofluoride | -14 | StandardWorking | 2009-11-17 19:25:24 || carbon (graphite) | 0 | StandardWorking | 2009-11-17 19:25:24 || fo(.) radical | 26 | StandardWorking | 2009-11-17 19:25:24 || trichloro | 18.5 | StandardWorking | 2009-11-17 19:25:24 || trifluoro | -111.1 | StandardWorking | 2009-11-17 19:25:24 || nf2 radical | 8.5 | StandardWorking | 2009-11-17 19:25:24 || oxygene atome | 59.6 | StandardWorking | 2009-11-17 19:25:24 || methyle | 34.3 | StandardWorking | 2009-11-17 19:25:24 || amino | 46.5 | StandardWorking | 2009-11-17 19:25:24 || hydroxy | 9.4 | StandardWorking | 2009-11-17 19:25:24 || hydrogene atome | 52.1 | StandardWorking | 2009-11-17 19:25:24 || c/b-(pn) | 2.3 | StandardBenson | 2009-11-17 13:11:42 || c/b-(po) | 2.3 | StandardBenson | 2009-11-17 13:11:42 || c/b-(p) | -1.8 | StandardBenson | 2009-11-17 13:11:42 || c-(pn)-(c)-(h)/2 | 19.4 | Standard | 2011-03-18 15:04:49 || c-(pn)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:49 || c-(po)(c)(h)/2 | -3.4 | Standard | 2011-03-18 15:04:48 || c-(po)(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || c-(p)(c)(h)/2 | -2.47 | Standard | 2011-03-18 15:04:48 || c-(p)(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || hg-(c/b)-(i) | 27.9 | Standard | 2011-03-18 15:04:48 || hg-(c/b)-(br) | 18.1 | Standard | 2011-03-18 15:04:48 || hg-(c/b)-(cl) | 9.9 | Standard | 2011-03-18 15:04:48 || hg-(c/b)/2 | 64.4 | Standard | 2011-03-18 15:04:48 || hg-(c)-(i) | 15.78 | Standard | 2011-03-18 15:04:48 || hg-(c)-(br) | 4.88 | Standard | 2011-03-18 15:04:48 || hg-(c)-(cl) | -2.82 | Standard | 2011-03-18 15:04:48 || hg-(c)/2 | 42.5 | Standard | 2011-03-18 15:04:48 || c/b-(hg) | -1.8 | StandardBenson | 2009-11-17 13:11:42 || c-(hg)-(c)/2-(h) | 3.62 | Standard | 2011-03-18 15:04:48 || c-(hg)-(c)-(h)/2 | -2.68 | Standard | 2011-03-18 15:04:48 || c-(hg)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || ge-(ge)-(c)/3 | 15.6 | Standard | 2011-03-18 15:04:48 || ge-(c)/4 | 36.2 | Standard | 2011-03-18 15:04:48 || c-(ge)-(c)-(h)/2 | -7.7 | Standard | 2011-03-18 15:04:48 || al-(c)/3 | 9.2 | Standard | 2011-03-18 15:04:48 || c-(al)-(c)-(h)/2 | 0.7 | Standard | 2011-03-18 15:04:48 || c-(al)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || cd-(c)/2 | 46.4 | Standard | 2011-03-18 15:04:48 || c-(cd)-(c)-(h)/2 | -0.3 | Standard | 2011-03-18 15:04:48 || c-(cd)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || v-(o)/4 | -87 | Standard | 2011-03-18 15:04:48 || o-(v)-(c) | -23.5 | Standard | 2011-03-18 15:04:48 || ti-(n)/4 | -123 | Standard | 2011-03-18 15:04:48 || n-(ti)-(c)/2 | 39.1 | Standard | 2011-03-18 15:04:48 || ti-(o)/4 | -157 | Standard | 2011-03-18 15:04:48 || o-(ti)-(c) | -23.5 | Standard | 2011-03-18 15:04:48 || zn-(c)/2 | 33.3 | Standard | 2011-03-18 15:04:48 || c-(zn)-(c)-(h)/2 | -1.78 | Standard | 2011-03-18 15:04:48 || c-(zn)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || cr-(o)/4 | -64 | Standard | 2011-03-18 15:04:48 || o-(cr)-(c) | -23.5 | Standard | 2011-03-18 15:04:48 || pb-(c)/4 | 72.9 | Standard | 2011-03-18 15:04:48 || c-(pb)-(c)-(h)/2 | -1.7 | Standard | 2011-03-18 15:04:48 || c-(pb)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || sn-(c)/3-(sn) | 26.4 | Standard | 2011-03-18 15:04:48 || sn-(c)/3-(c/b) | 34.93 | Standard | 2011-03-18 15:04:48 || sn-(c/b)/4 | 26.26 | Standard | 2011-03-18 15:04:48 || sn-(c)/3-(c/d) | 37.6 | Standard | 2011-03-18 15:04:48 || sn-(c/d)-(cl)/3 | -82.2 | Standard | 2011-03-18 15:04:48 || sn-(c/d)/2-(cl)/2 | -50.7 | Standard | 2011-03-18 15:04:48 || sn-(c/d)/3-(cl) | -8.2 | Standard | 2011-03-18 15:04:48 || sn-(c/d)/4 | 36.2 | Standard | 2011-03-18 15:04:48 || sn-(c)/3-(h) | 34.8 | Standard | 2011-03-18 15:04:48 || sn-(c)/3-(i) | 9.9 | Standard | 2011-03-18 15:04:48 || sn-(c)/3-(br) | -1.8 | Standard | 2011-03-18 15:04:48 || sn-(c)-(cl)/3 | -89.5 | Standard | 2011-03-18 15:04:48 || sn-(c)/2-(cl)/2 | -49.2 | Standard | 2011-03-18 15:04:48 || sn-(c)/3-(cl) | -9.8 | Standard | 2011-03-18 15:04:48 || sn-(c)/4 | 36.2 | Standard | 2011-03-18 15:04:48 || c/d-(sn)-(h) | 8.77 | Standard | 2011-03-18 15:04:48 || c/b-(sn) | 5.51 | StandardBenson | 2009-11-17 13:11:42 || c-(sn)-(c/b)-(h)/2 | -7.77 | Standard | 2011-03-18 15:04:48 || c-(sn)-(c)/3 | 8.16 | Standard | 2011-03-18 15:04:48 || c-(sn)-(c)/2-(h) | 3.38 | Standard | 2011-03-18 15:04:48 || c-(sn)-(c)-(h)/2 | -2.18 | Standard | 2011-03-18 15:04:48 || c-(sn)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || c-(s)/2-(c)/2 | 15.1 | Standard | 2011-03-18 15:04:48 || c/b-('so3h') | -130.9 | StandardBenson | 2009-11-17 13:11:42 || c-(h)(c)/2(so) | -3.345 | Standard | 2011-03-18 15:04:48 || c-(c)/3('so3') | -1.5 | Standard | 2011-03-18 15:04:48 || c-(h)(c)/2('so3') | -3.5 | Standard | 2011-03-18 15:04:48 || c-(c)/3('so4') | -4 | Standard | 2011-03-18 15:04:48 || c-(h)(c)/2('so4') | -6 | Standard | 2011-03-18 15:04:48 || c-(h)/2(c)('so3') | -8.5 | Standard | 2011-03-18 15:04:48 || 'so3'-(c)/2 | -94.8 | Standard | 2011-03-18 15:04:48 || c-(h)/3('so3') | -10.08 | Standard | 2011-03-18 15:04:48 || c-(h)/2(c)('so4') | -8.7 | Standard | 2011-03-18 15:04:48 || 'so4'-(c)/2 | -143.9 | Standard | 2011-03-18 15:04:48 || c-(h)/3('so4') | -10.08 | Standard | 2011-03-18 15:04:48 || so-(c/b)(c) | -17.204 | Standard | 2011-03-18 15:04:48 || c/b-('so2n3') | 74.6 | StandardBenson | 2009-11-17 13:11:42 || n-('so2')(c)/2 | -20.4 | Standard | 2011-03-18 15:04:48 || 'so2'-(n)/2 | -31.56 | Standard | 2011-03-18 15:04:48 || n-(so)-(c)/2 | 16 | Standard | 2011-03-18 15:04:48 || so-(n)/2 | -31.56 | Standard | 2011-03-18 15:04:48 || n-(s)-(c)/2 | 29.9 | Standard | 2011-03-18 15:04:48 || s-(s)-(n) | -4.9 | Standard | 2011-03-18 15:04:48 || n-(cs)-(h)/2 | 12.78 | Standard | 2011-03-18 15:04:48 || cs-(n)/2 | -31.56 | Standard | 2011-03-18 15:04:48 || c-(s)-(f)/3 | -150.3 | Standard | 2011-03-18 15:04:48 || s-(h)-(co) | -1.41 | Standard | 2011-03-18 15:04:48 || co-(s)-(c) | -31.56 | Standard | 2011-03-18 15:04:48 || 'so2'-(c/d)(c) | -75.699 | Standard | 2011-03-18 15:04:48 || 'so2'-('so2')(c/b) | -77.701 | Standard | 2011-03-18 15:04:48 || 'so2'-(c/b)/2 | -68.76 | Standard | 2011-03-18 15:04:48 || 'so2'-(c)(c/b) | -69.08 | Standard | 2011-03-18 15:04:48 || 'so2'-(c)/2 | -68.956 | Standard | 2011-03-18 15:04:48 || 'so2'-(c/d)/2 | -73.286 | Standard | 2011-03-18 15:04:48 || 'so2'-(c/d)(c/b) | -69.665 | Standard | 2011-03-18 15:04:48 || c/d-(c)-('so2') | 15.295 | Standard | 2011-03-18 15:04:48 || c/d-(h)-('so2') | 12.325 | Standard | 2011-03-18 15:04:48 || c/b-('so2') | 3.699 | StandardBenson | 2009-11-17 13:11:42 || c-(c/b)-('so2')(h)/2 | -7.121 | Standard | 2011-03-18 15:04:48 || c-(c/d)-('so2')(h)/2 | -7.047 | Standard | 2011-03-18 15:04:48 || c-(c)/3-('so2') | 0.36 | Standard | 2011-03-18 15:04:48 || c-(c)/2-('so2')(h) | -3.35 | Standard | 2011-03-18 15:04:48 || c-(c)-('so2')(h)/2 | -6.459 | Standard | 2011-03-18 15:04:48 || c-('so2')(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || so-(c/b)/2 | -14.877 | Standard | 2011-03-18 15:04:48 || so-(c)/2 | -15.957 | Standard | 2011-03-18 15:04:48 || c/b-(so) | 3.699 | StandardBenson | 2009-11-17 13:11:42 || c-(c/d)-(so)-(h)/2 | -6.585 | Standard | 2011-03-18 15:04:48 || c-(c)/3-(so) | 1.09 | Standard | 2011-03-18 15:04:48 || c-(c)-(so)-(h)/2 | -6.968 | Standard | 2011-03-18 15:04:48 || c-(so)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:48 || s-(s)/2 | 3.01 | Standard | 2011-03-18 15:04:48 || s-(s)-(c/b) | 13.728 | Standard | 2011-03-18 15:04:48 || s-(s)-(c) | 6.6 | Standard | 2011-03-18 15:04:48 || s-(c/b)/2 | 24.516 | Standard | 2011-03-18 15:04:48 || s-(c/b)-(c) | 18.21 | Standard | 2011-03-18 15:04:48 || s-(c/d)/2 | 24.516 | Standard | 2011-03-18 15:04:48 || s-(c)-(c/d) | 12.996 | Standard | 2011-03-18 15:04:48 || s-(c)/2 | 11.228 | Standard | 2011-03-18 15:04:48 || s-(c/b)-(h) | 11.493 | Standard | 2011-03-18 15:04:48 || s-(c)-(h) | 4.454 | Standard | 2011-03-18 15:04:48 || c/d-(c)-(s) | 10.93 | Standard | 2011-03-18 15:04:48 || c/d-(h)-(s) | 8.679 | Standard | 2011-03-18 15:04:48 || c/b-(s) | -1.135 | StandardBenson | 2009-11-17 13:11:42 || c-(c/d)-(h)/2-(s) | -6.196 | Standard | 2011-03-18 15:04:48 || c-(c/b)-(h)/2-(s) | -4.428 | Standard | 2011-03-18 15:04:48 || c-(c)/3-(s) | 3.23 | Standard | 2011-03-18 15:04:48 || c-(c)/2-(h)-(s) | -1.405 | Standard | 2011-03-18 15:04:48 || c-(c)-(h)/2-(s) | -5.536 | Standard | 2011-03-18 15:04:48 || c-(h)/3-(s) | -10.098 | Standard | 2011-03-18 15:04:48 || c-(cl)/3-(c/d) | -1.05 | Standard | 2011-03-18 15:04:48 || co-(c/b)(i) | -23.7 | Standard | 2011-03-18 15:04:48 || co-(c/b)(br) | -37.8 | Standard | 2011-03-18 15:04:48 || co-(c/b)(cl) | -52.3 | Standard | 2011-03-18 15:04:48 || c-(c/b)-(i)-(h)/2 | 1.747 | Standard | 2011-03-18 15:04:48 || c-(c/b)-(br)-(h)/2 | -7.047 | Standard | 2011-03-18 15:04:48 || c-(c/b)-(f)/3 | -165.302 | Standard | 2011-03-18 15:04:48 || c/b-(i) | 22.581 | StandardBenson | 2009-11-17 13:11:42 || c/b-(br) | 8.686 | StandardBenson | 2009-11-17 13:11:42 || c/b-(cl) | -4.069 | StandardBenson | 2009-11-17 13:11:42 || c/b-(f) | -43.312 | StandardBenson | 2009-11-17 13:11:42 || c/t-(i) | 33.8 | Standard | 2011-03-18 15:04:48 || c/t-(br) | 23.6 | Standard | 2011-03-18 15:04:48 || c/t-(cl) | 17.8 | Standard | 2011-03-18 15:04:48 || c/d-(i)-(h) | 24.5 | Standard | 2011-03-18 15:04:48 || c/d-(br)-(h) | 12.172 | Standard | 2011-03-18 15:04:48 || c/d-(cl)-(h) | 1.044 | Standard | 2011-03-18 15:04:48 || c/d-(f)-(h) | -39.455 | Standard | 2011-03-18 15:04:48 || c/d-(cl)-(br) | 6.5 | Standard | 2011-03-18 15:04:48 || c/d-(f)-(br) | -31.3 | Standard | 2011-03-18 15:04:48 || c/d-(f)-(cl) | -56.177 | Standard | 2011-03-18 15:04:48 || c/d-(br)/2 | 7.5 | Standard | 2011-03-18 15:04:48 || c/d-(cl)/2 | -2.75 | Standard | 2011-03-18 15:04:48 || c/d-(f)/2 | -78.829 | Standard | 2011-03-18 15:04:48 || c/d-(c)(cl) | -1.209 | Standard | 2011-03-18 15:04:48 || c-(i)(o)(h)/2 | 3.8 | Standard | 2011-03-18 15:04:48 || c-(cl)-(c)-(o)-(h) | -21.6 | Standard | 2011-03-18 15:04:48 || n-(f)/2-(c) | -7.8 | Standard | 2011-03-18 15:04:48 || c-(cl)-(br)-(h)-(c) | -4.409 | Standard | 2011-03-18 15:04:48 || c-(i)/2(c)(h) | 26 | Standard | 2011-03-18 15:04:47 || c-(i)-(c)/3 | 16.358 | Standard | 2011-03-18 15:04:47 || c-(i)-(h)-(c)/2 | 10.5 | Standard | 2011-03-18 15:04:47 || c-(i)-(h)/2-(c) | 8.014 | Standard | 2011-03-18 15:04:47 || c-(br)-(c)/3 | 1.735 | Standard | 2011-03-18 15:04:47 || c-(br)-(h)-(c)/2 | -2.569 | Standard | 2011-03-18 15:04:47 || c-(br)-(h)/2-(c) | -5.204 | Standard | 2011-03-18 15:04:47 || c-(br)/3-(c) | 3.9 | Standard | 2011-03-18 15:04:47 || c-(cl)-(c)/3 | -10.442 | Standard | 2011-03-18 15:04:47 || c-(cl)-(h)-(c)/2 | -13.288 | Standard | 2011-03-18 15:04:47 || c-(cl)/2-(c)/2 | -19.011 | Standard | 2011-03-18 15:04:47 || c-(cl)-(h)/2-(c) | -16.595 | Standard | 2011-03-18 15:04:47 || c-(cl)/2-(h)-(c) | -18.9 | Standard | 2011-03-18 15:04:47 || c-(cl)/3-(c) | -19.589 | Standard | 2011-03-18 15:04:47 || c-(f)/2-(cl)-(c) | -110.562 | Standard | 2011-03-18 15:04:47 || c-(f)-(c)/3 | -48.5 | Standard | 2011-03-18 15:04:47 || c-(f)-(h)-(c)/2 | -48.855 | Standard | 2011-03-18 15:04:47 || c-(f)/2-(c)/2 | -98.301 | Standard | 2011-03-18 15:04:47 || c-(f)-(h)/2-(c) | -52.836 | Standard | 2011-03-18 15:04:47 || c-(f)/2-(h)-(c) | -108.66 | Standard | 2011-03-18 15:04:47 || c-(f)/3-(c) | -161.006 | Standard | 2011-03-18 15:04:47 || n-(c/b)-(co) | -19.5 | Standard | 2011-03-18 15:04:47 || c-(n)-(c)/2-(co) | -1.1 | Standard | 2011-03-18 15:04:47 || c/d-(c)('no2') | 4.4 | Standard | 2011-03-18 15:04:47 || c-(c)('no2')/3 | -5 | Standard | 2011-03-18 15:04:47 || c-(c)/2-('no2')/2 | -6.81 | Standard | 2011-03-18 15:04:47 || c/b-(no) | 5.137 | StandardBenson | 2009-11-17 13:11:42 || o-('no2')(c) | -19.047 | Standard | 2011-03-18 15:04:47 || o-(no)-(c) | -5.79 | Standard | 2011-03-18 15:04:47 || c-('no2')/2(c)-(h) | -8.793 | Standard | 2011-03-18 15:04:47 || c-('no2')(c)/3 | -8.757 | Standard | 2011-03-18 15:04:47 || c-('no2')(c)/2-(h) | -12.664 | Standard | 2011-03-18 15:04:47 || c-('no2')(c)-(h)/2 | -14.456 | Standard | 2011-03-18 15:04:47 || c/t-(cn) | 63.226 | Standard | 2011-03-18 15:04:47 || c/b-(cn) | 36.081 | StandardBenson | 2009-11-17 13:11:42 || c/d-('no2')(h) | 7.1 | Standard | 2011-03-18 15:04:47 || c/d-(cn)/2 | 34.1 | Standard | 2011-03-18 15:04:47 || c/d-(cn)-(h) | 35.042 | Standard | 2011-03-18 15:04:47 || c-(cn)/2-(c)/2 | 19.6 | Standard | 2011-03-18 15:04:47 || c-(cn)-(c)/3 | 32.965 | Standard | 2011-03-18 15:04:47 || c-(cn)-(c)/2-(h) | 27.121 | Standard | 2011-03-18 15:04:47 || c-(cn)-(c)-(h)/2 | 22.585 | Standard | 2011-03-18 15:04:47 || n-(co)/2(c/b) | 2.179 | StandardBenson | 2009-11-17 13:11:42 || n-(co)/2-(c) | -2.781 | Standard | 2011-03-18 15:04:47 || n-(co)/2-(h) | -21.744 | Standard | 2011-03-18 15:04:47 || n-(co)-(c/b)-(h) | -4.98 | Standard | 2011-03-18 15:04:47 || n-(co)-(c)/2 | 10.753 | Standard | 2011-03-18 15:04:47 || n-(co)-(c)-(h) | -4.4 | Standard | 2011-03-18 15:04:47 || n-(co)-(h)/2 | -14.9 | Standard | 2011-03-18 15:04:47 || co-(n)-(c) | -31.842 | Standard | 2011-03-18 15:04:47 || co-(n)-(h) | -29.723 | Standard | 2011-03-18 15:04:47 || n/a-(n) | 23 | Standard | 2011-03-18 15:04:47 || c/b-('no2') | -0.346 | StandardBenson | 2009-11-17 13:11:42 || c/b-(n) | -0.311 | StandardBenson | 2009-11-17 13:11:42 || n-(c/b)/2-(h) | 19.964 | Standard | 2011-03-18 15:04:47 || n-(c/b)-(c)/2 | 30.203 | Standard | 2011-03-18 15:04:47 || n-(c/b)-(c)-(h) | 14.098 | Standard | 2011-03-18 15:04:47 || n-(c/b)-(h)/2 | 4.6 | Standard | 2011-03-18 15:04:47 || n/a-(c) | 26.165 | Standard | 2011-03-18 15:04:47 || n/a-(h) | 25.1 | Standard | 2011-03-18 15:04:47 || n/i-(c/b) | 16.487 | Standard | 2011-03-18 15:04:47 || n/i-(c) | 19.465 | Standard | 2011-03-18 15:04:47 || n/i-(h) | 16.3 | Standard | 2011-03-18 15:04:47 || n-(n)-(c/b)-(h) | 20.908 | Standard | 2011-03-18 15:04:47 || n-(n)-(c)/2 | 28.843 | Standard | 2011-03-18 15:04:47 || n-(n)-(c)-(h) | 21.305 | Standard | 2011-03-18 15:04:47 || n-(n)-(h)/2 | 11.4 | Standard | 2011-03-18 15:04:47 || n-(c)/3 | 27.838 | Standard | 2011-03-18 15:04:47 || n-(c)/2-(h) | 16.141 | Standard | 2011-03-18 15:04:47 || n-(c)-(h)/2 | 4.8 | Standard | 2011-03-18 15:04:47 || c-(n/i)(c)(h) | 10.1 | Standard | 2011-03-18 15:04:47 || c-(n)-(c)/3 | 0.069 | Standard | 2011-03-18 15:04:47 || c-(n)-(c)/2-(h) | -3.99 | Standard | 2011-03-18 15:04:47 || c-(n)-(c)-(h)/2 | -6.762 | Standard | 2011-03-18 15:04:47 || c-(n)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:47 || c-(c)-(h)-(o)-(c/b) | 0 | StandardBenson | 2009-11-17 13:11:42 || c-(c/d)-(h)-(o)-(c/b) | -6 | Standard | 2011-03-18 15:04:47 || c-(h)-(c/d)2-(o) | -6.65 | Standard | 2011-03-18 15:04:47 || c-(h)-(c)-(c/d)-(co) | -4.13 | StandardBenson | 2009-11-17 13:11:42 || o-(o)-(c/b) | -5 | Standard | 2011-03-18 15:04:47 || c-(h)-(c)-(c/d)-(c/t) | -1.44 | Standard | 2011-03-18 15:04:47 || c-(h)-(c)-(c/d)2 | -1.2 | Standard | 2011-03-18 15:04:47 || c-(o)/2-(h)-(co) | -16.3 | Standard | 2011-03-18 15:04:47 || c-(c)-(o)/2-(co) | -19 | Standard | 2011-03-18 15:04:47 || c-(h)/2-(o)-(co) | -6.94 | Standard | 2011-03-18 15:04:47 || c-(o)/3-(c/d) | -25.4 | Standard | 2011-03-18 15:04:47 || c-(o)/3-(c) | -27.333 | Standard | 2011-03-18 15:04:49 || c-(o)/3-(h) | -27.8 | Standard | 2011-03-18 15:04:47 || c-(o)-(co)-(c)-(h) | -6 | Standard | 2011-03-18 15:04:47 || c-(o)/2-(c/d)-(c) | -17 | Standard | 2011-03-18 15:04:47 || c-(o)/2-(c/d)-(h) | -14.7 | Standard | 2011-03-18 15:04:47 || c-(c)/2-(o)-(c/d) | -6.6 | Standard | 2011-03-18 15:04:47 || c-(c)-(o)-(c/d)-(h) | -6 | Standard | 2011-03-18 15:04:47 || o-(o)-(c/d) | -4.9 | Standard | 2011-03-18 15:04:47 || c-(co)-(c/d)-(h)/2 | -4.05 | Standard | 2011-03-18 15:04:47 || co-(c/d)-(c) | -27.7 | Standard | 2011-03-18 15:04:47 || co-(o)/2 | -26.734 | Standard | 2011-03-18 15:04:47 || co-(c/b)(co) | -26.8 | Standard | 2011-03-18 15:04:47 || co-(c/t)(h) | -29.1 | Standard | 2011-03-18 15:04:47 || c-(co)/2(c)(h) | -5.4 | Standard | 2011-03-18 15:04:47 || c-(co)(c/b)(h)/2 | -3.871 | StandardBenson | 2009-11-17 13:11:42 || c-(co)(c/t)(h)/2 | -6.088 | Standard | 2011-03-18 15:04:47 || o-(c/t)(h) | -37.9 | Standard | 2011-03-18 15:04:47 || o-(c/d)(h) | -44.5 | Standard | 2011-03-18 15:04:47 || c-(o)(c/t)(h)/2 | -6.5 | Standard | 2011-03-18 15:04:47 || c-(o)-(h)/3 | -10.08 | Standard | 2011-03-18 15:04:47 || c-(o)-(c)-(h)/2 | -7.861 | Standard | 2011-03-18 15:04:47 || c-(o)-(c)/2-(h) | -7.2 | Standard | 2011-03-18 15:04:47 || c-(o)-(c)/3 | -6.6 | Standard | 2011-03-18 15:04:47 || c-(o)-(c/d)-(h)/2 | -6.569 | Standard | 2011-03-18 15:04:47 || c-(o)(c/b)-(h)/2 | -8.1 | StandardBenson | 2009-11-17 13:11:42 || c-(o)/2-(h)/2 | -14.867 | Standard | 2011-03-18 15:04:47 || c-(o)/2-(c)-(h) | -13.806 | Standard | 2011-03-18 15:04:47 || c-(o)/2-(c)/2 | -12.798 | Standard | 2011-03-18 15:04:47 || c-(co)-(h)/3 | -10.098 | Standard | 2011-03-18 15:04:47 || c-(co)-(c)/3 | 5.718 | Standard | 2011-03-18 15:04:47 || c-(co)-(c)-(h)/2 | -5.219 | Standard | 2011-03-18 15:04:47 || c-(co)-(c)/2-(h) | -0.06 | Standard | 2011-03-18 15:04:47 || c-(co)/2-(h)/2 | -7.6 | Standard | 2011-03-18 15:04:47 || c/b-(o) | -1.135 | StandardBenson | 2009-11-17 13:11:42 || c/b-(co) | 3.7 | StandardBenson | 2009-11-17 13:11:42 || c/d-(o)-(h) | 8.679 | Standard | 2011-03-18 15:04:46 || c/d-(o)-(c) | 10.547 | Standard | 2011-03-18 15:04:46 || c/d-(o)-(c/d) | 6.757 | Standard | 2011-03-18 15:04:46 || c/d-(co)-(h) | 7.718 | Standard | 2011-03-18 15:04:46 || c/d-(co)-(c) | 7.5 | Standard | 2011-03-18 15:04:46 || c/d-(co)-(o) | 11.6 | Standard | 2011-03-18 15:04:46 || o-(c)-(h) | -38.072 | Standard | 2011-03-18 15:04:46 || o-(c)/2 | -24.234 | Standard | 2011-03-18 15:04:46 || o-(c/b)-(h) | -38.303 | Standard | 2011-03-18 15:04:46 || o-(c/b)-(c) | -22.115 | Standard | 2011-03-18 15:04:46 || o-(c/b)/2 | -18.557 | Standard | 2011-03-18 15:04:46 || o-(c/d)-(c) | -30.903 | Standard | 2011-03-18 15:04:46 || o-(c/d)/2 | -33.283 | Standard | 2011-03-18 15:04:46 || o-(o)-(h) | -17.266 | Standard | 2011-03-18 15:04:46 || o-(o)/2 | 14.7 | Standard | 2011-03-18 15:04:46 || o-(o)-(c) | -5.1 | Standard | 2011-03-18 15:04:46 || o-(co)-(h) | -58.136 | Standard | 2011-03-18 15:04:46 || o-(co)-(c) | -45.13 | Standard | 2011-03-18 15:04:46 || o-(co)-(c/d) | -47.319 | Standard | 2011-03-18 15:04:46 || o-(co)-(o) | -19 | Standard | 2011-03-18 15:04:46 || o-(co)/2 | -46.5 | Standard | 2011-03-18 15:04:46 || o-(c/b)(co) | -39.904 | Standard | 2011-03-18 15:04:46 || co-(co)(o) | -29.57 | Standard | 2011-03-18 15:04:46 || co-(co)(h) | -25.3 | Standard | 2011-03-18 15:04:46 || co-(c)-(h) | -29.723 | Standard | 2011-03-18 15:04:46 || co-(c)/2 | -31.701 | Standard | 2011-03-18 15:04:46 || co-(c/b)-(h) | -28.996 | Standard | 2011-03-18 15:04:46 || co-(c/b)-(c) | -35.56 | Standard | 2011-03-18 15:04:46 || co-(c/b)/2 | -26.284 | Standard | 2011-03-18 15:04:46 || co-(c/d)-(h) | -30.337 | Standard | 2011-03-18 15:04:46 || co-(o)-(h) | -29.723 | Standard | 2011-03-18 15:04:46 || co-(o)-(c) | -32.793 | Standard | 2011-03-18 15:04:46 || co-(o)-(c/b) | -29.869 | Standard | 2011-03-18 15:04:46 || co-(o)-(c/d) | -32.671 | Standard | 2011-03-18 15:04:46 || co-(co)-(c) | -28.982 | Standard | 2011-03-18 15:04:46 || c-(c/b)-(c/d)-(c)-(h) | -4.45 | Standard | 2011-03-18 15:04:46 || c/bf-(c/bf)/3 | 1.5 | Standard | 2011-03-18 15:04:46 || c/bf-(c/bf)/2(c/b) | 3.7 | StandardBenson | 2009-11-17 13:11:42 || c/bf-(c/bf)(c/b)/2 | 4.8 | StandardBenson | 2009-11-17 13:11:42 || c-(c)/3(c/t) | 4.59 | Standard | 2011-03-18 15:04:46 || c/t-(c/t) | 28.855 | Standard | 2011-03-18 15:04:46 || c/b-(c/b) | 5.176 | StandardBenson | 2009-11-17 13:11:41 || c/b-(c/t) | 5.775 | StandardBenson | 2009-11-17 13:11:41 || c/b-(c/d) | 5.775 | StandardBenson | 2009-11-17 13:11:41 || c/b-(c) | 5.649 | StandardBenson | 2009-11-17 13:11:41 || c/b-(h) | 3.3 | StandardBenson | 2009-11-17 13:11:41 || c/t-(c/b) | 28.855 | Standard | 2011-03-18 15:04:46 || c/t-(c/d) | 29.013 | Standard | 2011-03-18 15:04:46 || c/t-(c) | 27.503 | Standard | 2011-03-18 15:04:46 || c/t-(h) | 27.121 | Standard | 2011-03-18 15:04:46 || c-(c/b)-(c)/3 | 4.368 | Standard | 2011-03-18 15:04:46 || c-(c/d)-(c)/3 | 5.288 | Standard | 2011-03-18 15:04:46 || c-(c/b)-(c)/2-(h) | -1.08 | Standard | 2011-03-18 15:04:46 || c-(c/t)-(c)/2-(h) | -0.755 | Standard | 2011-03-18 15:04:46 || c-(c/d)-(c)/2-(h) | -0.389 | Standard | 2011-03-18 15:04:46 || c-(c/b)-(c)-(h)/2 | -5.099 | Standard | 2011-03-18 15:04:46 || c-(c/t)-(c)-(h)/2 | -4.707 | Standard | 2011-03-18 15:04:46 || c-(c/d)-(c/b)-(h)/2 | -4.29 | Standard | 2011-03-18 15:04:46 || c-(c/d)/2-(h)/2 | -4.521 | Standard | 2011-03-18 15:04:46 || c-(c/d)-(c)-(h)/2 | -4.989 | Standard | 2011-03-18 15:04:46 || c/d-(c/d)/2 | 4.6 | Standard | 2011-03-18 15:04:46 || c/d-(c/b)/2 | 7.857 | Standard | 2011-03-18 15:04:46 || c/d-(c/t)-(h) | 6.757 | Standard | 2011-03-18 15:04:46 || c/d-(c/b)-(c) | 9.068 | Standard | 2011-03-18 15:04:46 || c/d-(c/b)-(h) | 6.757 | Standard | 2011-03-18 15:04:46 || c/d-(c/d)-(c) | 8.789 | Standard | 2011-03-18 15:04:46 || c/d-(c/d)-(h) | 6.757 | Standard | 2011-03-18 15:04:46 || c/d-(c)/2 | 10.547 | Standard | 2011-03-18 15:04:46 || c/d-(h)-(c) | 8.679 | Standard | 2011-03-18 15:04:46 || c/d-(h)/2 | 6.289 | Standard | 2011-03-18 15:04:46 || c-(c)/4 | 4.59 | Standard | 2011-03-18 15:04:46 || c-(h)-(c)/3 | -0.28 | Standard | 2011-03-18 15:04:46 || c-(h)/2-(c)/2 | -4.93 | Standard | 2011-03-18 15:04:46 || c-(c/t)(h)/3 | -10.08 | Standard | 2011-03-18 15:04:46 || c-(c/d)(h)/3 | -10.08 | Standard | 2011-03-18 15:04:46 || c-(c/b)(h)/3 | -10 | Standard | 2011-03-18 15:04:46 || c-(h)/3-(c) | -10.098 | Standard | 2011-03-18 15:04:46 || p-(c)/3 | 7 | Standard | 2011-03-18 15:04:49 || p-(c)(cl)/2 | -50.3 | Standard | 2011-03-18 15:04:49 || p-(c/b)/3 | 28.3 | Standard | 2011-03-18 15:04:49 || p-(o)/3 | -66.8 | Standard | 2011-03-18 15:04:49 || p-(n)/3 | -66.8 | Standard | 2011-03-18 15:04:49 || po-(c)/3 | -72.8 | Standard | 2011-03-18 15:04:49 || po-(c)(f)/2 | 0 | Standard | 2011-03-18 15:04:49 || po-(c)(cl)(f) | 0 | Standard | 2011-03-18 15:04:49 || po-(c)(cl)/2 | -123 | Standard | 2011-03-18 15:04:49 || po-(c)(o)(cl) | -112.6 | Standard | 2011-03-18 15:04:49 || po-(c)(o)/2 | -99.5 | Standard | 2011-03-18 15:04:49 || po-(o)/3 | -104.6 | Standard | 2011-03-18 15:04:49 || po-(o)/2(f) | -167.7 | Standard | 2011-03-18 15:04:49 || po-(c/b)/3 | -52.9 | Standard | 2011-03-18 15:04:49 || po-(n)/3 | -104.6 | Standard | 2011-03-18 15:04:49 || o-(c)(p) | -23.5 | Standard | 2011-03-18 15:04:49 || o-(h)(p) | -58.7 | Standard | 2011-03-18 15:04:49 || o-(c)(po) | -40.7 | Standard | 2011-03-18 15:04:49 || o-(h)(po) | -65 | Standard | 2011-03-18 15:04:49 || o-(po)/2 | -54.5 | Standard | 2011-03-18 15:04:49 || o-(pn)-(c) | -40.7 | Standard | 2011-03-18 15:04:49 || n-(p)(c)/2 | 32.2 | Standard | 2011-03-18 15:04:49 || n-(po)(c)/2 | 17.8 | Standard | 2011-03-18 15:04:49 || pn-(c)/4 | 0.5 | Standard | 2011-03-18 15:04:49 || pn-(c/b)/3-(c) | -25.7 | Standard | 2011-03-18 15:04:49 || pn-(pn)/2-(c)/2 | -15.5 | Standard | 2011-03-18 15:04:49 || pn-(pn)/2-(c/b)/2 | -22.9 | Standard | 2011-03-18 15:04:49 || pn-(pn)/2-(cl)/2 | -58.2 | Standard | 2011-03-18 15:04:49 || pn-(pn)/2(o)/2 | -43.4 | Standard | 2011-03-18 15:04:49 || c-(b)(h)/3 | -10.08 | Standard | 2011-03-18 15:04:49 || c-(b)(c)(h)/2 | -2.22 | Standard | 2011-03-18 15:04:49 || c-(b)(c)/2(h) | 1.1 | Standard | 2011-03-18 15:04:49 || c-('bo3')(h)/3 | -10.08 | Standard | 2011-03-18 15:04:49 || c-('bo3')(c)(h)/2 | -2.2 | Standard | 2011-03-18 15:04:49 || c/d-(b)(h) | 15.6 | Standard | 2011-03-18 15:04:49 || b-(c)/3 | 0.9 | Standard | 2011-03-18 15:04:49 || b-(c)(f)/2 | -187.9 | Standard | 2011-03-18 15:04:49 || b-(c)/2(cl) | -42.7 | Standard | 2011-03-18 15:04:49 || b-(c)/2(br) | -26.9 | Standard | 2011-03-18 15:04:49 || b-(c)/2(i) | -8.9 | Standard | 2011-03-18 15:04:49 || b-(c)/2(o) | 29.3 | Standard | 2011-03-18 15:04:49 || b-(c/d)(f)/2 | -192.9 | Standard | 2011-03-18 15:04:49 || b-(o)/3 | 24.4 | Standard | 2011-03-18 15:04:49 || b-(o)/2(cl) | -19.7 | Standard | 2011-03-18 15:04:49 || b-(o)(cl)/2 | -61.2 | Standard | 2011-03-18 15:04:49 || b-(o)/2(h) | 19.9 | Standard | 2011-03-18 15:04:49 || b-(n)/3 | 24.4 | Standard | 2011-03-18 15:04:49 || b-(n)/2(cl) | -23.8 | Standard | 2011-03-18 15:04:49 || b-(n)(cl)/2 | -67.9 | Standard | 2011-03-18 15:04:49 || 'bo3'-(c)/3 | -208.7 | Standard | 2011-03-18 15:04:49 || o-(b)(h) | -115.5 | Standard | 2011-03-18 15:04:49 || o-(b)(c) | -69.43 | Standard | 2011-03-18 15:04:49 || n-(b)(c)/2 | -9.93 | Standard | 2011-03-18 15:04:49 || b-(s)/3 | 24.5 | Standard | 2011-03-18 15:04:49 || s-(b)(c) | -14.5 | Standard | 2011-03-18 15:04:49 || s-(b)(c/b) | -7.8 | Standard | 2011-03-18 15:04:49 || c/b-(pb) | 5.51 | StandardBenson | 2009-11-17 13:11:42 || pb-(c/b)/4 | 81.6 | Standard | 2011-03-18 15:04:49 || c-(h)/3(si) | -10.08 | Standard | 2011-03-18 15:04:49 || si-(c)/4 | -28.2 | Standard | 2011-03-18 15:04:49 || si-(c)(h)/3 | -2 | Standard | 2011-03-18 15:04:49 || si-(c/b)/4 | -145.3 | Standard | 2011-03-18 15:04:49 || c/b-(si) | 5.51 | StandardBenson | 2009-11-17 13:11:42 || c-(h)/2(c)(si) | 7.63 | Standard | 2011-03-18 15:04:49 || c-(c/d)/2-(c)-(h) | -0.28 | Standard | 2011-03-18 15:04:49 || c-(h)/2-(c/t)/2 | -9.83 | Standard | 2011-03-18 15:04:49 || c-(h)/2-(c/b)/2 | -11.094 | Standard | 2011-03-18 15:04:49 || c-(h)-(c/b)/3 | -1.639 | Standard | 2011-03-18 15:04:49 || c-(c/b)/4 | 6.461 | Standard | 2011-03-18 15:04:49 || c-(h)-(o)-(co)-(c) | 30.258 | Standard | 2011-03-18 15:04:49 || c-(o)/4 | -36.43 | Standard | 2011-03-18 15:04:49 || c-(h)-(o)/3 | -27.233 | Standard | 2011-03-18 15:04:49 || c-(c)/2-(o)-(c/b) | 3.656 | Standard | 2011-03-18 15:04:49 || c-(h)/2-(n)/2 | -7.168 | Standard | 2011-03-18 15:04:49 || c-(h)/2-(c/b)-(n) | -5.768 | Standard | 2011-03-18 15:04:49 || n-(h)-(c/d)/2 | 19.964 | Standard | 2011-03-18 15:04:49 || n-(c)-(c/d)/2 | 28.827 | Standard | 2011-03-18 15:04:49 || n-(c)-(c/b)/2 | 28.779 | Standard | 2011-03-18 15:04:49 || n-(c/b)/3 | 29.427 | Standard | 2011-03-18 15:04:49 || n/a-(c/b) | 26.165 | Standard | 2011-03-18 15:04:49 || c-(h)/2-(c)-(n/a) | -4.946 | Standard | 2011-03-18 15:04:49 || c-(h)-(c)/2-(n/a) | -0.636 | Standard | 2011-03-18 15:04:49 || c-(c)/3-(n/a) | 2.748 | Standard | 2011-03-18 15:04:49 || c/d-(h)-(n) | -3.823 | Standard | 2011-03-18 15:04:49 || c/d-(c)-(n) | -1.372 | Standard | 2011-03-18 15:04:49 || c/b-(n/a) | 5.388 | StandardBenson | 2009-11-17 13:11:42 || c/b-(h)-(n/i)/2 | 1.505 | Standard | 2011-03-18 15:04:49 || co-(c/d)-(n) | -41.051 | Standard | 2011-03-18 15:04:49 || co-(n)/2 | -26.523 | Standard | 2011-03-18 15:04:49 || c-(c/d)-(cn)-(h)/2 | 22.774 | Standard | 2011-03-18 15:04:49 || c-(c/b)-('no2')-(h)/2 | -14.815 | Standard | 2011-03-18 15:04:49 || c-(co)-(n)-(c)-(h) | -4.468 | Standard | 2011-03-18 15:04:49 || c-(co)-(n)-(h)/2 | -0.741 | Standard | 2011-03-18 15:04:49 || n-(c)-('no2')/2 | 23.967 | Standard | 2011-03-18 15:04:49 || n-(c)-(c/b)-('no2') | 43.728 | Standard | 2011-03-18 15:04:49 || n-(c)/2-(no) | 21.505 | Standard | 2011-03-18 15:04:49 || n-(c)/2-('no2') | 21.027 | Standard | 2011-03-18 15:04:49 || c-(s)/2-(h)/2 | -5.998 | Standard | 2011-03-18 15:04:49 || s-(c/d)-(h) | 6.098 | Standard | 2011-03-18 15:04:49 || s-(s)-(h) | 1.9 | Standard | 2011-03-18 15:04:49 || o-(so)-(h) | -37.897 | Standard | 2011-03-18 15:04:49 || o-(so)-(c) | -22.127 | Standard | 2011-03-18 15:04:49 || so-(o)/2 | -50.896 | Standard | 2011-03-18 15:04:49 || c-(c/d)-(c)-('so2')-(h) | -17.202 | Standard | 2011-03-18 15:04:49 || c-(c/t)-('so2')-(h)/2 | 3.909 | Standard | 2011-03-18 15:04:49 || c/t-('so2') | 42.318 | Standard | 2011-03-18 15:04:49 || 'so2'-(o)/2 | -99.713 | Standard | 2011-03-18 15:04:49 || 'so2'-(c/t)-(c/b) | -70.8 | Standard | 2011-03-18 15:04:49 || o-('so2')-(h) | -37.897 | Standard | 2011-03-18 15:04:49 || o-('so2')-(c) | -21.84 | Standard | 2011-03-18 15:04:49 || c-(c)-('cl')-(f)-(h) | -64.789 | Standard | 2011-03-18 15:04:49 || c-(c)-(cl)/2-(f) | -77.07 | Standard | 2011-03-18 15:04:49 || c-(c)-(br)-(f)/2 | -94.277 | Standard | 2011-03-18 15:04:49 || c-(h)/2-(co)-(cl) | -10.576 | Standard | 2011-03-18 15:04:49 || c-(h)-(co)-(cl)/2 | -9.654 | Standard | 2011-03-18 15:04:49 || co-(c)-(f) | -90.762 | Standard | 2011-03-18 15:04:49 || c-(c/b)-(cl)-(h)/2 | -17.632 | Standard | 2011-03-18 15:04:49 || co-(c)-(cl) | -47.919 | Standard | 2011-03-18 15:04:49 || co-(c)-(br) | -35.493 | Standard | 2011-03-18 15:04:49 || co-(c)-(i) | -20.057 | Standard | 2011-03-18 15:04:49 || c-(co)-(cl)-(c)-(h) | -9.529 | Standard | 2011-03-18 15:04:49 || c-(h)/3-(n/a) | -10.098 | Standard | 2011-03-18 15:04:49 || c-(h)/3-(n/i) | -10.098 | Standard | 2011-03-18 15:04:49 || benzenethiol | 26.66 | StandardWorking | 2009-11-17 19:25:25 || aniline (benzenamine) | 20.76 | StandardWorking | 2009-11-17 19:25:25 || cyclohexene | -1.28 | StandardWorking | 2009-11-17 19:25:25 || cyclohexanone | -55 | StandardWorking | 2009-11-17 19:25:25 || 2,3-dimethyl-1-butene | -13.32 | StandardWorking | 2009-11-17 19:25:25 || 2-ethyl-1-butene | -12.32 | StandardWorking | 2009-11-17 19:25:25 || methyl cyclopentane | -25.5 | StandardWorking | 2009-11-17 19:25:25 || cyclohexanol | -70.4 | StandardWorking | 2009-11-17 19:25:25 || n-hexanal | -59.37 | StandardWorking | 2009-11-17 19:25:25 || 2,2-dimethylbutane | -44.35 | StandardWorking | 2009-11-17 19:25:25 || n-hexane | -39.96 | StandardWorking | 2009-11-17 19:25:25 || 3-methyl pentane | -41.02 | StandardWorking | 2009-11-17 19:25:25 || n-hexanol | -76.39 | StandardWorking | 2009-11-17 19:25:25 || oxyde de diisopropyle | -76.2 | StandardWorking | 2009-11-17 19:25:25 || oxyde de dipropyle | -70 | StandardWorking | 2009-11-17 19:25:25 || triethylamine | -23.8 | StandardWorking | 2009-11-17 19:25:25 || benzonitrile | 52.3 | StandardWorking | 2009-11-17 19:25:25 || phenyl isocyanate | 0 | StandardWorking | 2009-11-17 19:25:25 || phenyl cyanate | 0 | StandardWorking | 2009-11-17 19:25:25 || benzaldehyde | -6 | StandardWorking | 2009-11-17 19:25:25 || benzoic acid | -69.36 | StandardWorking | 2009-11-17 19:25:25 || toluene | 11.95 | StandardWorking | 2009-11-17 19:25:25 || cycloheptane | -28.52 | StandardWorking | 2009-11-17 19:25:25 || ethyl cyclopentane | -30.37 | StandardWorking | 2009-11-17 19:25:25 || n-heptane | -44.88 | StandardWorking | 2009-11-17 19:25:25 || phenylacetylene | 78.22 | StandardWorking | 2009-11-17 19:25:25 || styrene | 35.22 | StandardWorking | 2009-11-17 19:25:25 || acetophenone | -20.76 | StandardWorking | 2009-11-17 19:25:25 || ethylbenzene | 7.12 | StandardWorking | 2009-11-17 19:25:25 || m-xylene | 4.12 | StandardWorking | 2009-11-17 19:25:25 || o-xylene | 4.54 | StandardWorking | 2009-11-17 19:25:25 || p-xylene | 4.29 | StandardWorking | 2009-11-17 19:25:25 || ethyl cyclohexane | -41.05 | StandardWorking | 2009-11-17 19:25:25 || 2,2-dimethylhexane | -53.71 | StandardWorking | 2009-11-17 19:25:25 || 2,3-dimethylhexane | -51.13 | StandardWorking | 2009-11-17 19:25:25 || 2,4-dimethylhexane | -52.44 | StandardWorking | 2009-11-17 19:25:25 || n-octane | -49.82 | StandardWorking | 2009-11-17 19:25:25 || alpha-methyl styrene | 27 | StandardWorking | 2009-11-17 19:25:26 || cumene | 0.94 | StandardWorking | 2009-11-17 19:25:26 || azulene | 66.9 | StandardWorking | 2009-11-17 19:25:26 || naphtalene | 36.08 | StandardWorking | 2009-11-17 19:25:26 || anisole | -17.3 | StandardWorking | 2009-11-17 19:25:26 || benzamide | -35 | StandardWorking | 2009-11-17 19:25:26 || ethyl isocyanate | -20.41 | StandardWorking | 2009-11-17 19:25:26 || 1,3,5-trinitrohexahydro-s-tria | 45.7 | StandardWorking | 2009-11-17 19:25:26 || ethylene glycol | -95.1 | StandardWorking | 2009-11-17 19:25:26 || phthalic anhydride | -88.7 | StandardWorking | 2009-11-17 19:25:26 || propynoic acid | -33.5 | StandardWorking | 2009-11-17 19:25:26 || tetryl | -35.8 | StandardWorking | 2009-11-17 19:25:26 || methyl bromide | -9 | StandardWorking | 2009-11-17 19:25:26 || ch3f | -56 | StandardWorking | 2009-11-17 19:25:26 || ch3cl | -19.6 | StandardWorking | 2009-11-17 19:25:26 || ch3i | 3.3 | StandardWorking | 2009-11-17 19:25:26 || ch2cl2 | -22.8 | StandardWorking | 2009-11-17 19:25:26 || ch2f2 | -108 | StandardWorking | 2009-11-17 19:25:26 || ch2br2 | 1 | StandardWorking | 2009-11-17 19:25:26 || ch2i2 | 29.2 | StandardWorking | 2009-11-17 19:25:26 || bromotrifluoromethane | -155.45 | StandardWorking | 2009-11-17 19:25:26 || chlorosyle | 24.2 | StandardWorking | 2009-11-17 19:25:26 || bromo | 26.7 | StandardWorking | 2009-11-17 19:25:26 || chloro | 28.9 | StandardWorking | 2009-11-17 19:25:26 || fluoro | 18.9 | StandardWorking | 2009-11-17 19:25:26 || iodo | 25.5 | StandardWorking | 2009-11-17 19:25:26 || cyanato | 0 | StandardWorking | 2009-11-17 19:25:26 || c/b-(pb)-(c/b)/2 | 5.51 | Standard | 2011-03-18 15:04:49 || ethyleneimine ring | 27.7 | StandardCycles | 2011-02-16 15:25:42 || malonic anhydride ring | 22 | StandardCycles | 2011-02-16 15:25:42 || beta-propiolactone ring | 23.9 | StandardCycles | 2011-02-16 15:25:42 || cycloheptadecanone ring | 1.1 | StandardCycles | 2011-02-16 15:25:42 || cyclopentadecanone ring | 2.1 | StandardCycles | 2011-02-16 15:25:42 || cyclododecanone ring | 3 | StandardCycles | 2011-02-16 15:25:42 || cycloundecanone ring | 4.4 | StandardCycles | 2011-02-16 15:25:42 || cyclodecanone ring | 3.6 | StandardCycles | 2011-02-16 15:25:42 || cyclononanone ring | 4.7 | StandardCycles | 2011-02-16 15:25:42 || cyclooctanone ring | 1.5 | StandardCycles | 2011-02-16 15:25:42 || cycloheptanone ring | 2.3 | StandardCycles | 2011-02-16 15:25:42 || cyclobutanone ring | 22.6 | StandardCycles | 2011-02-16 15:25:41 || dioxolane ring | 6 | StandardCycles | 2011-02-16 15:25:41 || dihydrofuran ring | 4.7 | StandardCycles | 2011-02-16 15:25:41 || maleic anhydride ring | 3.6 | StandardCycles | 2011-02-16 15:25:41 || glutaric anhydride ring | 0.8 | StandardCycles | 2011-02-16 15:25:41 || succinic anhydride ring | 4.5 | StandardCycles | 2011-02-16 15:25:41 || cyclohexanone ring | 2.2 | StandardCycles | 2011-02-16 15:25:41 || cyclopentanone ring | 5.2 | StandardCycles | 2011-02-16 15:25:41 || dihydropyran ring | 1.2 | StandardCycles | 2011-02-16 15:25:41 || furan ring | -5.8 | StandardCycles | 2011-02-16 15:25:41 || 1,3,5-trioxane ring | 6.6 | StandardCycles | 2011-02-16 15:25:41 || 1,4-dioxane ring | 3.3 | StandardCycles | 2011-02-16 15:25:41 || 1,3-dioxane ring | 0.2 | StandardCycles | 2011-02-16 15:25:41 || cyclododecane ring | 4.4 | StandardCycles | 2011-02-16 15:25:41 || ethylene oxide ring | 26.8 | StandardCycles | 2011-02-16 15:25:41 || propylene oxide ring | 25.2 | StandardCycles | 2011-02-16 15:25:41 || tetrahydrofuran ring | 5.9 | StandardCycles | 2011-02-16 15:25:41 || tetrahydropyran ring | 0.5 | StandardCycles | 2011-02-16 15:25:41 || cyclodecane ring | 12.6 | StandardCycles | 2011-02-16 15:25:41 || trans-cyclononene ring | 12.8 | StandardCycles | 2011-02-16 15:25:41 || cyclononane ring | 12.8 | StandardCycles | 2011-02-16 15:25:41 || cyclooctatetraene ring | 17.1 | StandardCycles | 2011-02-16 15:25:40 || cyclooctatriene 1,3,5 ring | 8.9 | StandardCycles | 2011-02-16 15:25:40 || trans-cyclooctene ring | 15.3 | StandardCycles | 2011-02-16 15:25:40 || cyclooctane ring | 9.9 | StandardCycles | 2011-02-16 15:25:40 || cycloheptatriene 1,3,5 ring | 4.7 | StandardCycles | 2011-02-16 15:25:40 || cycloheptadiene 1,3 ring | 6.6 | StandardCycles | 2011-02-16 15:25:40 || cycloheptene ring | 5.4 | StandardCycles | 2011-02-16 15:25:40 || cycloheptane ring | 6.4 | StandardCycles | 2011-02-16 15:25:40 || cyclohexadiene 1,3 ring | 4.8 | StandardCycles | 2011-02-16 15:25:40 || cyclohexadiene 1,4 ring | 0.5 | StandardCycles | 2011-02-16 15:25:40 || cyclohexene ring | 1.4 | StandardCycles | 2011-02-16 15:25:40 || cyclohexane ring | -0.36 | StandardCycles | 2011-02-16 15:25:40 || cyclopentadiene ring | 6 | StandardCycles | 2011-02-16 15:25:39 || cyclopentene ring | 5.9 | StandardCycles | 2011-02-16 15:25:39 || cyclopentane ring | 6.3 | StandardCycles | 2011-02-16 15:25:39 || cyclobutene ring | 29.8 | StandardCycles | 2011-02-16 15:25:39 || cyclobutane ring | 26.2 | StandardCycles | 2011-02-16 15:25:39 || cyclopropene ring | 53.7 | StandardCycles | 2011-02-16 15:25:39 || cyclopropane ring | 27.6 | StandardCycles | 2011-02-16 15:25:39 || r C quaternaire/C tertiaire | -2.15 | StandardSteric | 2011-03-17 07:58:12 || r C quaternaire/C quaternaire | -2.7 | StandardSteric | 2011-03-17 07:58:12 || r C tertiaire | -1.08 | StandardSteric | 2011-03-17 07:58:12 || c/b-(pn)-(c/b)/2 | 2.3 | Standard | 2011-03-18 15:04:49 || c/b-(po)-(c/b)/2 | 2.3 | Standard | 2011-03-18 15:04:49 || c/b-(p)-(c/b)/2 | -1.8 | Standard | 2011-03-18 15:04:49 || c/b-(hg)-(c/b)/2 | -1.8 | Standard | 2011-03-18 15:04:48 || c/b-(sn)-(c/b)/2 | 5.51 | Standard | 2011-03-18 15:04:48 || c/b-('so3h')-(c/b)/2 | -130.9 | Standard | 2011-03-18 15:04:48 || azetidine ring | 26.2 | StandardCycles | 2011-02-16 15:25:42 || pyrrolidine ring | 6.8 | StandardCycles | 2011-02-16 15:25:42 || piperidine ring | 1 | StandardCycles | 2011-02-16 15:25:42 || succinimide ring | 8.5 | StandardCycles | 2011-02-16 15:25:42 || piperazine ring | 3.1 | StandardCycles | 2011-02-16 15:25:42 || ethylene sulfide ring | 17.7 | StandardCycles | 2011-02-16 15:25:42 || thietane ring | 19.37 | StandardCycles | 2011-02-16 15:25:42 || thiolane ring | 1.73 | StandardCycles | 2011-02-16 15:25:42 || thiane (thiacyclohexane) ring | -0.62 | StandardCycles | 2011-02-16 15:25:42 || thiepane (thiacycloheptane) ring | 3.89 | StandardCycles | 2011-02-16 15:25:42 || 3-thiolene ring | 5.07 | StandardCycles | 2011-02-16 15:25:43 || 2-thiolene ring | 5.07 | StandardCycles | 2011-02-16 15:25:43 || thiophene ring | -16.3 | StandardCycles | 2011-02-16 15:25:43 || r C quaternaire | -3.27 | StandardSteric | 2011-03-17 07:58:12 || c/b-(f)-(c/b)/2 | -43.312 | Standard | 2011-03-18 15:04:48 || c/b-(cl)-(c/b)/2 | -4.069 | Standard | 2011-03-18 15:04:48 || c/b-(br)-(c/b)/2 | 8.686 | Standard | 2011-03-18 15:04:48 || c/b-(i)-(c/b)/2 | 22.581 | Standard | 2011-03-18 15:04:48 || c/b-('so2n3')-(c/b)/2 | 74.6 | Standard | 2011-03-18 15:04:48 || c/b-('so2')-(c/b)/2 | 3.699 | Standard | 2011-03-18 15:04:48 || c/b-(so)-(c/b)/2 | 3.699 | Standard | 2011-03-18 15:04:48 || c/b-(s)-(c/b)/2 | -1.135 | Standard | 2011-03-18 15:04:48 || c/b-(no)-(c/b)/2 | 5.137 | Standard | 2011-03-18 15:04:47 || c/b-(cn)-(c/b)/2 | 36.081 | Standard | 2011-03-18 15:04:47 || n-(co)/2-(c/b) | 0 | Standard | 2011-03-18 14:49:14 || c/b-('no2')-(c/b)/2 | -0.346 | Standard | 2011-03-18 15:04:47 || c/b-(n)-(c/b)/2 | -0.311 | Standard | 2011-03-18 15:04:47 || c-(co)-(c/b)-(h)/2 | -3.871 | Standard | 2011-03-18 15:04:47 || c-(o)-(c/b)-(h)/2 | -8.1 | Standard | 2011-03-18 15:04:47 || c/b-(o)-(c/b)/2 | -1.135 | Standard | 2011-03-18 15:04:47 || c/b-(co)-(c/b)/2 | 3.7 | Standard | 2011-03-18 15:04:46 || c/bf-(c/bf)/2 | 3.7 | Standard | 2011-03-18 15:04:46 || c/bf-(c/bf) | 4.8 | Standard | 2011-03-18 15:04:46 || c/b-(c/b)/3 | 5.176 | Standard | 2011-03-18 15:04:46 || c/b-(c/t)-(c/b)/2 | 5.775 | Standard | 2011-03-18 15:04:46 || c/b-(c/d)-(c/b)/2 | 5.775 | Standard | 2011-03-18 15:04:46 || c/b-(c)-(c/b)/2 | 5.649 | Standard | 2011-03-18 15:04:46 || c/b-(h)-(c/b)/2 | 3.3 | Standard | 2011-03-18 15:04:46 || c/b-(si)-(c/b)/2 | 5.51 | Standard | 2011-03-18 15:04:49 || c/b-(n/a)-(c/b)/2 | 5.388 | Standard | 2011-03-18 15:04:49 |+----------------------------------+------------------+-----------------+---------------------+828 rows in set (0.01 sec)
GroupStandardEntropy
select * from GroupStandardEntropy where ElementName='c-(h)/3-(c)';
+-------------+-----------+---------------------+-----------------+
| ElementName | Reference | Time | StandardEntropy |
+-------------+-----------+---------------------+-----------------+
| c-(h)/3-(c) | Standard | 2011-03-18 15:04:46 | 30.423 |
+-------------+-----------+---------------------+-----------------+
1 row in set (0.00 sec)
select * from GroupStandardEntropy;
+----------------------------------+-----------------+---------------------+-----------------+| ElementName | Reference | Time | StandardEntropy |+----------------------------------+-----------------+---------------------+-----------------+| bromine | ReWritten | 2009-11-17 10:54:57 | 36.25 || chlorine | ReWritten | 2009-11-17 10:54:57 | 53.29 || fluorine | ReWritten | 2009-11-17 10:54:57 | 48.45 || hydrogen | ReWritten | 2009-11-17 10:54:57 | 31.21 || iodine | ReWritten | 2009-11-17 10:54:57 | 27.9 || nitrogen | ReWritten | 2009-11-17 10:54:57 | 45.77 || oxygen | ReWritten | 2009-11-17 10:54:57 | 49.01 || hypochlorous acid | ReWritten | 2009-11-17 10:54:57 | 56.5 || dichlorine monoxide | ReWritten | 2009-11-17 10:54:57 | 64.019 || sulfur dichloride | ReWritten | 2009-11-17 10:54:57 | 67.2 || hypofluorous acid | ReWritten | 2009-11-17 10:54:57 | 53.95 || difluorine monoxide | ReWritten | 2009-11-17 10:54:57 | 59.12 || sulfur difluoride | ReWritten | 2009-11-17 10:54:57 | 60.92 || water | ReWritten | 2009-11-17 10:54:57 | 45.1 || hydrogen sulfide | ReWritten | 2009-11-17 10:54:57 | 49.2 || dinitrogen monoxide | ReWritten | 2009-11-17 10:54:57 | 52.55 || carbon dioxide | ReWritten | 2009-11-17 10:54:57 | 51.1 || carbon oxide sulfide | ReWritten | 2009-11-17 10:54:57 | 55.3 || disulfur dichloride | ReWritten | 2009-11-17 10:54:57 | 79.2 || nitrogen trifluoride | ReWritten | 2009-11-17 10:54:57 | 62.3 || hydrogren peroxide (GAZ) | ReWritten | 2009-11-17 10:54:57 | 55.66 || formyl fluoride | ReWritten | 2009-11-17 10:54:57 | 58.96 || formaldehyde | ReWritten | 2009-11-17 10:54:57 | 52.26 || difluoroacetylene | ReWritten | 2009-11-17 10:54:57 | 58.3 || acetylene (ethyne) | ReWritten | 2009-11-17 10:54:57 | 48 || cyanogen | ReWritten | 2009-11-17 10:54:57 | 57.7 || difluorodiamine | ReWritten | 2009-11-17 10:54:57 | 60.4 || tetrafluorohydrazine | ReWritten | 2009-11-17 10:54:57 | 71.962 || iodine pentafluoride | ReWritten | 2009-11-17 10:54:57 | 80.06 || phosphorus pentafluoride | ReWritten | 2009-11-17 10:54:57 | 70.7 || sulfur hexafluoride | ReWritten | 2009-11-17 10:54:57 | 69.7 || iodine heptafluoride | ReWritten | 2009-11-17 10:54:57 | 86.34 || nitric acid | ReWritten | 2009-11-17 10:54:57 | 63.7 || hydrazine | ReWritten | 2009-11-17 10:54:57 | 57.03 || methyl nitrate | ReWritten | 2009-11-17 10:54:57 | 72.15 || methanol | ReWritten | 2009-11-17 10:54:57 | 57.29 || hexachloroethane | ReWritten | 2009-11-17 10:54:57 | 94.8 || hexafluoroethane | ReWritten | 2009-11-17 10:54:57 | 79.4 || ethylene | ReWritten | 2009-11-17 10:54:57 | 52.45 || fluoroethane | ReWritten | 2009-11-17 10:54:57 | 63.32 || ethane | ReWritten | 2009-11-17 10:54:57 | 54.85 || dimethyl sulfone | ReWritten | 2009-11-17 10:54:57 | 74.5 || 4-methylthiazole | ReWritten | 2009-11-17 10:54:57 | 0 || benzenethiol | StandardWorking | 2009-11-17 19:25:25 | 80.51 || phenol | StandardWorking | 2009-11-17 19:25:25 | 75.43 || benzene | StandardWorking | 2009-11-17 19:25:25 | 64.34 || nitrobenzene | StandardWorking | 2009-11-17 19:25:25 | 85.7 || iodobenzene | StandardWorking | 2009-11-17 19:25:25 | 79.84 || fluorobenzene | StandardWorking | 2009-11-17 19:25:25 | 72.33 || chlorobenzene | StandardWorking | 2009-11-17 19:25:25 | 74.92 || bromobenzene | StandardWorking | 2009-11-17 19:25:25 | 77.53 || p-benzoquinone | StandardWorking | 2009-11-17 19:25:25 | 76.65 || n-pentanethiol | StandardWorking | 2009-11-17 19:25:25 | 99.28 || tert-butyl methyl alcohol | StandardWorking | 2009-11-17 19:25:25 | 84.36 || n-pentane | StandardWorking | 2009-11-17 19:25:25 | 83.4 || iso-pentane | StandardWorking | 2009-11-17 19:25:25 | 82.12 || n-chloropentane | StandardWorking | 2009-11-17 19:25:25 | 94.89 || n-bromopentane | StandardWorking | 2009-11-17 19:25:25 | 97.7 || 3-pentanone | StandardWorking | 2009-11-17 19:25:25 | 88.44 || 2-pentene,trans | StandardWorking | 2009-11-17 19:25:25 | 81.36 || 2-pentene,cis | StandardWorking | 2009-11-17 19:25:25 | 82.76 || 2-methyl-1-butene | StandardWorking | 2009-11-17 19:25:25 | 81.15 || 1,3-pentadiene,trans | StandardWorking | 2009-11-17 19:25:25 | 76.4 || 1,3-pentadiene,cis | StandardWorking | 2009-11-17 19:25:25 | 77.5 || 2-methyl-1,3-butadiene | StandardWorking | 2009-11-17 19:25:25 | 75.44 || pyridine | StandardWorking | 2009-11-17 19:25:25 | 67.59 || n-butylamine | StandardWorking | 2009-11-17 19:25:25 | 86.76 || diethylamine | StandardWorking | 2009-11-17 19:25:25 | 84.18 || ethyl peroxide | StandardWorking | 2009-11-17 19:25:25 | 91.6 || oxyde de methyl et de n-propyl | StandardWorking | 2009-11-17 19:25:25 | 83.52 || diethyl ether (ether) | StandardWorking | 2009-11-17 19:25:25 | 81.9 || ter-butyl alcohol | StandardWorking | 2009-11-17 19:25:25 | 77.98 || sec-butyl alcohol | StandardWorking | 2009-11-17 19:25:25 | 85.81 || n-butane | StandardWorking | 2009-11-17 19:25:25 | 74.12 || n-nitrobutane | StandardWorking | 2009-11-17 19:25:25 | 94.28 || ethyl acetate | StandardWorking | 2009-11-17 19:25:25 | 86.7 || p-dioxane (1,4-dioxane) | StandardWorking | 2009-11-17 19:25:25 | 71.65 || tetrahydrofuran (THF) | StandardWorking | 2009-11-17 19:25:25 | 36 || 2-butanone | StandardWorking | 2009-11-17 19:25:25 | 80.81 || 2-methylpropene | StandardWorking | 2009-11-17 19:25:25 | 70.17 || 2-butene,trans | StandardWorking | 2009-11-17 19:25:25 | 70.86 || 2-butene,cis | StandardWorking | 2009-11-17 19:25:25 | 71.9 || 1-butene | StandardWorking | 2009-11-17 19:25:25 | 73.04 || n-butyronitrile | StandardWorking | 2009-11-17 19:25:25 | 77.78 || acetic anhydride | StandardWorking | 2009-11-17 19:25:25 | 93.2 || 2-butyne | StandardWorking | 2009-11-17 19:25:25 | 67.71 || 1-butyne | StandardWorking | 2009-11-17 19:25:25 | 69.51 || 1,3-butadiene | StandardWorking | 2009-11-17 19:25:25 | 66.62 || 1,2-butadiene | StandardWorking | 2009-11-17 19:25:25 | 70.03 || 1-buten-3-yne | StandardWorking | 2009-11-17 19:25:25 | 66.77 || 1,3-butadiyne | StandardWorking | 2009-11-17 19:25:25 | 59.76 || n-propyl alcohol | StandardWorking | 2009-11-17 19:25:25 | 77.63 || isopropyl alcohol | StandardWorking | 2009-11-17 19:25:25 | 74.07 || propane | StandardWorking | 2009-11-17 19:25:25 | 64.51 || iso-nitropropane | StandardWorking | 2009-11-17 19:25:25 | 83.1 || n-nitropropane | StandardWorking | 2009-11-17 19:25:25 | 85 || n-iodopropane | StandardWorking | 2009-11-17 19:25:24 | 80.32 || methyl acetate | StandardWorking | 2009-11-17 19:25:24 | 79.8 || propylene oxide | StandardWorking | 2009-11-17 19:25:24 | 68.53 || allyl alcohol | StandardWorking | 2009-11-17 19:25:24 | 73.51 || acetone | StandardWorking | 2009-11-17 19:25:24 | 70.49 || propylene (propene) | StandardWorking | 2009-11-17 19:25:24 | 63.8 || acrylic acid | StandardWorking | 2009-11-17 19:25:24 | 75.29 || propyne | StandardWorking | 2009-11-17 19:25:24 | 59.3 || cyclopropene | StandardWorking | 2009-11-17 19:25:24 | 58.38 || allene | StandardWorking | 2009-11-17 19:25:24 | 58.3 || s-triazine (1,3,5) | StandardWorking | 2009-11-17 19:25:24 | 122.2 || ethylamine | StandardWorking | 2009-11-17 19:25:24 | 68.08 || dimethyl sulfoxide | StandardWorking | 2009-11-17 19:25:24 | 73.2 || dimethyl ether (methyl ether) | StandardWorking | 2009-11-17 19:25:24 | 63.83 || ethanol | StandardWorking | 2009-11-17 19:25:24 | 67.54 || nitroethane | StandardWorking | 2009-11-17 19:25:24 | 75.39 || acetamide | StandardWorking | 2009-11-17 19:25:24 | 74 || methyl formate | StandardWorking | 2009-11-17 19:25:24 | 72 || acetic acid | StandardWorking | 2009-11-17 19:25:24 | 67.52 || acetaldehyde | StandardWorking | 2009-11-17 19:25:24 | 63.15 || 1,1-dichloroethane | StandardWorking | 2009-11-17 19:25:24 | 72.89 || acetonitrile | StandardWorking | 2009-11-17 19:25:24 | 58.7 || acetyl chloride | StandardWorking | 2009-11-17 19:25:24 | 70.47 || ketene | StandardWorking | 2009-11-17 19:25:24 | 57.79 || nitroglycerine (vapor) | StandardWorking | 2009-11-17 19:25:24 | 150.26 || methyl hydrazine | StandardWorking | 2009-11-17 19:25:24 | 66.6 || methyl hydroperoxide | StandardWorking | 2009-11-17 19:25:24 | 67.5 || urea | StandardWorking | 2009-11-17 19:25:24 | 72.5 || methane | StandardWorking | 2009-11-17 19:25:24 | 44.52 || nitromethane | StandardWorking | 2009-11-17 19:25:24 | 65.73 || methyl nitrite | StandardWorking | 2009-11-17 19:25:24 | 67.95 || formic acid | StandardWorking | 2009-11-17 19:25:24 | 59.45 || diazomethane | StandardWorking | 2009-11-17 19:25:24 | 58 || fluoroform | StandardWorking | 2009-11-17 19:25:24 | 62 || chloroform | StandardWorking | 2009-11-17 19:25:24 | 70.7 || carbon tetrafluoride | StandardWorking | 2009-11-17 19:25:24 | 62.5 || carbon tetrachloride | StandardWorking | 2009-11-17 19:25:24 | 74.12 || dichlorodifluoromethane | StandardWorking | 2009-11-17 19:25:24 | 71.9 || carbon tetrabromide | StandardWorking | 2009-11-17 19:25:24 | 85.56 || perchloric acid | StandardWorking | 2009-11-17 19:25:24 | 70.8 || chlorine pentafluoride | StandardWorking | 2009-11-17 19:25:24 | 74.42 || bromine pentafluoride | StandardWorking | 2009-11-17 19:25:24 | 77.34 || cis-difluorodiazine | StandardWorking | 2009-11-17 19:25:24 | 62.1 || trans-difluorodiazine | StandardWorking | 2009-11-17 19:25:24 | 62.752 || cyanic acid | StandardWorking | 2009-11-17 19:25:24 | 57 || isocyanic acid | StandardWorking | 2009-11-17 19:25:24 | 56.978 || carbonyl difluoride | StandardWorking | 2009-11-17 19:25:24 | 61.85 || carbonyl dichloride | StandardWorking | 2009-11-17 19:25:24 | 67.82 || ammonia | StandardWorking | 2009-11-17 19:25:24 | 46.03 || nitrous acid, trans | StandardWorking | 2009-11-17 19:25:24 | 59.55 || disulfur difluoride | StandardWorking | 2009-11-17 19:25:24 | 69.3 || nitryl fluoride | StandardWorking | 2009-11-17 19:25:24 | 62.2 || nitryl chloride | StandardWorking | 2009-11-17 19:25:24 | 65 || chlorine trifluoride | StandardWorking | 2009-11-17 19:25:24 | 67.3 || bromine trifluoride | StandardWorking | 2009-11-17 19:25:24 | 69.87 || carbonyl dibromide | StandardWorking | 2009-11-17 19:25:24 | 73.82 || hydrogen cyanide | StandardWorking | 2009-11-17 19:25:24 | 48.21 || cyanogen fluoride | StandardWorking | 2009-11-17 19:25:24 | 53.67 || cyanogen chloride | StandardWorking | 2009-11-17 19:25:24 | 56.5 || cyanogen bromide | StandardWorking | 2009-11-17 19:25:24 | 59.3 || nitrogen dioxide | StandardWorking | 2009-11-17 19:25:24 | 57.3 || nitrosyl fluoride | StandardWorking | 2009-11-17 19:25:24 | 59.27 || nitrosyl chloride | StandardWorking | 2009-11-17 19:25:24 | 62.5 || nitrosyl bromide | StandardWorking | 2009-11-17 19:25:24 | 65.3 || hypobromous acid | StandardWorking | 2009-11-17 19:25:24 | 59.2 || carbon monoxide | StandardWorking | 2009-11-17 19:25:24 | 47.21 || nitric oxide | StandardWorking | 2009-11-17 19:25:24 | 50.35 || hydrogen iodide | StandardWorking | 2009-11-17 19:25:24 | 49.35 || iodine monofluoride | StandardWorking | 2009-11-17 19:25:24 | 56.45 || hydrogen fluoride | StandardWorking | 2009-11-17 19:25:24 | 41.51 || chlorine monofluoride | StandardWorking | 2009-11-17 19:25:24 | 56.06 || hydrogen chloride | StandardWorking | 2009-11-17 19:25:24 | 44.64 || hydrogen bromide | StandardWorking | 2009-11-17 19:25:24 | 47.44 || bromine monofluoride | StandardWorking | 2009-11-17 19:25:24 | 54.7 || carbon (graphite) | StandardWorking | 2009-11-17 19:25:24 | 1.37 || fo(.) radical | StandardWorking | 2009-11-17 19:25:24 | 51.8 || trichloro | StandardWorking | 2009-11-17 19:25:24 | 70.8 || trifluoro | StandardWorking | 2009-11-17 19:25:24 | 63.8 || nf2 radical | StandardWorking | 2009-11-17 19:25:24 | 59.7 || oxygene atome | StandardWorking | 2009-11-17 19:25:24 | 38.5 || methyle | StandardWorking | 2009-11-17 19:25:24 | 46.4 || amino | StandardWorking | 2009-11-17 19:25:24 | 46.5 || hydroxy | StandardWorking | 2009-11-17 19:25:24 | 43.9 || hydrogene atome | StandardWorking | 2009-11-17 19:25:24 | 27.4 || v-(o)/4 | Standard | 2011-03-18 15:04:48 | 0 || o-(v)-(c) | Standard | 2011-03-18 15:04:48 | 0 || ti-(n)/4 | Standard | 2011-03-18 15:04:48 | 0 || n-(ti)-(c)/2 | Standard | 2011-03-18 15:04:48 | 0 || ti-(o)/4 | Standard | 2011-03-18 15:04:48 | 0 || o-(ti)-(c) | Standard | 2011-03-18 15:04:48 | 0 || zn-(c)/2 | Standard | 2011-03-18 15:04:48 | 0 || c-(zn)-(c)-(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || c-(zn)-(h)/3 | Standard | 2011-03-18 15:04:48 | 0 || cr-(o)/4 | Standard | 2011-03-18 15:04:48 | 0 || o-(cr)-(c) | Standard | 2011-03-18 15:04:48 | 0 || pb-(c)/4 | Standard | 2011-03-18 15:04:48 | 0 || c-(pb)-(c)-(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || c-(pb)-(h)/3 | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)/3-(sn) | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)/3-(c/b) | Standard | 2011-03-18 15:04:48 | 0 || sn-(c/b)/4 | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)/3-(c/d) | Standard | 2011-03-18 15:04:48 | 0 || sn-(c/d)-(cl)/3 | Standard | 2011-03-18 15:04:48 | 0 || sn-(c/d)/2-(cl)/2 | Standard | 2011-03-18 15:04:48 | 0 || sn-(c/d)/3-(cl) | Standard | 2011-03-18 15:04:48 | 0 || sn-(c/d)/4 | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)/3-(h) | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)/3-(i) | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)/3-(br) | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)-(cl)/3 | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)/2-(cl)/2 | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)/3-(cl) | Standard | 2011-03-18 15:04:48 | 0 || sn-(c)/4 | Standard | 2011-03-18 15:04:48 | 0 || c/d-(sn)-(h) | Standard | 2011-03-18 15:04:48 | 0 || c/b-(sn) | StandardBenson | 2009-11-17 13:11:42 | 0 || c-(sn)-(c/b)-(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || c-(sn)-(c)/3 | Standard | 2011-03-18 15:04:48 | 0 || c-(sn)-(c)/2-(h) | Standard | 2011-03-18 15:04:48 | 0 || c-(sn)-(c)-(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || c-(sn)-(h)/3 | Standard | 2011-03-18 15:04:48 | 0 || c-(s)/2-(c)/2 | Standard | 2011-03-18 15:04:48 | 0 || c/b-('so3h') | StandardBenson | 2009-11-17 13:11:42 | 29.5 || c-(h)(c)/2(so) | Standard | 2011-03-18 15:04:48 | -11.7 || c-(c)/3('so3') | Standard | 2011-03-18 15:04:48 | -34.3 || c-(h)(c)/2('so3') | Standard | 2011-03-18 15:04:48 | -11.7 || c-(c)/3('so4') | Standard | 2011-03-18 15:04:48 | -34.3 || c-(h)(c)/2('so4') | Standard | 2011-03-18 15:04:48 | -11.7 || c-(h)/2(c)('so3') | Standard | 2011-03-18 15:04:48 | 9.8 || 'so3'-(c)/2 | Standard | 2011-03-18 15:04:48 | 30.3 || c-(h)/3('so3') | Standard | 2011-03-18 15:04:48 | 30.41 || c-(h)/2(c)('so4') | Standard | 2011-03-18 15:04:48 | 9.8 || 'so4'-(c)/2 | Standard | 2011-03-18 15:04:48 | 33.1 || c-(h)/3('so4') | Standard | 2011-03-18 15:04:48 | 30.41 || so-(c/b)(c) | Standard | 2011-03-18 15:04:48 | -3 || c/b-('so2n3') | StandardBenson | 2009-11-17 13:11:42 | 0 || n-('so2')(c)/2 | Standard | 2011-03-18 15:04:48 | 0 || 'so2'-(n)/2 | Standard | 2011-03-18 15:04:48 | 0 || n-(so)-(c)/2 | Standard | 2011-03-18 15:04:48 | 0 || so-(n)/2 | Standard | 2011-03-18 15:04:48 | 0 || n-(s)-(c)/2 | Standard | 2011-03-18 15:04:48 | 0 || s-(s)-(n) | Standard | 2011-03-18 15:04:48 | 0 || n-(cs)-(h)/2 | Standard | 2011-03-18 15:04:48 | 29.19 || cs-(n)/2 | Standard | 2011-03-18 15:04:48 | 15.43 || c-(s)-(f)/3 | Standard | 2011-03-18 15:04:48 | 38.9 || s-(h)-(co) | Standard | 2011-03-18 15:04:48 | 31.2 || co-(s)-(c) | Standard | 2011-03-18 15:04:48 | 15.43 || 'so2'-(c/d)(c) | Standard | 2011-03-18 15:04:48 | 18.1 || 'so2'-('so2')(c/b) | Standard | 2011-03-18 15:04:48 | -3.2 || 'so2'-(c/b)/2 | Standard | 2011-03-18 15:04:48 | -17.3 || 'so2'-(c)(c/b) | Standard | 2011-03-18 15:04:48 | 1.4 || 'so2'-(c)/2 | Standard | 2011-03-18 15:04:48 | 20.877 || 'so2'-(c/d)/2 | Standard | 2011-03-18 15:04:48 | 13.5 || 'so2'-(c/d)(c/b) | Standard | 2011-03-18 15:04:48 | -6.3 || c/d-(c)-('so2') | Standard | 2011-03-18 15:04:48 | -9.6 || c/d-(h)-('so2') | Standard | 2011-03-18 15:04:48 | 11.9 || c/b-('so2') | StandardBenson | 2009-11-17 13:11:42 | 8.6 || c-(c/b)-('so2')(h)/2 | Standard | 2011-03-18 15:04:48 | 9.6 || c-(c/d)-('so2')(h)/2 | Standard | 2011-03-18 15:04:48 | 10.5 || c-(c)/3-('so2') | Standard | 2011-03-18 15:04:48 | -34.5 || c-(c)/2-('so2')(h) | Standard | 2011-03-18 15:04:48 | -12 || c-(c)-('so2')(h)/2 | Standard | 2011-03-18 15:04:48 | 9.4 || c-('so2')(h)/3 | Standard | 2011-03-18 15:04:48 | 30.41 || so-(c/b)/2 | Standard | 2011-03-18 15:04:48 | -23.7 || so-(c)/2 | Standard | 2011-03-18 15:04:48 | 18.096 || c/b-(so) | StandardBenson | 2009-11-17 13:11:42 | 10.4 || c-(c/d)-(so)-(h)/2 | Standard | 2011-03-18 15:04:48 | 10.1 || c-(c)/3-(so) | Standard | 2011-03-18 15:04:48 | -34.5 || c-(c)-(so)-(h)/2 | Standard | 2011-03-18 15:04:48 | 9.4 || c-(so)-(h)/3 | Standard | 2011-03-18 15:04:48 | 30.41 || s-(s)/2 | Standard | 2011-03-18 15:04:48 | 13.4 || s-(s)-(c/b) | Standard | 2011-03-18 15:04:48 | -8 || s-(s)-(c) | Standard | 2011-03-18 15:04:48 | 12.067 || s-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 16.389 || s-(c/b)-(c) | Standard | 2011-03-18 15:04:48 | -7.8 || s-(c/d)/2 | Standard | 2011-03-18 15:04:48 | 16.389 || s-(c)-(c/d) | Standard | 2011-03-18 15:04:48 | 13.2 || s-(c)/2 | Standard | 2011-03-18 15:04:48 | 13.188 || s-(c/b)-(h) | Standard | 2011-03-18 15:04:48 | 13.701 || s-(c)-(h) | Standard | 2011-03-18 15:04:48 | 32.896 || c/d-(c)-(s) | Standard | 2011-03-18 15:04:48 | -12.41 || c/d-(h)-(s) | Standard | 2011-03-18 15:04:48 | 7.897 || c/b-(s) | StandardBenson | 2009-11-17 13:11:42 | 10.447 || c-(c/d)-(h)/2-(s) | Standard | 2011-03-18 15:04:48 | 10.9 || c-(c/b)-(h)/2-(s) | Standard | 2011-03-18 15:04:48 | 4.9 || c-(c)/3-(s) | Standard | 2011-03-18 15:04:48 | -34.738 || c-(c)/2-(h)-(s) | Standard | 2011-03-18 15:04:48 | -11.317 || c-(c)-(h)/2-(s) | Standard | 2011-03-18 15:04:48 | 10.005 || c-(h)/3-(s) | Standard | 2011-03-18 15:04:48 | 30.423 || c-(cl)/3-(c/d) | Standard | 2011-03-18 15:04:48 | 0 || co-(c/b)(i) | Standard | 2011-03-18 15:04:48 | 0 || co-(c/b)(br) | Standard | 2011-03-18 15:04:48 | 0 || co-(c/b)(cl) | Standard | 2011-03-18 15:04:48 | 40 || c-(c/b)-(i)-(h)/2 | Standard | 2011-03-18 15:04:48 | 44.5 || c-(c/b)-(br)-(h)/2 | Standard | 2011-03-18 15:04:48 | 42.2 || c-(c/b)-(f)/3 | Standard | 2011-03-18 15:04:48 | 42.8 || c/b-(i) | StandardBenson | 2009-11-17 13:11:42 | 23.479 || c/b-(br) | StandardBenson | 2009-11-17 13:11:42 | 21.171 || c/b-(cl) | StandardBenson | 2009-11-17 13:11:42 | 18.418 || c/b-(f) | StandardBenson | 2009-11-17 13:11:42 | 16.134 || c/t-(i) | Standard | 2011-03-18 15:04:48 | 37.9 || c/t-(br) | Standard | 2011-03-18 15:04:48 | 36.1 || c/t-(cl) | Standard | 2011-03-18 15:04:48 | 33.4 || c/d-(i)-(h) | Standard | 2011-03-18 15:04:48 | 40.5 || c/d-(br)-(h) | Standard | 2011-03-18 15:04:48 | 38.21 || c/d-(cl)-(h) | Standard | 2011-03-18 15:04:48 | 35.329 || c/d-(f)-(h) | Standard | 2011-03-18 15:04:48 | 32.8 || c/d-(cl)-(br) | Standard | 2011-03-18 15:04:48 | 45.1 || c/d-(f)-(br) | Standard | 2011-03-18 15:04:48 | 42.5 || c/d-(f)-(cl) | Standard | 2011-03-18 15:04:48 | 41.962 || c/d-(br)/2 | Standard | 2011-03-18 15:04:48 | 47.6 || c/d-(cl)/2 | Standard | 2011-03-18 15:04:48 | 41.914 || c/d-(f)/2 | Standard | 2011-03-18 15:04:48 | 37.188 || c/d-(c)(cl) | Standard | 2011-03-18 15:04:48 | 15 || c-(i)(o)(h)/2 | Standard | 2011-03-18 15:04:48 | 40.7 || c-(cl)-(c)-(o)-(h) | Standard | 2011-03-18 15:04:48 | 15.897 || n-(f)/2-(c) | Standard | 2011-03-18 15:04:48 | 0 || c-(cl)-(br)-(h)-(c) | Standard | 2011-03-18 15:04:48 | 45.689 || c-(i)/2(c)(h) | Standard | 2011-03-18 15:04:47 | 54.6 || c-(i)-(c)/3 | Standard | 2011-03-18 15:04:47 | -0.767 || c-(i)-(h)-(c)/2 | Standard | 2011-03-18 15:04:47 | 21.3 || c-(i)-(h)/2-(c) | Standard | 2011-03-18 15:04:47 | 42.48 || c-(br)-(c)/3 | Standard | 2011-03-18 15:04:47 | -3.216 || c-(br)-(h)-(c)/2 | Standard | 2011-03-18 15:04:47 | 20.237 || c-(br)-(h)/2-(c) | Standard | 2011-03-18 15:04:47 | 41.412 || c-(br)/3-(c) | Standard | 2011-03-18 15:04:47 | 55.7 || c-(cl)-(c)/3 | Standard | 2011-03-18 15:04:47 | -5.797 || c-(cl)-(h)-(c)/2 | Standard | 2011-03-18 15:04:47 | 17.047 || c-(cl)/2-(c)/2 | Standard | 2011-03-18 15:04:47 | 22.798 || c-(cl)-(h)/2-(c) | Standard | 2011-03-18 15:04:47 | 38.05 || c-(cl)/2-(h)-(c) | Standard | 2011-03-18 15:04:47 | 43.7 || c-(cl)/3-(c) | Standard | 2011-03-18 15:04:47 | 48.301 || c-(f)/2-(cl)-(c) | Standard | 2011-03-18 15:04:47 | 40.5 || c-(f)-(c)/3 | Standard | 2011-03-18 15:04:47 | -7.7 || c-(f)-(h)-(c)/2 | Standard | 2011-03-18 15:04:47 | 13.324 || c-(f)/2-(c)/2 | Standard | 2011-03-18 15:04:47 | 17.8 || c-(f)-(h)/2-(c) | Standard | 2011-03-18 15:04:47 | 35.078 || c-(f)/2-(h)-(c) | Standard | 2011-03-18 15:04:47 | 39.264 || c-(f)/3-(c) | Standard | 2011-03-18 15:04:47 | 42.585 || n-(c/b)-(co) | Standard | 2011-03-18 15:04:47 | 0 || c-(n)-(c)/2-(co) | Standard | 2011-03-18 15:04:47 | 0 || c/d-(c)('no2') | Standard | 2011-03-18 15:04:47 | 0 || c-(c)('no2')/3 | Standard | 2011-03-18 15:04:47 | 0 || c-(c)/2-('no2')/2 | Standard | 2011-03-18 15:04:47 | 0 || c/b-(no) | StandardBenson | 2009-11-17 13:11:42 | 0 || o-('no2')(c) | Standard | 2011-03-18 15:04:47 | 45.859 || o-(no)-(c) | Standard | 2011-03-18 15:04:47 | 39.692 || c-('no2')/2(c)-(h) | Standard | 2011-03-18 15:04:47 | 65.9 || c-('no2')(c)/3 | Standard | 2011-03-18 15:04:47 | 3.9 || c-('no2')(c)/2-(h) | Standard | 2011-03-18 15:04:47 | 27.556 || c-('no2')(c)-(h)/2 | Standard | 2011-03-18 15:04:47 | 48.65 || c/t-(cn) | Standard | 2011-03-18 15:04:47 | 35.4 || c/b-(cn) | StandardBenson | 2009-11-17 13:11:42 | 20.37 || c/d-('no2')(h) | Standard | 2011-03-18 15:04:47 | 44.4 || c/d-(cn)/2 | Standard | 2011-03-18 15:04:47 | 15.9 || c/d-(cn)-(h) | Standard | 2011-03-18 15:04:47 | 37.852 || c-(cn)/2-(c)/2 | Standard | 2011-03-18 15:04:47 | 28.4 || c-(cn)-(c)/3 | Standard | 2011-03-18 15:04:47 | -2.8 || c-(cn)-(c)/2-(h) | Standard | 2011-03-18 15:04:47 | 16.215 || c-(cn)-(c)-(h)/2 | Standard | 2011-03-18 15:04:47 | 39.964 || n-(co)/2(c/b) | StandardBenson | 2009-11-17 13:11:42 | -16.7 || n-(co)/2-(c) | Standard | 2011-03-18 15:04:47 | 15.2 || n-(co)/2-(h) | Standard | 2011-03-18 15:04:47 | 7.6 || n-(co)-(c/b)-(h) | Standard | 2011-03-18 15:04:47 | -2.9 || n-(co)-(c)/2 | Standard | 2011-03-18 15:04:47 | -16.9 || n-(co)-(c)-(h) | Standard | 2011-03-18 15:04:47 | 3.9 || n-(co)-(h)/2 | Standard | 2011-03-18 15:04:47 | 24.69 || co-(n)-(c) | Standard | 2011-03-18 15:04:47 | 13.548 || co-(n)-(h) | Standard | 2011-03-18 15:04:47 | 35.133 || n/a-(n) | Standard | 2011-03-18 15:04:47 | 8.5 || c/b-('no2') | StandardBenson | 2009-11-17 13:11:42 | 26.9 || c/b-(n) | StandardBenson | 2009-11-17 13:11:42 | -10.401 || n-(c/b)/2-(h) | Standard | 2011-03-18 15:04:47 | 4.3 || n-(c/b)-(c)/2 | Standard | 2011-03-18 15:04:47 | -15.5 || n-(c/b)-(c)-(h) | Standard | 2011-03-18 15:04:47 | 6.8 || n-(c/b)-(h)/2 | Standard | 2011-03-18 15:04:47 | 30.323 || n/a-(c) | Standard | 2011-03-18 15:04:47 | 8.5 || n/a-(h) | Standard | 2011-03-18 15:04:47 | 26.8 || n/i-(c/b) | Standard | 2011-03-18 15:04:47 | 11.233 || n/i-(c) | Standard | 2011-03-18 15:04:47 | 5.9 || n/i-(h) | Standard | 2011-03-18 15:04:47 | 12.3 || n-(n)-(c/b)-(h) | Standard | 2011-03-18 15:04:47 | 8.1 || n-(n)-(c)/2 | Standard | 2011-03-18 15:04:47 | -13.8 || n-(n)-(c)-(h) | Standard | 2011-03-18 15:04:47 | 9.61 || n-(n)-(h)/2 | Standard | 2011-03-18 15:04:47 | 29.13 || n-(c)/3 | Standard | 2011-03-18 15:04:47 | -14.746 || n-(c)/2-(h) | Standard | 2011-03-18 15:04:47 | 8.115 || n-(c)-(h)/2 | Standard | 2011-03-18 15:04:47 | 29.71 || c-(n/i)(c)(h) | Standard | 2011-03-18 15:04:47 | 0 || c-(n)-(c)/3 | Standard | 2011-03-18 15:04:47 | -36.461 || c-(n)-(c)/2-(h) | Standard | 2011-03-18 15:04:47 | -15.185 || c-(n)-(c)-(h)/2 | Standard | 2011-03-18 15:04:47 | 10.098 || c-(n)-(h)/3 | Standard | 2011-03-18 15:04:47 | 30.41 || c-(c)-(h)-(o)-(c/b) | StandardBenson | 2009-11-17 13:11:42 | 0 || c-(c/d)-(h)-(o)-(c/b) | Standard | 2011-03-18 15:04:47 | -11.1 || c-(h)-(c/d)2-(o) | Standard | 2011-03-18 15:04:47 | -10.42 || c-(h)-(c)-(c/d)-(co) | StandardBenson | 2009-11-17 13:11:42 | -11.62 || o-(o)-(c/b) | Standard | 2011-03-18 15:04:47 | 0 || c-(h)-(c)-(c/d)-(c/t) | Standard | 2011-03-18 15:04:47 | -10.8 || c-(h)-(c)-(c/d)2 | Standard | 2011-03-18 15:04:47 | -11.3 || c-(o)/2-(h)-(co) | Standard | 2011-03-18 15:04:47 | -13.1 || c-(c)-(o)/2-(co) | Standard | 2011-03-18 15:04:47 | -33 || c-(h)/2-(o)-(co) | Standard | 2011-03-18 15:04:47 | 9.98 || c-(o)/3-(c/d) | Standard | 2011-03-18 15:04:47 | -34.46 || c-(o)/3-(c) | Standard | 2011-03-18 15:04:49 | 0 || c-(o)/3-(h) | Standard | 2011-03-18 15:04:47 | -12.07 || c-(o)-(co)-(c)-(h) | Standard | 2011-03-18 15:04:47 | -11.1 || c-(o)/2-(c/d)-(c) | Standard | 2011-03-18 15:04:47 | -36.7 || c-(o)/2-(c/d)-(h) | Standard | 2011-03-18 15:04:47 | -14 || c-(c)/2-(o)-(c/d) | Standard | 2011-03-18 15:04:47 | -32.56 || c-(c)-(o)-(c/d)-(h) | Standard | 2011-03-18 15:04:47 | -11.1 || o-(o)-(c/d) | Standard | 2011-03-18 15:04:47 | 8.3 || c-(co)-(c/d)-(h)/2 | Standard | 2011-03-18 15:04:47 | 10.2 || co-(c/d)-(c) | Standard | 2011-03-18 15:04:47 | 15.2 || co-(o)/2 | Standard | 2011-03-18 15:04:47 | 5.8 || co-(c/b)(co) | Standard | 2011-03-18 15:04:47 | 12.3 || co-(c/t)(h) | Standard | 2011-03-18 15:04:47 | 35.4 || c-(co)/2(c)(h) | Standard | 2011-03-18 15:04:47 | -10.2 || c-(co)(c/b)(h)/2 | StandardBenson | 2009-11-17 13:11:42 | 9.6 || c-(co)(c/t)(h)/2 | Standard | 2011-03-18 15:04:47 | 10.6 || o-(c/t)(h) | Standard | 2011-03-18 15:04:47 | 34.93 || o-(c/d)(h) | Standard | 2011-03-18 15:04:47 | 34.93 || c-(o)(c/t)(h)/2 | Standard | 2011-03-18 15:04:47 | 0 || c-(o)-(h)/3 | Standard | 2011-03-18 15:04:47 | 30.41 || c-(o)-(c)-(h)/2 | Standard | 2011-03-18 15:04:47 | 10.378 || c-(o)-(c)/2-(h) | Standard | 2011-03-18 15:04:47 | -11 || c-(o)-(c)/3 | Standard | 2011-03-18 15:04:47 | -33.56 || c-(o)-(c/d)-(h)/2 | Standard | 2011-03-18 15:04:47 | 8.958 || c-(o)(c/b)-(h)/2 | StandardBenson | 2009-11-17 13:11:42 | 9.7 || c-(o)/2-(h)/2 | Standard | 2011-03-18 15:04:47 | 7.8 || c-(o)/2-(c)-(h) | Standard | 2011-03-18 15:04:47 | -13.1 || c-(o)/2-(c)/2 | Standard | 2011-03-18 15:04:47 | -35.8 || c-(co)-(h)/3 | Standard | 2011-03-18 15:04:47 | 30.423 || c-(co)-(c)/3 | Standard | 2011-03-18 15:04:47 | -33 || c-(co)-(c)-(h)/2 | Standard | 2011-03-18 15:04:47 | 9.458 || c-(co)-(c)/2-(h) | Standard | 2011-03-18 15:04:47 | -12 || c-(co)/2-(h)/2 | Standard | 2011-03-18 15:04:47 | 11.3 || c/b-(o) | StandardBenson | 2009-11-17 13:11:42 | -10.447 || c/b-(co) | StandardBenson | 2009-11-17 13:11:42 | -7.7 || c/d-(o)-(h) | Standard | 2011-03-18 15:04:46 | 7.897 || c/d-(o)-(c) | Standard | 2011-03-18 15:04:46 | -12.148 || c/d-(o)-(c/d) | Standard | 2011-03-18 15:04:46 | 6.628 || c/d-(co)-(h) | Standard | 2011-03-18 15:04:46 | 8.409 || c/d-(co)-(c) | Standard | 2011-03-18 15:04:46 | -11.8 || c/d-(co)-(o) | Standard | 2011-03-18 15:04:46 | -12.6 || o-(c)-(h) | Standard | 2011-03-18 15:04:46 | 29.032 || o-(c)/2 | Standard | 2011-03-18 15:04:46 | 7.008 || o-(c/b)-(h) | Standard | 2011-03-18 15:04:46 | 29.032 || o-(c/b)-(c) | Standard | 2011-03-18 15:04:46 | 11.9 || o-(c/b)/2 | Standard | 2011-03-18 15:04:46 | 7.95 || o-(c/d)-(c) | Standard | 2011-03-18 15:04:46 | 9.7 || o-(c/d)/2 | Standard | 2011-03-18 15:04:46 | 10.1 || o-(o)-(h) | Standard | 2011-03-18 15:04:46 | 27.85 || o-(o)/2 | Standard | 2011-03-18 15:04:46 | 9.4 || o-(o)-(c) | Standard | 2011-03-18 15:04:46 | 9.4 || o-(co)-(h) | Standard | 2011-03-18 15:04:46 | 24.303 || o-(co)-(c) | Standard | 2011-03-18 15:04:46 | 8.609 || o-(co)-(c/d) | Standard | 2011-03-18 15:04:46 | 3.8 || o-(co)-(o) | Standard | 2011-03-18 15:04:46 | 8.2 || o-(co)/2 | Standard | 2011-03-18 15:04:46 | 8.55 || o-(c/b)(co) | Standard | 2011-03-18 15:04:46 | 10.2 || co-(co)(o) | Standard | 2011-03-18 15:04:46 | 17.2 || co-(co)(h) | Standard | 2011-03-18 15:04:46 | 21.3 || co-(c)-(h) | Standard | 2011-03-18 15:04:46 | 35.133 || co-(c)/2 | Standard | 2011-03-18 15:04:46 | 15.367 || co-(c/b)-(h) | Standard | 2011-03-18 15:04:46 | 35.4 || co-(c/b)-(c) | Standard | 2011-03-18 15:04:46 | 12.3 || co-(c/b)/2 | Standard | 2011-03-18 15:04:46 | 9.5 || co-(c/d)-(h) | Standard | 2011-03-18 15:04:46 | 35.4 || co-(o)-(h) | Standard | 2011-03-18 15:04:46 | 35.133 || co-(o)-(c) | Standard | 2011-03-18 15:04:46 | 14.956 || co-(o)-(c/b) | Standard | 2011-03-18 15:04:46 | 15.1 || co-(o)-(c/d) | Standard | 2011-03-18 15:04:46 | 14.956 || co-(co)-(c) | Standard | 2011-03-18 15:04:46 | 15.8 || c-(c/b)-(c/d)-(c)-(h) | Standard | 2011-03-18 15:04:46 | -11.77 || c/bf-(c/bf)/3 | Standard | 2011-03-18 15:04:46 | 1.4 || c/bf-(c/bf)/2(c/b) | StandardBenson | 2009-11-17 13:11:42 | -5 || c/bf-(c/bf)(c/b)/2 | StandardBenson | 2009-11-17 13:11:42 | -5 || c-(c)/3(c/t) | Standard | 2011-03-18 15:04:46 | -35.72 || c/t-(c/t) | Standard | 2011-03-18 15:04:46 | 6.198 || c/b-(c/b) | StandardBenson | 2009-11-17 13:11:41 | -8.738 || c/b-(c/t) | StandardBenson | 2009-11-17 13:11:41 | -8.088 || c/b-(c/d) | StandardBenson | 2009-11-17 13:11:41 | -8.088 || c/b-(c) | StandardBenson | 2009-11-17 13:11:41 | -8.509 || c/b-(h) | StandardBenson | 2009-11-17 13:11:41 | 11.544 || c/t-(c/b) | Standard | 2011-03-18 15:04:46 | 4.246 || c/t-(c/d) | Standard | 2011-03-18 15:04:46 | 9.539 || c/t-(c) | Standard | 2011-03-18 15:04:46 | 6.289 || c/t-(h) | Standard | 2011-03-18 15:04:46 | 24.363 || c-(c/b)-(c)/3 | Standard | 2011-03-18 15:04:46 | -35.171 || c-(c/d)-(c)/3 | Standard | 2011-03-18 15:04:46 | -35.897 || c-(c/b)-(c)/2-(h) | Standard | 2011-03-18 15:04:46 | -11.47 || c-(c/t)-(c)/2-(h) | Standard | 2011-03-18 15:04:46 | -10.918 || c-(c/d)-(c)/2-(h) | Standard | 2011-03-18 15:04:46 | -12.038 || c-(c/b)-(c)-(h)/2 | Standard | 2011-03-18 15:04:46 | 10.177 || c-(c/t)-(c)-(h)/2 | Standard | 2011-03-18 15:04:46 | 10.227 || c-(c/d)-(c/b)-(h)/2 | Standard | 2011-03-18 15:04:46 | 10.2 || c-(c/d)/2-(h)/2 | Standard | 2011-03-18 15:04:46 | 10.055 || c-(c/d)-(c)-(h)/2 | Standard | 2011-03-18 15:04:46 | 9.128 || c/d-(c/d)/2 | Standard | 2011-03-18 15:04:46 | -16.5 || c/d-(c/b)/2 | Standard | 2011-03-18 15:04:46 | -12.7 || c/d-(c/t)-(h) | Standard | 2011-03-18 15:04:46 | 6.628 || c/d-(c/b)-(c) | Standard | 2011-03-18 15:04:46 | -12.418 || c/d-(c/b)-(h) | Standard | 2011-03-18 15:04:46 | 6.628 || c/d-(c/d)-(c) | Standard | 2011-03-18 15:04:46 | -14.655 || c/d-(c/d)-(h) | Standard | 2011-03-18 15:04:46 | 6.628 || c/d-(c)/2 | Standard | 2011-03-18 15:04:46 | -12.148 || c/d-(h)-(c) | Standard | 2011-03-18 15:04:46 | 7.897 || c/d-(h)/2 | Standard | 2011-03-18 15:04:46 | 27.603 || c-(c)/4 | Standard | 2011-03-18 15:04:46 | -35.72 || c-(h)-(c)/3 | Standard | 2011-03-18 15:04:46 | -12.808 || c-(h)/2-(c)/2 | Standard | 2011-03-18 15:04:46 | 9.357 || c-(c/t)(h)/3 | Standard | 2011-03-18 15:04:46 | 30.41 || c-(c/d)(h)/3 | Standard | 2011-03-18 15:04:46 | 30.41 || c-(c/b)(h)/3 | Standard | 2011-03-18 15:04:46 | 30.28 || c-(h)/3-(c) | Standard | 2011-03-18 15:04:46 | 30.423 || c-(cd)-(h)/3 | Standard | 2011-03-18 15:04:48 | 0 || c-(cd)-(c)-(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || cd-(c)/2 | Standard | 2011-03-18 15:04:48 | 0 || c-(al)-(h)/3 | Standard | 2011-03-18 15:04:48 | 0 || c-(al)-(c)-(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || al-(c)/3 | Standard | 2011-03-18 15:04:48 | 0 || c-(ge)-(c)-(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || ge-(c)/4 | Standard | 2011-03-18 15:04:48 | 0 || ge-(ge)-(c)/3 | Standard | 2011-03-18 15:04:48 | 0 || c-(hg)-(h)/3 | Standard | 2011-03-18 15:04:48 | 0 || c-(hg)-(c)-(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || c-(hg)-(c)/2-(h) | Standard | 2011-03-18 15:04:48 | 0 || c/b-(hg) | StandardBenson | 2009-11-17 13:11:42 | 0 || hg-(c)/2 | Standard | 2011-03-18 15:04:48 | 0 || hg-(c)-(cl) | Standard | 2011-03-18 15:04:48 | 0 || hg-(c)-(br) | Standard | 2011-03-18 15:04:48 | 0 || hg-(c)-(i) | Standard | 2011-03-18 15:04:48 | 0 || hg-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 0 || hg-(c/b)-(cl) | Standard | 2011-03-18 15:04:48 | 0 || hg-(c/b)-(br) | Standard | 2011-03-18 15:04:48 | 0 || hg-(c/b)-(i) | Standard | 2011-03-18 15:04:48 | 0 || c-(p)(h)/3 | Standard | 2011-03-18 15:04:48 | 30.4 || c-(p)(c)(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || c-(po)(h)/3 | Standard | 2011-03-18 15:04:48 | 30.4 || c-(po)(c)(h)/2 | Standard | 2011-03-18 15:04:48 | 0 || c-(pn)-(h)/3 | Standard | 2011-03-18 15:04:49 | 30.4 || c-(pn)-(c)-(h)/2 | Standard | 2011-03-18 15:04:49 | 0 || c/b-(p) | StandardBenson | 2009-11-17 13:11:42 | 0 || c/b-(po) | StandardBenson | 2009-11-17 13:11:42 | 0 || c/b-(pn) | StandardBenson | 2009-11-17 13:11:42 | 0 || p-(c)/3 | Standard | 2011-03-18 15:04:49 | 0 || p-(c)(cl)/2 | Standard | 2011-03-18 15:04:49 | 0 || p-(c/b)/3 | Standard | 2011-03-18 15:04:49 | 0 || p-(o)/3 | Standard | 2011-03-18 15:04:49 | 0 || p-(n)/3 | Standard | 2011-03-18 15:04:49 | 0 || po-(c)/3 | Standard | 2011-03-18 15:04:49 | 0 || po-(c)(f)/2 | Standard | 2011-03-18 15:04:49 | 46.77 || po-(c)(cl)(f) | Standard | 2011-03-18 15:04:49 | 50.8 || po-(c)(cl)/2 | Standard | 2011-03-18 15:04:49 | 52.97 || po-(c)(o)(cl) | Standard | 2011-03-18 15:04:49 | 0 || po-(c)(o)/2 | Standard | 2011-03-18 15:04:49 | 0 || po-(o)/3 | Standard | 2011-03-18 15:04:49 | 0 || po-(o)/2(f) | Standard | 2011-03-18 15:04:49 | 0 || po-(c/b)/3 | Standard | 2011-03-18 15:04:49 | 0 || po-(n)/3 | Standard | 2011-03-18 15:04:49 | 0 || o-(c)(p) | Standard | 2011-03-18 15:04:49 | 0 || o-(h)(p) | Standard | 2011-03-18 15:04:49 | 0 || o-(c)(po) | Standard | 2011-03-18 15:04:49 | 0 || o-(h)(po) | Standard | 2011-03-18 15:04:49 | 0 || o-(po)/2 | Standard | 2011-03-18 15:04:49 | 0 || o-(pn)-(c) | Standard | 2011-03-18 15:04:49 | 0 || n-(p)(c)/2 | Standard | 2011-03-18 15:04:49 | 0 || n-(po)(c)/2 | Standard | 2011-03-18 15:04:49 | 0 || pn-(c)/4 | Standard | 2011-03-18 15:04:49 | 0 || pn-(c/b)/3-(c) | Standard | 2011-03-18 15:04:49 | 0 || pn-(pn)/2-(c)/2 | Standard | 2011-03-18 15:04:49 | 0 || pn-(pn)/2-(c/b)/2 | Standard | 2011-03-18 15:04:49 | 0 || pn-(pn)/2-(cl)/2 | Standard | 2011-03-18 15:04:49 | 0 || pn-(pn)/2(o)/2 | Standard | 2011-03-18 15:04:49 | 0 || c-(b)(h)/3 | Standard | 2011-03-18 15:04:49 | 0 || c-(b)(c)(h)/2 | Standard | 2011-03-18 15:04:49 | 0 || c-(b)(c)/2(h) | Standard | 2011-03-18 15:04:49 | 0 || c-('bo3')(h)/3 | Standard | 2011-03-18 15:04:49 | 0 || c-('bo3')(c)(h)/2 | Standard | 2011-03-18 15:04:49 | 0 || c/d-(b)(h) | Standard | 2011-03-18 15:04:49 | 0 || b-(c)/3 | Standard | 2011-03-18 15:04:49 | 0 || b-(c)(f)/2 | Standard | 2011-03-18 15:04:49 | 0 || b-(c)/2(cl) | Standard | 2011-03-18 15:04:49 | 0 || b-(c)/2(br) | Standard | 2011-03-18 15:04:49 | 0 || b-(c)/2(i) | Standard | 2011-03-18 15:04:49 | 0 || b-(c)/2(o) | Standard | 2011-03-18 15:04:49 | 0 || b-(c/d)(f)/2 | Standard | 2011-03-18 15:04:49 | 0 || b-(o)/3 | Standard | 2011-03-18 15:04:49 | 0 || b-(o)/2(cl) | Standard | 2011-03-18 15:04:49 | 0 || b-(o)(cl)/2 | Standard | 2011-03-18 15:04:49 | 0 || b-(o)/2(h) | Standard | 2011-03-18 15:04:49 | 0 || b-(n)/3 | Standard | 2011-03-18 15:04:49 | 0 || b-(n)/2(cl) | Standard | 2011-03-18 15:04:49 | 0 || b-(n)(cl)/2 | Standard | 2011-03-18 15:04:49 | 0 || 'bo3'-(c)/3 | Standard | 2011-03-18 15:04:49 | 0 || o-(b)(h) | Standard | 2011-03-18 15:04:49 | 0 || o-(b)(c) | Standard | 2011-03-18 15:04:49 | 0 || n-(b)(c)/2 | Standard | 2011-03-18 15:04:49 | 0 || b-(s)/3 | Standard | 2011-03-18 15:04:49 | 0 || s-(b)(c) | Standard | 2011-03-18 15:04:49 | 0 || s-(b)(c/b) | Standard | 2011-03-18 15:04:49 | 0 || c/b-(pb) | StandardBenson | 2009-11-17 13:11:42 | 0 || pb-(c/b)/4 | Standard | 2011-03-18 15:04:49 | 0 || c-(h)/3(si) | Standard | 2011-03-18 15:04:49 | 30.41 || si-(c)/4 | Standard | 2011-03-18 15:04:49 | 44.08 || si-(c)(h)/3 | Standard | 2011-03-18 15:04:49 | 30.85 || si-(c/b)/4 | Standard | 2011-03-18 15:04:49 | 0 || c/b-(si) | StandardBenson | 2009-11-17 13:11:42 | -7.69 || c-(h)/2(c)(si) | Standard | 2011-03-18 15:04:49 | 0 || c-(c/d)/2-(c)-(h) | Standard | 2011-03-18 15:04:49 | -12.808 || c-(h)/2-(c/t)/2 | Standard | 2011-03-18 15:04:49 | 0 || c-(h)/2-(c/b)/2 | Standard | 2011-03-18 15:04:49 | 0 || c-(h)-(c/b)/3 | Standard | 2011-03-18 15:04:49 | 0 || c-(c/b)/4 | Standard | 2011-03-18 15:04:49 | 0 || c-(h)-(o)-(co)-(c) | Standard | 2011-03-18 15:04:49 | 0 || c-(o)/4 | Standard | 2011-03-18 15:04:49 | 0 || c-(h)-(o)/3 | Standard | 2011-03-18 15:04:49 | 0 || c-(c)/2-(o)-(c/b) | Standard | 2011-03-18 15:04:49 | 0 || c-(h)/2-(n)/2 | Standard | 2011-03-18 15:04:49 | 0 || c-(h)/2-(c/b)-(n) | Standard | 2011-03-18 15:04:49 | 0 || n-(h)-(c/d)/2 | Standard | 2011-03-18 15:04:49 | 0 || n-(c)-(c/d)/2 | Standard | 2011-03-18 15:04:49 | 0 || n-(c)-(c/b)/2 | Standard | 2011-03-18 15:04:49 | 0 || n-(c/b)/3 | Standard | 2011-03-18 15:04:49 | 0 || n/a-(c/b) | Standard | 2011-03-18 15:04:49 | 0 || c-(h)/2-(c)-(n/a) | Standard | 2011-03-18 15:04:49 | 0 || c-(h)-(c)/2-(n/a) | Standard | 2011-03-18 15:04:49 | 0 || c-(c)/3-(n/a) | Standard | 2011-03-18 15:04:49 | 0 || c/d-(h)-(n) | Standard | 2011-03-18 15:04:49 | 0 || c/d-(c)-(n) | Standard | 2011-03-18 15:04:49 | 0 || c/b-(n/a) | StandardBenson | 2009-11-17 13:11:42 | 0 || c/b-(h)-(n/i)/2 | Standard | 2011-03-18 15:04:49 | 0 || co-(c/d)-(n) | Standard | 2011-03-18 15:04:49 | 0 || co-(n)/2 | Standard | 2011-03-18 15:04:49 | 22.939 || c-(c/d)-(cn)-(h)/2 | Standard | 2011-03-18 15:04:49 | 0 || c-(c/b)-('no2')-(h)/2 | Standard | 2011-03-18 15:04:49 | 0 || c-(co)-(n)-(c)-(h) | Standard | 2011-03-18 15:04:49 | 0 || c-(co)-(n)-(h)/2 | Standard | 2011-03-18 15:04:49 | 0 || n-(c)-('no2')/2 | Standard | 2011-03-18 15:04:49 | 0 || n-(c)-(c/b)-('no2') | Standard | 2011-03-18 15:04:49 | 0 || n-(c)/2-(no) | Standard | 2011-03-18 15:04:49 | 0 || n-(c)/2-('no2') | Standard | 2011-03-18 15:04:49 | 0 || c-(s)/2-(h)/2 | Standard | 2011-03-18 15:04:49 | 0 || s-(c/d)-(h) | Standard | 2011-03-18 15:04:49 | 0 || s-(s)-(h) | Standard | 2011-03-18 15:04:49 | 0 || o-(so)-(h) | Standard | 2011-03-18 15:04:49 | 0 || o-(so)-(c) | Standard | 2011-03-18 15:04:49 | 0 || so-(o)/2 | Standard | 2011-03-18 15:04:49 | 0 || c-(c/d)-(c)-('so2')-(h) | Standard | 2011-03-18 15:04:49 | 0 || c-(c/t)-('so2')-(h)/2 | Standard | 2011-03-18 15:04:49 | 0 || c/t-('so2') | Standard | 2011-03-18 15:04:49 | 0 || 'so2'-(o)/2 | Standard | 2011-03-18 15:04:49 | 0 || 'so2'-(c/t)-(c/b) | Standard | 2011-03-18 15:04:49 | 0 || o-('so2')-(h) | Standard | 2011-03-18 15:04:49 | 0 || o-('so2')-(c) | Standard | 2011-03-18 15:04:49 | 0 || c-(c)-('cl')-(f)-(h) | Standard | 2011-03-18 15:04:49 | 0 || c-(c)-(cl)/2-(f) | Standard | 2011-03-18 15:04:49 | 0 || c-(c)-(br)-(f)/2 | Standard | 2011-03-18 15:04:49 | 0 || c-(h)/2-(co)-(cl) | Standard | 2011-03-18 15:04:49 | 0 || c-(h)-(co)-(cl)/2 | Standard | 2011-03-18 15:04:49 | 0 || co-(c)-(f) | Standard | 2011-03-18 15:04:49 | 0 || c-(c/b)-(cl)-(h)/2 | Standard | 2011-03-18 15:04:49 | 0 || co-(c)-(cl) | Standard | 2011-03-18 15:04:49 | 42.213 || co-(c)-(br) | Standard | 2011-03-18 15:04:49 | 0 || co-(c)-(i) | Standard | 2011-03-18 15:04:49 | 0 || c-(co)-(cl)-(c)-(h) | Standard | 2011-03-18 15:04:49 | 0 || c-(h)/3-(n/a) | Standard | 2011-03-18 15:04:49 | 30.423 || c-(h)/3-(n/i) | Standard | 2011-03-18 15:04:49 | 30.423 || aniline (benzenamine) | StandardWorking | 2009-11-17 19:25:25 | 76.28 || cyclohexene | StandardWorking | 2009-11-17 19:25:25 | 74.27 || cyclohexanone | StandardWorking | 2009-11-17 19:25:25 | 77 || 2,3-dimethyl-1-butene | StandardWorking | 2009-11-17 19:25:25 | 87.39 || 2-ethyl-1-butene | StandardWorking | 2009-11-17 19:25:25 | 90.01 || methyl cyclopentane | StandardWorking | 2009-11-17 19:25:25 | 81.24 || cyclohexanol | StandardWorking | 2009-11-17 19:25:25 | 78.32 || n-hexanal | StandardWorking | 2009-11-17 19:25:25 | 101.07 || 2,2-dimethylbutane | StandardWorking | 2009-11-17 19:25:25 | 85.62 || n-hexane | StandardWorking | 2009-11-17 19:25:25 | 92.83 || 3-methyl pentane | StandardWorking | 2009-11-17 19:25:25 | 90.7 || n-hexanol | StandardWorking | 2009-11-17 19:25:25 | 105.52 || oxyde de diisopropyle | StandardWorking | 2009-11-17 19:25:25 | 93.27 || oxyde de dipropyle | StandardWorking | 2009-11-17 19:25:25 | 100.98 || triethylamine | StandardWorking | 2009-11-17 19:25:25 | 96.9 || benzonitrile | StandardWorking | 2009-11-17 19:25:25 | 76.73 || phenyl isocyanate | StandardWorking | 2009-11-17 19:25:25 | 0 || phenyl cyanate | StandardWorking | 2009-11-17 19:25:25 | 0 || benzaldehyde | StandardWorking | 2009-11-17 19:25:25 | 0 || benzoic acid | StandardWorking | 2009-11-17 19:25:25 | 88.19 || toluene | StandardWorking | 2009-11-17 19:25:25 | 76.64 || cycloheptane | StandardWorking | 2009-11-17 19:25:25 | 81.82 || ethyl cyclopentane | StandardWorking | 2009-11-17 19:25:25 | 90.42 || n-heptane | StandardWorking | 2009-11-17 19:25:25 | 102.27 || phenylacetylene | StandardWorking | 2009-11-17 19:25:25 | 76.88 || styrene | StandardWorking | 2009-11-17 19:25:25 | 82.48 || acetophenone | StandardWorking | 2009-11-17 19:25:25 | 89.12 || ethylbenzene | StandardWorking | 2009-11-17 19:25:25 | 86.15 || m-xylene | StandardWorking | 2009-11-17 19:25:25 | 85.49 || o-xylene | StandardWorking | 2009-11-17 19:25:25 | 84.31 || p-xylene | StandardWorking | 2009-11-17 19:25:25 | 84.23 || ethyl cyclohexane | StandardWorking | 2009-11-17 19:25:25 | 91.44 || 2,2-dimethylhexane | StandardWorking | 2009-11-17 19:25:25 | 103.06 || 2,3-dimethylhexane | StandardWorking | 2009-11-17 19:25:25 | 106.11 || 2,4-dimethylhexane | StandardWorking | 2009-11-17 19:25:25 | 106.51 || n-octane | StandardWorking | 2009-11-17 19:25:25 | 111.55 || alpha-methyl styrene | StandardWorking | 2009-11-17 19:25:26 | 91.7 || cumene | StandardWorking | 2009-11-17 19:25:26 | 92.87 || azulene | StandardWorking | 2009-11-17 19:25:26 | 80.75 || naphtalene | StandardWorking | 2009-11-17 19:25:26 | 80.22 || anisole | StandardWorking | 2009-11-17 19:25:26 | 86.2 || benzamide | StandardWorking | 2009-11-17 19:25:26 | 85 || ethyl isocyanate | StandardWorking | 2009-11-17 19:25:26 | 76.8 || 1,3,5-trinitrohexahydro-s-tria | StandardWorking | 2009-11-17 19:25:26 | 0 || ethylene glycol | StandardWorking | 2009-11-17 19:25:26 | 76.8 || phthalic anhydride | StandardWorking | 2009-11-17 19:25:26 | 0 || propynoic acid | StandardWorking | 2009-11-17 19:25:26 | 0 || tetryl | StandardWorking | 2009-11-17 19:25:26 | 0 || methyl bromide | StandardWorking | 2009-11-17 19:25:26 | 58.75 || ch3f | StandardWorking | 2009-11-17 19:25:26 | 53.3 || ch3cl | StandardWorking | 2009-11-17 19:25:26 | 56 || ch3i | StandardWorking | 2009-11-17 19:25:26 | 60.5 || ch2cl2 | StandardWorking | 2009-11-17 19:25:26 | 64.6 || ch2f2 | StandardWorking | 2009-11-17 19:25:26 | 59 || ch2br2 | StandardWorking | 2009-11-17 19:25:26 | 70.1 || ch2i2 | StandardWorking | 2009-11-17 19:25:26 | 74 || bromotrifluoromethane | StandardWorking | 2009-11-17 19:25:26 | 71.17 || chlorosyle | StandardWorking | 2009-11-17 19:25:26 | 54.1 || bromo | StandardWorking | 2009-11-17 19:25:26 | 41.8 || chloro | StandardWorking | 2009-11-17 19:25:26 | 39.5 || fluoro | StandardWorking | 2009-11-17 19:25:26 | 37.9 || iodo | StandardWorking | 2009-11-17 19:25:26 | 43.2 || cyanato | StandardWorking | 2009-11-17 19:25:26 | 54 || c/b-(hg)-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 0 || azetidine ring | StandardCycles | 2011-02-16 15:25:42 | 29.3 || ethyleneimine ring | StandardCycles | 2011-02-16 15:25:42 | 31.6 || malonic anhydride ring | StandardCycles | 2011-02-16 15:25:42 | 27.9 || beta-propiolactone ring | StandardCycles | 2011-02-16 15:25:42 | 27.9 || cycloheptadecanone ring | StandardCycles | 2011-02-16 15:25:42 | -2.4 || cyclopentadecanone ring | StandardCycles | 2011-02-16 15:25:42 | 1.9 || cyclododecanone ring | StandardCycles | 2011-02-16 15:25:42 | 6.7 || cycloundecanone ring | StandardCycles | 2011-02-16 15:25:42 | 9.5 || cyclodecanone ring | StandardCycles | 2011-02-16 15:25:42 | 11.9 || cyclononanone ring | StandardCycles | 2011-02-16 15:25:42 | 13.9 || cyclooctanone ring | StandardCycles | 2011-02-16 15:25:42 | 15.4 || cycloheptanone ring | StandardCycles | 2011-02-16 15:25:42 | 17.2 || cyclobutanone ring | StandardCycles | 2011-02-16 15:25:41 | 27.9 || dioxolane ring | StandardCycles | 2011-02-16 15:25:41 | 22 || dihydrofuran ring | StandardCycles | 2011-02-16 15:25:41 | 22 || succinic anhydride ring | StandardCycles | 2011-02-16 15:25:41 | 30.2 || maleic anhydride ring | StandardCycles | 2011-02-16 15:25:41 | 27.4 || glutaric anhydride ring | StandardCycles | 2011-02-16 15:25:41 | 20.1 || cyclohexanone ring | StandardCycles | 2011-02-16 15:25:41 | 15.9 || cyclopentanone ring | StandardCycles | 2011-02-16 15:25:41 | 24.6 || dihydropyran ring | StandardCycles | 2011-02-16 15:25:41 | 20.2 || furan ring | StandardCycles | 2011-02-16 15:25:41 | 28.4 || 1,3,5-trioxane ring | StandardCycles | 2011-02-16 15:25:41 | 12.8 || 1,4-dioxane ring | StandardCycles | 2011-02-16 15:25:41 | 15.8 || 1,3-dioxane ring | StandardCycles | 2011-02-16 15:25:41 | 15.8 || tetrahydropyran ring | StandardCycles | 2011-02-16 15:25:41 | 18.8 || tetrahydrofuran ring | StandardCycles | 2011-02-16 15:25:41 | 24.2 || propylene oxide ring | StandardCycles | 2011-02-16 15:25:41 | 27.7 || ethylene oxide ring | StandardCycles | 2011-02-16 15:25:41 | 30.5 || cyclododecane ring | StandardCycles | 2011-02-16 15:25:41 | 0 || cyclodecane ring | StandardCycles | 2011-02-16 15:25:41 | 0 || trans-cyclononene ring | StandardCycles | 2011-02-16 15:25:41 | 11.2 || cyclooctatriene 1,3,5 ring | StandardCycles | 2011-02-16 15:25:40 | 21.1 || cyclononane ring | StandardCycles | 2011-02-16 15:25:41 | 12.2 || cyclooctatetraene ring | StandardCycles | 2011-02-16 15:25:40 | 27.6 || trans-cyclooctene ring | StandardCycles | 2011-02-16 15:25:40 | 15 || cyclooctane ring | StandardCycles | 2011-02-16 15:25:40 | 16.5 || cycloheptatriene 1,3,5 ring | StandardCycles | 2011-02-16 15:25:40 | 23.7 || cycloheptadiene 1,3 ring | StandardCycles | 2011-02-16 15:25:40 | 19.4 || cycloheptene ring | StandardCycles | 2011-02-16 15:25:40 | 15.1 || cycloheptane ring | StandardCycles | 2011-02-16 15:25:40 | 15.9 || cyclohexadiene 1,4 ring | StandardCycles | 2011-02-16 15:25:40 | 25.4 || cyclohexadiene 1,3 ring | StandardCycles | 2011-02-16 15:25:40 | 24 || cyclohexene ring | StandardCycles | 2011-02-16 15:25:40 | 21.5 || cyclohexane ring | StandardCycles | 2011-02-16 15:25:40 | 18.8 || cyclopentadiene ring | StandardCycles | 2011-02-16 15:25:39 | 28 || cyclopentene ring | StandardCycles | 2011-02-16 15:25:39 | 25.8 || cyclopentane ring | StandardCycles | 2011-02-16 15:25:39 | 27.3 || cyclobutene ring | StandardCycles | 2011-02-16 15:25:39 | 29 || cyclobutane ring | StandardCycles | 2011-02-16 15:25:39 | 29.8 || cyclopropene ring | StandardCycles | 2011-02-16 15:25:39 | 33.6 || cyclopropane ring | StandardCycles | 2011-02-16 15:25:39 | 32.1 || r C tertiaire | StandardSteric | 2011-03-17 07:58:12 | 0 || r C quaternaire | StandardSteric | 2011-03-17 07:58:12 | 0 || c/b-(p)-(c/b)/2 | Standard | 2011-03-18 15:04:49 | 0 || c/b-(sn)-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 0 || c/b-('so3h')-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 29.5 || c/b-('so2')-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 8.6 || c/b-('so2n3')-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 0 || c/b-(so)-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 10.4 || c/b-(s)-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 10.447 || c/b-(no)-(c/b)/2 | Standard | 2011-03-18 15:04:47 | 0 || r C quaternaire/C tertiaire | StandardSteric | 2011-03-17 07:58:12 | 0 || pyrrolidine ring | StandardCycles | 2011-02-16 15:25:42 | 26.7 || piperidine ring | StandardCycles | 2011-02-16 15:25:42 | 23.8 || succinimide ring | StandardCycles | 2011-02-16 15:25:42 | 0 || piperazine ring | StandardCycles | 2011-02-16 15:25:42 | 0 || ethylene sulfide ring | StandardCycles | 2011-02-16 15:25:42 | 29.47 || thietane ring | StandardCycles | 2011-02-16 15:25:42 | 27.18 || thiolane ring | StandardCycles | 2011-02-16 15:25:42 | 23.56 || thiane (thiacyclohexane) ring | StandardCycles | 2011-02-16 15:25:42 | 17.46 || thiepane (thiacycloheptane) ring | StandardCycles | 2011-02-16 15:25:42 | 17.3 || 3-thiolene ring | StandardCycles | 2011-02-16 15:25:43 | 25.4 || 2-thiolene ring | StandardCycles | 2011-02-16 15:25:43 | 25.4 || thiophene ring | StandardCycles | 2011-02-16 15:25:43 | 23.56 || r C quaternaire/C quaternaire | StandardSteric | 2011-03-17 07:58:12 | 0 || c/b-(f)-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 16.134 || c/b-(cl)-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 18.418 || c/b-(br)-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 21.171 || c/b-(i)-(c/b)/2 | Standard | 2011-03-18 15:04:48 | 23.479 || c/b-(cn)-(c/b)/2 | Standard | 2011-03-18 15:04:47 | 20.37 || n-(co)/2-(c/b) | Standard | 2011-03-18 14:49:14 | 0 || c/b-('no2')-(c/b)/2 | Standard | 2011-03-18 15:04:47 | 26.9 || c/b-(n)-(c/b)/2 | Standard | 2011-03-18 15:04:47 | -10.401 || c-(co)-(c/b)-(h)/2 | Standard | 2011-03-18 15:04:47 | 9.6 || c-(o)-(c/b)-(h)/2 | Standard | 2011-03-18 15:04:47 | 9.7 || c/b-(o)-(c/b)/2 | Standard | 2011-03-18 15:04:47 | -10.447 || c/b-(co)-(c/b)/2 | Standard | 2011-03-18 15:04:46 | -7.7 || c/bf-(c/bf)/2 | Standard | 2011-03-18 15:04:46 | -5 || c/bf-(c/bf) | Standard | 2011-03-18 15:04:46 | -5 || c/b-(c/b)/3 | Standard | 2011-03-18 15:04:46 | -8.738 || c/b-(c/t)-(c/b)/2 | Standard | 2011-03-18 15:04:46 | -8.088 || c/b-(c/d)-(c/b)/2 | Standard | 2011-03-18 15:04:46 | -8.088 || c/b-(c)-(c/b)/2 | Standard | 2011-03-18 15:04:46 | -8.509 || c/b-(h)-(c/b)/2 | Standard | 2011-03-18 15:04:46 | 11.544 || c/b-(po)-(c/b)/2 | Standard | 2011-03-18 15:04:49 | 0 || c/b-(pn)-(c/b)/2 | Standard | 2011-03-18 15:04:49 | 0 || c/b-(pb)-(c/b)/2 | Standard | 2011-03-18 15:04:49 | 0 || c/b-(si)-(c/b)/2 | Standard | 2011-03-18 15:04:49 | -7.69 || c/b-(n/a)-(c/b)/2 | Standard | 2011-03-18 15:04:49 | 0 |+----------------------------------+-----------------+---------------------+-----------------+
mysql>
select * from HeatCapacityElement where reference='StandardBenson';+-------------+--------------+----------------+---------------------+----------------------+| Temperature | HeatCapacity | Reference | Time | ElementName |+-------------+--------------+----------------+---------------------+----------------------+| 1000 | 10.5 | StandardBenson | 2009-11-17 13:11:42 | c/b-(i) || 800 | 10.3 | StandardBenson | 2009-11-17 13:11:42 | c/b-(i) || 600 | 9.9 | StandardBenson | 2009-11-17 13:11:42 | c/b-(i) || 500 | 9.6 | StandardBenson | 2009-11-17 13:11:42 | c/b-(i) || 400 | 8.9 | StandardBenson | 2009-11-17 13:11:42 | c/b-(i) || 300 | 7.81 | StandardBenson | 2009-11-17 13:11:42 | c/b-(i) || 1000 | 9.78 | StandardBenson | 2009-11-17 13:11:42 | c/b-(br) || 800 | 9.58 | StandardBenson | 2009-11-17 13:11:42 | c/b-(br) || 600 | 9.18 | StandardBenson | 2009-11-17 13:11:42 | c/b-(br) || 500 | 8.68 | StandardBenson | 2009-11-17 13:11:42 | c/b-(br) || 400 | 7.98 | StandardBenson | 2009-11-17 13:11:42 | c/b-(br) || 300 | 7.08 | StandardBenson | 2009-11-17 13:11:42 | c/b-(br) || 1000 | 10.4 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cl) || 800 | 10.2 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cl) || 600 | 9.7 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cl) || 500 | 9.2 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cl) || 400 | 8.4 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cl) || 300 | 7.01 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cl) || 1000 | 10.2 | StandardBenson | 2009-11-17 13:11:42 | c/b-(f) || 800 | 9.8 | StandardBenson | 2009-11-17 13:11:42 | c/b-(f) || 600 | 9.1 | StandardBenson | 2009-11-17 13:11:42 | c/b-(f) || 500 | 8.5 | StandardBenson | 2009-11-17 13:11:42 | c/b-(f) || 400 | 7.6 | StandardBenson | 2009-11-17 13:11:42 | c/b-(f) || 300 | 6.24 | StandardBenson | 2009-11-17 13:11:42 | c/b-(f) || 1000 | 14.9 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cn) || 800 | 14.2 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cn) || 600 | 13.1 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cn) || 500 | 12.3 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cn) || 400 | 11.2 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cn) || 300 | 9.82 | StandardBenson | 2009-11-17 13:11:42 | c/b-(cn) || 1000 | 5.29 | StandardBenson | 2009-11-17 13:11:42 | n-(co)/2(c/b) || 800 | 5.28 | StandardBenson | 2009-11-17 13:11:42 | n-(co)/2(c/b) || 600 | 4.85 | StandardBenson | 2009-11-17 13:11:42 | n-(co)/2(c/b) || 500 | 4.23 | StandardBenson | 2009-11-17 13:11:42 | n-(co)/2(c/b) || 400 | 3.06 | StandardBenson | 2009-11-17 13:11:42 | n-(co)/2(c/b) || 300 | 0.98 | StandardBenson | 2009-11-17 13:11:42 | n-(co)/2(c/b) || 300 | 16.2 | StandardBenson | 2009-11-17 13:11:42 | c/b-('no2') || 1000 | 6.56 | StandardBenson | 2009-11-17 13:11:42 | c/b-(n) || 800 | 6.53 | StandardBenson | 2009-11-17 13:11:42 | c/b-(n) || 600 | 6.32 | StandardBenson | 2009-11-17 13:11:42 | c/b-(n) || 500 | 5.94 | StandardBenson | 2009-11-17 13:11:42 | c/b-(n) || 400 | 5.21 | StandardBenson | 2009-11-17 13:11:42 | c/b-(n) || 300 | 3.84 | StandardBenson | 2009-11-17 13:11:42 | c/b-(n) || 1000 | 9.91 | StandardBenson | 2009-11-17 13:11:42 | c-(h)-(c)-(c/d)-(co) || 800 | 9.03 | StandardBenson | 2009-11-17 13:11:42 | c-(h)-(c)-(c/d)-(co) || 600 | 7.68 | StandardBenson | 2009-11-17 13:11:42 | c-(h)-(c)-(c/d)-(co) || 500 | 6.65 | StandardBenson | 2009-11-17 13:11:42 | c-(h)-(c)-(c/d)-(co) || 400 | 4.9 | StandardBenson | 2009-11-17 13:11:42 | c-(h)-(c)-(c/d)-(co) || 300 | 2.54 | StandardBenson | 2009-11-17 13:11:42 | c-(h)-(c)-(c/d)-(co) || 1000 | 13.2 | StandardBenson | 2009-11-17 13:11:42 | c-(o)(c/b)-(h)/2 || 800 | 11.79 | StandardBenson | 2009-11-17 13:11:42 | c-(o)(c/b)-(h)/2 || 600 | 9.79 | StandardBenson | 2009-11-17 13:11:42 | c-(o)(c/b)-(h)/2 || 500 | 8.28 | StandardBenson | 2009-11-17 13:11:42 | c-(o)(c/b)-(h)/2 || 400 | 6.27 | StandardBenson | 2009-11-17 13:11:42 | c-(o)(c/b)-(h)/2 || 300 | 3.71 | StandardBenson | 2009-11-17 13:11:42 | c-(o)(c/b)-(h)/2 || 1000 | 6.9 | StandardBenson | 2009-11-17 13:11:42 | c/b-(o) || 800 | 6.9 | StandardBenson | 2009-11-17 13:11:42 | c/b-(o) || 600 | 6.6 | StandardBenson | 2009-11-17 13:11:42 | c/b-(o) || 500 | 6.2 | StandardBenson | 2009-11-17 13:11:42 | c/b-(o) || 400 | 5.3 | StandardBenson | 2009-11-17 13:11:42 | c/b-(o) || 300 | 3.79 | StandardBenson | 2009-11-17 13:11:42 | c/b-(o) || 1000 | 5.44 | StandardBenson | 2009-11-17 13:11:42 | c/b-(co) || 800 | 4.96 | StandardBenson | 2009-11-17 13:11:42 | c/b-(co) || 600 | 4.15 | StandardBenson | 2009-11-17 13:11:42 | c/b-(co) || 500 | 3.68 | StandardBenson | 2009-11-17 13:11:42 | c/b-(co) || 400 | 3.14 | StandardBenson | 2009-11-17 13:11:42 | c/b-(co) || 300 | 2.67 | StandardBenson | 2009-11-17 13:11:42 | c/b-(co) || 1000 | 5.5 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)/2(c/b) || 800 | 5.2 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)/2(c/b) || 600 | 4.6 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)/2(c/b) || 500 | 4.2 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)/2(c/b) || 400 | 3.7 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)/2(c/b) || 300 | 3 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)/2(c/b) || 1000 | 5.5 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)(c/b)/2 || 800 | 5.2 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)(c/b)/2 || 600 | 4.6 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)(c/b)/2 || 500 | 4.2 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)(c/b)/2 || 400 | 3.7 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)(c/b)/2 || 300 | 3 | StandardBenson | 2009-11-17 13:11:42 | c/bf-(c/bf)(c/b)/2 || 1500 | 6.05 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/b) || 1000 | 5.95 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/b) || 800 | 5.76 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/b) || 600 | 5.27 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/b) || 500 | 4.89 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/b) || 400 | 4.22 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/b) || 300 | 3.14 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/b) || 1500 | 5.75 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/t) || 1000 | 5.61 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/t) || 800 | 5.28 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/t) || 600 | 4.72 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/t) || 500 | 4.38 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/t) || 400 | 3.97 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/t) || 300 | 3.37 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/t) || 1500 | 5.75 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/d) || 1000 | 5.61 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/d) || 800 | 5.28 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/d) || 600 | 4.72 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/d) || 500 | 4.38 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/d) || 400 | 3.97 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/d) || 300 | 3.37 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c/d) || 1500 | 5.65 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c) || 1000 | 5.11 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c) || 800 | 4.63 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c) || 600 | 3.82 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c) || 500 | 3.35 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c) || 400 | 2.81 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c) || 300 | 2.33 | StandardBenson | 2009-11-17 13:11:41 | c/b-(c) || 1500 | 9.73 | StandardBenson | 2009-11-17 13:11:41 | c/b-(h) || 1000 | 8.41 | StandardBenson | 2009-11-17 13:11:41 | c/b-(h) || 800 | 7.54 | StandardBenson | 2009-11-17 13:11:41 | c/b-(h) || 600 | 6.3 | StandardBenson | 2009-11-17 13:11:41 | c/b-(h) || 500 | 5.46 | StandardBenson | 2009-11-17 13:11:41 | c/b-(h) || 400 | 4.44 | StandardBenson | 2009-11-17 13:11:41 | c/b-(h) || 300 | 3.25 | StandardBenson | 2009-11-17 13:11:41 | c/b-(h) || 300 | 3.79 | StandardBenson | 2009-11-17 13:11:42 | c/b-(s) || 400 | 5.3 | StandardBenson | 2009-11-17 13:11:42 | c/b-(s) || 500 | 6.2 | StandardBenson | 2009-11-17 13:11:42 | c/b-(s) || 600 | 6.6 | StandardBenson | 2009-11-17 13:11:42 | c/b-(s) || 800 | 6.9 | StandardBenson | 2009-11-17 13:11:42 | c/b-(s) || 1000 | 6.9 | StandardBenson | 2009-11-17 13:11:42 | c/b-(s) || 300 | 2.67 | StandardBenson | 2009-11-17 13:11:42 | c/b-(so) || 400 | 3.14 | StandardBenson | 2009-11-17 13:11:42 | c/b-(so) || 500 | 3.68 | StandardBenson | 2009-11-17 13:11:42 | c/b-(so) || 600 | 4.15 | StandardBenson | 2009-11-17 13:11:42 | c/b-(so) || 800 | 4.96 | StandardBenson | 2009-11-17 13:11:42 | c/b-(so) || 1000 | 5.44 | StandardBenson | 2009-11-17 13:11:42 | c/b-(so) || 300 | 2.67 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so2') || 400 | 3.14 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so2') || 500 | 3.68 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so2') || 600 | 4.15 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so2') || 800 | 4.96 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so2') || 1000 | 5.44 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so2') || 300 | 15.63 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so3h') || 400 | 18.99 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so3h') || 500 | 20.19 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so3h') || 600 | 23.32 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so3h') || 800 | 26.1 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so3h') || 1000 | 27.07 | StandardBenson | 2009-11-17 13:11:42 | c/b-('so3h') || 300 | 2.67 | StandardBenson | 2009-11-17 13:11:42 | c/b-(si) || 400 | 3.14 | StandardBenson | 2009-11-17 13:11:42 | c/b-(si) || 500 | 3.68 | StandardBenson | 2009-11-17 13:11:42 | c/b-(si) || 600 | 4.15 | StandardBenson | 2009-11-17 13:11:42 | c/b-(si) || 800 | 4.96 | StandardBenson | 2009-11-17 13:11:42 | c/b-(si) || 1000 | 5.44 | StandardBenson | 2009-11-17 13:11:42 | c/b-(si) || 1500 | 5.98 | StandardBenson | 2009-11-17 13:11:42 | c/b-(si) |+-------------+--------------+----------------+---------------------+----------------------+