(20);
+
+ String[] mLabels;
+
+ if (cLabel != null && cLabel.length() > 0) {
+ mLabels = Utils.split(cLabel, ';');
+ } else {
+ mLabels = new String[0];
+ }
+
+ double mIncrement = cMajorTickSpacing;
+ if (mIncrement <= 0) {
+ mIncrement = cMaximum - cMinimum;
+ } else if ((cMaximum - cMinimum) / mIncrement > 200.) {
+ mIncrement = cMaximum - cMinimum;
+ }
+ int mIndex = 0;
+ for (double mLabelMajorTick = cMinimum; mLabelMajorTick <= cMaximum; mLabelMajorTick += mIncrement, mIndex++) {
+ JLabel mLabel;
+ String mLabelText;
+ if (mLabels.length > mIndex) {
+ mLabelText = mLabels[mIndex];
+ } else {
+ try {
+ mLabelText = Format.format(mLabelMajorTick, cFormat);
+ } catch (FtException e) {
+ mLabelText = "" + mLabelMajorTick;
+ }
+ }
+ mLabel = new JLabel(mLabelText, JLabel.CENTER);
+ mLabel.setFont(getFont());
+ mLabel.setForeground(getForeground());
+
+ mLabelTable.put((int) Math.floor((mLabelMajorTick - cMinimum) / (cMaximum - cMinimum) * PHYS_HIGH), mLabel);
+ }
+ setLabelTable(mLabelTable);
+ }
+ setMajorTickSpacing((int) Math.floor(cMajorTickSpacing / (cMaximum - cMinimum) * PHYS_HIGH));
+ setMinorTickSpacing((int) Math.floor(cMinorTickSpacing / (cMaximum - cMinimum) * PHYS_HIGH));
+ }
+
+ /**
+ * Sets the font.
+ *
+ * @param font The font
+ */
+ public void setFont(Font font) {
+ super.setFont(font);
+ reCreateLabels();
+ }
+
+ /**
+ * Sets the foreground color.
+ *
+ * @param color The foreground color
+ */
+ public void setForeground(Color color) {
+ super.setForeground(color);
+ reCreateLabels();
+ }
+
+ /**
+ * Sets the format for the labels.
+ *
+ * @param format The format string
+ */
+ public void setFormat(String format) {
+ if (format == null) {
+ format = "";
+ }
+
+ if (!cFormat.equals(format)) {
+ String mOldFormat = cFormat;
+ try {
+ cFormat = format;
+ reCreateLabels();
+ } catch (Exception e) {
+ cFormat = mOldFormat;
+ reCreateLabels();
+ }
+ }
+ }
+
+ /**
+ * Returns the format of the labels.
+ *
+ * @return The format string
+ */
+ public String getFormat() {
+ return cFormat;
+ }
+
+ /**
+ * Sets the label.
+ *
+ * @param label The label
+ */
+ public void setLabel(String label) {
+ String mOldLabel = cLabel;
+ try {
+ cLabel = label;
+ reCreateLabels();
+ } catch (Exception e) {
+ cLabel = mOldLabel;
+ reCreateLabels();
+ }
+ }
+
+ /**
+ * Returns the label.
+ *
+ * @return The label
+ */
+ public String getLabel() {
+ return cLabel;
+ }
+
+ /**
+ * Add a property listener.
+ *
+ * @param listener The property listener
+ */
+ public void addPropertyChangeListener(PropertyChangeListener listener) {
+ removeChangeListener(this);
+ addChangeListener(this);
+ super.addPropertyChangeListener(listener);
+ }
+
+ /**
+ * Invoked when the target of the listener has changed its state.
+ *
+ * @param e a ChangeEvent object
+ */
+ public void stateChanged(ChangeEvent e) {
+ if (!getModel().getValueIsAdjusting() || cTrackDrag) {
+ int mValue = getValue();
+ if (mValue != cOldValue && !cInitializing) {
+ int mOldValue = cOldValue;
+ cOldValue = mValue;
+ firePropertyChange("ValueAsDouble", cnvToDouble(mOldValue), cnvToDouble(mValue));
+ fireActionEvent();
+ }
+ cOldValue = mValue;
+ }
+ }
+
+ /**
+ * Converts the physical slider value to the double value.
+ * If snapping is enabled, the value is also snapped to the nearest tick.
+ *
+ * @param value The physical slider value
+ * @return The double value
+ */
+ private double cnvToDouble(int value) {
+ double mValue = value * (cMaximum - cMinimum) / PHYS_HIGH + cMinimum;
+ if (getSnapToTicks()) {
+ int mMajorTickSpacing = getMajorTickSpacing();
+ int mMinorTickSpacing = getMinorTickSpacing();
+ int mTickSpacing = 0;
+ if (mMinorTickSpacing > 0) {
+ mTickSpacing = mMinorTickSpacing;
+ } else if (mMajorTickSpacing > 0) {
+ mTickSpacing = mMajorTickSpacing;
+ }
+
+ if (mTickSpacing != 0) {
+ double mDoubleTickSpacing = cMinorTickSpacing > 0 ? cMinorTickSpacing : cMajorTickSpacing;
+ int mWhichTick = Math.round((float) value / (float) mTickSpacing);
+ mValue = mWhichTick * mDoubleTickSpacing + cMinimum;
+ }
+ }
+ return mValue;
+ }
+
+ /**
+ * Add an action listener.
+ *
+ * @param actionListener The action listener
+ */
+ public void addActionListener(IActionListener actionListener) {
+ listenerList.add(IActionListener.class, actionListener);
+ }
+
+ /**
+ * Removes an action listener.
+ *
+ * @param actionListener The action listener
+ */
+ public void removeActionListener(IActionListener actionListener) {
+ listenerList.remove(IActionListener.class, actionListener);
+ }
+
+ /**
+ * Fires an action event.
+ */
+ void fireActionEvent() {
+ Object[] mListeners = listenerList.getListenerList();
+ for (int i = mListeners.length - 2; i >= 0; i -= 2) {
+ if (mListeners[i] == IActionListener.class) {
+ ((IActionListener) mListeners[i + 1]).actionPerformed(this);
+ }
+ }
+ }
+
+ public void setBounds(Rectangle r) {
+ super.setBounds(r);
+ updateUI();
+ }
+
+ public boolean contains(Point2D p, AffineTransform t, GraphicHelper graphicHelper, float zoomFactor, boolean zoomEnabled) {
+ if (isOpaque()) {
+ Shape mShape = graphicHelper.getShape();
+ return mShape.contains(p);
+ }
+
+ float mFontSize = getFont().getSize2D();
+ float mComponentHeight = 24;
+ Point2D mTopLeft = graphicHelper.getXYNull();
+ Point2D mBottomLeft = graphicHelper.getXYHeight();
+ Point2D mTopRight = graphicHelper.getXYWidth();
+ Point2D mBottomRight = graphicHelper.getXYWidthHeight();
+ float mDefinitionHeight = isVertical() ? (float) mTopLeft.distance(mTopRight)
+ : (float) mTopLeft.distance(mBottomLeft);
+ float mComponentToDefinitionRatio = ((mComponentHeight / mDefinitionHeight) / 2f) * zoomFactor;
+ float mHeightOffSet = getPaintLabels() ? mFontSize / 2.0f + 4f : 0f;
+ if (!zoomEnabled && t != null) {
+ float mViewZoom = (float) t.getScaleX();
+ mComponentToDefinitionRatio /= mViewZoom;
+ mHeightOffSet /= mViewZoom;
+ }
+ mComponentToDefinitionRatio = Math.min(mComponentToDefinitionRatio, 0.5f);
+ float mHigh = (0.5f + mComponentToDefinitionRatio);
+ float mLow = (0.5f - mComponentToDefinitionRatio);
+ Point2D mNewTopLeft;
+ Point2D mNewBottomLeft;
+ Point2D mNewTopRight;
+ Point2D mNewBottomRight;
+ if (isVertical()) {
+ mNewTopLeft = new Point2D.Double(mTopLeft.getX() + ((mTopRight.getX() - mTopLeft.getX()) * mLow) - mHeightOffSet,
+ mTopLeft.getY() + ((mTopRight.getY() - mTopLeft.getY()) * mLow));
+ mNewTopRight = new Point2D.Double(mTopLeft.getX() + ((mTopRight.getX() - mTopLeft.getX()) * mHigh) - mHeightOffSet,
+ mTopLeft.getY() + ((mTopRight.getY() - mTopLeft.getY()) * mHigh));
+ mNewBottomLeft = new Point2D.Double(mBottomLeft.getX() + ((mBottomRight.getX() - mBottomLeft.getX()) * mLow) - mHeightOffSet,
+ mBottomLeft.getY() + ((mBottomRight.getY() - mBottomLeft.getY()) * mLow));
+ mNewBottomRight = new Point2D.Double(mBottomLeft.getX() + ((mBottomRight.getX() - mBottomLeft.getX()) * mHigh) - mHeightOffSet,
+ mBottomLeft.getY() + ((mBottomRight.getY() - mBottomLeft.getY()) * mHigh));
+ } else {
+ mNewTopLeft = new Point2D.Double(mTopLeft.getX() + ((mBottomLeft.getX() - mTopLeft.getX()) * mLow),
+ mTopLeft.getY() + ((mBottomLeft.getY() - mTopLeft.getY()) * mLow) - mHeightOffSet);
+ mNewBottomLeft = new Point2D.Double(mTopLeft.getX() + ((mBottomLeft.getX() - mTopLeft.getX()) * mHigh),
+ mTopLeft.getY() + ((mBottomLeft.getY() - mTopLeft.getY()) * mHigh) - mHeightOffSet);
+ mNewTopRight = new Point2D.Double(mTopRight.getX() + ((mBottomRight.getX() - mTopRight.getX()) * mLow),
+ mTopRight.getY() + ((mBottomRight.getY() - mTopRight.getY()) * mLow) - mHeightOffSet);
+ mNewBottomRight = new Point2D.Double(mTopRight.getX() + ((mBottomRight.getX() - mTopRight.getX()) * mHigh),
+ mTopRight.getY() + ((mBottomRight.getY() - mTopRight.getY()) * mHigh) - mHeightOffSet);
+ }
+ Path2D.Double mShape = new Path2D.Double(Path2D.WIND_NON_ZERO, 4);
+ mShape.moveTo(mNewTopLeft.getX(), mNewTopLeft.getY());
+ mShape.lineTo(mNewTopRight.getX(), mNewTopRight.getY());
+ mShape.lineTo(mNewBottomRight.getX(), mNewBottomRight.getY());
+ mShape.lineTo(mNewBottomLeft.getX(), mNewBottomLeft.getY());
+ return mShape.contains(p);
+ }
+}
diff --git a/99-reference/ciserver-hmi-deployment/components/Generator.xml b/99-reference/ciserver-hmi-deployment/components/Generator.xml
new file mode 100644
index 0000000..dad7f8a
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Generator.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/GenericFunctions.xml b/99-reference/ciserver-hmi-deployment/components/GenericFunctions.xml
new file mode 100644
index 0000000..d141ea0
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/GenericFunctions.xml
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/GraphicSet.xml b/99-reference/ciserver-hmi-deployment/components/GraphicSet.xml
new file mode 100644
index 0000000..950c48c
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/GraphicSet.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Icon.xml b/99-reference/ciserver-hmi-deployment/components/Icon.xml
new file mode 100644
index 0000000..3941fba
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Icon.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JBorder.xml b/99-reference/ciserver-hmi-deployment/components/JBorder.xml
new file mode 100644
index 0000000..20552e6
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JBorder.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JButton.xml b/99-reference/ciserver-hmi-deployment/components/JButton.xml
new file mode 100644
index 0000000..099dba1
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JButton.xml
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JCheckBox.xml b/99-reference/ciserver-hmi-deployment/components/JCheckBox.xml
new file mode 100644
index 0000000..8d5bc36
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JCheckBox.xml
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JComboBox.xml b/99-reference/ciserver-hmi-deployment/components/JComboBox.xml
new file mode 100644
index 0000000..936705f
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JComboBox.xml
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JDateTimeField.xml b/99-reference/ciserver-hmi-deployment/components/JDateTimeField.xml
new file mode 100644
index 0000000..4f83e90
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JDateTimeField.xml
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JFormattedNumberField.xml b/99-reference/ciserver-hmi-deployment/components/JFormattedNumberField.xml
new file mode 100644
index 0000000..f218f0b
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JFormattedNumberField.xml
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JFormattedTextField.xml b/99-reference/ciserver-hmi-deployment/components/JFormattedTextField.xml
new file mode 100644
index 0000000..8c4dce6
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JFormattedTextField.xml
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JList.xml b/99-reference/ciserver-hmi-deployment/components/JList.xml
new file mode 100644
index 0000000..79007f3
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JList.xml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JNavigationTree.xml b/99-reference/ciserver-hmi-deployment/components/JNavigationTree.xml
new file mode 100644
index 0000000..9a1f151
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JNavigationTree.xml
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JPasswordField.xml b/99-reference/ciserver-hmi-deployment/components/JPasswordField.xml
new file mode 100644
index 0000000..7a9c1ee
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JPasswordField.xml
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JRadioButton.xml b/99-reference/ciserver-hmi-deployment/components/JRadioButton.xml
new file mode 100644
index 0000000..0a436d7
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JRadioButton.xml
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JSlider.xml b/99-reference/ciserver-hmi-deployment/components/JSlider.xml
new file mode 100644
index 0000000..2297778
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JSlider.xml
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JSpinner.xml b/99-reference/ciserver-hmi-deployment/components/JSpinner.xml
new file mode 100644
index 0000000..3aafcfa
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JSpinner.xml
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/JTextArea.xml b/99-reference/ciserver-hmi-deployment/components/JTextArea.xml
new file mode 100644
index 0000000..5a9ccf2
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JTextArea.xml
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/99-reference/ciserver-hmi-deployment/components/JToggleButton.xml b/99-reference/ciserver-hmi-deployment/components/JToggleButton.xml
new file mode 100644
index 0000000..5a63742
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/JToggleButton.xml
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Line.xml b/99-reference/ciserver-hmi-deployment/components/Line.xml
new file mode 100644
index 0000000..829b9bc
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Line.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Link.xml b/99-reference/ciserver-hmi-deployment/components/Link.xml
new file mode 100644
index 0000000..7866cee
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Link.xml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/MapViewer.xml b/99-reference/ciserver-hmi-deployment/components/MapViewer.xml
new file mode 100644
index 0000000..c3a35d0
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/MapViewer.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/MicroTrend.xml b/99-reference/ciserver-hmi-deployment/components/MicroTrend.xml
new file mode 100644
index 0000000..29057f0
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/MicroTrend.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Number.xml b/99-reference/ciserver-hmi-deployment/components/Number.xml
new file mode 100644
index 0000000..86a59a8
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Number.xml
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/PDFRenderer.jar b/99-reference/ciserver-hmi-deployment/components/PDFRenderer.jar
new file mode 100644
index 0000000..524b6a6
Binary files /dev/null and b/99-reference/ciserver-hmi-deployment/components/PDFRenderer.jar differ
diff --git a/99-reference/ciserver-hmi-deployment/components/PDFView.java b/99-reference/ciserver-hmi-deployment/components/PDFView.java
new file mode 100644
index 0000000..6c48423
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/PDFView.java
@@ -0,0 +1,1394 @@
+/*-
+* @(#)PDFView.java
+*
+* Copyright: Yokogawa System Center Europe B.V. All rights reserved.
+* YOKOGAWA PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+*
+* Author: J. Burger
+*
+* ----------------------------------------------------------------------------
+* Changes ....
+* ----------------------------------------------------------------------------
+* Who When Change What
+* ----------------------------------------------------------------------------
+* BGR Apr-09 e10100 Web-HMI Phase 2
+*
+*/
+
+import com.sun.pdfview.*;
+import com.sun.pdfview.action.GoToAction;
+import com.sun.pdfview.action.PDFAction;
+import fasttools.jwui.ilv.swing.IJComponentTagger;
+
+import javax.swing.*;
+import javax.swing.event.TreeSelectionEvent;
+import javax.swing.event.TreeSelectionListener;
+import javax.swing.filechooser.FileFilter;
+import java.awt.*;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.awt.event.KeyEvent;
+import java.awt.event.KeyListener;
+import java.awt.geom.Rectangle2D;
+import java.awt.print.Book;
+import java.awt.print.PageFormat;
+import java.awt.print.PrinterException;
+import java.awt.print.PrinterJob;
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
+import java.io.*;
+import java.lang.reflect.InvocationTargetException;
+import java.net.URL;
+import java.net.URLConnection;
+import java.nio.ByteBuffer;
+import java.nio.channels.FileChannel;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+/**
+ * Extends the PDFView to be usable in the {@link ExtendedJComponent} container.
+ */
+public class PDFView extends JInternalFrame
+ implements KeyListener, TreeSelectionListener,
+ PageChangeListener, IJComponentTagger {
+
+ public final static String TITLE = "PDF Viewer";
+ /**
+ * The current PDFFile
+ */
+ PDFFile curFile;
+ /**
+ * the name of the current document
+ */
+ String docName;
+ /**
+ * The split between thumbs and page
+ */
+ JSplitPane split;
+ /**
+ * The thumbnail scroll pane
+ */
+ JScrollPane thumbscroll;
+ /**
+ * The thumbnail display
+ */
+ ThumbPanel thumbs;
+ /**
+ * The page display
+ */
+ PagePanel page;
+ /**
+ * The full screen page display, or null if not in full screen mode
+ */
+ PagePanel fspp;
+
+ // Thread anim;
+ /**
+ * The current page number (starts at 0), or -1 if no page
+ */
+ int curpage = -1;
+ /**
+ * the full screen button
+ */
+ JToggleButton fullScreenButton;
+ /**
+ * the current page number text field
+ */
+ JTextField pageField;
+ /**
+ * the full screen window, or null if not in full screen mode
+ */
+ FullScreenWindow fullScreen;
+ /**
+ * the root of the outline, or null if there is no outline
+ */
+ OutlineNode outline = null;
+ /**
+ * The page format for printing
+ */
+ PageFormat pformat = PrinterJob.getPrinterJob().defaultPage();
+ /**
+ * true if the thumb panel should exist at all
+ */
+ boolean doThumb = true;
+ /**
+ * flag to indicate when a newly added document has been announced
+ */
+ Flag docWaiter;
+ /**
+ * a thread that pre-loads the next page for faster response
+ */
+ PagePreparer pagePrep;
+ /**
+ * the window containing the pdf outline, or null if one doesn't exist
+ */
+ JDialog olf;
+ /**
+ * the document menu
+ */
+ JMenu docMenu;
+ /*toolbar*/
+ JToolBar toolbar = null;
+ private String cSource = "";
+ private PagePanel panel = null;
+ private PDFViewer cPDFViewer = null;
+ boolean cShowNav = true;
+ int cNewPage = -1;
+
+ /* public PDFView() {
+ cPDFViewer = new PDFViewer(true);
+ this.add(cPDFViewer.getContentPane());
+ }*/
+ private class warnUserT extends Thread {
+ String cMessage;
+
+ public warnUserT(String message) {
+ cMessage = message;
+ }
+
+ public void run() {
+ JOptionPane.showMessageDialog(null, cMessage, "Error", JOptionPane.ERROR_MESSAGE);
+ }
+ }
+
+ private void warnUser(String message) {
+ (new warnUserT(message)).start();
+ }
+
+ public void refresh() {
+ Runnable runner = new Runnable() {
+ public void run() {
+ //load a pdf from a byte buffer
+ try {
+ File file = new File(cSource);
+ //remote file
+ //String urlStr = "file:/"+cSource;
+ //URL file = new URL(urlStr);
+ openFile(file);
+ } catch (Exception e) {
+ warnUser(e.toString());
+ }
+ }
+ };
+ SwingUtilities.invokeLater(runner);
+ }
+
+ public void setSource(String source) {
+ if (!cSource.equals(source)) {
+ cSource = source;
+ if (!source.equals("")) {
+ refresh();
+ } else {
+ doClose();
+ }
+ }
+ }
+
+ public String getSource() {
+ return cSource;
+ }
+
+ public void setThumbs(boolean thumbs) {
+ doThumb = thumbs;
+ doThumbs(doThumb);
+ }
+
+ public boolean isThumbs() {
+ return doThumb;
+ }
+
+ public void setNavigate(boolean nav) {
+ cShowNav = nav;
+ if (cShowNav) {
+ getContentPane().add(toolbar, BorderLayout.NORTH);
+ } else {
+ getContentPane().remove(toolbar);
+ }
+ this.pack();
+ }
+
+ public boolean isNavigate() {
+ return cShowNav;
+ }
+
+ public void setFirst(boolean b) {
+ boolean pageshown = ((fspp != null) ? fspp.getPage() != null : page.getPage() != null);
+ if (pageshown)
+ doFirst();
+ }
+
+ public boolean isFirst() {
+ return false;
+ }
+
+ public void setPrev(boolean b) {
+ boolean pageshown = ((fspp != null) ? fspp.getPage() != null : page.getPage() != null);
+ if (pageshown)
+ doPrev();
+ }
+
+ public boolean isPrev() {
+ return false;
+ }
+
+ public void setNext(boolean b) {
+ boolean pageshown = ((fspp != null) ? fspp.getPage() != null : page.getPage() != null);
+ if (pageshown)
+ doNext();
+ }
+
+ public boolean isNext() {
+ return false;
+ }
+
+ public void setLast(boolean b) {
+ boolean pageshown = ((fspp != null) ? fspp.getPage() != null : page.getPage() != null);
+ if (pageshown)
+ doLast();
+ }
+
+ public boolean isLast() {
+ return false;
+ }
+
+ public void setPagesetup(boolean b) {
+ boolean fileavailable = curFile != null;
+ boolean printable = fileavailable && curFile.isPrintable();
+ if (printable)
+ doPageSetup();
+ }
+
+ public boolean isPagesetup() {
+ return false;
+ }
+
+ public void setPrint(boolean b) {
+ boolean fileavailable = curFile != null;
+ boolean printable = fileavailable && curFile.isPrintable();
+ if (printable)
+ doPrint();
+ }
+
+ public boolean isPrint() {
+ return false;
+ }
+
+ public void setPage(double page) {
+ /*int newPage = (int)page-1;
+ if(curFile!=null)
+ {
+ gotoPage(newPage);
+ }*/
+ cNewPage = (int) page - 1;
+ Runnable runner = new Runnable() {
+ public void run() {
+ //load a pdf from a byte buffer
+ try {
+ if (curFile != null) {
+ gotoPage(cNewPage);
+ }
+ } catch (Exception e) {
+ warnUser(e.toString());
+ }
+ }
+ };
+ SwingUtilities.invokeLater(runner);
+ }
+
+ public double getPage() {
+ return (double) curpage + 1;
+ }
+
+ /*
+ * $Id: PDFViewer.java,v 1.8 2009/01/26 05:07:18 tomoke Exp $
+ *
+ * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
+ * Santa Clara, California 95054, U.S.A. All rights reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+ /**
+ * utility method to get an icon from the resources of this class
+ *
+ * @param name the name of the icon
+ * @return the icon, or null if the icon wasn't found.
+ */
+ public Icon getIcon(String name) {
+ Icon icon = null;
+ URL url = null;
+ try {
+ //url = getClass().getResource(name);
+ url = PDFViewer.class.getResource(name);
+ icon = new ImageIcon(url);
+ if (icon == null) {
+ System.out.println("Couldn't find " + url);
+ warnUser("Couldn't find " + url);
+ }
+ } catch (Exception e) {
+ System.out.println("Couldn't find " + PDFViewer.class.getName() + "/" + name);
+ e.printStackTrace();
+ warnUser("Couldn't find " + PDFViewer.class.getName() + "/" + name);
+ }
+ return icon;
+ }
+
+ /// FILE MENU
+ Action openAction = new AbstractAction("Open...") {
+
+ public void actionPerformed(ActionEvent evt) {
+ doOpen();
+ }
+ };
+ Action pageSetupAction = new AbstractAction("Page setup...") {
+
+ public void actionPerformed(ActionEvent evt) {
+ doPageSetup();
+ }
+ };
+ Action printAction = new AbstractAction("Print...", getIcon("gfx/print.gif")) {
+
+ public void actionPerformed(ActionEvent evt) {
+ doPrint();
+ }
+ };
+ Action closeAction = new AbstractAction("Close") {
+
+ public void actionPerformed(ActionEvent evt) {
+ doClose();
+ }
+ };
+ Action quitAction = new AbstractAction("Quit") {
+
+ public void actionPerformed(ActionEvent evt) {
+ doQuit();
+ }
+ };
+
+ class ZoomAction extends AbstractAction {
+
+ double zoomfactor = 1.0;
+
+ public ZoomAction(String name, double factor) {
+ super(name);
+ zoomfactor = factor;
+ }
+
+ public ZoomAction(String name, Icon icon, double factor) {
+ super(name, icon);
+ zoomfactor = factor;
+ }
+
+ public void actionPerformed(ActionEvent evt) {
+ doZoom(zoomfactor);
+ }
+ }
+
+ ZoomAction zoomInAction = new ZoomAction("Zoom in",
+ getIcon("gfx/zoomin.gif"),
+ 2.0);
+ ZoomAction zoomOutAction = new ZoomAction("Zoom out",
+ getIcon("gfx/zoomout.gif"),
+ 0.5);
+ Action zoomToolAction = new AbstractAction("", getIcon("gfx/zoom.gif")) {
+
+ public void actionPerformed(ActionEvent evt) {
+ doZoomTool();
+ }
+ };
+ Action fitInWindowAction = new AbstractAction("Fit in window",
+ getIcon("gfx/fit.gif")) {
+
+ public void actionPerformed(ActionEvent evt) {
+ doFitInWindow();
+ }
+ };
+
+ class ThumbAction extends AbstractAction
+ implements PropertyChangeListener {
+
+ boolean isOpen = true;
+
+ public ThumbAction() {
+ super("Hide thumbnails");
+ }
+
+ public void propertyChange(PropertyChangeEvent evt) {
+ int v = ((Integer) evt.getNewValue()).intValue();
+ if (v <= 1) {
+ isOpen = false;
+ putValue(ACTION_COMMAND_KEY, "Show thumbnails");
+ putValue(NAME, "Show thumbnails");
+ } else {
+ isOpen = true;
+ putValue(ACTION_COMMAND_KEY, "Hide thumbnails");
+ putValue(NAME, "Hide thumbnails");
+ }
+ }
+
+ public void actionPerformed(ActionEvent evt) {
+ doThumbs(!isOpen);
+ }
+ }
+
+ ThumbAction thumbAction = new ThumbAction();
+ Action fullScreenAction = new AbstractAction("Full screen",
+ getIcon("gfx/fullscrn.gif")) {
+
+ public void actionPerformed(ActionEvent evt) {
+ doFullScreen((evt.getModifiers() & evt.SHIFT_MASK) != 0);
+ }
+ };
+ Action nextAction = new AbstractAction("Next", getIcon("gfx/next.gif")) {
+
+ public void actionPerformed(ActionEvent evt) {
+ doNext();
+ }
+ };
+ Action firstAction = new AbstractAction("First", getIcon("gfx/first.gif")) {
+
+ public void actionPerformed(ActionEvent evt) {
+ doFirst();
+ }
+ };
+ Action lastAction = new AbstractAction("Last", getIcon("gfx/last.gif")) {
+
+ public void actionPerformed(ActionEvent evt) {
+ doLast();
+ }
+ };
+ Action prevAction = new AbstractAction("Prev", getIcon("gfx/prev.gif")) {
+
+ public void actionPerformed(ActionEvent evt) {
+ doPrev();
+ }
+ };
+
+ /**
+ * Create a new PDFViewer based on a user, with or without a thumbnail
+ * panel.
+ *
+ * @param useThumbs true if the thumb panel should exist, false if not.
+ */
+ public PDFView() {
+ super(TITLE);
+ /*addWindowListener(new WindowAdapter() {
+ public void windowClosing(WindowEvent evt) {
+ doQuit();
+ }
+ });*/
+ ((javax.swing.plaf.basic.BasicInternalFrameUI) this.getUI()).setNorthPane(null);
+ this.setBorder(null);
+
+ doThumb = true;
+ init();
+ }
+
+ /**
+ * Initialize this PDFViewer by creating the GUI.
+ */
+ protected void init() {
+ page = new PagePanel();
+ page.addKeyListener(this);
+
+ if (doThumb) {
+ split = new JSplitPane(split.HORIZONTAL_SPLIT);
+ split.addPropertyChangeListener(split.DIVIDER_LOCATION_PROPERTY,
+ thumbAction);
+ split.setOneTouchExpandable(true);
+ thumbs = new ThumbPanel(null);
+ thumbscroll = new JScrollPane(thumbs,
+ thumbscroll.VERTICAL_SCROLLBAR_ALWAYS,
+ thumbscroll.HORIZONTAL_SCROLLBAR_NEVER);
+ split.setLeftComponent(thumbscroll);
+ split.setRightComponent(page);
+ getContentPane().add(split, BorderLayout.CENTER);
+ } else {
+ getContentPane().add(page, BorderLayout.CENTER);
+ }
+
+ toolbar = new JToolBar();
+ toolbar.setFloatable(false);
+
+ JButton jb;
+
+ jb = new JButton(firstAction);
+ jb.setText("");
+ toolbar.add(jb);
+ jb = new JButton(prevAction);
+ jb.setText("");
+ toolbar.add(jb);
+ pageField = new JTextField("-", 3);
+ // pageField.setConnected(false);
+ pageField.setMaximumSize(new Dimension(45, 32));
+ pageField.addActionListener(new ActionListener() {
+
+ public void actionPerformed(ActionEvent evt) {
+ doPageTyped();
+ }
+ });
+ toolbar.add(pageField);
+ jb = new JButton(nextAction);
+ jb.setText("");
+ toolbar.add(jb);
+ jb = new JButton(lastAction);
+ jb.setText("");
+ toolbar.add(jb);
+
+ toolbar.add(Box.createHorizontalGlue());
+
+ fullScreenButton = new JToggleButton(fullScreenAction);
+ fullScreenButton.setText("");
+ // toolbar.add(fullScreenButton);
+ fullScreenButton.setEnabled(true);
+
+ toolbar.add(Box.createHorizontalGlue());
+
+ JToggleButton jtb;
+ ButtonGroup bg = new ButtonGroup();
+
+ jtb = new JToggleButton(zoomToolAction);
+ jtb.setText("");
+ bg.add(jtb);
+ toolbar.add(jtb);
+ jtb = new JToggleButton(fitInWindowAction);
+ jtb.setText("");
+ bg.add(jtb);
+ jtb.setSelected(true);
+ toolbar.add(jtb);
+
+ toolbar.add(Box.createHorizontalGlue());
+
+ jb = new JButton(printAction);
+ jb.setText("");
+ toolbar.add(jb);
+
+ if (cShowNav) {
+ getContentPane().add(toolbar, BorderLayout.NORTH);
+ }
+
+ JMenuBar mb = new JMenuBar();
+ JMenu file = new JMenu("File");
+ file.add(openAction);
+ file.add(closeAction);
+ file.addSeparator();
+ file.add(pageSetupAction);
+ file.add(printAction);
+ file.addSeparator();
+ file.add(quitAction);
+ mb.add(file);
+ JMenu view = new JMenu("View");
+ JMenu zoom = new JMenu("Zoom");
+ zoom.add(zoomInAction);
+ zoom.add(zoomOutAction);
+ zoom.add(fitInWindowAction);
+ zoom.setEnabled(false);
+ view.add(zoom);
+ view.add(fullScreenAction);
+
+ if (doThumb) {
+ view.addSeparator();
+ view.add(thumbAction);
+ }
+
+ mb.add(view);
+ /*etJMenuBar(mb);
+ setEnabling();*/
+ pack();
+ Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
+ int x = (screen.width - getWidth()) / 2;
+ int y = (screen.height - getHeight()) / 2;
+ setLocation(x, y);
+ if (SwingUtilities.isEventDispatchThread()) {
+ show();
+ } else {
+ try {
+ SwingUtilities.invokeAndWait(new Runnable() {
+
+ public void run() {
+ show();
+ }
+ });
+ } catch (InvocationTargetException ie) {
+ // ignore
+ } catch (InterruptedException ie) {
+ // ignore
+ }
+ }
+ }
+
+ /**
+ * Changes the displayed page, desyncing if we're not on the
+ * same page as a presenter.
+ *
+ * @param pagenum the page to display
+ */
+ public void gotoPage(int pagenum) {
+ if (pagenum < 0) {
+ pagenum = 0;
+ } else if (pagenum >= curFile.getNumPages()) {
+ pagenum = curFile.getNumPages() - 1;
+ }
+ forceGotoPage(pagenum);
+ }
+
+ /**
+ * Changes the displayed page.
+ *
+ * @param pagenum the page to display
+ */
+ public void forceGotoPage(int pagenum) {
+ if (pagenum <= 0) {
+ pagenum = 0;
+ } else if (pagenum >= curFile.getNumPages()) {
+ pagenum = curFile.getNumPages() - 1;
+ }
+ // System.out.println("Going to page " + pagenum);
+ curpage = pagenum;
+
+ // update the page text field
+ pageField.setText(String.valueOf(curpage + 1));
+
+ // fetch the page and show it in the appropriate place
+ PDFPage pg = curFile.getPage(pagenum + 1);
+ if (fspp != null) {
+ fspp.showPage(pg);
+ fspp.requestFocus();
+ } else {
+ page.showPage(pg);
+ page.requestFocus();
+ }
+
+ // update the thumb panel
+ if (doThumb) {
+ thumbs.pageShown(pagenum);
+ }
+
+ // stop any previous page prepper, and start a new one
+ if (pagePrep != null) {
+ pagePrep.quit();
+ }
+ pagePrep = new PagePreparer(pagenum);
+ pagePrep.start();
+
+ setEnabling();
+
+ //component change
+ firePropertyChange("Page", -1, curpage);
+ cNewPage = curpage;
+ }
+
+ /**
+ * A class to pre-cache the next page for better UI response
+ */
+ class PagePreparer extends Thread {
+
+ int waitforPage;
+ int prepPage;
+
+ /**
+ * Creates a new PagePreparer to prepare the page after the current
+ * one.
+ *
+ * @param waitforPage the current page number, 0 based
+ */
+ public PagePreparer(int waitforPage) {
+ setDaemon(true);
+ setName(getClass().getName());
+
+ this.waitforPage = waitforPage;
+ this.prepPage = waitforPage + 1;
+ }
+
+ public void quit() {
+ waitforPage = -1;
+ }
+
+ public void run() {
+ Dimension size = null;
+ Rectangle2D clip = null;
+
+ // wait for the current page
+ // System.out.println("Preparer waiting for page " + (waitforPage + 1));
+ if (fspp != null) {
+ fspp.waitForCurrentPage();
+ size = fspp.getCurSize();
+ clip = fspp.getCurClip();
+ } else if (page != null) {
+ page.waitForCurrentPage();
+ size = page.getCurSize();
+ clip = page.getCurClip();
+ }
+
+ if (waitforPage == curpage) {
+ // don't go any further if the user changed pages.
+ // System.out.println("Preparer generating page " + (prepPage + 2));
+ PDFPage pdfPage = curFile.getPage(prepPage + 1, true);
+ if (pdfPage != null && waitforPage == curpage) {
+ // don't go any further if the user changed pages
+ // System.out.println("Generating image for page " + (prepPage + 2));
+
+ pdfPage.getImage(size.width, size.height, clip, null, true, true);
+ // System.out.println("Generated image for page "+ (prepPage+2));
+ }
+ }
+ }
+ }
+
+ /**
+ * Enable or disable all of the actions based on the current state.
+ */
+ public void setEnabling() {
+ boolean fileavailable = curFile != null;
+ boolean pageshown = ((fspp != null) ? fspp.getPage() != null : page.getPage() != null);
+ boolean printable = fileavailable && curFile.isPrintable();
+
+ pageField.setEnabled(fileavailable);
+ printAction.setEnabled(printable);
+ closeAction.setEnabled(fileavailable);
+ fullScreenAction.setEnabled(pageshown);
+ prevAction.setEnabled(pageshown);
+ nextAction.setEnabled(pageshown);
+ firstAction.setEnabled(fileavailable);
+ lastAction.setEnabled(fileavailable);
+ zoomToolAction.setEnabled(pageshown);
+ fitInWindowAction.setEnabled(pageshown);
+ zoomInAction.setEnabled(pageshown);
+ zoomOutAction.setEnabled(pageshown);
+ }
+
+ /**
+ * open a URL to a PDF file. The file is read in and processed
+ * with an in-memory buffer.
+ *
+ * @param url
+ * @throws java.io.IOException
+ */
+ public void openFile(URL url) throws IOException {
+ URLConnection urlConnection = url.openConnection();
+ int contentLength = urlConnection.getContentLength();
+ InputStream istr = urlConnection.getInputStream();
+ byte[] byteBuf = new byte[contentLength];
+ int offset = 0;
+ int read = 0;
+ while (read >= 0) {
+ read = istr.read(byteBuf, offset, contentLength - offset);
+ if (read > 0) {
+ offset += read;
+ }
+ }
+ if (offset != contentLength) {
+ throw new IOException("Could not read all of URL file.");
+ }
+ ByteBuffer buf = ByteBuffer.allocate(contentLength);
+ buf.put(byteBuf);
+ openPDFByteBuffer(buf, url.toString(), url.getFile());
+ }
+
+ /**
+ * Open a specific pdf file. Creates a DocumentInfo from the file,
+ * and opens that.
+ *
+ * Note: Mapping the file locks the file until the PDFFile
+ * is closed.
+ *
+ * @param file the file to open
+ * @throws IOException
+ */
+ public void openFile(File file) throws IOException {
+ // first open the file for random access
+ RandomAccessFile raf = new RandomAccessFile(file, "r");
+
+ // extract a file channel
+ FileChannel channel = raf.getChannel();
+
+ // now memory-map a byte-buffer
+ ByteBuffer buf =
+ channel.map(FileChannel.MapMode.READ_ONLY, 0, channel.size());
+ openPDFByteBuffer(buf, file.getPath(), file.getName());
+ }
+
+ /**
+ * Open a specific pdf file. Creates a DocumentInfo from the file,
+ * and opens that.
+ *
+ * Note: By not memory mapping the file its contents are
+ * not locked down while PDFFile is open.
+ *
+ * @param file the file to open
+ */
+ public void openFileUnMapped(File file) throws IOException {
+ DataInputStream istr = null;
+ try {
+ //load a pdf from a byte buffer
+ // avoid using a RandomAccessFile but fill a ByteBuffer directly
+ istr = new DataInputStream(new FileInputStream(file));
+ long len = file.length();
+ if (len > Integer.MAX_VALUE) {
+ throw new IOException("File too long to decode: " + file.getName());
+ }
+ int contentLength = (int) len;
+ byte[] byteBuf = new byte[contentLength];
+ int offset = 0;
+ int read = 0;
+ while (read >= 0) {
+ read = istr.read(byteBuf, offset, contentLength - offset);
+ if (read > 0) {
+ offset += read;
+ }
+ }
+ ByteBuffer buf = ByteBuffer.allocate(contentLength);
+ buf.put(byteBuf);
+ openPDFByteBuffer(buf, file.getPath(), file.getName());
+ } catch (FileNotFoundException fnfe) {
+ fnfe.printStackTrace();
+ } catch (IOException ioe) {
+ ioe.printStackTrace();
+ } finally {
+ if (istr != null) {
+ try {
+ istr.close();
+ } catch (Exception e) {
+ // ignore error on close
+ }
+ }
+ }
+ }
+
+ /**
+ * open the ByteBuffer data as a PDFFile and start to process it.
+ *
+ * @param buf
+ * @param path
+ */
+ private void openPDFByteBuffer(ByteBuffer buf, String path, String name) {
+
+ // create a PDFFile from the data
+ PDFFile newfile = null;
+ try {
+ newfile = new PDFFile(buf);
+ } catch (IOException ioe) {
+ openError(path + " doesn't appear to be a PDF file.");
+ return;
+ }
+
+ // Now that we're reasonably sure this document is real, close the
+ // old one.
+ doClose();
+
+ // set up our document
+ this.curFile = newfile;
+ docName = name;
+ setTitle(TITLE + ": " + docName);
+
+ // set up the thumbnails
+ if (doThumb) {
+ thumbs = new ThumbPanel(curFile);
+ thumbs.addPageChangeListener(this);
+ thumbscroll.getViewport().setView(thumbs);
+ thumbscroll.getViewport().setBackground(Color.gray);
+ }
+
+ setEnabling();
+
+ // display page 1.
+ forceGotoPage(cNewPage);
+ //forceGotoPage(0);
+
+ // if the PDF has an outline, display it.
+ try {
+ outline = curFile.getOutline();
+ } catch (IOException ioe) {
+ }
+ if (false && outline != null) {
+ if (outline.getChildCount() > 0) {
+ olf = new JDialog();
+ olf.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
+ olf.setLocation(this.getLocation());
+ JTree jt = new JTree(outline);
+ jt.setRootVisible(false);
+ jt.addTreeSelectionListener(this);
+ JScrollPane jsp = new JScrollPane(jt);
+ olf.getContentPane().add(jsp);
+ olf.pack();
+ olf.setVisible(true);
+ } else {
+ if (olf != null) {
+ olf.setVisible(false);
+ olf = null;
+ }
+ }
+ }
+ }
+
+ /**
+ * Display a dialog indicating an error.
+ */
+ public void openError(String message) {
+ JOptionPane.showMessageDialog(split, message, "Error opening file",
+ JOptionPane.ERROR_MESSAGE);
+ }
+
+ /**
+ * A file filter for PDF files.
+ */
+ FileFilter pdfFilter = new FileFilter() {
+
+ public boolean accept(File f) {
+ return f.isDirectory() || f.getName().endsWith(".pdf");
+ }
+
+ public String getDescription() {
+ return "Choose a PDF file";
+ }
+ };
+ private File prevDirChoice;
+
+ /**
+ * Ask the user for a PDF file to open from the local file system
+ */
+ public void doOpen() {
+ try {
+ JFileChooser fc = new JFileChooser();
+ fc.setCurrentDirectory(prevDirChoice);
+ fc.setFileFilter(pdfFilter);
+ fc.setMultiSelectionEnabled(false);
+ int returnVal = fc.showOpenDialog(this);
+ if (returnVal == JFileChooser.APPROVE_OPTION) {
+ try {
+ prevDirChoice = fc.getSelectedFile();
+ openFile(fc.getSelectedFile());
+ } catch (IOException ioe) {
+ ioe.printStackTrace();
+ }
+ }
+ } catch (Exception e) {
+ JOptionPane.showMessageDialog(split,
+ "Opening files from your local " +
+ "disk is not available\nfrom the " +
+ "Java Web Start version of this " +
+ "program.\n",
+ "Error opening directory",
+ JOptionPane.ERROR_MESSAGE);
+ e.printStackTrace();
+ }
+ }
+
+ /**
+ * Open a local file, given a string filename
+ *
+ * @param name the name of the file to open
+ */
+ public void doOpen(String name) {
+ try {
+ URL url = new URL(name);
+ openFile(new URL(name));
+ } catch (IOException ioe) {
+ try {
+ openFile(new File(name));
+ } catch (IOException ex) {
+ Logger.getLogger(PDFViewer.class.getName()).log(Level.SEVERE, null, ex);
+ }
+ }
+ }
+
+ /**
+ * Posts the Page Setup dialog
+ */
+ public void doPageSetup() {
+ PrinterJob pjob = PrinterJob.getPrinterJob();
+ pformat = pjob.pageDialog(pformat);
+ }
+
+ /**
+ * A thread for printing in.
+ */
+ class PrintThread extends Thread {
+
+ PDFPrintPage ptPages;
+ PrinterJob ptPjob;
+
+ public PrintThread(PDFPrintPage pages, PrinterJob pjob) {
+ ptPages = pages;
+ ptPjob = pjob;
+ setName(getClass().getName());
+ }
+
+ public void run() {
+ try {
+ ptPages.show(ptPjob);
+ ptPjob.print();
+ } catch (PrinterException pe) {
+ JOptionPane.showMessageDialog(PDFView.this,
+ "Printing Error: " + pe.getMessage(),
+ "Print Aborted",
+ JOptionPane.ERROR_MESSAGE);
+ }
+ ptPages.hide();
+ }
+ }
+
+ /**
+ * Print the current document.
+ */
+ public void doPrint() {
+ PrinterJob pjob = PrinterJob.getPrinterJob();
+ pjob.setJobName(docName);
+ Book book = new Book();
+ PDFPrintPage pages = new PDFPrintPage(curFile);
+ book.append(pages, pformat, curFile.getNumPages());
+
+ pjob.setPageable(book);
+ if (pjob.printDialog()) {
+ new PrintThread(pages, pjob).start();
+ }
+ }
+
+ /**
+ * Close the current document.
+ */
+ public void doClose() {
+ if (thumbs != null) {
+ thumbs.stop();
+ }
+ if (olf != null) {
+ olf.setVisible(false);
+ olf = null;
+ }
+ if (doThumb) {
+ thumbs = new ThumbPanel(null);
+ thumbscroll.getViewport().setView(thumbs);
+ }
+
+ setFullScreenMode(false, false);
+ page.showPage(null);
+ curFile = null;
+ setTitle(TITLE);
+ setEnabling();
+ }
+
+ /**
+ * Shuts down all known threads. This ought to cause the JVM to quit
+ * if the PDFViewer is the only application running.
+ */
+ public void doQuit() {
+ // if (thumbs != null) {
+ // thumbs.stop();
+ // }
+ doClose();
+ dispose();
+ System.exit(0);
+ }
+
+ /**
+ * Turns on zooming
+ */
+ public void doZoomTool() {
+ if (fspp == null) {
+ page.useZoomTool(true);
+ }
+ }
+
+ /**
+ * Turns off zooming; makes the page fit in the window
+ */
+ public void doFitInWindow() {
+ if (fspp == null) {
+ page.useZoomTool(false);
+ page.setClip(null);
+ }
+ }
+
+ /**
+ * Shows or hides the thumbnails by moving the split pane divider
+ */
+ public void doThumbs(boolean show) {
+ if (show) {
+ split.setDividerLocation((int) thumbs.getPreferredSize().width +
+ (int) thumbscroll.getVerticalScrollBar().
+ getWidth() + 4);
+ } else {
+ split.setDividerLocation(0);
+ }
+ }
+
+ /**
+ * Enter full screen mode
+ *
+ * @param force true if the user should be prompted for a screen to
+ * use in a multiple-monitor setup. If false, the user will only be
+ * prompted once.
+ */
+ public void doFullScreen(boolean force) {
+ setFullScreenMode(fullScreen == null, force);
+ }
+
+ public void doZoom(double factor) {
+ }
+ // public void doOpenMeetingDoc(DocumentInfo doc) {
+ // }
+
+ /**
+ * Goes to the next page
+ */
+ public void doNext() {
+ gotoPage(curpage + 1);
+ }
+
+ /**
+ * Goes to the previous page
+ */
+ public void doPrev() {
+ gotoPage(curpage - 1);
+ }
+
+ /**
+ * Goes to the first page
+ */
+ public void doFirst() {
+ gotoPage(0);
+ }
+
+ /**
+ * Goes to the last page
+ */
+ public void doLast() {
+ gotoPage(curFile.getNumPages() - 1);
+ }
+
+ /**
+ * Goes to the page that was typed in the page number text field
+ */
+ public void doPageTyped() {
+ int pagenum = -1;
+ try {
+ pagenum = Integer.parseInt(pageField.getText()) - 1;
+ } catch (NumberFormatException nfe) {
+ }
+ if (pagenum >= curFile.getNumPages()) {
+ pagenum = curFile.getNumPages() - 1;
+ }
+ if (pagenum >= 0) {
+ if (pagenum != curpage) {
+ gotoPage(pagenum);
+ }
+ } else {
+ pageField.setText(String.valueOf(curpage));
+ }
+ }
+
+ /**
+ * Runs the FullScreenMode change in another thread
+ */
+ class PerformFullScreenMode implements Runnable {
+
+ boolean force;
+
+ public PerformFullScreenMode(boolean forcechoice) {
+ force = forcechoice;
+ }
+
+ public void run() {
+ fspp = new PagePanel();
+ fspp.setBackground(Color.black);
+ page.showPage(null);
+ fullScreen = new FullScreenWindow(fspp, force);
+ fspp.addKeyListener(PDFView.this);
+ gotoPage(curpage);
+ fullScreenAction.setEnabled(true);
+ }
+ }
+
+ /**
+ * Starts or ends full screen mode.
+ *
+ * @param full true to enter full screen mode, false to leave
+ * @param force true if the user should be prompted for a screen
+ * to use the second time full screen mode is entered.
+ */
+ public void setFullScreenMode(boolean full, boolean force) {
+ // curpage= -1;
+ if (full && fullScreen == null) {
+ fullScreenAction.setEnabled(false);
+ new Thread(new PerformFullScreenMode(force),
+ getClass().getName() + ".setFullScreenMode").start();
+ fullScreenButton.setSelected(true);
+ } else if (!full && fullScreen != null) {
+ fullScreen.close();
+ fspp = null;
+ fullScreen = null;
+ gotoPage(curpage);
+ fullScreenButton.setSelected(false);
+ }
+ }
+
+ public static void main(String args[]) {
+ String fileName = null;
+ boolean useThumbs = true;
+
+ for (int i = 0; i < args.length; i++) {
+ if (args[i].equalsIgnoreCase("-noThumb")) {
+ useThumbs = false;
+ } else if (args[i].equalsIgnoreCase("-help") ||
+ args[i].equalsIgnoreCase("-h") ||
+ args[i].equalsIgnoreCase("-?")) {
+ System.out.println("java com.sun.awc.PDFViewer [flags] [file]");
+ System.out.println("flags: [-noThumb] [-help or -h or -?]");
+ System.exit(0);
+ } else {
+ fileName = args[i];
+ }
+ }
+ // start the viewer
+ PDFViewer viewer;
+ viewer = new PDFViewer(useThumbs);
+ if (fileName != null) {
+ viewer.doOpen(fileName);
+ }
+ }
+
+ /**
+ * Handle a key press for navigation
+ */
+ public void keyPressed(KeyEvent evt) {
+ int code = evt.getKeyCode();
+ if (code == evt.VK_LEFT) {
+ doPrev();
+ } else if (code == evt.VK_RIGHT) {
+ doNext();
+ } else if (code == evt.VK_UP) {
+ doPrev();
+ } else if (code == evt.VK_DOWN) {
+ doNext();
+ } else if (code == evt.VK_HOME) {
+ doFirst();
+ } else if (code == evt.VK_END) {
+ doLast();
+ } else if (code == evt.VK_PAGE_UP) {
+ doPrev();
+ } else if (code == evt.VK_PAGE_DOWN) {
+ doNext();
+ } else if (code == evt.VK_SPACE) {
+ doNext();
+ } else if (code == evt.VK_ESCAPE) {
+ setFullScreenMode(false, false);
+ }
+ }
+
+ /**
+ * Combines numeric key presses to build a multi-digit page number.
+ */
+ class PageBuilder implements Runnable {
+
+ int value = 0;
+ long timeout;
+ Thread anim;
+ static final long TIMEOUT = 500;
+
+ /**
+ * add the digit to the page number and start the timeout thread
+ */
+ public synchronized void keyTyped(int keyval) {
+ value = value * 10 + keyval;
+ timeout = System.currentTimeMillis() + TIMEOUT;
+ if (anim == null) {
+ anim = new Thread(this);
+ anim.setName(getClass().getName());
+ anim.start();
+ }
+ }
+
+ /**
+ * waits for the timeout, and if time expires, go to the specified
+ * page number
+ */
+ public void run() {
+ long now, then;
+ synchronized (this) {
+ now = System.currentTimeMillis();
+ then = timeout;
+ }
+ while (now < then) {
+ try {
+ Thread.sleep(timeout - now);
+ } catch (InterruptedException ie) {
+ }
+ synchronized (this) {
+ now = System.currentTimeMillis();
+ then = timeout;
+ }
+ }
+ synchronized (this) {
+ gotoPage(value - 1);
+ anim = null;
+ value = 0;
+ }
+ }
+ }
+
+ PageBuilder pb = new PageBuilder();
+
+ public void keyReleased(KeyEvent evt) {
+ }
+
+ /**
+ * gets key presses and tries to build a page if they're numeric
+ */
+ public void keyTyped(KeyEvent evt) {
+ char key = evt.getKeyChar();
+ if (key >= '0' && key <= '9') {
+ int val = key - '0';
+ pb.keyTyped(val);
+ }
+ }
+
+ /**
+ * Someone changed the selection of the outline tree. Go to the new
+ * page.
+ */
+ public void valueChanged(TreeSelectionEvent e) {
+ if (e.isAddedPath()) {
+ OutlineNode node = (OutlineNode) e.getPath().getLastPathComponent();
+ if (node == null) {
+ return;
+ }
+
+ try {
+ PDFAction action = node.getAction();
+ if (action == null) {
+ return;
+ }
+
+ if (action instanceof GoToAction) {
+ PDFDestination dest = ((GoToAction) action).getDestination();
+ if (dest == null) {
+ return;
+ }
+
+ PDFObject page = dest.getPage();
+ if (page == null) {
+ return;
+ }
+
+ int pageNum = curFile.getPageNumber(page);
+ if (pageNum >= 0) {
+ gotoPage(pageNum);
+ }
+ }
+ } catch (IOException ioe) {
+ ioe.printStackTrace();
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/PDFView.xml.renamed b/99-reference/ciserver-hmi-deployment/components/PDFView.xml.renamed
new file mode 100644
index 0000000..48aa3fc
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/PDFView.xml.renamed
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/PDFViewer.xml b/99-reference/ciserver-hmi-deployment/components/PDFViewer.xml
new file mode 100644
index 0000000..19bf1b2
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/PDFViewer.xml
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Playback.xml b/99-reference/ciserver-hmi-deployment/components/Playback.xml
new file mode 100644
index 0000000..36b54cb
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Playback.xml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Polygon.xml b/99-reference/ciserver-hmi-deployment/components/Polygon.xml
new file mode 100644
index 0000000..1db2930
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Polygon.xml
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Radial.xml b/99-reference/ciserver-hmi-deployment/components/Radial.xml
new file mode 100644
index 0000000..14b65af
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Radial.xml
@@ -0,0 +1,158 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Rectangle.xml b/99-reference/ciserver-hmi-deployment/components/Rectangle.xml
new file mode 100644
index 0000000..b5b7357
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Rectangle.xml
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/RectangularScale.xml b/99-reference/ciserver-hmi-deployment/components/RectangularScale.xml
new file mode 100644
index 0000000..bcda046
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/RectangularScale.xml
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Reporting.xml b/99-reference/ciserver-hmi-deployment/components/Reporting.xml
new file mode 100644
index 0000000..ec40948
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Reporting.xml
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/99-reference/ciserver-hmi-deployment/components/ScriptedFunction.xml b/99-reference/ciserver-hmi-deployment/components/ScriptedFunction.xml
new file mode 100644
index 0000000..76a41b4
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/ScriptedFunction.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/ShelvedOverview.xml b/99-reference/ciserver-hmi-deployment/components/ShelvedOverview.xml
new file mode 100644
index 0000000..f300fb3
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/ShelvedOverview.xml
@@ -0,0 +1,539 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Spline.xml b/99-reference/ciserver-hmi-deployment/components/Spline.xml
new file mode 100644
index 0000000..ce533c2
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Spline.xml
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Symbol.xml b/99-reference/ciserver-hmi-deployment/components/Symbol.xml
new file mode 100644
index 0000000..7e1e2a1
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Symbol.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/SymbolInstance.xml b/99-reference/ciserver-hmi-deployment/components/SymbolInstance.xml
new file mode 100644
index 0000000..2182f8a
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/SymbolInstance.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/Text.xml b/99-reference/ciserver-hmi-deployment/components/Text.xml
new file mode 100644
index 0000000..fb16dff
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/Text.xml
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/VisibilityGroup.xml b/99-reference/ciserver-hmi-deployment/components/VisibilityGroup.xml
new file mode 100644
index 0000000..1abedc1
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/VisibilityGroup.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/VisualizationLayer.xml b/99-reference/ciserver-hmi-deployment/components/VisualizationLayer.xml
new file mode 100644
index 0000000..9186569
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/VisualizationLayer.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/VisualizationParameter.xml b/99-reference/ciserver-hmi-deployment/components/VisualizationParameter.xml
new file mode 100644
index 0000000..39f47aa
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/VisualizationParameter.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/components/compileComponents.cmd b/99-reference/ciserver-hmi-deployment/components/compileComponents.cmd
new file mode 100644
index 0000000..24c3d8a
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/compileComponents.cmd
@@ -0,0 +1,78 @@
+@echo off
+REM +--------------------------------------------------------------------------+
+REM | |
+REM | ///// ///// ///// ////// / OOOOO OOO OOO O OOOO |
+REM | / / / / / / O O O O O O O |
+REM | /// ///// /// / / O O O O O O OOO |
+REM | / / / / / / O O O O O O O |
+REM | / / / / / / O O O O O O O |
+REM |/ / / ///// / / O OOO OOO OOOO OOOO |
+REM | |
+REM +--------------------------------------------------------------------------+
+REM | * JWUI *
+REM +--------------------------------------------------------------------------+
+REM | Module identification
+REM +--------------------------------------------------------------------------+
+REM
+REM Module Name : compileComponents.cmd
+REM
+REM Copyright (c): Yokogawa
+REM
+REM Author : C. Horevoorts
+REM
+REM +--------------------------------------------------------------------------+
+REM | Module specification
+REM +--------------------------------------------------------------------------+
+REM
+REM Description : This script compiles some example components
+REM
+REM +--------------------------------------------------------------------------+
+REM | Changes ....
+REM +--------------------------------------------------------------------------+
+REM Who When Change What
+REM +--------------------------------------------------------------------------+
+REM HVS Jun-06 e9435 Initial version
+REM HVS Jan-10 e10100 Web-HMI Phase 2
+REM BHS Nov-11 i10583 Correct copy command
+REM HVS Feb-20 e12194 Port to Java 11
+REM
+
+REM
+REM Compile the java component classes
+REM
+javac -classpath "%TLS_ROOT_PATH%\tls\exe\jwuiclt.jar;%TLS_ROOT_PATH%\tls\exe\jwuilib.jar;%TLS_ROOT_PATH%\tls\exe\jtoolsclt.jar;%TLS_ROOT_PATH%\tls\exe\jtoolslibclt.jar;PDFRenderer.jar" PDFView.java
+
+REM
+REM Put the compiled classes in the jwuicomponentslib.jar
+REM
+if exist jwuicomponentslib.jar del /q /f jwuicomponentslib.jar
+jar cvf jwuicomponentslib.jar *.class
+del /q /f *.class
+
+REM
+REM Unpack any required other jar file into jwuicomponentslib.jar
+REM For example:
+REM if exist workfolder rmdir /s /q workfolder
+REM mkdir workfolder
+REM cd workfolder
+REM jar xf ../PDFRenderer.jar
+REM rmdir /s /q META-INF
+REM cd ..
+REM jar uvf jwuicomponentslib.jar -C workfolder .
+REM rmdir /s /q workfolder
+
+REM
+REM Sign the jwuicomponentslib.jar
+REM
+jarsigner -keystore %TLS_WAP_PATH%\cfg\keystore\keystore -storepass yokogawa jwuicomponentslib.jar yokogawa
+
+REM
+REM Distribute the jwuicomponentslib.jar to the tls environment
+REM
+copy jwuicomponentslib.jar %TLS_ROOT_PATH%\tls\exe
+copy jwuicomponentslib.jar %TLS_WAP_PATH%\lib
+
+REM
+REM Don't forget to restart USER/FAST to make the changes effective
+REM
+
diff --git a/99-reference/ciserver-hmi-deployment/components/componentDescription.html b/99-reference/ciserver-hmi-deployment/components/componentDescription.html
new file mode 100644
index 0000000..4a5ef24
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/componentDescription.html
@@ -0,0 +1,159 @@
+
+
+
+
+
+This package contains the component reader. Using an XML based definition the properties on a component are described.
+Introduction
+The editor and runtime have no knowledge about the components composing a display or symbol. It is not aware that there are
+rectangles, circles, sliders, alarm overviews, etc. During startup the editor or runtime take a look in the
+%TLS_ROOT_PATH%\tls\wap\cfg\operatorInterfaces\%d\components directory to find out the components that are available
+for displays and symbols. Each component is described by a separate xml file that supplies global information about the
+component and its properties that are available to the editor or runtime. The next sections describe the xml syntax
+used to describe a component. Many examples of component description files are are found in the directory mentioned above.
+
+XML file structure
+
+componentType
+
+
+<componentType
+ name="name of the component"
+ icon="file name of for the icon.png"
+ description="component description"
+ containedBy="name of container class"
+ class="name of the class"
+ makeInteractor="name of java class that can make the component interactively"
+ enterprise="yes|no"
+ resourceBundle="name of translation properties file"
+ <property.../>
+/>
+
+ General remarks: Attribute names (as part of XML element tags) are case sensitive!
+
+The componentType attribute starts the definition of a component. A component must be a class derived from IlvGraphic.
+If this is not the case then a container can be supplied, which is derived from IlvGraphic, that can embed the component
+(see containedBy).
+
+name The name of the component.
+ icon The name of an image file that contains the icon that represents the component. This icon is shown in the
+drawing pallet of the editor.
+ description The description of the component. This text is shows as an one liner help about the component.
+ containedBy A container class name that is capable of containing the component if the component itself is not derived
+from IlvGraphic. The containedBy class must be derived from IlvGraphic. For swing stuff this is always
+"fasttools.jwui.ilv.graphic.ExtendedJComponent". As a shortcut just "JComponent" can be specified. In that case the
+makeInteractor does not need to be specified. It uses then the default make interactor for JComponents.
+ class The name of the java class (full qualified path) that handles the component.
+ makeInteractor Each component can have its own method how it is created interactively by the user of the editor. This attribute supplies
+the name of the class that can be called by the editor to let the user to create the component interactively.
+ enterprise Whether the component is an enterprise component. If "yes" then the component is only available while editing an enterprise display or symbol.
+If "no" then the component is available while editing an enterprise or local display or symbol. Default is "no".
+ resourceBundle This attribute is optional. It specifies an alternative translation resource to the CI Server common translation resource.
+e.g. A resourceBundle value of "my.package.MyResourceBundle"(without ".properties" extension) will be obtained
+by classloader from "my/package/MyResourceBundle.properties" or
+by fileloader from "tls/wap/properties/MyResourceBundle.properties".
+During translation first this bundle is interrogated, then the CI Server common bundle
+
+
+
+property
+
+
+<property
+ name="name of the property"
+ id="unique id number for the property"
+ type="representation of the property"
+ description="component description"
+ defaultAllowed="yes|no"
+ save="yes|no"
+ writeAllowed="yes|no"
+ readAllowed="yes|no"
+ connectAllowed="yes|no"
+ deprecated="yes|no"
+ enterprise="yes|no"
+ bound="yes|no"
+ null="none|default|readOnly"
+ setter="name of the setter method"
+ getter="name of the getter method"
+ array="a..b"
+ localized="yes|no"
+ initialValue="yes|no"
+ advanced="yes|no"
+ triggers="comma separated list of properties in this component"
+/>
+
+Each component can have a number of properties.
+Each property attribute specifies one of the properties of the component.
+
+name The name of the property.
+ id A unique identification number of the property. It must be in the range 1-999. When omitted then
+the id is generated automatically starting with 1000 and in the order as the properties are listed.
+ type The representation type of the property. This can be java primitive type like "float", "int", etc. Or the
+name of a class like "java.lang.String" (notice the full path), "fasttools.jwui.common.property.paint.PaintSet", etc.
+ description The description of the property. It used as an one liner help in the editor.
+ defaultAllowed The editor is capable in pasting default properties to a component. The defaultAllowed attribute specifies
+whether a default property value can be applied to this property. For example, the x,y position of the component
+may not be set by applying default attributes. Default is "yes".
+ save Specifies whether the value for this attribute must be saved while the display/symbol is saved.
+Default is "yes".
+ writeAllowed Specifies whether the property can be assigned a new value. Default is "yes".
+ readAllowed Specifies whether the property can be read. Default is "yes".
+ connectAllowed Specifies whether the property can be connected to an item. Default is "yes".
+ deprecated Specifies whether the property is deprecated. A deprecated property can only be read from a visualization file.
+It cannot be saved, edited, connected or seen in the Edit Module. This is useful when you want to maintain backward compatibility
+with a property, but do not want to use the property in a new version of the component. Default is "no".
+ enterprise Specifies whether the property is only valid in enterprise displays and symbols. Default is "no".
+ bound Specifies whether the property can fire an event if its value is changed internally. For example, for a slider
+the value property fires an event if the slider is moved by the user. Default is "no".
+If at least one property is bound then the component's class must have the methods addPropertyChangeListener(PropertyChangeListener listener)
+and removePropertyChangeListener(PropertyChangeListener). The PropertyChangeEvent method getPropertyName() returns the name of
+the property or the name of the getter method.
+ null This specifies things about a null values for class types:
+
+none Specifies that a null value may be set that indicates the property as "not set".
+For example an icon may be set to null that indicates that no icon is set. The icon selection box must
+have the possibility to select "none".
+ default Specifies that a null value may be set that indicates the property as "set to default".
+For example the foreground color may be set to null that indicates that de default foreground color is set.
+The color selection box must have the possibility to select "default".
+ readOnly Specifies that no null value may be set and if null value is read that at that moment
+the property is readonly.
+
+ setter This specifies the name of the setter method. If not specified then the name of the setter method is derived from the
+property name.
+ getter This specifies the name of the getter method. If not specified then the name of the getter method is derived from the
+property name.
+ array This specifies that the property is exposed as an properties array. Supported value format is "a..b" where a and b are integer values and a<b.
+The 'int' array-index is supplied as the first argument when calling the getter and setter methods on the component.
+ localized This specified that the property is to be localized according to the user locale, when a localization is available.
+Currently, this can only apply to String properties. The internal property value is unaffected; only its representation is localized.
+ initialValue Specifies that a property has a (default) initial value. Set to "no" to specify that a property does not have
+an initial value. For example, a symbol instance component may represents many different symbols, each of which may have a different initial size.
+When unspecified, the default is "yes".
+ advanced If yes, then this property will only show on the 'advanced' tab of the component properties sheet. Notice that advanced properties which are connected to a parameter will also show up in the 'basic' tab in italics.
+ triggers Specifies that a change in the value of this property may trigger an irreversible or unpredictable change to the value of each of the specified properties.
+This allows value changes in this property to also generate events for any value changes of the specified properties that may occur as a result (e.g. for the undo-redo mechanism).
+
+
+
+
+
+
diff --git a/99-reference/ciserver-hmi-deployment/components/readme.txt b/99-reference/ciserver-hmi-deployment/components/readme.txt
new file mode 100644
index 0000000..8eb92a7
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/components/readme.txt
@@ -0,0 +1,53 @@
+
+Copyright: Yokogawa System Center Europe B.V. All rights reserved.
+YOKOGAWA PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+
+Author: C. Horevoorts
+
+----------------------------------------------------------------------------
+Changes ....
+----------------------------------------------------------------------------
+Who When Change What
+----------------------------------------------------------------------------
+HVS Dec-06 e9435 First version documented
+HVS Jan-09 e10100 Web-HMI Phase 2
+
+
+This directory contains the component definitions. Each component is described in the component
+description file that has the xml extension. You can remove components except for the following
+list:
+
+Display.xml
+GraphicSet.xml
+Link.xml
+Symbol.xml
+SymbomInstance.xml
+VisibilityGroup.xml
+VisualizationLayer.xml
+VisualizationParameter.xml
+
+
+Three components are added as an example to make your own components:
+
+Slider:
+
+The slider is a JComponent described in JSlider.xml. It's source is located in ExtendedJSlider.java.
+In this example you can see how slider events can be passed to the connection of the value property of the slider.
+
+Border:
+
+The border is a JComponent described in JBorder.xml. It's source is located in ExtendedJBorder.java.
+
+PDF Viewer:
+
+The PDF Viewer enabled you to view PDF files. It's source is located in PDFView.java en it uses the PDFRenderer.jar library.
+To use this component rename PDFView.xml.renamed to PDFView.xml and execute the compileComponents.cmd script.
+
+
+
+The compileComponents.cmd script shows how to compile the sources. Note that the Java SDK must be installed to
+execute this script.
+
+In componentDescription.html you find the syntax of describing components.
+
+
diff --git a/99-reference/ciserver-hmi-deployment/displays/AOG_DisplayTemplate.xml b/99-reference/ciserver-hmi-deployment/displays/AOG_DisplayTemplate.xml
new file mode 100644
index 0000000..ade11d1
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/displays/AOG_DisplayTemplate.xml
@@ -0,0 +1,610 @@
+
+
+
+
+
+ true
+ 12
+
+
+
+
+ AOG_SIL
+ Stroke Indicator Limit
+
+
+
+
+
+
+
+ AOG_SIO
+ Stroke Indicator Outline
+
+
+
+
+
+
+
+ AOG_SEO
+ Stroke Equipment Outline
+
+
+
+
+
+
+
+ AOG_SIS
+ Stroke Indicator Signal
+
+
+
+
+
+
+
+ AOG_CAL
+ Color Alarm Low
+
+
+
+
+
+
+
+ AOG_CAM
+ Color Alarm Medium
+
+
+
+
+
+
+
+ AOG_CER
+ Color Equipment Running
+
+
+
+
+
+
+
+ AOG_CAO
+ Color Alarm Off
+
+
+
+
+
+
+
+ AOG_CAD
+ Color Alarm Diagnostic
+
+
+
+
+
+
+
+ AOG_FT4
+ Font Text 4
+
+
+
+
+
+
+
+ AOG_CIL
+ Color Indicator Limit
+
+
+
+
+
+
+
+ AOG_CIN
+ Color Indicator Normal
+
+
+
+
+
+
+
+ AOG_CIO
+ Color Indicator Outline
+
+
+
+
+
+
+
+ AOG_CAH
+ Color Alarm High
+
+
+
+
+
+
+
+ AOG_CEO
+ Color Equipment Off
+
+
+
+
+
+
+
+ AOG_CIS
+ Color Indicator Signal
+
+
+
+
+
+
+
+ AOG_CT1
+ Color Text 1
+
+
+
+
+
+
+
+ AOG_ShowTagName
+ Show Tag Name
+
+
+ true
+
+
+
+
+ AOG_CT2
+ Color Text 2
+
+
+
+
+
+
+
+ AOG_CT3
+ Color Text 3
+
+
+
+
+
+
+
+ AOG_CT4
+ Color Text 4
+
+
+
+
+
+
+
+ AOG_CSS
+ Color Selector Selected
+
+
+
+
+
+
+
+ AOG_CSI
+ Color Selector Indicator
+
+
+
+
+
+
+
+ AOG_CFS
+ Color Fluid Sub
+
+
+
+
+
+
+
+ AOG_CFM
+ Color Fluid Main
+
+
+
+
+
+
+
+ AOG_SGS
+ Stroke Gas Sub
+
+
+
+
+
+
+
+ AOG_CDB
+ Color Display Background
+
+
+
+
+
+
+
+ AOG_CLL
+ Color Line Leader
+
+
+
+
+
+
+
+ AOG_CLB
+ Color Line Border
+
+
+
+
+
+
+
+ AOG_SGM
+ Stroke Gas Main line
+
+
+
+
+
+
+
+ AOG_CLD
+ Color Line Derived sub line
+
+
+
+
+
+
+
+ AOG_CLE
+ Color Line Equipment
+
+
+
+
+
+
+
+ AOG_CGS
+ Color Gas Sub line
+
+
+
+
+
+
+
+ AOG_SSS
+ Stroke Selector Selected
+
+
+
+
+
+
+
+ AOG_SSI
+ Stroke Selector Indicator
+
+
+
+
+
+
+
+ AOG_CGM
+ Color Gas Main line
+
+
+
+
+
+
+
+ AOG_FT1
+ Font Text 1
+
+
+
+
+
+
+
+ AOG_FT2
+ Font Text 2
+
+
+
+
+
+
+
+ AOG_FT3
+ Font Text 3
+
+
+
+
+
+
+
+ AOG_SLP
+ Stroke Line Product
+
+
+
+
+
+
+
+ AOG_CMC
+ Color Manual Cotrol
+
+
+
+
+
+
+
+ AOG_SLS
+ Stroke Line Signal
+
+
+
+
+
+
+
+ AOG_CIB
+ Color Indicator Background
+
+
+
+
+
+
+
+ AOG_SLL
+ Stroke Line Leader
+
+
+
+
+
+
+
+ AOG_CLP
+ Color Line Product
+
+
+
+
+
+
+
+ AOG_SLB
+ Stroke Line Border
+
+
+
+
+
+
+
+ AOG_CLS
+ Color Line Signal
+
+
+
+
+
+
+
+ AOG_SLD
+ Stroke Line Derived sub line
+
+
+
+
+
+
+
+ AOG_SLE
+ Stroke Line Equipment
+
+
+
+
+
+
+
+ AOG_CDN
+ Color Display Neighbor
+
+
+
+
+
+
+
+ AOG_CENR
+ Color Equipment Not Running
+
+
+
+
+
+
+
+ AOG_OnText
+
+
+ ON
+
+
+
+
+ AOG_OffText
+
+
+ OFF
+
+
+
+
+ AOG_ET1
+ Engineering Units of Temperature
+
+
+ Deg.C
+
+
+
+
+ AOG_ET2
+ Engineering Unit of Temperature
+
+
+ Deg.F
+
+
+
+
+ AOG_EP1
+ Engineering unit of Pressure
+
+
+ Pa
+
+
+
+
+ AOG_CEB
+ Color Equipment Background
+
+
+
+
+
+
+
+ AOG_EL1
+
+
+ m
+
+
+
+
+ AOG_EF1
+
+
+ m3/s
+
+
+
+
+ AOG_BlinkOnNotAcknowledged
+
+
+ true
+
+
+
+
+ AOG_COC
+ Color Offline Condition
+
+
+
+
+
+
+ Overview
+ Always shown
+ true
+ 10.0
+
+
+ Rough
+ Shown when viewing viewing a large area
+ true
+ 25.0
+
+
+ Standard
+ Shown when using the default view setting
+ true
+ 100.0
+
+
+ Detail
+ Shown only when viewing a small area
+ true
+ 400.0
+
+
+ Intricacies
+ Shown only when viewing a very small area
+ true
+ 1000.0
+
+
+
+
+
+
+
+ 0.0
+
+
+ 1
+ AOG_CDB
+
+
+
+
+
+ AOG_Template
+ true
+
+ 500
+ false
+
+ Display
+
+ 0
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/displays/AOG_ItemFaceplate.xml b/99-reference/ciserver-hmi-deployment/displays/AOG_ItemFaceplate.xml
new file mode 100644
index 0000000..5ba58cd
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/displays/AOG_ItemFaceplate.xml
@@ -0,0 +1,225 @@
+
+
+
+
+
+ 2
+
+ activeFP
+ ItemValue
+
+
+
+
+ 0.0
+
+
+
+
+ 1
+
+
+
+
+ 2
+
+ item
+ ItemLocked
+
+
+
+
+
+ item_df
+
+
+
+
+
+ 135
+ 516
+ 94
+
+
+
+
+
+
+
+
+ AOG_ItemInfo
+ true
+
+ 500
+ false
+ AOG_IndicatorPressure/5/1
+ AOG_AlarmComponent/5/1
+ AOG_IndicatorTemperature/5/1
+ AOG_IndicatorFlow/5/1
+ AOG_IndicatorLevel/5/1
+ AOG_ManualComponent/5/1
+ AOG_FP_SVValue/3/1
+ AOG_FP_Mode/3/1
+ AOG_FP_BarIndicator/3/1
+ AOG_FP_PVValue/3/1
+ AOG_FP_Frame/3/1
+ AOG_FP_Status/3/1
+ AOG_Faceplate/1/1
+
+
+ item
+
+
+
+
+
+
+
+
+ setPointItem
+
+
+
+
+
+
+
+
+ AOG_CDB
+
+
+
+
+
+
+
+ activeFP
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+ Overview
+ Always shown
+ true
+ 10.0
+
+
+ Rough
+ Shown when viewing viewing a large area
+ true
+ 25.0
+
+
+ Standard
+ Shown when using the default view setting
+ true
+ 100.0
+
+
+ Detail
+ Shown only when viewing a small area
+ true
+ 400.0
+
+
+ Intricacies
+ Shown only when viewing a very small area
+ true
+ 1000.0
+
+
+
+
+
+ 1
+
+ item
+ ItemName3
+
+
+
+
+
+
+ 1
+
+ AOG_CDB
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Display
+
+ 1
+
+
+ 68.0
+ 256.0
+ 0.0
+ -0.0
+ 0.0
+ -0.0
+
+
+
+
+
+
+
+
+ 1
+
+ item
+ ItemID
+
+
+
+
+
+
+ 1
+
+ setPointItem
+ ItemID
+
+
+
+
+
+
+ 1
+
+ item
+ ItemEng
+
+
+
+
+
+
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/displays/Straddle_01_Detail.xml b/99-reference/ciserver-hmi-deployment/displays/Straddle_01_Detail.xml
new file mode 100644
index 0000000..9f3ce59
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/displays/Straddle_01_Detail.xml
@@ -0,0 +1,5947 @@
+
+
+
+
+
+ 0.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Straddle_01_Prestart
+ FixedPopup
+ default
+
+
+
+
+
+
+
+
+
+
+ java.lang.Boolean
+ java.lang.Boolean
+
+ false
+ true
+ true
+ false
+
+
+
+
+
+ 1
+
+ PrestartDone_S01
+ ItemValue
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Straddle_Overview
+
+
+
+
+
+
+
+ Straddle_Maintenance
+
+
+
+
+
+
+
+ Straddle_Location
+
+
+
+
+
+
+
+ Straddle_Alarms
+
+
+
+
+
+
+
+ Straddle_Trends
+
+
+
+
+
+
+
+
+
+
+
+
+ Straddle_Detail
+
+
+
+
+
+
+
+ Straddle_01_Detail_Light
+
+
+
+
+
+
+
+ Straddle_01_Detail_Grey
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Signal_Board
+ FixedPopup
+ default
+
+
+
+
+
+
+ Straddle 01 (Demo) Detail
+ 1920
+ 1080
+ 66
+
+
+
+
+
+
+
+
+
+
+ PATRICK
+ true
+
+ 700
+ false
+ false
+
+
+ AOG_SIL
+ Stroke Indicator Limit
+
+
+
+
+
+
+
+ AOG_SIO
+ Stroke Indicator Outline
+
+
+
+
+
+
+
+ AOG_SEO
+ Stroke Equipment Outline
+
+
+
+
+
+
+
+ AOG_SIS
+ Stroke Indicator Signal
+
+
+
+
+
+
+
+ AOG_CAL
+ Color Alarm Low
+
+
+
+
+
+
+
+ AOG_CAM
+ Color Alarm Medium
+
+
+
+
+
+
+
+ AOG_CER
+ Color Equipment Running
+
+
+
+
+
+
+
+ AOG_CAO
+ Color Alarm Off
+
+
+
+
+
+
+
+ AOG_CAD
+ Color Alarm Diagnostic
+
+
+
+
+
+
+
+ AOG_FT4
+ Font Text 4
+
+
+
+
+
+
+
+ AOG_CIL
+ Color Indicator Limit
+
+
+
+
+
+
+
+ AOG_CIN
+ Color Indicator Normal
+
+
+
+
+
+
+
+ AOG_CIO
+ Color Indicator Outline
+
+
+
+
+
+
+
+ AOG_CAH
+ Color Alarm High
+
+
+
+
+
+
+
+ AOG_CEO
+ Color Equipment Off
+
+
+
+
+
+
+
+ AOG_CIS
+ Color Indicator Signal
+
+
+
+
+
+
+
+ AOG_CT1
+ Color Text 1
+
+
+
+
+
+
+
+ AOG_ShowTagName
+ Show Tag Name
+
+
+ true
+
+
+
+
+ AOG_CT2
+ Color Text 2
+
+
+
+
+
+
+
+ AOG_CT3
+ Color Text 3
+
+
+
+
+
+
+
+ AOG_CT4
+ Color Text 4
+
+
+
+
+
+
+
+ AOG_CSS
+ Color Selector Selected
+
+
+
+
+
+
+
+ AOG_CSI
+ Color Selector Indicator
+
+
+
+
+
+
+
+ AOG_CFS
+ Color Fluid Sub
+
+
+
+
+
+
+
+ AOG_CFM
+ Color Fluid Main
+
+
+
+
+
+
+
+ AOG_SGS
+ Stroke Gas Sub
+
+
+
+
+
+
+
+ AOG_CDB
+ Color Display Background
+
+
+
+
+
+
+
+ AOG_CLL
+ Color Line Leader
+
+
+
+
+
+
+
+ AOG_CLB
+ Color Line Border
+
+
+
+
+
+
+
+ AOG_SGM
+ Stroke Gas Main line
+
+
+
+
+
+
+
+ AOG_CLD
+ Color Line Derived sub line
+
+
+
+
+
+
+
+ AOG_CLE
+ Color Line Equipment
+
+
+
+
+
+
+
+ AOG_CGS
+ Color Gas Sub line
+
+
+
+
+
+
+
+ AOG_SSS
+ Stroke Selector Selected
+
+
+
+
+
+
+
+ AOG_SSI
+ Stroke Selector Indicator
+
+
+
+
+
+
+
+ AOG_CGM
+ Color Gas Main line
+
+
+
+
+
+
+
+ AOG_FT1
+ Font Text 1
+
+
+
+
+
+
+
+ AOG_FT2
+ Font Text 2
+
+
+
+
+
+
+
+ AOG_FT3
+ Font Text 3
+
+
+
+
+
+
+
+ AOG_SLP
+ Stroke Line Product
+
+
+
+
+
+
+
+ AOG_CMC
+ Color Manual Cotrol
+
+
+
+
+
+
+
+ AOG_SLS
+ Stroke Line Signal
+
+
+
+
+
+
+
+ AOG_CIB
+ Color Indicator Background
+
+
+
+
+
+
+
+ AOG_SLL
+ Stroke Line Leader
+
+
+
+
+
+
+
+ AOG_CLP
+ Color Line Product
+
+
+
+
+
+
+
+ AOG_SLB
+ Stroke Line Border
+
+
+
+
+
+
+
+ AOG_CLS
+ Color Line Signal
+
+
+
+
+
+
+
+ AOG_SLD
+ Stroke Line Derived sub line
+
+
+
+
+
+
+
+ AOG_SLE
+ Stroke Line Equipment
+
+
+
+
+
+
+
+ AOG_CDN
+ Color Display Neighbor
+
+
+
+
+
+
+
+ AOG_CENR
+ Color Equipment Not Running
+
+
+
+
+
+
+
+ AOG_OnText
+
+
+ ON
+
+
+
+
+ AOG_OffText
+
+
+ OFF
+
+
+
+
+ AOG_ET1
+ Engineering Units of Temperature
+
+
+ Deg.C
+
+
+
+
+ AOG_ET2
+ Engineering Unit of Temperature
+
+
+ Deg.F
+
+
+
+
+ AOG_EP1
+ Engineering unit of Pressure
+
+
+ Pa
+
+
+
+
+ AOG_CEB
+ Color Equipment Background
+
+
+
+
+
+
+
+ AOG_EL1
+
+
+ m
+
+
+
+
+ AOG_EF1
+
+
+ m3/s
+
+
+
+
+ AOG_BlinkOnNotAcknowledged
+
+
+ true
+
+
+
+
+ AOG_COC
+ Color Offline Condition
+
+
+
+
+
+
+
+ PrestartDone_S01
+ Pre-start checklist acknowledged by the driver
+
+
+ false
+
+
+
+ 2
+ Overview
+ Always shown
+ true
+ 10.0
+
+
+ 3
+ Rough
+ Shown when viewing a large area
+ true
+ 25.0
+
+
+ 4
+ Standard
+ Shown when using the default view setting
+ true
+ 100.0
+
+
+ 5
+ Detail
+ Shown only when viewing a small area
+ true
+ 400.0
+
+
+ 6
+ Intricacies
+ Shown only when viewing a very small area
+ true
+ 1000.0
+
+
+
+
+
+
+ 1
+ AOG_CDB
+
+
+
+ 432
+ Chrome
+
+ 15
+
+ 101
+ 960.0
+ 540.0
+ 540.0
+ 540.0
+ 960.0
+ 960.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 102
+ 100.0
+ 540.0
+ 540.0
+ 540.0
+ 100.0
+ 100.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 103
+ 200.5
+ 540.0
+ 540.0
+ 540.0
+ 0.5
+ 0.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 104
+
+
+
+ 105
+ STRADDLE 01
+
+
+
+ true
+ 319.5
+ 34
+ 22.0
+ 22.0
+ 103.5
+ 103.5
+ 0.0
+ 0.0
+
+
+ 106
+ MACHINE DETAIL · SIMULATED
+
+
+
+ true
+ 315.992
+ 58
+ 9.5
+ 9.5
+ 97.992
+ 97.992
+ 0.0
+ 0.0
+
+
+ 107
+ DEMONSTRATION ONLY · NO TAG CONNECTIONS
+
+
+
+ true
+ 1775.5
+ 34
+ 7.5
+ 7.5
+ 126.5
+ 126.5
+ 0.0
+ 0.0
+
+
+ 108
+ 4.5
+ 1564.5
+ 58.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 109
+ ACTIVE
+
+
+
+ true
+ 1594.0
+ 58
+ 7.5
+ 7.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 110
+ 4.0
+ 1654.0
+ 58.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 111
+ FAULT
+
+
+
+ true
+ 1681.5
+ 58
+ 7.5
+ 7.5
+ 15.5
+ 15.5
+ 0.0
+ 0.0
+
+
+ 112
+ 6.0
+ 1275.0
+ 46.0
+ 24.0
+ 24.0
+ 125.0
+ 125.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 113
+ PRE-START CHECKLIST
+
+
+
+ true
+ 1275.0
+ 40
+ 9.5
+ 9.5
+ 69.5
+ 69.5
+ 0.0
+ 0.0
+
+
+ 114
+ OPEN AND CONFIRM
+
+
+
+ true
+ 1275.0
+ 57
+ 7.0
+ 7.0
+ 48.0
+ 48.0
+ 0.0
+ 0.0
+
+
+ 115
+
+
+
+
+
+
+ 433
+ Pre-start pending
+
+
+ 3
+
+ 116
+ 6.0
+ 915.0
+ 46.0
+ 24.0
+ 24.0
+ 215.0
+ 215.0
+ 0.0
+ 0.0
+
+
+
+ true
+
+
+
+
+
+ 117
+ PRE-START NOT COMPLETED
+
+
+
+ true
+ 839.992
+ 39
+ 12.0
+ 12.0
+ 117.992
+ 117.992
+ 0.0
+ 0.0
+
+
+ 118
+ CHECKLIST MUST BE CONFIRMED BEFORE STARTING
+
+
+
+ true
+ 839.5
+ 58
+ 7.0
+ 7.0
+ 117.5
+ 117.5
+ 0.0
+ 0.0
+
+
+ 434
+ Pre-start done
+
+
+ 4
+
+ 119
+ 6.0
+ 915.0
+ 46.0
+ 24.0
+ 24.0
+ 215.0
+ 215.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 120
+ 5.0
+ 723.0
+ 46.0
+ 5.0
+ 5.0
+ 5.0
+ 5.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 121
+ PRE-START COMPLETE
+
+
+
+ true
+ 830.992
+ 39
+ 12.0
+ 12.0
+ 90.992
+ 90.992
+ 0.0
+ 0.0
+
+
+ 122
+ ACKNOWLEDGED BY DRIVER
+
+
+
+ true
+ 804.5
+ 58
+ 7.0
+ 7.0
+ 64.5
+ 64.5
+ 0.0
+ 0.0
+
+
+ 435
+ Navigation
+
+ 99
+
+ 123
+ NAVIGATION
+
+
+
+ true
+ 49.0
+ 104
+ 7.0
+ 7.0
+ 29.0
+ 29.0
+ 0.0
+ 0.0
+
+
+ 124
+ 6.0
+ 100.0
+ 146.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 125
+ STRADDLE OVERVIEW
+
+
+
+ true
+ 98.5
+ 146
+ 10.0
+ 10.0
+ 68.5
+ 68.5
+ 0.0
+ 0.0
+
+
+ 126
+
+
+
+
+
+
+ 127
+ 6.0
+ 100.0
+ 196.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 128
+ MAINTENANCE
+
+
+
+ true
+ 77.5
+ 196
+ 10.0
+ 10.0
+ 47.5
+ 47.5
+ 0.0
+ 0.0
+
+
+ 129
+
+
+
+
+
+
+ 130
+ 6.0
+ 100.0
+ 246.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 131
+ LIVE LOCATION
+
+
+
+ true
+ 79.492
+ 246
+ 10.0
+ 10.0
+ 49.492
+ 49.492
+ 0.0
+ 0.0
+
+
+ 132
+
+
+
+
+
+
+ 133
+ 6.0
+ 100.0
+ 296.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 134
+ 1.5
+ 13.5
+ 296.0
+ 12.0
+ 12.0
+ 1.5
+ 1.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 135
+ STRADDLE DETAIL
+
+
+
+ true
+ 89.492
+ 296
+ 10.0
+ 10.0
+ 59.492
+ 59.492
+ 0.0
+ 0.0
+
+
+ 136
+ 6.0
+ 100.0
+ 346.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 137
+ ALARMS
+
+
+
+ true
+ 56.5
+ 346
+ 10.0
+ 10.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 138
+
+
+
+
+
+
+ 139
+ 6.0
+ 100.0
+ 396.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 140
+ TRENDS
+
+
+
+ true
+ 54.5
+ 396
+ 10.0
+ 10.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+ 141
+
+
+
+
+
+
+ 142
+ 6.0
+ 100.0
+ 446.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 143
+ SIGNAL BOARD
+
+
+
+ true
+ 78.500
+ 446
+ 10.0
+ 10.0
+ 48.500
+ 48.500
+ 0.0
+ 0.0
+
+
+ 439
+
+
+
+
+
+
+ 144
+ MACHINE
+
+
+
+ true
+ 41.5
+ 500
+ 7.0
+ 7.0
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 145
+ 5.0
+ 32.5
+ 532.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 146
+ 01
+
+
+
+ true
+ 32.5
+ 532.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 147
+ 5.0
+ 77.5
+ 532.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 148
+ 02
+
+
+
+ true
+ 77.5
+ 532.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 149
+ 5.0
+ 122.5
+ 532.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 150
+ 03
+
+
+
+ true
+ 122.5
+ 532.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 151
+ 5.0
+ 167.5
+ 532.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 152
+ 04
+
+
+
+ true
+ 167.5
+ 532.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 153
+ 5.0
+ 32.5
+ 569.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 154
+ 05
+
+
+
+ true
+ 32.5
+ 569.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 155
+ 5.0
+ 77.5
+ 569.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 156
+ 06
+
+
+
+ true
+ 77.5
+ 569.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 157
+ 5.0
+ 122.5
+ 569.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 158
+ 07
+
+
+
+ true
+ 122.5
+ 569.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 159
+ 5.0
+ 167.5
+ 569.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 160
+ 08
+
+
+
+ true
+ 167.5
+ 569.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 161
+ 5.0
+ 32.5
+ 606.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 162
+ 09
+
+
+
+ true
+ 32.5
+ 606.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 163
+ 5.0
+ 77.5
+ 606.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 164
+ 10
+
+
+
+ true
+ 77.5
+ 606.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 165
+ 5.0
+ 122.5
+ 606.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 166
+ 11
+
+
+
+ true
+ 122.5
+ 606.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 167
+ 5.0
+ 167.5
+ 606.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 168
+ 12
+
+
+
+ true
+ 167.5
+ 606.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 169
+ 5.0
+ 32.5
+ 643.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 170
+ 13
+
+
+
+ true
+ 32.5
+ 643.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 171
+ 5.0
+ 77.5
+ 643.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 172
+ 14
+
+
+
+ true
+ 77.5
+ 643.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 173
+ 5.0
+ 122.5
+ 643.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 174
+ 15
+
+
+
+ true
+ 122.5
+ 643.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 175
+ 5.0
+ 167.5
+ 643.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 176
+ 16
+
+
+
+ true
+ 167.5
+ 643.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 177
+ 5.0
+ 32.5
+ 680.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 178
+ 17
+
+
+
+ true
+ 32.5
+ 680.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 179
+ 5.0
+ 77.5
+ 680.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 180
+ 18
+
+
+
+ true
+ 77.5
+ 680.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 181
+ 5.0
+ 122.5
+ 680.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 182
+ 19
+
+
+
+ true
+ 122.5
+ 680.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 183
+ 5.0
+ 167.5
+ 680.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 184
+ 20
+
+
+
+ true
+ 167.5
+ 680.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 185
+ 5.0
+ 32.5
+ 717.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 186
+ 21
+
+
+
+ true
+ 32.5
+ 717.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 187
+ 5.0
+ 77.5
+ 717.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 188
+ 22
+
+
+
+ true
+ 77.5
+ 717.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 189
+ 5.0
+ 122.5
+ 717.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 190
+ 23
+
+
+
+ true
+ 122.5
+ 717.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 191
+ 5.0
+ 167.5
+ 717.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 192
+ 24
+
+
+
+ true
+ 167.5
+ 717.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 193
+ 5.0
+ 32.5
+ 754.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 194
+ 25
+
+
+
+ true
+ 32.5
+ 754.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 195
+ 5.0
+ 77.5
+ 754.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 196
+ 26
+
+
+
+ true
+ 77.5
+ 754.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 197
+ 5.0
+ 122.5
+ 754.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 198
+ 27
+
+
+
+ true
+ 122.5
+ 754.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 199
+ 5.0
+ 167.5
+ 754.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 200
+ 28
+
+
+
+ true
+ 167.5
+ 754.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 201
+ 5.0
+ 32.5
+ 791.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 202
+ 29
+
+
+
+ true
+ 32.5
+ 791.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 203
+ 5.0
+ 77.5
+ 791.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 204
+ 30
+
+
+
+ true
+ 77.5
+ 791.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 205
+ 5.0
+ 122.5
+ 791.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 206
+ 31
+
+
+
+ true
+ 122.5
+ 791.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 207
+ 5.0
+ 167.5
+ 791.0
+ 16.0
+ 16.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 208
+ 32
+
+
+
+ true
+ 167.5
+ 791.0
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 209
+
+
+
+
+
+
+ 210
+ 30 OF 32 NOT YET BUILT
+
+
+
+ true
+ 68.5
+ 827
+ 6.5
+ 6.5
+ 48.5
+ 48.5
+ 0.0
+ 0.0
+
+
+ 211
+ APPEARANCE
+
+
+
+ true
+ 49.5
+ 966
+ 7.0
+ 7.0
+ 29.5
+ 29.5
+ 0.0
+ 0.0
+
+
+ 212
+ 8.0
+ 100.0
+ 1000.0
+ 18.0
+ 18.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 213
+ 6.0
+ 42.833
+ 1000.0
+ 15.0
+ 15.0
+ 27.833
+ 27.833
+ 0.0
+ 0.0
+
+
+
+
+
+ 214
+ DARK
+
+
+
+ true
+ 42.833
+ 1000
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 215
+ 6.0
+ 99.5
+ 1000.0
+ 15.0
+ 15.0
+ 27.833
+ 27.833
+ 0.0
+ 0.0
+
+
+
+
+
+ 216
+ LIGHT
+
+
+
+ true
+ 99.5
+ 1000
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 217
+
+
+
+
+
+
+ 218
+ 6.0
+ 156.167
+ 1000.0
+ 15.0
+ 15.0
+ 27.833
+ 27.833
+ 0.0
+ 0.0
+
+
+
+
+
+ 219
+ GREY
+
+
+
+ true
+ 156.167
+ 1000
+ 7.5
+ 7.5
+ 13.5
+ 13.5
+ 0.0
+ 0.0
+
+
+ 220
+
+
+
+
+
+
+ 221
+ YOKOGAWA CI SERVER
+
+
+
+ true
+ 100
+ 1044
+ 7.0
+ 7.0
+ 52.0
+ 52.0
+ 0.0
+ 0.0
+
+
+ 436
+ Spreader
+
+ 65
+
+ 222
+ 8.0
+ 638.0
+ 368.0
+ 272.0
+ 272.0
+ 422.0
+ 422.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 223
+ 8.0
+ 638.0
+ 111.0
+ 15.0
+ 15.0
+ 422.0
+ 422.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 224
+ 638.0
+ 122.0
+ 4.0
+ 4.0
+ 422.0
+ 422.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 225
+ SPREADER · PLAN VIEW (FRONT AT TOP)
+
+
+
+ true
+ 348.5
+ 111
+ 8.5
+ 8.5
+ 118.5
+ 118.5
+ 0.0
+ 0.0
+
+
+ 226
+ 6.0
+ 640.0
+ 388.0
+ 212.0
+ 212.0
+ 109.0
+ 109.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 227
+ 4.0
+ 640.0
+ 283.0
+ 97.0
+ 97.0
+ 95.0
+ 95.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 228
+ FRONT
+
+
+
+ true
+ 640
+ 271.0
+ 8.5
+ 8.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 229
+ 20.0
+
+
+
+ true
+ 640.0
+ 293.0
+ 8.0
+ 8.0
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 230
+ ft
+
+
+
+ true
+ 663.0
+ 294.0
+ 7.0
+ 7.0
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 231
+ 4.0
+ 640.0
+ 493.0
+ 97.0
+ 97.0
+ 95.0
+ 95.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 232
+ REAR
+
+
+
+ true
+ 640
+ 481.0
+ 8.5
+ 8.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 233
+ 20.0
+
+
+
+ true
+ 640.0
+ 503.0
+ 8.0
+ 8.0
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 234
+ ft
+
+
+
+ true
+ 663.0
+ 504.0
+ 7.0
+ 7.0
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 235
+ GAP
+
+
+
+ true
+ 532.5
+ 388
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 236
+ 4.0
+ 585.0
+ 388.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 237
+ 4.0
+ 695.0
+ 388.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 238
+ 6.0
+ 400.0
+ 236.0
+ 44.0
+ 44.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 239
+ FL
+
+
+
+ true
+ 333.0
+ 210
+ 10.0
+ 10.0
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 240
+ 4.0
+ 468.0
+ 210.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 241
+ 509.5
+ 236.0
+ 0.5
+ 0.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 242
+ CLS
+
+
+
+ true
+ 334
+ 240
+ 6.5
+ 6.5
+ 7.5
+ 7.5
+ 0.0
+ 0.0
+
+
+ 243
+ 4.5
+ 334.0
+ 260.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 244
+ OPN
+
+
+
+ true
+ 378
+ 240
+ 6.5
+ 6.5
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 245
+ 4.5
+ 378.0
+ 260.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 246
+ PIN
+
+
+
+ true
+ 422
+ 240
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 247
+ 4.5
+ 422.0
+ 260.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 248
+ BOX
+
+
+
+ true
+ 466
+ 240
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 249
+ –
+
+
+
+ true
+ 466
+ 260
+ 8.5
+ 8.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 250
+ 6.0
+ 880.0
+ 236.0
+ 44.0
+ 44.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 251
+ FR
+
+
+
+ true
+ 814.0
+ 210
+ 10.0
+ 10.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 252
+ 4.0
+ 948.0
+ 210.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 253
+ 770.5
+ 236.0
+ 0.5
+ 0.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 254
+ CLS
+
+
+
+ true
+ 814
+ 240
+ 6.5
+ 6.5
+ 7.5
+ 7.5
+ 0.0
+ 0.0
+
+
+ 255
+ 4.5
+ 814.0
+ 260.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 256
+ OPN
+
+
+
+ true
+ 858
+ 240
+ 6.5
+ 6.5
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 257
+ 4.5
+ 858.0
+ 260.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 258
+ PIN
+
+
+
+ true
+ 902
+ 240
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 259
+ 4.5
+ 902.0
+ 260.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 260
+ BOX
+
+
+
+ true
+ 946
+ 240
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 261
+ 4.5
+ 946.0
+ 260.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 262
+ 6.0
+ 400.0
+ 530.0
+ 44.0
+ 44.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 263
+ RL
+
+
+
+ true
+ 334.0
+ 504
+ 10.0
+ 10.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 264
+ 4.0
+ 468.0
+ 504.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 265
+ 509.5
+ 530.0
+ 0.5
+ 0.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 266
+ CLS
+
+
+
+ true
+ 334
+ 534
+ 6.5
+ 6.5
+ 7.5
+ 7.5
+ 0.0
+ 0.0
+
+
+ 267
+ 4.5
+ 334.0
+ 554.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 268
+ OPN
+
+
+
+ true
+ 378
+ 534
+ 6.5
+ 6.5
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 269
+ 4.5
+ 378.0
+ 554.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 270
+ PIN
+
+
+
+ true
+ 422
+ 534
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 271
+ 4.5
+ 422.0
+ 554.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 272
+ BOX
+
+
+
+ true
+ 466
+ 534
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 273
+ 4.5
+ 466.0
+ 554.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 274
+ 6.0
+ 880.0
+ 530.0
+ 44.0
+ 44.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 275
+ RR
+
+
+
+ true
+ 815.0
+ 504
+ 10.0
+ 10.0
+ 9.0
+ 9.0
+ 0.0
+ 0.0
+
+
+ 276
+ 4.0
+ 948.0
+ 504.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 277
+ 770.5
+ 530.0
+ 0.5
+ 0.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 278
+ CLS
+
+
+
+ true
+ 814
+ 534
+ 6.5
+ 6.5
+ 7.5
+ 7.5
+ 0.0
+ 0.0
+
+
+ 279
+ 4.5
+ 814.0
+ 554.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 280
+ OPN
+
+
+
+ true
+ 858
+ 534
+ 6.5
+ 6.5
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 281
+ 4.5
+ 858.0
+ 554.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 282
+ PIN
+
+
+
+ true
+ 902
+ 534
+ 6.5
+ 6.5
+ 7.0
+ 7.0
+ 0.0
+ 0.0
+
+
+ 283
+ 4.5
+ 902.0
+ 554.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 284
+ BOX
+
+
+
+ true
+ 946
+ 534
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 285
+ 4.5
+ 946.0
+ 554.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 286
+ CLS closed OPN open PIN landpin up BOX twistlock box up corner error
+
+
+
+ true
+ 638
+ 618
+ 7.0
+ 7.0
+ 177.5
+ 177.5
+ 0.0
+ 0.0
+
+
+ 437
+ Status
+
+ 56
+
+ 287
+ 8.0
+ 638.0
+ 754.0
+ 102.0
+ 102.0
+ 422.0
+ 422.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 288
+ 8.0
+ 638.0
+ 667.0
+ 15.0
+ 15.0
+ 422.0
+ 422.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 289
+ 638.0
+ 678.0
+ 4.0
+ 4.0
+ 422.0
+ 422.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 290
+ MODE · STATUS
+
+
+
+ true
+ 277.5
+ 667
+ 8.5
+ 8.5
+ 47.5
+ 47.5
+ 0.0
+ 0.0
+
+
+ 291
+ 11.0
+ 331.0
+ 706.0
+ 11.0
+ 11.0
+ 93.0
+ 93.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 292
+ SINGLE
+
+
+
+ true
+ 331.0
+ 706
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 293
+ 11.0
+ 533.0
+ 706.0
+ 11.0
+ 11.0
+ 93.0
+ 93.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 294
+ TWIN
+
+
+
+ true
+ 533.0
+ 706
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 295
+ 11.0
+ 735.0
+ 706.0
+ 11.0
+ 11.0
+ 93.0
+ 93.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 296
+ TWINLIFT
+
+
+
+ true
+ 735.0
+ 706
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 297
+ 11.0
+ 937.0
+ 706.0
+ 11.0
+ 11.0
+ 93.0
+ 93.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 298
+ SINGLE TWIN
+
+
+
+ true
+ 937.0
+ 706
+ 7.5
+ 7.5
+ 35.0
+ 35.0
+ 0.0
+ 0.0
+
+
+ 299
+ 6.0
+ 365.0
+ 762.0
+ 15.0
+ 15.0
+ 127.0
+ 127.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 300
+ 4.5
+ 256.0
+ 762.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 301
+ ALL TL CLOSED
+
+
+
+ true
+ 315.5
+ 762
+ 8.5
+ 8.5
+ 41.5
+ 41.5
+ 0.0
+ 0.0
+
+
+ 302
+ 6.0
+ 639.0
+ 762.0
+ 15.0
+ 15.0
+ 127.0
+ 127.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 303
+ 4.5
+ 530.0
+ 762.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 304
+ ALL TL OPEN
+
+
+
+ true
+ 583.0
+ 762
+ 8.5
+ 8.5
+ 35.0
+ 35.0
+ 0.0
+ 0.0
+
+
+ 305
+ 6.0
+ 913.0
+ 762.0
+ 15.0
+ 15.0
+ 127.0
+ 127.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 306
+ 4.5
+ 804.0
+ 762.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 307
+ ALL PINS UP
+
+
+
+ true
+ 856.5
+ 762
+ 8.5
+ 8.5
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+ 308
+ 6.0
+ 365.0
+ 808.0
+ 15.0
+ 15.0
+ 127.0
+ 127.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 309
+ 4.5
+ 256.0
+ 808.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 310
+ ALL BOXES UP
+
+
+
+ true
+ 314.0
+ 808
+ 8.5
+ 8.5
+ 40.0
+ 40.0
+ 0.0
+ 0.0
+
+
+ 311
+ 6.0
+ 639.0
+ 808.0
+ 15.0
+ 15.0
+ 127.0
+ 127.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 312
+ 4.5
+ 530.0
+ 808.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 313
+ AUTO BOX UP
+
+
+
+ true
+ 588.0
+ 808
+ 8.5
+ 8.5
+ 40.0
+ 40.0
+ 0.0
+ 0.0
+
+
+ 314
+ 6.0
+ 913.0
+ 808.0
+ 15.0
+ 15.0
+ 127.0
+ 127.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 315
+ 4.5
+ 804.0
+ 808.0
+ 4.5
+ 4.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 316
+ FREE CIRC VALVE
+
+
+
+ true
+ 869.0
+ 808
+ 8.5
+ 8.5
+ 47.0
+ 47.0
+ 0.0
+ 0.0
+
+
+ 317
+ 8.0
+ 638.0
+ 964.0
+ 96.0
+ 96.0
+ 422.0
+ 422.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 318
+ 8.0
+ 638.0
+ 883.0
+ 15.0
+ 15.0
+ 422.0
+ 422.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 319
+ 638.0
+ 894.0
+ 4.0
+ 4.0
+ 422.0
+ 422.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 320
+ FAULTS
+
+
+
+ true
+ 251.5
+ 883
+ 8.5
+ 8.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 321
+ 4.0
+ 250.0
+ 926.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 322
+ TWISTLOCK FL
+
+
+
+ true
+ 301.0
+ 926
+ 7.5
+ 7.5
+ 35.0
+ 35.0
+ 0.0
+ 0.0
+
+
+ 323
+ 4.0
+ 454.0
+ 926.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 324
+ TWISTLOCK FR
+
+
+
+ true
+ 506.0
+ 926
+ 7.5
+ 7.5
+ 36.0
+ 36.0
+ 0.0
+ 0.0
+
+
+ 325
+ 4.0
+ 658.0
+ 926.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 326
+ TWISTLOCK RL
+
+
+
+ true
+ 710.0
+ 926
+ 7.5
+ 7.5
+ 36.0
+ 36.0
+ 0.0
+ 0.0
+
+
+ 327
+ 4.0
+ 862.0
+ 926.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 328
+ TWISTLOCK RR
+
+
+
+ true
+ 915.0
+ 926
+ 7.5
+ 7.5
+ 37.0
+ 37.0
+ 0.0
+ 0.0
+
+
+ 329
+ 4.0
+ 250.0
+ 972.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 330
+ BOX / PIN FL
+
+
+
+ true
+ 296.0
+ 972
+ 7.5
+ 7.5
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+ 331
+ 4.0
+ 454.0
+ 972.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 332
+ BOX / PIN FR
+
+
+
+ true
+ 501.0
+ 972
+ 7.5
+ 7.5
+ 31.0
+ 31.0
+ 0.0
+ 0.0
+
+
+ 333
+ 4.0
+ 658.0
+ 972.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 334
+ BOX / PIN RL
+
+
+
+ true
+ 705.0
+ 972
+ 7.5
+ 7.5
+ 31.0
+ 31.0
+ 0.0
+ 0.0
+
+
+ 335
+ 4.0
+ 862.0
+ 972.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 336
+ BOX / PIN RR
+
+
+
+ true
+ 910.0
+ 972
+ 7.5
+ 7.5
+ 32.0
+ 32.0
+ 0.0
+ 0.0
+
+
+ 337
+ 4.0
+ 250.0
+ 1018.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 338
+ BOX / PIN ANY
+
+
+
+ true
+ 301.5
+ 1018
+ 7.5
+ 7.5
+ 35.5
+ 35.5
+ 0.0
+ 0.0
+
+
+ 339
+ 4.0
+ 454.0
+ 1018.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 340
+ GAP SENSOR
+
+
+
+ true
+ 502.5
+ 1018
+ 7.5
+ 7.5
+ 32.5
+ 32.5
+ 0.0
+ 0.0
+
+
+ 341
+ 4.0
+ 658.0
+ 1018.0
+ 4.0
+ 4.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 342
+ GAP HOIST PREV
+
+
+
+ true
+ 716.0
+ 1018
+ 7.5
+ 7.5
+ 42.0
+ 42.0
+ 0.0
+ 0.0
+
+
+ 438
+ Counters
+
+ 89
+
+ 343
+ 8.0
+ 1487.0
+ 248.0
+ 152.0
+ 152.0
+ 415.0
+ 415.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 344
+ 8.0
+ 1487.0
+ 111.0
+ 15.0
+ 15.0
+ 415.0
+ 415.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 345
+ 1487.0
+ 122.0
+ 4.0
+ 4.0
+ 415.0
+ 415.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 346
+ MACHINE
+
+
+
+ true
+ 1113.0
+ 111
+ 8.5
+ 8.5
+ 27.0
+ 27.0
+ 0.0
+ 0.0
+
+
+ 347
+ LOAD
+
+
+
+ true
+ 1109.0
+ 150
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 348
+ 29.9
+
+
+
+ true
+ 1130.0
+ 176
+ 15.5
+ 15.5
+ 34.0
+ 34.0
+ 0.0
+ 0.0
+
+
+ 349
+ t
+
+
+
+ true
+ 1171.0
+ 182
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 350
+ SPREADER HEIGHT
+
+
+
+ true
+ 1341.5
+ 150
+ 7.0
+ 7.0
+ 41.5
+ 41.5
+ 0.0
+ 0.0
+
+
+ 351
+ 7.3
+
+
+
+ true
+ 1325.5
+ 176
+ 15.5
+ 15.5
+ 25.5
+ 25.5
+ 0.0
+ 0.0
+
+
+ 352
+ m
+
+
+
+ true
+ 1360.5
+ 182
+ 7.5
+ 7.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+ 353
+ SPREADER LENGTH
+
+
+
+ true
+ 1602.5
+ 150
+ 7.0
+ 7.0
+ 42.5
+ 42.5
+ 0.0
+ 0.0
+
+
+ 354
+ 40.0
+
+
+
+ true
+ 1594.0
+ 176
+ 15.5
+ 15.5
+ 34.0
+ 34.0
+ 0.0
+ 0.0
+
+
+ 355
+ ft
+
+
+
+ true
+ 1636.5
+ 182
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 356
+ RPM
+
+
+
+ true
+ 1106.5
+ 246
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 357
+ 1540
+
+
+
+ true
+ 1114.0
+ 264
+ 9.0
+ 9.0
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 358
+ ENGINE TEMP
+
+
+
+ true
+ 1327.0
+ 246
+ 7.0
+ 7.0
+ 31.0
+ 31.0
+ 0.0
+ 0.0
+
+
+ 359
+ 85
+
+
+
+ true
+ 1305.0
+ 264
+ 9.0
+ 9.0
+ 9.0
+ 9.0
+ 0.0
+ 0.0
+
+
+ 360
+ °C
+
+
+
+ true
+ 1324.5
+ 268
+ 7.5
+ 7.5
+ 5.5
+ 5.5
+ 0.0
+ 0.0
+
+
+ 361
+ STABILITY
+
+
+
+ true
+ 1518.0
+ 246
+ 7.0
+ 7.0
+ 22.0
+ 22.0
+ 0.0
+ 0.0
+
+
+ 362
+ 94
+
+
+
+ true
+ 1505.0
+ 264
+ 9.0
+ 9.0
+ 9.0
+ 9.0
+ 0.0
+ 0.0
+
+
+ 363
+ %
+
+
+
+ true
+ 1523.5
+ 268
+ 7.5
+ 7.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+ 364
+ FUEL RATE
+
+
+
+ true
+ 1719.5
+ 246
+ 7.0
+ 7.0
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 365
+ 33.2
+
+
+
+ true
+ 1714.0
+ 264
+ 9.0
+ 9.0
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 366
+ L/h
+
+
+
+ true
+ 1744.5
+ 268
+ 7.5
+ 7.5
+ 7.5
+ 7.5
+ 0.0
+ 0.0
+
+
+ 367
+ FUEL LEVEL
+
+
+
+ true
+ 1121.5
+ 322
+ 7.0
+ 7.0
+ 25.5
+ 25.5
+ 0.0
+ 0.0
+
+
+ 368
+ 63.5
+
+
+
+ true
+ 1850.0
+ 322
+ 8.0
+ 8.0
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 369
+ %
+
+
+
+ true
+ 1873.5
+ 323
+ 7.5
+ 7.5
+ 4.5
+ 4.5
+ 0.0
+ 0.0
+
+
+ 370
+ 8.0
+ 1487.0
+ 348.0
+ 8.0
+ 8.0
+ 391.0
+ 391.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 371
+ 8.0
+ 1344.285
+ 348.0
+ 8.0
+ 8.0
+ 248.285
+ 248.285
+ 0.0
+ 0.0
+
+
+
+
+
+ 372
+ 8.0
+ 1487.0
+ 564.0
+ 152.0
+ 152.0
+ 415.0
+ 415.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 373
+ 8.0
+ 1487.0
+ 427.0
+ 15.0
+ 15.0
+ 415.0
+ 415.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 374
+ 1487.0
+ 438.0
+ 4.0
+ 4.0
+ 415.0
+ 415.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 375
+ TRIP · SINCE LAST RESET
+
+
+
+ true
+ 1157.0
+ 427
+ 8.5
+ 8.5
+ 71.0
+ 71.0
+ 0.0
+ 0.0
+
+
+ 376
+ ENGINE h
+
+
+
+ true
+ 1115.0
+ 474
+ 7.0
+ 7.0
+ 23.0
+ 23.0
+ 0.0
+ 0.0
+
+
+ 377
+ 63
+
+
+
+ true
+ 1102.0
+ 496
+ 10.0
+ 10.0
+ 10.0
+ 10.0
+ 0.0
+ 0.0
+
+
+ 378
+ FWD h
+
+
+
+ true
+ 1306.0
+ 474
+ 7.0
+ 7.0
+ 16.5
+ 16.5
+ 0.0
+ 0.0
+
+
+ 379
+ 19
+
+
+
+ true
+ 1299.5
+ 496
+ 10.0
+ 10.0
+ 10.0
+ 10.0
+ 0.0
+ 0.0
+
+
+ 380
+ BWD h
+
+
+
+ true
+ 1504.0
+ 474
+ 7.0
+ 7.0
+ 17.0
+ 17.0
+ 0.0
+ 0.0
+
+
+ 381
+ 14
+
+
+
+ true
+ 1497.0
+ 496
+ 10.0
+ 10.0
+ 10.0
+ 10.0
+ 0.0
+ 0.0
+
+
+ 382
+ IN PLACE h
+
+
+
+ true
+ 1711.0
+ 474
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 383
+ 22
+
+
+
+ true
+ 1694.5
+ 496
+ 10.0
+ 10.0
+ 10.0
+ 10.0
+ 0.0
+ 0.0
+
+
+ 384
+ HOIST h
+
+
+
+ true
+ 1112.0
+ 532
+ 7.0
+ 7.0
+ 20.0
+ 20.0
+ 0.0
+ 0.0
+
+
+ 385
+ 11
+
+
+
+ true
+ 1102.0
+ 554
+ 10.0
+ 10.0
+ 10.0
+ 10.0
+ 0.0
+ 0.0
+
+
+ 386
+ FWD km
+
+
+
+ true
+ 1310.0
+ 532
+ 7.0
+ 7.0
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 387
+ 168
+
+
+
+ true
+ 1304.5
+ 554
+ 10.0
+ 10.0
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 388
+ BWD km
+
+
+
+ true
+ 1508.0
+ 532
+ 7.0
+ 7.0
+ 21.0
+ 21.0
+ 0.0
+ 0.0
+
+
+ 389
+ 121
+
+
+
+ true
+ 1502.0
+ 554
+ 10.0
+ 10.0
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 390
+ 20 FT
+
+
+
+ true
+ 1696.0
+ 532
+ 7.0
+ 7.0
+ 11.5
+ 11.5
+ 0.0
+ 0.0
+
+
+ 391
+ 74
+
+
+
+ true
+ 1694.5
+ 554
+ 10.0
+ 10.0
+ 10.0
+ 10.0
+ 0.0
+ 0.0
+
+
+ 392
+ 40 FT
+
+
+
+ true
+ 1103.5
+ 590
+ 7.0
+ 7.0
+ 11.5
+ 11.5
+ 0.0
+ 0.0
+
+
+ 393
+ 33
+
+
+
+ true
+ 1102.0
+ 612
+ 10.0
+ 10.0
+ 10.0
+ 10.0
+ 0.0
+ 0.0
+
+
+ 394
+ TWIN
+
+
+
+ true
+ 1301.5
+ 590
+ 7.0
+ 7.0
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 395
+ 107
+
+
+
+ true
+ 1304.5
+ 612
+ 10.0
+ 10.0
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 396
+ FUEL USED L
+
+
+
+ true
+ 1517.0
+ 590
+ 7.0
+ 7.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+ 397
+ 941
+
+
+
+ true
+ 1502.0
+ 612
+ 10.0
+ 10.0
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 398
+ CONS LT L/h
+
+
+
+ true
+ 1714.5
+ 590
+ 7.0
+ 7.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+ 399
+ 26
+
+
+
+ true
+ 1694.5
+ 612
+ 10.0
+ 10.0
+ 10.0
+ 10.0
+ 0.0
+ 0.0
+
+
+ 400
+ LUB
+
+
+
+ true
+ 1101.0
+ 648
+ 7.0
+ 7.0
+ 9.0
+ 9.0
+ 0.0
+ 0.0
+
+
+ 401
+ 5
+
+
+
+ true
+ 1097.0
+ 670
+ 10.0
+ 10.0
+ 5.0
+ 5.0
+ 0.0
+ 0.0
+
+
+ 402
+ 8.0
+ 1487.0
+ 894.0
+ 166.0
+ 166.0
+ 415.0
+ 415.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 403
+ 8.0
+ 1487.0
+ 743.0
+ 15.0
+ 15.0
+ 415.0
+ 415.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 404
+ 1487.0
+ 754.0
+ 4.0
+ 4.0
+ 415.0
+ 415.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 405
+ LIFETIME TOTALS
+
+
+
+ true
+ 1134.5
+ 743
+ 8.5
+ 8.5
+ 48.5
+ 48.5
+ 0.0
+ 0.0
+
+
+ 406
+ ENGINE h
+
+
+
+ true
+ 1115.0
+ 790
+ 7.0
+ 7.0
+ 23.0
+ 23.0
+ 0.0
+ 0.0
+
+
+ 407
+ 18208
+
+
+
+ true
+ 1117.0
+ 812
+ 10.0
+ 10.0
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 408
+ HYBRID h
+
+
+
+ true
+ 1313.0
+ 790
+ 7.0
+ 7.0
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 409
+ 3576
+
+
+
+ true
+ 1309.5
+ 812
+ 10.0
+ 10.0
+ 20.0
+ 20.0
+ 0.0
+ 0.0
+
+
+ 410
+ HOIST h
+
+
+
+ true
+ 1507.0
+ 790
+ 7.0
+ 7.0
+ 20.0
+ 20.0
+ 0.0
+ 0.0
+
+
+ 411
+ 5100
+
+
+
+ true
+ 1507.0
+ 812
+ 10.0
+ 10.0
+ 20.0
+ 20.0
+ 0.0
+ 0.0
+
+
+ 412
+ TRV FWD h
+
+
+
+ true
+ 1711.0
+ 790
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 413
+ 3123
+
+
+
+ true
+ 1704.5
+ 812
+ 10.0
+ 10.0
+ 20.0
+ 20.0
+ 0.0
+ 0.0
+
+
+ 414
+ TRV BWD h
+
+
+
+ true
+ 1119.0
+ 848
+ 7.0
+ 7.0
+ 27.0
+ 27.0
+ 0.0
+ 0.0
+
+
+ 415
+ 2943
+
+
+
+ true
+ 1112.0
+ 870
+ 10.0
+ 10.0
+ 20.0
+ 20.0
+ 0.0
+ 0.0
+
+
+ 416
+ STANDING h
+
+
+
+ true
+ 1319.0
+ 848
+ 7.0
+ 7.0
+ 29.5
+ 29.5
+ 0.0
+ 0.0
+
+
+ 417
+ 7042
+
+
+
+ true
+ 1309.5
+ 870
+ 10.0
+ 10.0
+ 20.0
+ 20.0
+ 0.0
+ 0.0
+
+
+ 418
+ DIST FWD km
+
+
+
+ true
+ 1519.0
+ 848
+ 7.0
+ 7.0
+ 32.0
+ 32.0
+ 0.0
+ 0.0
+
+
+ 419
+ 27771
+
+
+
+ true
+ 1512.0
+ 870
+ 10.0
+ 10.0
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 420
+ DIST BWD km
+
+
+
+ true
+ 1717.0
+ 848
+ 7.0
+ 7.0
+ 32.5
+ 32.5
+ 0.0
+ 0.0
+
+
+ 421
+ 27483
+
+
+
+ true
+ 1709.5
+ 870
+ 10.0
+ 10.0
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 422
+ 20 FT
+
+
+
+ true
+ 1103.5
+ 906
+ 7.0
+ 7.0
+ 11.5
+ 11.5
+ 0.0
+ 0.0
+
+
+ 423
+ 28644
+
+
+
+ true
+ 1117.0
+ 928
+ 10.0
+ 10.0
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 424
+ 40 FT
+
+
+
+ true
+ 1301.0
+ 906
+ 7.0
+ 7.0
+ 11.5
+ 11.5
+ 0.0
+ 0.0
+
+
+ 425
+ 18399
+
+
+
+ true
+ 1314.5
+ 928
+ 10.0
+ 10.0
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 426
+ TWIN
+
+
+
+ true
+ 1499.0
+ 906
+ 7.0
+ 7.0
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 427
+ 5593
+
+
+
+ true
+ 1507.0
+ 928
+ 10.0
+ 10.0
+ 20.0
+ 20.0
+ 0.0
+ 0.0
+
+
+ 428
+ FUEL kL
+
+
+
+ true
+ 1703.5
+ 906
+ 7.0
+ 7.0
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 429
+ 246
+
+
+
+ true
+ 1699.5
+ 928
+ 10.0
+ 10.0
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 430
+ ENERGY MWh
+
+
+
+ true
+ 1125.0
+ 964
+ 7.0
+ 7.0
+ 33.0
+ 33.0
+ 0.0
+ 0.0
+
+
+ 431
+ 157
+
+
+
+ true
+ 1107.0
+ 986
+ 10.0
+ 10.0
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+
diff --git a/99-reference/ciserver-hmi-deployment/displays/Straddle_Alarms.xml b/99-reference/ciserver-hmi-deployment/displays/Straddle_Alarms.xml
new file mode 100644
index 0000000..126e6aa
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/displays/Straddle_Alarms.xml
@@ -0,0 +1,7428 @@
+
+
+
+
+
+ 0.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Straddle_Overview
+
+
+
+
+
+
+
+ Straddle_Maintenance
+
+
+
+
+
+
+
+ Straddle_Location
+
+
+
+
+
+
+
+ Straddle_Detail
+
+
+
+
+
+
+
+ Straddle_Trends
+
+
+
+
+
+
+
+ Straddle_Alarms_Light
+
+
+
+
+
+
+
+ Straddle_Alarms_Grey
+
+
+
+
+
+
+
+
+ Signal_Board
+ FixedPopup
+ default
+
+
+
+
+
+
+ Straddle Alarms
+ 66
+
+
+
+
+
+
+
+
+
+
+ PATRICK
+ true
+
+ 700
+ false
+ false
+
+
+ AOG_SIL
+ Stroke Indicator Limit
+
+
+
+
+
+
+
+ AOG_SIO
+ Stroke Indicator Outline
+
+
+
+
+
+
+
+ AOG_SEO
+ Stroke Equipment Outline
+
+
+
+
+
+
+
+ AOG_SIS
+ Stroke Indicator Signal
+
+
+
+
+
+
+
+ AOG_CAL
+ Color Alarm Low
+
+
+
+
+
+
+
+ AOG_CAM
+ Color Alarm Medium
+
+
+
+
+
+
+
+ AOG_CER
+ Color Equipment Running
+
+
+
+
+
+
+
+ AOG_CAO
+ Color Alarm Off
+
+
+
+
+
+
+
+ AOG_CAD
+ Color Alarm Diagnostic
+
+
+
+
+
+
+
+ AOG_FT4
+ Font Text 4
+
+
+
+
+
+
+
+ AOG_CIL
+ Color Indicator Limit
+
+
+
+
+
+
+
+ AOG_CIN
+ Color Indicator Normal
+
+
+
+
+
+
+
+ AOG_CIO
+ Color Indicator Outline
+
+
+
+
+
+
+
+ AOG_CAH
+ Color Alarm High
+
+
+
+
+
+
+
+ AOG_CEO
+ Color Equipment Off
+
+
+
+
+
+
+
+ AOG_CIS
+ Color Indicator Signal
+
+
+
+
+
+
+
+ AOG_CT1
+ Color Text 1
+
+
+
+
+
+
+
+ AOG_ShowTagName
+ Show Tag Name
+
+
+ true
+
+
+
+
+ AOG_CT2
+ Color Text 2
+
+
+
+
+
+
+
+ AOG_CT3
+ Color Text 3
+
+
+
+
+
+
+
+ AOG_CT4
+ Color Text 4
+
+
+
+
+
+
+
+ AOG_CSS
+ Color Selector Selected
+
+
+
+
+
+
+
+ AOG_CSI
+ Color Selector Indicator
+
+
+
+
+
+
+
+ AOG_CFS
+ Color Fluid Sub
+
+
+
+
+
+
+
+ AOG_CFM
+ Color Fluid Main
+
+
+
+
+
+
+
+ AOG_SGS
+ Stroke Gas Sub
+
+
+
+
+
+
+
+ AOG_CDB
+ Color Display Background
+
+
+
+
+
+
+
+ AOG_CLL
+ Color Line Leader
+
+
+
+
+
+
+
+ AOG_CLB
+ Color Line Border
+
+
+
+
+
+
+
+ AOG_SGM
+ Stroke Gas Main line
+
+
+
+
+
+
+
+ AOG_CLD
+ Color Line Derived sub line
+
+
+
+
+
+
+
+ AOG_CLE
+ Color Line Equipment
+
+
+
+
+
+
+
+ AOG_CGS
+ Color Gas Sub line
+
+
+
+
+
+
+
+ AOG_SSS
+ Stroke Selector Selected
+
+
+
+
+
+
+
+ AOG_SSI
+ Stroke Selector Indicator
+
+
+
+
+
+
+
+ AOG_CGM
+ Color Gas Main line
+
+
+
+
+
+
+
+ AOG_FT1
+ Font Text 1
+
+
+
+
+
+
+
+ AOG_FT2
+ Font Text 2
+
+
+
+
+
+
+
+ AOG_FT3
+ Font Text 3
+
+
+
+
+
+
+
+ AOG_SLP
+ Stroke Line Product
+
+
+
+
+
+
+
+ AOG_CMC
+ Color Manual Cotrol
+
+
+
+
+
+
+
+ AOG_SLS
+ Stroke Line Signal
+
+
+
+
+
+
+
+ AOG_CIB
+ Color Indicator Background
+
+
+
+
+
+
+
+ AOG_SLL
+ Stroke Line Leader
+
+
+
+
+
+
+
+ AOG_CLP
+ Color Line Product
+
+
+
+
+
+
+
+ AOG_SLB
+ Stroke Line Border
+
+
+
+
+
+
+
+ AOG_CLS
+ Color Line Signal
+
+
+
+
+
+
+
+ AOG_SLD
+ Stroke Line Derived sub line
+
+
+
+
+
+
+
+ AOG_SLE
+ Stroke Line Equipment
+
+
+
+
+
+
+
+ AOG_CDN
+ Color Display Neighbor
+
+
+
+
+
+
+
+ AOG_CENR
+ Color Equipment Not Running
+
+
+
+
+
+
+
+ AOG_OnText
+
+
+ ON
+
+
+
+
+ AOG_OffText
+
+
+ OFF
+
+
+
+
+ AOG_ET1
+ Engineering Units of Temperature
+
+
+ Deg.C
+
+
+
+
+ AOG_ET2
+ Engineering Unit of Temperature
+
+
+ Deg.F
+
+
+
+
+ AOG_EP1
+ Engineering unit of Pressure
+
+
+ Pa
+
+
+
+
+ AOG_CEB
+ Color Equipment Background
+
+
+
+
+
+
+
+ AOG_EL1
+
+
+ m
+
+
+
+
+ AOG_EF1
+
+
+ m3/s
+
+
+
+
+ AOG_BlinkOnNotAcknowledged
+
+
+ true
+
+
+
+
+ AOG_COC
+ Color Offline Condition
+
+
+
+
+
+
+ 2
+ Overview
+ Always shown
+ true
+ 10.0
+
+
+ 3
+ Rough
+ Shown when viewing a large area
+ true
+ 25.0
+
+
+ 4
+ Standard
+ Shown when using the default view setting
+ true
+ 100.0
+
+
+ 5
+ Detail
+ Shown only when viewing a small area
+ true
+ 400.0
+
+
+ 6
+ Intricacies
+ Shown only when viewing a very small area
+ true
+ 1000.0
+
+
+
+
+
+
+ 1
+ AOG_CDB
+
+
+
+ 533
+ Chrome
+
+ 15
+
+ 101
+ 960.000
+ 540.000
+ 540.000
+ 540.000
+ 960.000
+ 960.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 102
+ 100.000
+ 540.000
+ 540.000
+ 540.000
+ 100.000
+ 100.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 103
+ 200.500
+ 540.000
+ 540.000
+ 540.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 104
+
+
+
+ 105
+ STRADDLE ALARMS
+
+
+
+ true
+ 367.508
+ 34.000
+ 22.000
+ 22.000
+ 151.508
+ 151.508
+ 0.0
+ 0.0
+
+
+ 106
+ ACTIVE ALARM LIST · EAST SWANSON DOCK
+
+
+
+ true
+ 354.500
+ 58.000
+ 9.500
+ 9.500
+ 138.500
+ 138.500
+ 0.0
+ 0.0
+
+
+ 107
+ 5.0
+ 1852.000
+ 34.000
+ 12.000
+ 12.000
+ 44.000
+ 44.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 108
+ 4.0
+ 1824.000
+ 34.000
+ 4.000
+ 4.000
+ 4.000
+ 4.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 109
+ 26 ACTIVE
+
+
+
+ true
+ 1860.000
+ 34.000
+ 8.500
+ 8.500
+ 26.000
+ 26.000
+ 0.0
+ 0.0
+
+
+ 110
+ 5.0
+ 1717.500
+ 34.000
+ 12.000
+ 12.000
+ 80.500
+ 80.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 111
+ 4.0
+ 1653.000
+ 34.000
+ 4.000
+ 4.000
+ 4.000
+ 4.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 112
+ 12 UNACKNOWLEDGED
+
+
+
+ true
+ 1725.500
+ 34.000
+ 8.500
+ 8.500
+ 62.500
+ 62.500
+ 0.0
+ 0.0
+
+
+ 113
+ 5.0
+ 1575.500
+ 34.000
+ 12.000
+ 12.000
+ 51.500
+ 51.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 114
+ 4.0
+ 1540.000
+ 34.000
+ 4.000
+ 4.000
+ 4.000
+ 4.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 115
+ 3 PRIORITY 1
+
+
+
+ true
+ 1583.500
+ 34.000
+ 8.500
+ 8.500
+ 33.500
+ 33.500
+ 0.0
+ 0.0
+
+
+ 534
+ Navigation
+
+ 32
+
+ 116
+ NAVIGATION
+
+
+
+ true
+ 49.000
+ 104.000
+ 7.000
+ 7.000
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+ 117
+ 6.0
+ 100.000
+ 146.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 118
+ STRADDLE OVERVIEW
+
+
+
+ true
+ 98.500
+ 146.000
+ 10.000
+ 10.000
+ 68.500
+ 68.500
+ 0.0
+ 0.0
+
+
+ 119
+
+
+
+
+
+
+ 120
+ 6.0
+ 100.000
+ 196.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 121
+ MAINTENANCE
+
+
+
+ true
+ 77.500
+ 196.000
+ 10.000
+ 10.000
+ 47.500
+ 47.500
+ 0.0
+ 0.0
+
+
+ 122
+
+
+
+
+
+
+ 123
+ 6.0
+ 100.000
+ 246.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 124
+ LIVE LOCATION
+
+
+
+ true
+ 79.492
+ 246.000
+ 10.000
+ 10.000
+ 49.492
+ 49.492
+ 0.0
+ 0.0
+
+
+ 125
+
+
+
+
+
+
+ 126
+ 6.0
+ 100.000
+ 296.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 127
+ STRADDLE DETAIL
+
+
+
+ true
+ 86.492
+ 296.000
+ 10.000
+ 10.000
+ 56.492
+ 56.492
+ 0.0
+ 0.0
+
+
+ 128
+
+
+
+
+
+
+ 129
+ 6.0
+ 100.000
+ 346.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 130
+ 1.5
+ 13.500
+ 346.000
+ 12.000
+ 12.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 131
+ ALARMS
+
+
+
+ true
+ 58.500
+ 346.000
+ 10.000
+ 10.000
+ 28.500
+ 28.500
+ 0.0
+ 0.0
+
+
+ 132
+ 6.0
+ 100.000
+ 396.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 133
+ TRENDS
+
+
+
+ true
+ 54.500
+ 396.000
+ 10.000
+ 10.000
+ 24.500
+ 24.500
+ 0.0
+ 0.0
+
+
+ 134
+
+
+
+
+
+
+ 135
+ 6.0
+ 100.000
+ 446.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 136
+ SIGNAL BOARD
+
+
+
+ true
+ 78.500
+ 446.000
+ 10.000
+ 10.000
+ 48.500
+ 48.500
+ 0.0
+ 0.0
+
+
+ 539
+
+
+
+
+
+
+ 137
+ APPEARANCE
+
+
+
+ true
+ 49.500
+ 966.000
+ 7.000
+ 7.000
+ 29.500
+ 29.500
+ 0.0
+ 0.0
+
+
+ 138
+ 8.0
+ 100.000
+ 1000.000
+ 18.000
+ 18.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 139
+ 6.0
+ 42.000
+ 1000.000
+ 15.000
+ 15.000
+ 27.000
+ 27.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 140
+ DARK
+
+
+
+ true
+ 42.000
+ 1000.000
+ 7.500
+ 7.500
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 141
+ 6.0
+ 100.000
+ 1000.000
+ 15.000
+ 15.000
+ 27.000
+ 27.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 142
+ LIGHT
+
+
+
+ true
+ 100.000
+ 1000.000
+ 7.500
+ 7.500
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 143
+
+
+
+
+
+
+ 144
+ 6.0
+ 158.000
+ 1000.000
+ 15.000
+ 15.000
+ 27.000
+ 27.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 145
+ GREY
+
+
+
+ true
+ 158.000
+ 1000.000
+ 7.500
+ 7.500
+ 13.500
+ 13.500
+ 0.0
+ 0.0
+
+
+ 146
+
+
+
+
+
+
+ 147
+ YOKOGAWA CI SERVER
+
+
+
+ true
+ 100.000
+ 1044.000
+ 7.000
+ 7.000
+ 52.000
+ 52.000
+ 0.0
+ 0.0
+
+
+ 535
+ Summary
+
+ 24
+
+ 148
+ 4.0
+ 347.000
+ 129.000
+ 33.000
+ 33.000
+ 131.000
+ 131.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 149
+ 217.500
+ 129.000
+ 33.000
+ 33.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 150
+ PRIORITY 1
+
+
+
+ true
+ 257.500
+ 116.000
+ 7.000
+ 7.000
+ 25.500
+ 25.500
+ 0.0
+ 0.0
+
+
+ 151
+ 3
+
+
+
+ true
+ 238.500
+ 140.000
+ 12.500
+ 12.500
+ 6.500
+ 6.500
+ 0.0
+ 0.0
+
+
+ 152
+ 4.0
+ 629.000
+ 129.000
+ 33.000
+ 33.000
+ 131.000
+ 131.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 153
+ 499.500
+ 129.000
+ 33.000
+ 33.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 154
+ PRIORITY 2
+
+
+
+ true
+ 539.500
+ 116.000
+ 7.000
+ 7.000
+ 25.500
+ 25.500
+ 0.0
+ 0.0
+
+
+ 155
+ 9
+
+
+
+ true
+ 520.500
+ 140.000
+ 12.500
+ 12.500
+ 6.500
+ 6.500
+ 0.0
+ 0.0
+
+
+ 156
+ 4.0
+ 911.000
+ 129.000
+ 33.000
+ 33.000
+ 131.000
+ 131.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 157
+ 781.500
+ 129.000
+ 33.000
+ 33.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 158
+ PRIORITY 3
+
+
+
+ true
+ 821.500
+ 116.000
+ 7.000
+ 7.000
+ 25.500
+ 25.500
+ 0.0
+ 0.0
+
+
+ 159
+ 14
+
+
+
+ true
+ 809.000
+ 140.000
+ 12.500
+ 12.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+ 160
+ 4.0
+ 1193.000
+ 129.000
+ 33.000
+ 33.000
+ 131.000
+ 131.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 161
+ 1063.500
+ 129.000
+ 33.000
+ 33.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 162
+ UNACKNOWLEDGED
+
+
+
+ true
+ 1124.000
+ 116.000
+ 7.000
+ 7.000
+ 46.000
+ 46.000
+ 0.0
+ 0.0
+
+
+ 163
+ 12
+
+
+
+ true
+ 1091.000
+ 140.000
+ 12.500
+ 12.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+ 164
+ 4.0
+ 1475.000
+ 129.000
+ 33.000
+ 33.000
+ 131.000
+ 131.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 165
+ 1345.500
+ 129.000
+ 33.000
+ 33.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 166
+ SUPPRESSED
+
+
+
+ true
+ 1388.500
+ 116.000
+ 7.000
+ 7.000
+ 28.500
+ 28.500
+ 0.0
+ 0.0
+
+
+ 167
+ 2
+
+
+
+ true
+ 1366.500
+ 140.000
+ 12.500
+ 12.500
+ 6.500
+ 6.500
+ 0.0
+ 0.0
+
+
+ 168
+ 4.0
+ 1757.000
+ 129.000
+ 33.000
+ 33.000
+ 131.000
+ 131.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 169
+ 1627.500
+ 129.000
+ 33.000
+ 33.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 170
+ OLDEST ACTIVE
+
+
+
+ true
+ 1676.500
+ 116.000
+ 7.000
+ 7.000
+ 34.500
+ 34.500
+ 0.0
+ 0.0
+
+
+ 171
+ 04:12:38
+
+
+
+ true
+ 1686.000
+ 140.000
+ 10.500
+ 10.500
+ 44.000
+ 44.000
+ 0.0
+ 0.0
+
+
+ 536
+ Filters
+
+ 17
+
+ 172
+ 4.0
+ 239.000
+ 190.000
+ 14.000
+ 14.000
+ 23.000
+ 23.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 173
+ ALL
+
+
+
+ true
+ 239.000
+ 190.000
+ 8.500
+ 8.500
+ 10.000
+ 10.000
+ 0.0
+ 0.0
+
+
+ 174
+ 4.0
+ 312.000
+ 190.000
+ 14.000
+ 14.000
+ 42.000
+ 42.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 175
+ PRIORITY 1
+
+
+
+ true
+ 312.000
+ 190.000
+ 8.500
+ 8.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+ 176
+ 4.0
+ 404.000
+ 190.000
+ 14.000
+ 14.000
+ 42.000
+ 42.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 177
+ PRIORITY 2
+
+
+
+ true
+ 404.000
+ 190.000
+ 8.500
+ 8.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+ 178
+ 4.0
+ 496.000
+ 190.000
+ 14.000
+ 14.000
+ 42.000
+ 42.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 179
+ PRIORITY 3
+
+
+
+ true
+ 496.000
+ 190.000
+ 8.500
+ 8.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+ 180
+ 4.0
+ 595.500
+ 190.000
+ 14.000
+ 14.000
+ 49.500
+ 49.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 181
+ UNACK ONLY
+
+
+
+ true
+ 595.500
+ 190.000
+ 8.500
+ 8.500
+ 36.500
+ 36.500
+ 0.0
+ 0.0
+
+
+ 182
+ 4.0
+ 699.500
+ 190.000
+ 14.000
+ 14.000
+ 46.500
+ 46.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 183
+ SUPPRESSED
+
+
+
+ true
+ 699.500
+ 190.000
+ 8.500
+ 8.500
+ 33.500
+ 33.500
+ 0.0
+ 0.0
+
+
+ 184
+ 4.0
+ 802.000
+ 190.000
+ 14.000
+ 14.000
+ 48.000
+ 48.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 185
+ BY MACHINE
+
+
+
+ true
+ 802.000
+ 190.000
+ 8.500
+ 8.500
+ 35.000
+ 35.000
+ 0.0
+ 0.0
+
+
+ 186
+ 4.0
+ 1798.000
+ 190.000
+ 14.000
+ 14.000
+ 98.000
+ 98.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 187
+ 4.0
+ 1718.000
+ 190.000
+ 4.000
+ 4.000
+ 4.000
+ 4.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 188
+ AUTO-SCROLL ON
+
+
+
+ true
+ 1779.000
+ 190.000
+ 8.500
+ 8.500
+ 49.000
+ 49.000
+ 0.0
+ 0.0
+
+
+ 537
+ Table
+
+ 332
+
+ 189
+ 4.0
+ 1056.000
+ 233.000
+ 13.000
+ 13.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 190
+ TIME
+
+
+
+ true
+ 248.000
+ 233.000
+ 7.000
+ 7.000
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 191
+ PRI
+
+
+
+ true
+ 343.000
+ 233.000
+ 7.000
+ 7.000
+ 8.000
+ 8.000
+ 0.0
+ 0.0
+
+
+ 192
+ MACHINE
+
+
+
+ true
+ 401.500
+ 233.000
+ 7.000
+ 7.000
+ 23.500
+ 23.500
+ 0.0
+ 0.0
+
+
+ 193
+ TAG
+
+
+
+ true
+ 502.000
+ 233.000
+ 7.000
+ 7.000
+ 10.000
+ 10.000
+ 0.0
+ 0.0
+
+
+ 194
+ DESCRIPTION
+
+
+
+ true
+ 738.500
+ 233.000
+ 7.000
+ 7.000
+ 32.500
+ 32.500
+ 0.0
+ 0.0
+
+
+ 195
+ VALUE
+
+
+
+ true
+ 1314.500
+ 233.000
+ 7.000
+ 7.000
+ 15.500
+ 15.500
+ 0.0
+ 0.0
+
+
+ 196
+ LIMIT
+
+
+
+ true
+ 1410.500
+ 233.000
+ 7.000
+ 7.000
+ 13.500
+ 13.500
+ 0.0
+ 0.0
+
+
+ 197
+ STATE
+
+
+
+ true
+ 1467.000
+ 233.000
+ 7.000
+ 7.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 198
+ ACK
+
+
+
+ true
+ 1599.000
+ 233.000
+ 7.000
+ 7.000
+ 9.500
+ 9.500
+ 0.0
+ 0.0
+
+
+ 199
+ DURATION
+
+
+
+ true
+ 1716.500
+ 233.000
+ 7.000
+ 7.000
+ 26.500
+ 26.500
+ 0.0
+ 0.0
+
+
+ 200
+ AREA
+
+
+
+ true
+ 1823.000
+ 233.000
+ 7.000
+ 7.000
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+ 201
+ 1056.000
+ 268.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 202
+ 217.500
+ 268.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 203
+ 03:41:52
+
+
+
+ true
+ 264.000
+ 268.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 204
+ 3.0
+ 343.000
+ 268.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 205
+ P1
+
+
+
+ true
+ 343.000
+ 268.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 206
+ STR 07
+
+
+
+ true
+ 399.000
+ 268.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 207
+ HYD.OIL.TEMP
+
+
+
+ true
+ 534.000
+ 268.000
+ 7.000
+ 7.000
+ 42.000
+ 42.000
+ 0.0
+ 0.0
+
+
+ 208
+ Hydraulic oil temperature high-high
+
+
+
+ true
+ 809.500
+ 268.000
+ 9.500
+ 9.500
+ 103.500
+ 103.500
+ 0.0
+ 0.0
+
+
+ 209
+ 118.4
+
+
+
+ true
+ 1312.500
+ 268.000
+ 7.000
+ 7.000
+ 17.500
+ 17.500
+ 0.0
+ 0.0
+
+
+ 210
+ 110.0
+
+
+
+ true
+ 1406.500
+ 268.000
+ 7.000
+ 7.000
+ 17.500
+ 17.500
+ 0.0
+ 0.0
+
+
+ 211
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 268.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 212
+ 3.0
+ 1599.000
+ 268.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 213
+ UNACK
+
+
+
+ true
+ 1599.000
+ 268.000
+ 7.500
+ 7.500
+ 19.500
+ 19.500
+ 0.0
+ 0.0
+
+
+ 214
+ 04:12:38
+
+
+
+ true
+ 1718.000
+ 268.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 215
+ WHARF
+
+
+
+ true
+ 1830.500
+ 268.000
+ 8.500
+ 8.500
+ 20.500
+ 20.500
+ 0.0
+ 0.0
+
+
+ 216
+ 1056.000
+ 284.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 217
+ 1056.000
+ 302.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 218
+ 217.500
+ 302.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 219
+ 06:18:07
+
+
+
+ true
+ 264.000
+ 302.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 220
+ 3.0
+ 343.000
+ 302.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 221
+ P1
+
+
+
+ true
+ 343.000
+ 302.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 222
+ STR 22
+
+
+
+ true
+ 399.000
+ 302.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 223
+ ENG.COOL.LVL
+
+
+
+ true
+ 534.000
+ 302.000
+ 7.000
+ 7.000
+ 42.000
+ 42.000
+ 0.0
+ 0.0
+
+
+ 224
+ Engine coolant level low-low
+
+
+
+ true
+ 788.500
+ 302.000
+ 9.500
+ 9.500
+ 82.500
+ 82.500
+ 0.0
+ 0.0
+
+
+ 225
+ 12.0
+
+
+
+ true
+ 1316.000
+ 302.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 226
+ 20.0
+
+
+
+ true
+ 1410.000
+ 302.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 227
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 302.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 228
+ 3.0
+ 1599.000
+ 302.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 229
+ UNACK
+
+
+
+ true
+ 1599.000
+ 302.000
+ 7.500
+ 7.500
+ 19.500
+ 19.500
+ 0.0
+ 0.0
+
+
+ 230
+ 01:36:23
+
+
+
+ true
+ 1718.000
+ 302.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 231
+ YARD B
+
+
+
+ true
+ 1830.000
+ 302.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 232
+ 1056.000
+ 318.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 233
+ 1056.000
+ 336.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 234
+ 217.500
+ 336.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 235
+ 07:22:44
+
+
+
+ true
+ 264.000
+ 336.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 236
+ 3.0
+ 343.000
+ 336.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 237
+ P1
+
+
+
+ true
+ 343.000
+ 336.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 238
+ STR 14
+
+
+
+ true
+ 399.000
+ 336.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 239
+ HST.BRK.WEAR
+
+
+
+ true
+ 534.000
+ 336.000
+ 7.000
+ 7.000
+ 42.000
+ 42.000
+ 0.0
+ 0.0
+
+
+ 240
+ Hoist brake pad wear beyond limit
+
+
+
+ true
+ 807.000
+ 336.000
+ 9.500
+ 9.500
+ 101.000
+ 101.000
+ 0.0
+ 0.0
+
+
+ 241
+ 1.8
+
+
+
+ true
+ 1319.500
+ 336.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 242
+ 2.5
+
+
+
+ true
+ 1413.500
+ 336.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 243
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 336.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 244
+ 3.0
+ 1599.000
+ 336.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 245
+ ACK
+
+
+
+ true
+ 1599.000
+ 336.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 246
+ 00:31:46
+
+
+
+ true
+ 1718.000
+ 336.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 247
+ YARD A
+
+
+
+ true
+ 1830.500
+ 336.000
+ 8.500
+ 8.500
+ 20.500
+ 20.500
+ 0.0
+ 0.0
+
+
+ 248
+ 1056.000
+ 352.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 249
+ 1056.000
+ 370.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 250
+ 217.500
+ 370.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 251
+ 05:02:19
+
+
+
+ true
+ 264.000
+ 370.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 252
+ 3.0
+ 343.000
+ 370.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 253
+ P2
+
+
+
+ true
+ 343.000
+ 370.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 254
+ STR 03
+
+
+
+ true
+ 399.000
+ 370.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 255
+ TWL.LOCK.FB
+
+
+
+ true
+ 530.500
+ 370.000
+ 7.000
+ 7.000
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 256
+ Twistlock feedback mismatch · corner 3
+
+
+
+ true
+ 820.000
+ 370.000
+ 9.500
+ 9.500
+ 114.000
+ 114.000
+ 0.0
+ 0.0
+
+
+ 257
+ -
+
+
+
+ true
+ 1326.500
+ 370.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 258
+ -
+
+
+
+ true
+ 1420.500
+ 370.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 259
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 370.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 260
+ 3.0
+ 1599.000
+ 370.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 261
+ UNACK
+
+
+
+ true
+ 1599.000
+ 370.000
+ 7.500
+ 7.500
+ 19.500
+ 19.500
+ 0.0
+ 0.0
+
+
+ 262
+ 02:52:11
+
+
+
+ true
+ 1718.000
+ 370.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 263
+ YARD C
+
+
+
+ true
+ 1830.000
+ 370.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 264
+ 1056.000
+ 386.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 265
+ 1056.000
+ 404.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 266
+ 217.500
+ 404.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 267
+ 05:47:33
+
+
+
+ true
+ 264.000
+ 404.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 268
+ 3.0
+ 343.000
+ 404.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 269
+ P2
+
+
+
+ true
+ 343.000
+ 404.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 270
+ STR 31
+
+
+
+ true
+ 399.000
+ 404.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 271
+ FUEL.LVL
+
+
+
+ true
+ 520.000
+ 404.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 272
+ Fuel level low
+
+
+
+ true
+ 744.500
+ 404.000
+ 9.500
+ 9.500
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 273
+ 14.2
+
+
+
+ true
+ 1316.000
+ 404.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 274
+ 15.0
+
+
+
+ true
+ 1410.000
+ 404.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 275
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 404.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 276
+ 3.0
+ 1599.000
+ 404.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 277
+ ACK
+
+
+
+ true
+ 1599.000
+ 404.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 278
+ 02:06:57
+
+
+
+ true
+ 1718.000
+ 404.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 279
+ FUEL BAY
+
+
+
+ true
+ 1835.500
+ 404.000
+ 8.500
+ 8.500
+ 25.500
+ 25.500
+ 0.0
+ 0.0
+
+
+ 280
+ 1056.000
+ 420.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 281
+ 1056.000
+ 438.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 282
+ 217.500
+ 438.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 283
+ 06:04:11
+
+
+
+ true
+ 264.000
+ 438.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 284
+ 3.0
+ 343.000
+ 438.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 285
+ P2
+
+
+
+ true
+ 343.000
+ 438.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 286
+ STR 18
+
+
+
+ true
+ 399.000
+ 438.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 287
+ TRV.MOT.TEMP
+
+
+
+ true
+ 534.000
+ 438.000
+ 7.000
+ 7.000
+ 42.000
+ 42.000
+ 0.0
+ 0.0
+
+
+ 288
+ Travel motor winding temperature high
+
+
+
+ true
+ 820.492
+ 438.000
+ 9.500
+ 9.500
+ 114.492
+ 114.492
+ 0.0
+ 0.0
+
+
+ 289
+ 141.0
+
+
+
+ true
+ 1312.500
+ 438.000
+ 7.000
+ 7.000
+ 17.500
+ 17.500
+ 0.0
+ 0.0
+
+
+ 290
+ 135.0
+
+
+
+ true
+ 1406.500
+ 438.000
+ 7.000
+ 7.000
+ 17.500
+ 17.500
+ 0.0
+ 0.0
+
+
+ 291
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 438.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 292
+ 3.0
+ 1599.000
+ 438.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 293
+ UNACK
+
+
+
+ true
+ 1599.000
+ 438.000
+ 7.500
+ 7.500
+ 19.500
+ 19.500
+ 0.0
+ 0.0
+
+
+ 294
+ 01:50:19
+
+
+
+ true
+ 1718.000
+ 438.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 295
+ YARD B
+
+
+
+ true
+ 1830.000
+ 438.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 296
+ 1056.000
+ 454.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 297
+ 1056.000
+ 472.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 298
+ 217.500
+ 472.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 299
+ 06:29:58
+
+
+
+ true
+ 264.000
+ 472.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 300
+ 3.0
+ 343.000
+ 472.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 301
+ P2
+
+
+
+ true
+ 343.000
+ 472.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 302
+ STR 09
+
+
+
+ true
+ 399.000
+ 472.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 303
+ BAT.SOC
+
+
+
+ true
+ 516.500
+ 472.000
+ 7.000
+ 7.000
+ 24.500
+ 24.500
+ 0.0
+ 0.0
+
+
+ 304
+ Hybrid battery state of charge low
+
+
+
+ true
+ 806.000
+ 472.000
+ 9.500
+ 9.500
+ 100.000
+ 100.000
+ 0.0
+ 0.0
+
+
+ 305
+ 18.0
+
+
+
+ true
+ 1316.000
+ 472.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 306
+ 25.0
+
+
+
+ true
+ 1410.000
+ 472.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 307
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 472.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 308
+ 3.0
+ 1599.000
+ 472.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 309
+ UNACK
+
+
+
+ true
+ 1599.000
+ 472.000
+ 7.500
+ 7.500
+ 19.500
+ 19.500
+ 0.0
+ 0.0
+
+
+ 310
+ 01:24:32
+
+
+
+ true
+ 1718.000
+ 472.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 311
+ YARD A
+
+
+
+ true
+ 1830.500
+ 472.000
+ 8.500
+ 8.500
+ 20.500
+ 20.500
+ 0.0
+ 0.0
+
+
+ 312
+ 1056.000
+ 488.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 313
+ 1056.000
+ 506.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 314
+ 217.500
+ 506.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 315
+ 06:55:02
+
+
+
+ true
+ 264.000
+ 506.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 316
+ 3.0
+ 343.000
+ 506.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 317
+ P2
+
+
+
+ true
+ 343.000
+ 506.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 318
+ STR 26
+
+
+
+ true
+ 399.000
+ 506.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 319
+ STR.ANG.DEV
+
+
+
+ true
+ 530.500
+ 506.000
+ 7.000
+ 7.000
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 320
+ Steering angle deviation exceeded
+
+
+
+ true
+ 806.500
+ 506.000
+ 9.500
+ 9.500
+ 100.500
+ 100.500
+ 0.0
+ 0.0
+
+
+ 321
+ 4.6
+
+
+
+ true
+ 1319.500
+ 506.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 322
+ 3.0
+
+
+
+ true
+ 1413.500
+ 506.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 323
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 506.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 324
+ 3.0
+ 1599.000
+ 506.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 325
+ ACK
+
+
+
+ true
+ 1599.000
+ 506.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 326
+ 00:59:28
+
+
+
+ true
+ 1718.000
+ 506.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 327
+ WHARF
+
+
+
+ true
+ 1830.500
+ 506.000
+ 8.500
+ 8.500
+ 20.500
+ 20.500
+ 0.0
+ 0.0
+
+
+ 328
+ 1056.000
+ 522.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 329
+ 1056.000
+ 540.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 330
+ 217.500
+ 540.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 331
+ 07:08:40
+
+
+
+ true
+ 264.000
+ 540.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 332
+ 3.0
+ 343.000
+ 540.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 333
+ P2
+
+
+
+ true
+ 343.000
+ 540.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 334
+ STR 12
+
+
+
+ true
+ 399.000
+ 540.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 335
+ SPR.HGT.ENC
+
+
+
+ true
+ 530.500
+ 540.000
+ 7.000
+ 7.000
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 336
+ Spreader height encoder discrepancy
+
+
+
+ true
+ 815.500
+ 540.000
+ 9.500
+ 9.500
+ 109.500
+ 109.500
+ 0.0
+ 0.0
+
+
+ 337
+ -
+
+
+
+ true
+ 1326.500
+ 540.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 338
+ -
+
+
+
+ true
+ 1420.500
+ 540.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 339
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 540.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 340
+ 3.0
+ 1599.000
+ 540.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 341
+ UNACK
+
+
+
+ true
+ 1599.000
+ 540.000
+ 7.500
+ 7.500
+ 19.500
+ 19.500
+ 0.0
+ 0.0
+
+
+ 342
+ 00:45:50
+
+
+
+ true
+ 1718.000
+ 540.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 343
+ YARD C
+
+
+
+ true
+ 1830.000
+ 540.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 344
+ 1056.000
+ 556.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 345
+ 1056.000
+ 574.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 346
+ 217.500
+ 574.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 347
+ 07:14:26
+
+
+
+ true
+ 264.000
+ 574.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 348
+ 3.0
+ 343.000
+ 574.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 349
+ P2
+
+
+
+ true
+ 343.000
+ 574.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 350
+ STR 05
+
+
+
+ true
+ 399.000
+ 574.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 351
+ AIR.PRESS
+
+
+
+ true
+ 523.500
+ 574.000
+ 7.000
+ 7.000
+ 31.500
+ 31.500
+ 0.0
+ 0.0
+
+
+ 352
+ Brake air pressure below setpoint
+
+
+
+ true
+ 804.000
+ 574.000
+ 9.500
+ 9.500
+ 98.000
+ 98.000
+ 0.0
+ 0.0
+
+
+ 353
+ 6.2
+
+
+
+ true
+ 1319.500
+ 574.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 354
+ 7.0
+
+
+
+ true
+ 1413.500
+ 574.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 355
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 574.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 356
+ 3.0
+ 1599.000
+ 574.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 357
+ UNACK
+
+
+
+ true
+ 1599.000
+ 574.000
+ 7.500
+ 7.500
+ 19.500
+ 19.500
+ 0.0
+ 0.0
+
+
+ 358
+ 00:40:04
+
+
+
+ true
+ 1718.000
+ 574.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 359
+ YARD B
+
+
+
+ true
+ 1830.000
+ 574.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 360
+ 1056.000
+ 590.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 361
+ 1056.000
+ 608.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 362
+ 217.500
+ 608.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 363
+ 07:31:15
+
+
+
+ true
+ 264.000
+ 608.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 364
+ 3.0
+ 343.000
+ 608.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 365
+ P2
+
+
+
+ true
+ 343.000
+ 608.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 366
+ STR 29
+
+
+
+ true
+ 399.000
+ 608.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 367
+ LUB.SYS.FLT
+
+
+
+ true
+ 530.500
+ 608.000
+ 7.000
+ 7.000
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 368
+ Central lubrication system fault
+
+
+
+ true
+ 795.500
+ 608.000
+ 9.500
+ 9.500
+ 89.500
+ 89.500
+ 0.0
+ 0.0
+
+
+ 369
+ -
+
+
+
+ true
+ 1326.500
+ 608.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 370
+ -
+
+
+
+ true
+ 1420.500
+ 608.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 371
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 608.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 372
+ 3.0
+ 1599.000
+ 608.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 373
+ ACK
+
+
+
+ true
+ 1599.000
+ 608.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 374
+ 00:23:15
+
+
+
+ true
+ 1718.000
+ 608.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 375
+ YARD A
+
+
+
+ true
+ 1830.500
+ 608.000
+ 8.500
+ 8.500
+ 20.500
+ 20.500
+ 0.0
+ 0.0
+
+
+ 376
+ 1056.000
+ 624.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 377
+ 1056.000
+ 642.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 378
+ 217.500
+ 642.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 379
+ 04:12:07
+
+
+
+ true
+ 264.000
+ 642.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 380
+ 3.0
+ 343.000
+ 642.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 381
+ P3
+
+
+
+ true
+ 343.000
+ 642.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 382
+ STR 01
+
+
+
+ true
+ 399.000
+ 642.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 383
+ TYRE.PRESS.RF
+
+
+
+ true
+ 537.500
+ 642.000
+ 7.000
+ 7.000
+ 45.500
+ 45.500
+ 0.0
+ 0.0
+
+
+ 384
+ Tyre pressure below advisory · right front
+
+
+
+ true
+ 827.000
+ 642.000
+ 9.500
+ 9.500
+ 121.000
+ 121.000
+ 0.0
+ 0.0
+
+
+ 385
+ 8.1
+
+
+
+ true
+ 1319.500
+ 642.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 386
+ 8.5
+
+
+
+ true
+ 1413.500
+ 642.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 387
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 642.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 388
+ 3.0
+ 1599.000
+ 642.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 389
+ ACK
+
+
+
+ true
+ 1599.000
+ 642.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 390
+ 03:42:23
+
+
+
+ true
+ 1718.000
+ 642.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 391
+ YARD A
+
+
+
+ true
+ 1830.500
+ 642.000
+ 8.500
+ 8.500
+ 20.500
+ 20.500
+ 0.0
+ 0.0
+
+
+ 392
+ 1056.000
+ 658.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 393
+ 1056.000
+ 676.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 394
+ 217.500
+ 676.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 395
+ 05:20:44
+
+
+
+ true
+ 264.000
+ 676.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 396
+ 3.0
+ 343.000
+ 676.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 397
+ P3
+
+
+
+ true
+ 343.000
+ 676.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 398
+ STR 16
+
+
+
+ true
+ 399.000
+ 676.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 399
+ HYD.FILT.DP
+
+
+
+ true
+ 530.500
+ 676.000
+ 7.000
+ 7.000
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 400
+ Hydraulic filter differential pressure rising
+
+
+
+ true
+ 826.500
+ 676.000
+ 9.500
+ 9.500
+ 120.500
+ 120.500
+ 0.0
+ 0.0
+
+
+ 401
+ 2.9
+
+
+
+ true
+ 1319.500
+ 676.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 402
+ 3.2
+
+
+
+ true
+ 1413.500
+ 676.000
+ 7.000
+ 7.000
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 403
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 676.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 404
+ 3.0
+ 1599.000
+ 676.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 405
+ ACK
+
+
+
+ true
+ 1599.000
+ 676.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 406
+ 02:33:46
+
+
+
+ true
+ 1718.000
+ 676.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 407
+ YARD C
+
+
+
+ true
+ 1830.000
+ 676.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 408
+ 1056.000
+ 692.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 409
+ 1056.000
+ 710.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 410
+ 217.500
+ 710.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 411
+ 06:11:33
+
+
+
+ true
+ 264.000
+ 710.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 412
+ 3.0
+ 343.000
+ 710.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 413
+ P3
+
+
+
+ true
+ 343.000
+ 710.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 414
+ STR 24
+
+
+
+ true
+ 399.000
+ 710.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 415
+ CAB.HVAC
+
+
+
+ true
+ 520.000
+ 710.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 416
+ Cabin HVAC unit not reaching setpoint
+
+
+
+ true
+ 817.500
+ 710.000
+ 9.500
+ 9.500
+ 111.500
+ 111.500
+ 0.0
+ 0.0
+
+
+ 417
+ -
+
+
+
+ true
+ 1326.500
+ 710.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 418
+ -
+
+
+
+ true
+ 1420.500
+ 710.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 419
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 710.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 420
+ 3.0
+ 1599.000
+ 710.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 421
+ ACK
+
+
+
+ true
+ 1599.000
+ 710.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 422
+ 01:42:57
+
+
+
+ true
+ 1718.000
+ 710.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 423
+ YARD B
+
+
+
+ true
+ 1830.000
+ 710.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 424
+ 1056.000
+ 726.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 425
+ 1056.000
+ 744.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 426
+ 217.500
+ 744.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 427
+ 06:38:52
+
+
+
+ true
+ 264.000
+ 744.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 428
+ 3.0
+ 343.000
+ 744.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 429
+ P3
+
+
+
+ true
+ 343.000
+ 744.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 430
+ STR 11
+
+
+
+ true
+ 399.000
+ 744.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 431
+ GPS.QUAL
+
+
+
+ true
+ 520.000
+ 744.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 432
+ Position fix quality degraded
+
+
+
+ true
+ 789.500
+ 744.000
+ 9.500
+ 9.500
+ 83.500
+ 83.500
+ 0.0
+ 0.0
+
+
+ 433
+ -
+
+
+
+ true
+ 1326.500
+ 744.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 434
+ -
+
+
+
+ true
+ 1420.500
+ 744.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 435
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 744.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 436
+ 3.0
+ 1599.000
+ 744.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 437
+ ACK
+
+
+
+ true
+ 1599.000
+ 744.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 438
+ 01:15:38
+
+
+
+ true
+ 1718.000
+ 744.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 439
+ WHARF
+
+
+
+ true
+ 1830.500
+ 744.000
+ 8.500
+ 8.500
+ 20.500
+ 20.500
+ 0.0
+ 0.0
+
+
+ 440
+ 1056.000
+ 760.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 441
+ 1056.000
+ 778.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 442
+ 217.500
+ 778.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 443
+ 06:52:10
+
+
+
+ true
+ 264.000
+ 778.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 444
+ 3.0
+ 343.000
+ 778.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 445
+ P3
+
+
+
+ true
+ 343.000
+ 778.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 446
+ STR 20
+
+
+
+ true
+ 399.000
+ 778.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 447
+ WLAN.RSSI
+
+
+
+ true
+ 523.500
+ 778.000
+ 7.000
+ 7.000
+ 31.500
+ 31.500
+ 0.0
+ 0.0
+
+
+ 448
+ Wireless signal strength low
+
+
+
+ true
+ 787.500
+ 778.000
+ 9.500
+ 9.500
+ 81.500
+ 81.500
+ 0.0
+ 0.0
+
+
+ 449
+ -78.0
+
+
+
+ true
+ 1312.500
+ 778.000
+ 7.000
+ 7.000
+ 17.500
+ 17.500
+ 0.0
+ 0.0
+
+
+ 450
+ -72.0
+
+
+
+ true
+ 1406.500
+ 778.000
+ 7.000
+ 7.000
+ 17.500
+ 17.500
+ 0.0
+ 0.0
+
+
+ 451
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 778.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 452
+ 3.0
+ 1599.000
+ 778.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 453
+ ACK
+
+
+
+ true
+ 1599.000
+ 778.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 454
+ 01:02:20
+
+
+
+ true
+ 1718.000
+ 778.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 455
+ YARD C
+
+
+
+ true
+ 1830.000
+ 778.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 456
+ 1056.000
+ 794.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 457
+ 1056.000
+ 812.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 458
+ 217.500
+ 812.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 459
+ 07:03:29
+
+
+
+ true
+ 264.000
+ 812.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 460
+ 3.0
+ 343.000
+ 812.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 461
+ P3
+
+
+
+ true
+ 343.000
+ 812.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 462
+ STR 08
+
+
+
+ true
+ 399.000
+ 812.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 463
+ ENG.HRS.SVC
+
+
+
+ true
+ 530.500
+ 812.000
+ 7.000
+ 7.000
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 464
+ Service interval due within 50 h
+
+
+
+ true
+ 795.500
+ 812.000
+ 9.500
+ 9.500
+ 89.500
+ 89.500
+ 0.0
+ 0.0
+
+
+ 465
+ 4950
+
+
+
+ true
+ 1316.000
+ 812.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 466
+ 5000
+
+
+
+ true
+ 1410.000
+ 812.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 467
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 812.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 468
+ 3.0
+ 1599.000
+ 812.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 469
+ ACK
+
+
+
+ true
+ 1599.000
+ 812.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 470
+ 00:51:01
+
+
+
+ true
+ 1718.000
+ 812.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 471
+ YARD A
+
+
+
+ true
+ 1830.500
+ 812.000
+ 8.500
+ 8.500
+ 20.500
+ 20.500
+ 0.0
+ 0.0
+
+
+ 472
+ 1056.000
+ 828.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 473
+ 1056.000
+ 846.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 474
+ 217.500
+ 846.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 475
+ 07:19:47
+
+
+
+ true
+ 264.000
+ 846.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 476
+ 3.0
+ 343.000
+ 846.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 477
+ P3
+
+
+
+ true
+ 343.000
+ 846.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 478
+ STR 32
+
+
+
+ true
+ 399.000
+ 846.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 479
+ DEF.LVL
+
+
+
+ true
+ 516.500
+ 846.000
+ 7.000
+ 7.000
+ 24.500
+ 24.500
+ 0.0
+ 0.0
+
+
+ 480
+ DEF tank level low
+
+
+
+ true
+ 758.000
+ 846.000
+ 9.500
+ 9.500
+ 52.000
+ 52.000
+ 0.0
+ 0.0
+
+
+ 481
+ 19.0
+
+
+
+ true
+ 1316.000
+ 846.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 482
+ 20.0
+
+
+
+ true
+ 1410.000
+ 846.000
+ 7.000
+ 7.000
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 483
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 846.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 484
+ 3.0
+ 1599.000
+ 846.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 485
+ UNACK
+
+
+
+ true
+ 1599.000
+ 846.000
+ 7.500
+ 7.500
+ 19.500
+ 19.500
+ 0.0
+ 0.0
+
+
+ 486
+ 00:34:43
+
+
+
+ true
+ 1718.000
+ 846.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 487
+ FUEL BAY
+
+
+
+ true
+ 1835.500
+ 846.000
+ 8.500
+ 8.500
+ 25.500
+ 25.500
+ 0.0
+ 0.0
+
+
+ 488
+ 1056.000
+ 862.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 489
+ 1056.000
+ 880.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 490
+ 217.500
+ 880.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 491
+ 07:26:05
+
+
+
+ true
+ 264.000
+ 880.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 492
+ 3.0
+ 343.000
+ 880.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 493
+ P3
+
+
+
+ true
+ 343.000
+ 880.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 494
+ STR 04
+
+
+
+ true
+ 399.000
+ 880.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 495
+ CAM.REAR
+
+
+
+ true
+ 520.000
+ 880.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 496
+ Rear camera signal lost
+
+
+
+ true
+ 774.500
+ 880.000
+ 9.500
+ 9.500
+ 68.500
+ 68.500
+ 0.0
+ 0.0
+
+
+ 497
+ -
+
+
+
+ true
+ 1326.500
+ 880.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 498
+ -
+
+
+
+ true
+ 1420.500
+ 880.000
+ 7.000
+ 7.000
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 499
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 880.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 500
+ 3.0
+ 1599.000
+ 880.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 501
+ UNACK
+
+
+
+ true
+ 1599.000
+ 880.000
+ 7.500
+ 7.500
+ 19.500
+ 19.500
+ 0.0
+ 0.0
+
+
+ 502
+ 00:28:25
+
+
+
+ true
+ 1718.000
+ 880.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 503
+ YARD B
+
+
+
+ true
+ 1830.000
+ 880.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 504
+ 1056.000
+ 896.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 505
+ 1056.000
+ 914.000
+ 16.000
+ 16.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 506
+ 217.500
+ 914.000
+ 16.000
+ 16.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 507
+ 07:38:41
+
+
+
+ true
+ 264.000
+ 914.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 508
+ 3.0
+ 343.000
+ 914.500
+ 7.500
+ 7.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 509
+ P3
+
+
+
+ true
+ 343.000
+ 914.000
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 510
+ STR 27
+
+
+
+ true
+ 399.000
+ 914.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 511
+ TWL.CYC.CNT
+
+
+
+ true
+ 530.500
+ 914.000
+ 7.000
+ 7.000
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 512
+ Twistlock cycle count service threshold
+
+
+
+ true
+ 817.500
+ 914.000
+ 9.500
+ 9.500
+ 111.500
+ 111.500
+ 0.0
+ 0.0
+
+
+ 513
+ 98400
+
+
+
+ true
+ 1312.500
+ 914.000
+ 7.000
+ 7.000
+ 17.500
+ 17.500
+ 0.0
+ 0.0
+
+
+ 514
+ 100000
+
+
+
+ true
+ 1403.000
+ 914.000
+ 7.000
+ 7.000
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 515
+ ACTIVE
+
+
+
+ true
+ 1472.000
+ 914.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 516
+ 3.0
+ 1599.000
+ 914.500
+ 7.500
+ 7.500
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 517
+ ACK
+
+
+
+ true
+ 1599.000
+ 914.000
+ 7.500
+ 7.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 518
+ 00:15:49
+
+
+
+ true
+ 1718.000
+ 914.000
+ 7.000
+ 7.000
+ 28.000
+ 28.000
+ 0.0
+ 0.0
+
+
+ 519
+ YARD C
+
+
+
+ true
+ 1830.000
+ 914.000
+ 8.500
+ 8.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+ 520
+ 1056.000
+ 930.500
+ 0.500
+ 0.500
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 538
+ Actions
+
+ 12
+
+ 521
+ 4.0
+ 1056.000
+ 970.000
+ 22.000
+ 22.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 522
+ 4.0
+ 322.000
+ 970.000
+ 12.000
+ 12.000
+ 90.000
+ 90.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 523
+ ACKNOWLEDGE SELECTED
+
+
+
+ true
+ 322.000
+ 970.000
+ 8.500
+ 8.500
+ 73.000
+ 73.000
+ 0.0
+ 0.0
+
+
+ 524
+ 4.0
+ 502.000
+ 970.000
+ 12.000
+ 12.000
+ 78.000
+ 78.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 525
+ ACKNOWLEDGE PAGE
+
+
+
+ true
+ 502.000
+ 970.000
+ 8.500
+ 8.500
+ 61.000
+ 61.000
+ 0.0
+ 0.0
+
+
+ 526
+ 4.0
+ 665.000
+ 970.000
+ 12.000
+ 12.000
+ 73.000
+ 73.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 527
+ ACKNOWLEDGE ALL
+
+
+
+ true
+ 665.000
+ 970.000
+ 8.500
+ 8.500
+ 56.000
+ 56.000
+ 0.0
+ 0.0
+
+
+ 528
+ 4.0
+ 808.500
+ 970.000
+ 12.000
+ 12.000
+ 58.500
+ 58.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 529
+ SILENCE HORN
+
+
+
+ true
+ 808.500
+ 970.000
+ 8.500
+ 8.500
+ 41.500
+ 41.500
+ 0.0
+ 0.0
+
+
+ 530
+ 4.0
+ 917.000
+ 970.000
+ 12.000
+ 12.000
+ 38.000
+ 38.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 531
+ SHELVE
+
+
+
+ true
+ 917.000
+ 970.000
+ 8.500
+ 8.500
+ 21.000
+ 21.000
+ 0.0
+ 0.0
+
+
+ 532
+ LAST UPDATE 07:41:06 · 26 OF 26 SHOWN
+
+
+
+ true
+ 1770.000
+ 970.000
+ 7.500
+ 7.500
+ 110.000
+ 110.000
+ 0.0
+ 0.0
+
+
+
diff --git a/99-reference/ciserver-hmi-deployment/displays/Straddle_Overview.xml b/99-reference/ciserver-hmi-deployment/displays/Straddle_Overview.xml
new file mode 100644
index 0000000..1ead992
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/displays/Straddle_Overview.xml
@@ -0,0 +1,31500 @@
+
+
+
+
+
+ 0.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Straddle_Maintenance
+
+
+
+
+
+
+
+
+
+
+
+
+ Straddle_Location
+
+
+
+
+
+
+
+ Straddle_Detail
+
+
+
+
+
+
+
+
+
+
+
+
+ Straddle_Overview_Light
+
+
+
+
+
+
+
+ Straddle_Overview_Grey
+
+
+
+
+
+
+
+ Straddle_01_Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ java.lang.Boolean
+ fasttools.jwui.common.property.paint.PaintSet
+
+ false
+
+ true
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwBoxOrLandErr
+ 1.1.47.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ java.lang.Boolean
+ fasttools.jwui.common.property.paint.PaintSet
+
+ false
+
+ true
+
+
+
+
+
+
+ 1
+ ESDS32DCD.PInS702_2TwLiCoFr
+ 1.1.76.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.PInS702_1TwLiCoRe
+ 1.1.78.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeSingleMode
+ 1.1.14.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.KeTwinMode
+ 1.1.13.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwinDisplay
+ 1.1.12.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeAllTwiTwLoClo
+ 1.1.11.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeAllTwiTwLoOpe
+ 1.1.17.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeAllLandPinsUp
+ 1.1.23.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.ContWeightHex
+ 1.1.97.0.0.1.1.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.NsNrOf2x20contTrip
+ 1.1.110.0.0.1.1.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.NsRPM
+ 1.1.94.0.0.1.1.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.NsEngTemp
+ 1.1.98.0.0.1.1.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.NsStability
+ 1.1.95.0.0.1.1.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.NsSprHeight
+ 1.1.99.0.0.1.1.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.NsSprLength
+ 1.1.100.0.0.1.1.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.NsFuelRate
+ 1.1.113.0.0.1.1.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.NsFuelLevelPercentVal
+ 1.1.96.0.0.1.1.7
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ java.lang.Boolean
+ fasttools.jwui.common.property.paint.PaintSet
+
+ false
+
+ true
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwTwLoErrFL
+ 1.1.37.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwTwLoErrFR
+ 1.1.38.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwTwLoErrRL
+ 1.1.39.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwTwLoErrRR
+ 1.1.40.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwBoOrLandErFL
+ 1.1.33.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwBoOrLandErFR
+ 1.1.34.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwBoOrLandErRL
+ 1.1.35.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwBoOrLandErRR
+ 1.1.36.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwinGapSensEr
+ 1.1.41.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ ESDS32DCD.HeTwinGapSenErrHoPrev
+ 1.1.42.0.0.1.1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Straddle_Alarms
+
+
+
+
+
+
+
+ Straddle_Trends
+
+
+
+
+
+
+
+
+ Signal_Board
+ FixedPopup
+ default
+
+
+
+
+
+
+ Straddle Overview
+ 66
+
+
+
+
+
+
+
+
+
+
+ PATRICK
+ true
+
+ 700
+ false
+ false
+
+
+ AOG_SIL
+ Stroke Indicator Limit
+
+
+
+
+
+
+
+ AOG_SIO
+ Stroke Indicator Outline
+
+
+
+
+
+
+
+ AOG_SEO
+ Stroke Equipment Outline
+
+
+
+
+
+
+
+ AOG_SIS
+ Stroke Indicator Signal
+
+
+
+
+
+
+
+ AOG_CAL
+ Color Alarm Low
+
+
+
+
+
+
+
+ AOG_CAM
+ Color Alarm Medium
+
+
+
+
+
+
+
+ AOG_CER
+ Color Equipment Running
+
+
+
+
+
+
+
+ AOG_CAO
+ Color Alarm Off
+
+
+
+
+
+
+
+ AOG_CAD
+ Color Alarm Diagnostic
+
+
+
+
+
+
+
+ AOG_FT4
+ Font Text 4
+
+
+
+
+
+
+
+ AOG_CIL
+ Color Indicator Limit
+
+
+
+
+
+
+
+ AOG_CIN
+ Color Indicator Normal
+
+
+
+
+
+
+
+ AOG_CIO
+ Color Indicator Outline
+
+
+
+
+
+
+
+ AOG_CAH
+ Color Alarm High
+
+
+
+
+
+
+
+ AOG_CEO
+ Color Equipment Off
+
+
+
+
+
+
+
+ AOG_CIS
+ Color Indicator Signal
+
+
+
+
+
+
+
+ AOG_CT1
+ Color Text 1
+
+
+
+
+
+
+
+ AOG_ShowTagName
+ Show Tag Name
+
+
+ true
+
+
+
+
+ AOG_CT2
+ Color Text 2
+
+
+
+
+
+
+
+ AOG_CT3
+ Color Text 3
+
+
+
+
+
+
+
+ AOG_CT4
+ Color Text 4
+
+
+
+
+
+
+
+ AOG_CSS
+ Color Selector Selected
+
+
+
+
+
+
+
+ AOG_CSI
+ Color Selector Indicator
+
+
+
+
+
+
+
+ AOG_CFS
+ Color Fluid Sub
+
+
+
+
+
+
+
+ AOG_CFM
+ Color Fluid Main
+
+
+
+
+
+
+
+ AOG_SGS
+ Stroke Gas Sub
+
+
+
+
+
+
+
+ AOG_CDB
+ Color Display Background
+
+
+
+
+
+
+
+ AOG_CLL
+ Color Line Leader
+
+
+
+
+
+
+
+ AOG_CLB
+ Color Line Border
+
+
+
+
+
+
+
+ AOG_SGM
+ Stroke Gas Main line
+
+
+
+
+
+
+
+ AOG_CLD
+ Color Line Derived sub line
+
+
+
+
+
+
+
+ AOG_CLE
+ Color Line Equipment
+
+
+
+
+
+
+
+ AOG_CGS
+ Color Gas Sub line
+
+
+
+
+
+
+
+ AOG_SSS
+ Stroke Selector Selected
+
+
+
+
+
+
+
+ AOG_SSI
+ Stroke Selector Indicator
+
+
+
+
+
+
+
+ AOG_CGM
+ Color Gas Main line
+
+
+
+
+
+
+
+ AOG_FT1
+ Font Text 1
+
+
+
+
+
+
+
+ AOG_FT2
+ Font Text 2
+
+
+
+
+
+
+
+ AOG_FT3
+ Font Text 3
+
+
+
+
+
+
+
+ AOG_SLP
+ Stroke Line Product
+
+
+
+
+
+
+
+ AOG_CMC
+ Color Manual Cotrol
+
+
+
+
+
+
+
+ AOG_SLS
+ Stroke Line Signal
+
+
+
+
+
+
+
+ AOG_CIB
+ Color Indicator Background
+
+
+
+
+
+
+
+ AOG_SLL
+ Stroke Line Leader
+
+
+
+
+
+
+
+ AOG_CLP
+ Color Line Product
+
+
+
+
+
+
+
+ AOG_SLB
+ Stroke Line Border
+
+
+
+
+
+
+
+ AOG_CLS
+ Color Line Signal
+
+
+
+
+
+
+
+ AOG_SLD
+ Stroke Line Derived sub line
+
+
+
+
+
+
+
+ AOG_SLE
+ Stroke Line Equipment
+
+
+
+
+
+
+
+ AOG_CDN
+ Color Display Neighbor
+
+
+
+
+
+
+
+ AOG_CENR
+ Color Equipment Not Running
+
+
+
+
+
+
+
+ AOG_OnText
+
+
+ ON
+
+
+
+
+ AOG_OffText
+
+
+ OFF
+
+
+
+
+ AOG_ET1
+ Engineering Units of Temperature
+
+
+ Deg.C
+
+
+
+
+ AOG_ET2
+ Engineering Unit of Temperature
+
+
+ Deg.F
+
+
+
+
+ AOG_EP1
+ Engineering unit of Pressure
+
+
+ Pa
+
+
+
+
+ AOG_CEB
+ Color Equipment Background
+
+
+
+
+
+
+
+ AOG_EL1
+
+
+ m
+
+
+
+
+ AOG_EF1
+
+
+ m3/s
+
+
+
+
+ AOG_BlinkOnNotAcknowledged
+
+
+ true
+
+
+
+
+ AOG_COC
+ Color Offline Condition
+
+
+
+
+
+
+ 2
+ Overview
+ Always shown
+ true
+ 10.0
+
+
+ 3
+ Rough
+ Shown when viewing a large area
+ true
+ 25.0
+
+
+ 4
+ Standard
+ Shown when using the default view setting
+ true
+ 100.0
+
+
+ 5
+ Detail
+ Shown only when viewing a small area
+ true
+ 400.0
+
+
+ 6
+ Intricacies
+ Shown only when viewing a very small area
+ true
+ 1000.0
+
+
+
+
+
+
+ 1
+ AOG_CDB
+
+
+
+ 2062
+ Chrome
+
+ 11
+
+ 101
+ 960.0
+ 540.0
+ 540.0
+ 540.0
+ 960.0
+ 960.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 102
+ 100.0
+ 540.0
+ 540.0
+ 540.0
+ 100.0
+ 100.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 103
+ 200.5
+ 540.0
+ 540.0
+ 540.0
+ 0.5
+ 0.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 104
+
+
+
+ 105
+ STRADDLE OVERVIEW
+
+
+
+ true
+ 383.008
+ 34
+ 22.0
+ 22.0
+ 167.008
+ 167.008
+ 0.0
+ 0.0
+
+
+ 106
+ 32 STRADDLE CARRIERS · LIVE OPERATING STATUS
+
+
+
+ true
+ 378.492
+ 58
+ 9.5
+ 9.5
+ 160.492
+ 160.492
+ 0.0
+ 0.0
+
+
+ 107
+ 5.5
+ 1505.5
+ 33.5
+ 5.5
+ 5.5
+ 5.5
+ 5.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 108
+ ACTIVE
+
+
+
+ true
+ 1537.5
+ 34
+ 8.5
+ 8.5
+ 18.5
+ 18.5
+ 0.0
+ 0.0
+
+
+ 109
+ 5.5
+ 1605.5
+ 33.5
+ 5.5
+ 5.5
+ 5.5
+ 5.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 110
+ FAULT
+
+
+
+ true
+ 1636.0
+ 34
+ 8.5
+ 8.5
+ 17.0
+ 17.0
+ 0.0
+ 0.0
+
+
+ 111
+ STRADDLE 32 LIVE · 01-31 SIMULATED FOR DEMONSTRATION
+
+
+
+ true
+ 1742.5
+ 58
+ 7.5
+ 7.5
+ 159.5
+ 159.5
+ 0.0
+ 0.0
+
+
+ 2063
+ Navigation
+
+ 32
+
+ 112
+ NAVIGATION
+
+
+
+ true
+ 49.0
+ 104
+ 7.0
+ 7.0
+ 29.0
+ 29.0
+ 0.0
+ 0.0
+
+
+ 113
+ 6.0
+ 100.0
+ 146.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 114
+ 1.5
+ 13.5
+ 146.0
+ 12.0
+ 12.0
+ 1.5
+ 1.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 115
+ STRADDLE OVERVIEW
+
+
+
+ true
+ 101.5
+ 146
+ 10.0
+ 10.0
+ 71.5
+ 71.5
+ 0.0
+ 0.0
+
+
+ 116
+ 6.0
+ 100.0
+ 196.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 117
+ MAINTENANCE
+
+
+
+ true
+ 77.5
+ 196
+ 10.0
+ 10.0
+ 47.5
+ 47.5
+ 0.0
+ 0.0
+
+
+ 118
+
+
+
+
+
+
+ 119
+ 6.0
+ 100.0
+ 246.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 120
+ LIVE LOCATION
+
+
+
+ true
+ 79.492
+ 246
+ 10.0
+ 10.0
+ 49.492
+ 49.492
+ 0.0
+ 0.0
+
+
+ 121
+
+
+
+
+
+
+ 122
+ 6.0
+ 100.0
+ 296.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 123
+ STRADDLE DETAIL
+
+
+
+ true
+ 86.492
+ 296
+ 10.0
+ 10.0
+ 56.492
+ 56.492
+ 0.0
+ 0.0
+
+
+ 124
+
+
+
+
+
+
+ 125
+ 6.0
+ 100.0
+ 346.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 126
+ ALARMS
+
+
+
+ true
+ 56.5
+ 346
+ 10.0
+ 10.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 2065
+
+
+
+
+
+
+ 127
+ 6.0
+ 100.0
+ 396.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 128
+ TRENDS
+
+
+
+ true
+ 54.5
+ 396
+ 10.0
+ 10.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+ 2066
+
+
+
+
+
+
+ 129
+ 6.0
+ 100.0
+ 446.0
+ 22.0
+ 22.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 130
+ SIGNAL BOARD
+
+
+
+ true
+ 78.500
+ 446
+ 10.0
+ 10.0
+ 48.500
+ 48.500
+ 0.0
+ 0.0
+
+
+ 2067
+
+
+
+
+
+
+ 131
+ APPEARANCE
+
+
+
+ true
+ 49.5
+ 966
+ 7.0
+ 7.0
+ 29.5
+ 29.5
+ 0.0
+ 0.0
+
+
+ 132
+ 8.0
+ 100.0
+ 1000.0
+ 18.0
+ 18.0
+ 88.0
+ 88.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 133
+ 6.0
+ 42.833
+ 1000.0
+ 15.0
+ 15.0
+ 27.833
+ 27.833
+ 0.0
+ 0.0
+
+
+
+
+
+ 134
+ DARK
+
+
+
+ true
+ 42.833
+ 1000
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 135
+ 6.0
+ 99.5
+ 1000.0
+ 15.0
+ 15.0
+ 27.833
+ 27.833
+ 0.0
+ 0.0
+
+
+
+
+
+ 136
+ LIGHT
+
+
+
+ true
+ 99.5
+ 1000
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 137
+
+
+
+
+
+
+ 138
+ 6.0
+ 156.167
+ 1000.0
+ 15.0
+ 15.0
+ 27.833
+ 27.833
+ 0.0
+ 0.0
+
+
+
+
+
+ 139
+ GREY
+
+
+
+ true
+ 156.167
+ 1000
+ 7.5
+ 7.5
+ 13.5
+ 13.5
+ 0.0
+ 0.0
+
+
+ 140
+
+
+
+
+
+
+ 141
+ YOKOGAWA CI SERVER
+
+
+
+ true
+ 100
+ 1044
+ 7.0
+ 7.0
+ 52.0
+ 52.0
+ 0.0
+ 0.0
+
+
+ 2064
+ Straddle
+
+ 1920
+
+ 142
+ 8.0
+ 317.0
+ 192.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 143
+ 8.0
+ 317.0
+ 89.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 144
+ 2.0
+ 218.0
+ 89.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 145
+ STRADDLE 01
+
+
+
+ true
+ 279.0
+ 89
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 146
+ 4.0
+ 365.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 147
+ F
+
+
+
+ true
+ 365
+ 89
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 148
+ 4.0
+ 395.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 149
+ R
+
+
+
+ true
+ 395
+ 89
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 150
+
+
+
+
+
+
+ 151
+ 11.0
+ 254.0
+ 121.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 152
+ SINGLE
+
+
+
+ true
+ 254.0
+ 121
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 153
+ 11.0
+ 312.5
+ 121.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 154
+ TWIN
+
+
+
+ true
+ 312.5
+ 121
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 155
+ 11.0
+ 375.5
+ 121.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 156
+ TWINLIFT
+
+
+
+ true
+ 375.5
+ 121
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 157
+ 11.0
+ 254.0
+ 147.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 158
+ CLOSED
+
+
+
+ true
+ 254.0
+ 147
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 159
+ 11.0
+ 312.5
+ 147.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 160
+ OPEN
+
+
+
+ true
+ 312.5
+ 147
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 161
+ 11.0
+ 375.5
+ 147.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 162
+ PINS UP
+
+
+
+ true
+ 375.5
+ 147
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 163
+ 317.0
+ 163.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 164
+ LOAD
+
+
+
+ true
+ 239.0
+ 175
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 165
+ 29.9
+
+
+
+ true
+ 270.0
+ 191
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 166
+ t
+
+
+
+ true
+ 300.0
+ 195
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 167
+ LIFTS / TRIP
+
+
+
+ true
+ 354.5
+ 175
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 168
+ 107
+
+
+
+ true
+ 390.0
+ 191
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 169
+ 317.0
+ 203.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 170
+ RPM
+
+
+
+ true
+ 236.5
+ 216
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 171
+ 1540
+
+
+
+ true
+ 292.0
+ 216
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 172
+ TEMP
+
+
+
+ true
+ 332.5
+ 216
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 173
+ 85
+
+
+
+ true
+ 400.0
+ 216
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 174
+ STAB
+
+
+
+ true
+ 237.0
+ 235
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 175
+ 94
+
+
+
+ true
+ 300.0
+ 235
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 176
+ HGT
+
+
+
+ true
+ 329.5
+ 235
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 177
+ 7.3
+
+
+
+ true
+ 396.0
+ 235
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 178
+ LEN
+
+
+
+ true
+ 234.5
+ 254
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 179
+ 40.0
+
+
+
+ true
+ 292.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 180
+ L/H
+
+
+
+ true
+ 328.0
+ 254
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 181
+ 33.2
+
+
+
+ true
+ 392.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 182
+ FUEL
+
+
+
+ true
+ 237.0
+ 272
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 183
+ 63.5
+
+
+
+ true
+ 380.0
+ 272
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 184
+ %
+
+
+
+ true
+ 404.0
+ 273
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 185
+ 3.0
+ 317.0
+ 282.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 186
+ 3.0
+ 283.785
+ 282.0
+ 3.0
+ 3.0
+ 57.785
+ 57.785
+ 0.0
+ 0.0
+
+
+
+
+
+ 187
+ 6.0
+ 317.0
+ 298.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 188
+ TWISTLOCK
+
+
+
+ true
+ 252
+ 293
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 189
+ 3.5
+ 232.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 190
+ 3.5
+ 245.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 191
+ 3.5
+ 258.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 192
+ 3.5
+ 271.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 193
+ BOX / PIN
+
+
+
+ true
+ 316
+ 293
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 194
+ 3.5
+ 296.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 195
+ 3.5
+ 309.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 196
+ 3.5
+ 322.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 197
+ 3.5
+ 335.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 198
+ GAP
+
+
+
+ true
+ 362
+ 293
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 199
+ 3.5
+ 362.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 200
+ HOIST
+
+
+
+ true
+ 396
+ 293
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 201
+ 3.5
+ 396.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 202
+ 8.0
+ 529.0
+ 192.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 203
+ 8.0
+ 529.0
+ 89.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 204
+ 2.0
+ 430.0
+ 89.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 205
+ STRADDLE 02
+
+
+
+ true
+ 491.0
+ 89
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 206
+ 4.0
+ 577.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 207
+ F
+
+
+
+ true
+ 577
+ 89
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 208
+ 4.0
+ 607.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 209
+ R
+
+
+
+ true
+ 607
+ 89
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 210
+
+
+
+
+
+
+ 211
+ 11.0
+ 466.0
+ 121.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 212
+ SINGLE
+
+
+
+ true
+ 466.0
+ 121
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 213
+ 11.0
+ 524.5
+ 121.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 214
+ TWIN
+
+
+
+ true
+ 524.5
+ 121
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 215
+ 11.0
+ 587.5
+ 121.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 216
+ TWINLIFT
+
+
+
+ true
+ 587.5
+ 121
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 217
+ 11.0
+ 466.0
+ 147.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 218
+ CLOSED
+
+
+
+ true
+ 466.0
+ 147
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 219
+ 11.0
+ 524.5
+ 147.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 220
+ OPEN
+
+
+
+ true
+ 524.5
+ 147
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 221
+ 11.0
+ 587.5
+ 147.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 222
+ PINS UP
+
+
+
+ true
+ 587.5
+ 147
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 223
+ 529.0
+ 163.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 224
+ LOAD
+
+
+
+ true
+ 451.0
+ 175
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 225
+ 13.2
+
+
+
+ true
+ 482.0
+ 191
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 226
+ t
+
+
+
+ true
+ 512.0
+ 195
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 227
+ LIFTS / TRIP
+
+
+
+ true
+ 566.5
+ 175
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 228
+ 50
+
+
+
+ true
+ 608.0
+ 191
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 229
+ 529.0
+ 203.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 230
+ RPM
+
+
+
+ true
+ 448.5
+ 216
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 231
+ 1670
+
+
+
+ true
+ 504.0
+ 216
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 232
+ TEMP
+
+
+
+ true
+ 544.5
+ 216
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 233
+ 88
+
+
+
+ true
+ 612.0
+ 216
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 234
+ STAB
+
+
+
+ true
+ 449.0
+ 235
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 235
+ 89
+
+
+
+ true
+ 512.0
+ 235
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 236
+ HGT
+
+
+
+ true
+ 541.5
+ 235
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 237
+ 2.0
+
+
+
+ true
+ 608.0
+ 235
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 238
+ LEN
+
+
+
+ true
+ 446.5
+ 254
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 239
+ 20.0
+
+
+
+ true
+ 504.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 240
+ L/H
+
+
+
+ true
+ 540.0
+ 254
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 241
+ 36.2
+
+
+
+ true
+ 604.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 242
+ FUEL
+
+
+
+ true
+ 449.0
+ 272
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 243
+ 75.9
+
+
+
+ true
+ 592.0
+ 272
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 244
+ %
+
+
+
+ true
+ 616.0
+ 273
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 245
+ 3.0
+ 529.0
+ 282.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 246
+ 3.0
+ 507.069
+ 282.0
+ 3.0
+ 3.0
+ 69.069
+ 69.069
+ 0.0
+ 0.0
+
+
+
+
+
+ 247
+ 6.0
+ 529.0
+ 298.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 248
+ TWISTLOCK
+
+
+
+ true
+ 464
+ 293
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 249
+ 3.5
+ 444.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 250
+ 3.5
+ 457.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 251
+ 3.5
+ 470.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 252
+ 3.5
+ 483.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 253
+ BOX / PIN
+
+
+
+ true
+ 528
+ 293
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 254
+ 3.5
+ 508.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 255
+ 3.5
+ 521.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 256
+ 3.5
+ 534.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 257
+ 3.5
+ 547.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 258
+ GAP
+
+
+
+ true
+ 574
+ 293
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 259
+ 3.5
+ 574.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 260
+ HOIST
+
+
+
+ true
+ 608
+ 293
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 261
+ 3.5
+ 608.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 262
+ 8.0
+ 741.0
+ 192.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 263
+ 8.0
+ 741.0
+ 89.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 264
+ 2.0
+ 642.0
+ 89.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 265
+ STRADDLE 03
+
+
+
+ true
+ 703.0
+ 89
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 266
+ 4.0
+ 789.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 267
+ F
+
+
+
+ true
+ 789
+ 89
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 268
+ 4.0
+ 819.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 269
+ R
+
+
+
+ true
+ 819
+ 89
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 270
+
+
+
+
+
+
+ 271
+ 11.0
+ 678.0
+ 121.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 272
+ SINGLE
+
+
+
+ true
+ 678.0
+ 121
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 273
+ 11.0
+ 736.5
+ 121.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 274
+ TWIN
+
+
+
+ true
+ 736.5
+ 121
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 275
+ 11.0
+ 799.5
+ 121.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 276
+ TWINLIFT
+
+
+
+ true
+ 799.5
+ 121
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 277
+ 11.0
+ 678.0
+ 147.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 278
+ CLOSED
+
+
+
+ true
+ 678.0
+ 147
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 279
+ 11.0
+ 736.5
+ 147.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 280
+ OPEN
+
+
+
+ true
+ 736.5
+ 147
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 281
+ 11.0
+ 799.5
+ 147.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 282
+ PINS UP
+
+
+
+ true
+ 799.5
+ 147
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 283
+ 741.0
+ 163.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 284
+ LOAD
+
+
+
+ true
+ 663.0
+ 175
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 285
+ 22.7
+
+
+
+ true
+ 694.0
+ 191
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 286
+ t
+
+
+
+ true
+ 724.0
+ 195
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 287
+ LIFTS / TRIP
+
+
+
+ true
+ 778.5
+ 175
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 288
+ 6
+
+
+
+ true
+ 826.0
+ 191
+ 11.5
+ 11.5
+ 6.0
+ 6.0
+ 0.0
+ 0.0
+
+
+ 289
+ 741.0
+ 203.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 290
+ RPM
+
+
+
+ true
+ 660.5
+ 216
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 291
+ 1108
+
+
+
+ true
+ 716.0
+ 216
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 292
+ TEMP
+
+
+
+ true
+ 756.5
+ 216
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 293
+ 90
+
+
+
+ true
+ 824.0
+ 216
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 294
+ STAB
+
+
+
+ true
+ 661.0
+ 235
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 295
+ 89
+
+
+
+ true
+ 724.0
+ 235
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 296
+ HGT
+
+
+
+ true
+ 753.5
+ 235
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 297
+ 6.1
+
+
+
+ true
+ 820.0
+ 235
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 298
+ LEN
+
+
+
+ true
+ 658.5
+ 254
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 299
+ 20.0
+
+
+
+ true
+ 716.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 300
+ L/H
+
+
+
+ true
+ 752.0
+ 254
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 301
+ 26.5
+
+
+
+ true
+ 816.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 302
+ FUEL
+
+
+
+ true
+ 661.0
+ 272
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 303
+ 87.6
+
+
+
+ true
+ 804.0
+ 272
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 304
+ %
+
+
+
+ true
+ 828.0
+ 273
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 305
+ 3.0
+ 741.0
+ 282.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 306
+ 3.0
+ 729.716
+ 282.0
+ 3.0
+ 3.0
+ 79.716
+ 79.716
+ 0.0
+ 0.0
+
+
+
+
+
+ 307
+ 6.0
+ 741.0
+ 298.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 308
+ TWISTLOCK
+
+
+
+ true
+ 676
+ 293
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 309
+ 3.5
+ 656.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 310
+ 3.5
+ 669.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 311
+ 3.5
+ 682.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 312
+ 3.5
+ 695.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 313
+ BOX / PIN
+
+
+
+ true
+ 740
+ 293
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 314
+ 3.5
+ 720.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 315
+ 3.5
+ 733.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 316
+ 3.5
+ 746.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 317
+ 3.5
+ 759.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 318
+ GAP
+
+
+
+ true
+ 786
+ 293
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 319
+ 3.5
+ 786.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 320
+ HOIST
+
+
+
+ true
+ 820
+ 293
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 321
+ 3.5
+ 820.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 322
+ 8.0
+ 953.0
+ 192.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 323
+ 8.0
+ 953.0
+ 89.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 324
+ 2.0
+ 854.0
+ 89.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 325
+ STRADDLE 04
+
+
+
+ true
+ 915.0
+ 89
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 326
+ 4.0
+ 1001.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 327
+ F
+
+
+
+ true
+ 1001
+ 89
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 328
+ 4.0
+ 1031.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 329
+ R
+
+
+
+ true
+ 1031
+ 89
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 330
+
+
+
+
+
+
+ 331
+ 11.0
+ 890.0
+ 121.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 332
+ SINGLE
+
+
+
+ true
+ 890.0
+ 121
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 333
+ 11.0
+ 948.5
+ 121.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 334
+ TWIN
+
+
+
+ true
+ 948.5
+ 121
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 335
+ 11.0
+ 1011.5
+ 121.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 336
+ TWINLIFT
+
+
+
+ true
+ 1011.5
+ 121
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 337
+ 11.0
+ 890.0
+ 147.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 338
+ CLOSED
+
+
+
+ true
+ 890.0
+ 147
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 339
+ 11.0
+ 948.5
+ 147.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 340
+ OPEN
+
+
+
+ true
+ 948.5
+ 147
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 341
+ 11.0
+ 1011.5
+ 147.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 342
+ PINS UP
+
+
+
+ true
+ 1011.5
+ 147
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 343
+ 953.0
+ 163.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 344
+ LOAD
+
+
+
+ true
+ 875.0
+ 175
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 345
+ 26.9
+
+
+
+ true
+ 906.0
+ 191
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 346
+ t
+
+
+
+ true
+ 936.0
+ 195
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 347
+ LIFTS / TRIP
+
+
+
+ true
+ 990.5
+ 175
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 348
+ 99
+
+
+
+ true
+ 1032.0
+ 191
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 349
+ 953.0
+ 203.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 350
+ RPM
+
+
+
+ true
+ 872.5
+ 216
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 351
+ 1588
+
+
+
+ true
+ 928.0
+ 216
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 352
+ TEMP
+
+
+
+ true
+ 968.5
+ 216
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 353
+ 91
+
+
+
+ true
+ 1036.0
+ 216
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 354
+ STAB
+
+
+
+ true
+ 873.0
+ 235
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 355
+ 68
+
+
+
+ true
+ 936.0
+ 235
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 356
+ HGT
+
+
+
+ true
+ 965.5
+ 235
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 357
+ 11.7
+
+
+
+ true
+ 1028.0
+ 235
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 358
+ LEN
+
+
+
+ true
+ 870.5
+ 254
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 359
+ 40.0
+
+
+
+ true
+ 928.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 360
+ L/H
+
+
+
+ true
+ 964.0
+ 254
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 361
+ 30.4
+
+
+
+ true
+ 1028.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 362
+ FUEL
+
+
+
+ true
+ 873.0
+ 272
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 363
+ 49.1
+
+
+
+ true
+ 1016.0
+ 272
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 364
+ %
+
+
+
+ true
+ 1040.0
+ 273
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 365
+ 3.0
+ 953.0
+ 282.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 366
+ 3.0
+ 906.681
+ 282.0
+ 3.0
+ 3.0
+ 44.681
+ 44.681
+ 0.0
+ 0.0
+
+
+
+
+
+ 367
+ 6.0
+ 953.0
+ 298.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 368
+ TWISTLOCK
+
+
+
+ true
+ 888
+ 293
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 369
+ 3.5
+ 868.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 370
+ 3.5
+ 881.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 371
+ 3.5
+ 894.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 372
+ 3.5
+ 907.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 373
+ BOX / PIN
+
+
+
+ true
+ 952
+ 293
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 374
+ 3.5
+ 932.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 375
+ 3.5
+ 945.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 376
+ 3.5
+ 958.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 377
+ 3.5
+ 971.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 378
+ GAP
+
+
+
+ true
+ 998
+ 293
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 379
+ 3.5
+ 998.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 380
+ HOIST
+
+
+
+ true
+ 1032
+ 293
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 381
+ 3.5
+ 1032.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 382
+ 8.0
+ 1165.0
+ 192.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 383
+ 8.0
+ 1165.0
+ 89.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 384
+ 2.0
+ 1066.0
+ 89.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 385
+ STRADDLE 05
+
+
+
+ true
+ 1127.0
+ 89
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 386
+ 4.0
+ 1213.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 387
+ F
+
+
+
+ true
+ 1213
+ 89
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 388
+ 4.0
+ 1243.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 389
+ R
+
+
+
+ true
+ 1243
+ 89
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 390
+
+
+
+
+
+
+ 391
+ 11.0
+ 1102.0
+ 121.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 392
+ SINGLE
+
+
+
+ true
+ 1102.0
+ 121
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 393
+ 11.0
+ 1160.5
+ 121.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 394
+ TWIN
+
+
+
+ true
+ 1160.5
+ 121
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 395
+ 11.0
+ 1223.5
+ 121.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 396
+ TWINLIFT
+
+
+
+ true
+ 1223.5
+ 121
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 397
+ 11.0
+ 1102.0
+ 147.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 398
+ CLOSED
+
+
+
+ true
+ 1102.0
+ 147
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 399
+ 11.0
+ 1160.5
+ 147.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 400
+ OPEN
+
+
+
+ true
+ 1160.5
+ 147
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 401
+ 11.0
+ 1223.5
+ 147.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 402
+ PINS UP
+
+
+
+ true
+ 1223.5
+ 147
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 403
+ 1165.0
+ 163.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 404
+ LOAD
+
+
+
+ true
+ 1087.0
+ 175
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 405
+ 37.2
+
+
+
+ true
+ 1118.0
+ 191
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 406
+ t
+
+
+
+ true
+ 1148.0
+ 195
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 407
+ LIFTS / TRIP
+
+
+
+ true
+ 1202.5
+ 175
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 408
+ 39
+
+
+
+ true
+ 1244.0
+ 191
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 409
+ 1165.0
+ 203.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 410
+ RPM
+
+
+
+ true
+ 1084.5
+ 216
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 411
+ 1838
+
+
+
+ true
+ 1140.0
+ 216
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 412
+ TEMP
+
+
+
+ true
+ 1180.5
+ 216
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 413
+ 77
+
+
+
+ true
+ 1248.0
+ 216
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 414
+ STAB
+
+
+
+ true
+ 1085.0
+ 235
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 415
+ 79
+
+
+
+ true
+ 1148.0
+ 235
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 416
+ HGT
+
+
+
+ true
+ 1177.5
+ 235
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 417
+ 10.3
+
+
+
+ true
+ 1240.0
+ 235
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 418
+ LEN
+
+
+
+ true
+ 1082.5
+ 254
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 419
+ 40.0
+
+
+
+ true
+ 1140.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 420
+ L/H
+
+
+
+ true
+ 1176.0
+ 254
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 421
+ 37.4
+
+
+
+ true
+ 1240.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 422
+ FUEL
+
+
+
+ true
+ 1085.0
+ 272
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 423
+ 88.7
+
+
+
+ true
+ 1228.0
+ 272
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 424
+ %
+
+
+
+ true
+ 1252.0
+ 273
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 425
+ 3.0
+ 1165.0
+ 282.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 426
+ 3.0
+ 1154.717
+ 282.0
+ 3.0
+ 3.0
+ 80.717
+ 80.717
+ 0.0
+ 0.0
+
+
+
+
+
+ 427
+ 6.0
+ 1165.0
+ 298.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 428
+ TWISTLOCK
+
+
+
+ true
+ 1100
+ 293
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 429
+ 3.5
+ 1080.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 430
+ 3.5
+ 1093.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 431
+ 3.5
+ 1106.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 432
+ 3.5
+ 1119.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 433
+ BOX / PIN
+
+
+
+ true
+ 1164
+ 293
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 434
+ 3.5
+ 1144.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 435
+ 3.5
+ 1157.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 436
+ 3.5
+ 1170.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 437
+ 3.5
+ 1183.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 438
+ GAP
+
+
+
+ true
+ 1210
+ 293
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 439
+ 3.5
+ 1210.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 440
+ HOIST
+
+
+
+ true
+ 1244
+ 293
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 441
+ 3.5
+ 1244.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 442
+ 8.0
+ 1377.0
+ 192.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 443
+ 8.0
+ 1377.0
+ 89.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 444
+ 2.0
+ 1278.0
+ 89.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 445
+ STRADDLE 06
+
+
+
+ true
+ 1339.0
+ 89
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 446
+ 4.0
+ 1425.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 447
+ F
+
+
+
+ true
+ 1425
+ 89
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 448
+ 4.0
+ 1455.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 449
+ R
+
+
+
+ true
+ 1455
+ 89
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 450
+
+
+
+
+
+
+ 451
+ 11.0
+ 1314.0
+ 121.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 452
+ SINGLE
+
+
+
+ true
+ 1314.0
+ 121
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 453
+ 11.0
+ 1372.5
+ 121.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 454
+ TWIN
+
+
+
+ true
+ 1372.5
+ 121
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 455
+ 11.0
+ 1435.5
+ 121.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 456
+ TWINLIFT
+
+
+
+ true
+ 1435.5
+ 121
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 457
+ 11.0
+ 1314.0
+ 147.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 458
+ CLOSED
+
+
+
+ true
+ 1314.0
+ 147
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 459
+ 11.0
+ 1372.5
+ 147.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 460
+ OPEN
+
+
+
+ true
+ 1372.5
+ 147
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 461
+ 11.0
+ 1435.5
+ 147.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 462
+ PINS UP
+
+
+
+ true
+ 1435.5
+ 147
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 463
+ 1377.0
+ 163.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 464
+ LOAD
+
+
+
+ true
+ 1299.0
+ 175
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 465
+ 0.0
+
+
+
+ true
+ 1336.0
+ 191
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 466
+ t
+
+
+
+ true
+ 1360.0
+ 195
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 467
+ LIFTS / TRIP
+
+
+
+ true
+ 1414.5
+ 175
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 468
+ 107
+
+
+
+ true
+ 1450.0
+ 191
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 469
+ 1377.0
+ 203.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 470
+ RPM
+
+
+
+ true
+ 1296.5
+ 216
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 471
+ 1422
+
+
+
+ true
+ 1352.0
+ 216
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 472
+ TEMP
+
+
+
+ true
+ 1392.5
+ 216
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 473
+ 75
+
+
+
+ true
+ 1460.0
+ 216
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 474
+ STAB
+
+
+
+ true
+ 1297.0
+ 235
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 475
+ 80
+
+
+
+ true
+ 1360.0
+ 235
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 476
+ HGT
+
+
+
+ true
+ 1389.5
+ 235
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 477
+ 0.8
+
+
+
+ true
+ 1456.0
+ 235
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 478
+ LEN
+
+
+
+ true
+ 1294.5
+ 254
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 479
+ 20.0
+
+
+
+ true
+ 1352.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 480
+ L/H
+
+
+
+ true
+ 1388.0
+ 254
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 481
+ 13.8
+
+
+
+ true
+ 1452.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 482
+ FUEL
+
+
+
+ true
+ 1297.0
+ 272
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 483
+ 63.1
+
+
+
+ true
+ 1440.0
+ 272
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 484
+ %
+
+
+
+ true
+ 1464.0
+ 273
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 485
+ 3.0
+ 1377.0
+ 282.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 486
+ 3.0
+ 1343.421
+ 282.0
+ 3.0
+ 3.0
+ 57.421
+ 57.421
+ 0.0
+ 0.0
+
+
+
+
+
+ 487
+ 6.0
+ 1377.0
+ 298.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 488
+ TWISTLOCK
+
+
+
+ true
+ 1312
+ 293
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 489
+ 3.5
+ 1292.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 490
+ 3.5
+ 1305.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 491
+ 3.5
+ 1318.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 492
+ 3.5
+ 1331.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 493
+ BOX / PIN
+
+
+
+ true
+ 1376
+ 293
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 494
+ 3.5
+ 1356.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 495
+ 3.5
+ 1369.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 496
+ 3.5
+ 1382.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 497
+ 3.5
+ 1395.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 498
+ GAP
+
+
+
+ true
+ 1422
+ 293
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 499
+ 3.5
+ 1422.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 500
+ HOIST
+
+
+
+ true
+ 1456
+ 293
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 501
+ 3.5
+ 1456.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 502
+ 8.0
+ 1589.0
+ 192.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 503
+ 8.0
+ 1589.0
+ 89.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 504
+ 2.0
+ 1490.0
+ 89.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 505
+ STRADDLE 07
+
+
+
+ true
+ 1551.0
+ 89
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 506
+ 4.0
+ 1637.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 507
+ F
+
+
+
+ true
+ 1637
+ 89
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 508
+ 4.0
+ 1667.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 509
+ R
+
+
+
+ true
+ 1667
+ 89
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 510
+
+
+
+
+
+
+ 511
+ 11.0
+ 1526.0
+ 121.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 512
+ SINGLE
+
+
+
+ true
+ 1526.0
+ 121
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 513
+ 11.0
+ 1584.5
+ 121.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 514
+ TWIN
+
+
+
+ true
+ 1584.5
+ 121
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 515
+ 11.0
+ 1647.5
+ 121.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 516
+ TWINLIFT
+
+
+
+ true
+ 1647.5
+ 121
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 517
+ 11.0
+ 1526.0
+ 147.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 518
+ CLOSED
+
+
+
+ true
+ 1526.0
+ 147
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 519
+ 11.0
+ 1584.5
+ 147.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 520
+ OPEN
+
+
+
+ true
+ 1584.5
+ 147
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 521
+ 11.0
+ 1647.5
+ 147.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 522
+ PINS UP
+
+
+
+ true
+ 1647.5
+ 147
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 523
+ 1589.0
+ 163.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 524
+ LOAD
+
+
+
+ true
+ 1511.0
+ 175
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 525
+ 0.0
+
+
+
+ true
+ 1548.0
+ 191
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 526
+ t
+
+
+
+ true
+ 1572.0
+ 195
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 527
+ LIFTS / TRIP
+
+
+
+ true
+ 1626.5
+ 175
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 528
+ 127
+
+
+
+ true
+ 1662.0
+ 191
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 529
+ 1589.0
+ 203.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 530
+ RPM
+
+
+
+ true
+ 1508.5
+ 216
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 531
+ 1000
+
+
+
+ true
+ 1564.0
+ 216
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 532
+ TEMP
+
+
+
+ true
+ 1604.5
+ 216
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 533
+ 89
+
+
+
+ true
+ 1672.0
+ 216
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 534
+ STAB
+
+
+
+ true
+ 1509.0
+ 235
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 535
+ 89
+
+
+
+ true
+ 1572.0
+ 235
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 536
+ HGT
+
+
+
+ true
+ 1601.5
+ 235
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 537
+ 1.1
+
+
+
+ true
+ 1668.0
+ 235
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 538
+ LEN
+
+
+
+ true
+ 1506.5
+ 254
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 539
+ 40.0
+
+
+
+ true
+ 1564.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 540
+ L/H
+
+
+
+ true
+ 1600.0
+ 254
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 541
+ 22.2
+
+
+
+ true
+ 1664.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 542
+ FUEL
+
+
+
+ true
+ 1509.0
+ 272
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 543
+ 26.4
+
+
+
+ true
+ 1652.0
+ 272
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 544
+ %
+
+
+
+ true
+ 1676.0
+ 273
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 545
+ 3.0
+ 1589.0
+ 282.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 546
+ 3.0
+ 1522.024
+ 282.0
+ 3.0
+ 3.0
+ 24.024
+ 24.024
+ 0.0
+ 0.0
+
+
+
+
+
+ 547
+ 6.0
+ 1589.0
+ 298.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 548
+ TWISTLOCK
+
+
+
+ true
+ 1524
+ 293
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 549
+ 3.5
+ 1504.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 550
+ 3.5
+ 1517.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 551
+ 3.5
+ 1530.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 552
+ 3.5
+ 1543.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 553
+ BOX / PIN
+
+
+
+ true
+ 1588
+ 293
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 554
+ 3.5
+ 1568.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 555
+ 3.5
+ 1581.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 556
+ 3.5
+ 1594.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 557
+ 3.5
+ 1607.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 558
+ GAP
+
+
+
+ true
+ 1634
+ 293
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 559
+ 3.5
+ 1634.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 560
+ HOIST
+
+
+
+ true
+ 1668
+ 293
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 561
+ 3.5
+ 1668.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 562
+ 8.0
+ 1801.0
+ 192.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 563
+ 8.0
+ 1801.0
+ 89.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 564
+ 2.0
+ 1702.0
+ 89.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 565
+ STRADDLE 08
+
+
+
+ true
+ 1763.0
+ 89
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 566
+ 4.0
+ 1849.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 567
+ F
+
+
+
+ true
+ 1849
+ 89
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 568
+ 4.0
+ 1879.0
+ 89.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 569
+ R
+
+
+
+ true
+ 1879
+ 89
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 570
+
+
+
+
+
+
+ 571
+ 11.0
+ 1738.0
+ 121.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 572
+ SINGLE
+
+
+
+ true
+ 1738.0
+ 121
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 573
+ 11.0
+ 1796.5
+ 121.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 574
+ TWIN
+
+
+
+ true
+ 1796.5
+ 121
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 575
+ 11.0
+ 1859.5
+ 121.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 576
+ TWINLIFT
+
+
+
+ true
+ 1859.5
+ 121
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 577
+ 11.0
+ 1738.0
+ 147.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 578
+ CLOSED
+
+
+
+ true
+ 1738.0
+ 147
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 579
+ 11.0
+ 1796.5
+ 147.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 580
+ OPEN
+
+
+
+ true
+ 1796.5
+ 147
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 581
+ 11.0
+ 1859.5
+ 147.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 582
+ PINS UP
+
+
+
+ true
+ 1859.5
+ 147
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 583
+ 1801.0
+ 163.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 584
+ LOAD
+
+
+
+ true
+ 1723.0
+ 175
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 585
+ 0.0
+
+
+
+ true
+ 1760.0
+ 191
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 586
+ t
+
+
+
+ true
+ 1784.0
+ 195
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 587
+ LIFTS / TRIP
+
+
+
+ true
+ 1838.5
+ 175
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 588
+ 88
+
+
+
+ true
+ 1880.0
+ 191
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 589
+ 1801.0
+ 203.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 590
+ RPM
+
+
+
+ true
+ 1720.5
+ 216
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 591
+ 1305
+
+
+
+ true
+ 1776.0
+ 216
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 592
+ TEMP
+
+
+
+ true
+ 1816.5
+ 216
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 593
+ 90
+
+
+
+ true
+ 1884.0
+ 216
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 594
+ STAB
+
+
+
+ true
+ 1721.0
+ 235
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 595
+ 83
+
+
+
+ true
+ 1784.0
+ 235
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 596
+ HGT
+
+
+
+ true
+ 1813.5
+ 235
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 597
+ 0.9
+
+
+
+ true
+ 1880.0
+ 235
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 598
+ LEN
+
+
+
+ true
+ 1718.5
+ 254
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 599
+ 20.0
+
+
+
+ true
+ 1776.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 600
+ L/H
+
+
+
+ true
+ 1812.0
+ 254
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 601
+ 26.2
+
+
+
+ true
+ 1876.0
+ 254
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 602
+ FUEL
+
+
+
+ true
+ 1721.0
+ 272
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 603
+ 42.2
+
+
+
+ true
+ 1864.0
+ 272
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 604
+ %
+
+
+
+ true
+ 1888.0
+ 273
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 605
+ 3.0
+ 1801.0
+ 282.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 606
+ 3.0
+ 1748.402
+ 282.0
+ 3.0
+ 3.0
+ 38.402
+ 38.402
+ 0.0
+ 0.0
+
+
+
+
+
+ 607
+ 6.0
+ 1801.0
+ 298.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 608
+ TWISTLOCK
+
+
+
+ true
+ 1736
+ 293
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 609
+ 3.5
+ 1716.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 610
+ 3.5
+ 1729.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 611
+ 3.5
+ 1742.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 612
+ 3.5
+ 1755.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 613
+ BOX / PIN
+
+
+
+ true
+ 1800
+ 293
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 614
+ 3.5
+ 1780.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 615
+ 3.5
+ 1793.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 616
+ 3.5
+ 1806.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 617
+ 3.5
+ 1819.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 618
+ GAP
+
+
+
+ true
+ 1846
+ 293
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 619
+ 3.5
+ 1846.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 620
+ HOIST
+
+
+
+ true
+ 1880
+ 293
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 621
+ 3.5
+ 1880.0
+ 304.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 622
+ 8.0
+ 317.0
+ 444.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 623
+ 8.0
+ 317.0
+ 341.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 624
+ 2.0
+ 218.0
+ 341.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 625
+ STRADDLE 09
+
+
+
+ true
+ 279.0
+ 341
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 626
+ 4.0
+ 365.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 627
+ F
+
+
+
+ true
+ 365
+ 341
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 628
+ 4.0
+ 395.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 629
+ R
+
+
+
+ true
+ 395
+ 341
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 630
+
+
+
+
+
+
+ 631
+ 11.0
+ 254.0
+ 373.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 632
+ SINGLE
+
+
+
+ true
+ 254.0
+ 373
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 633
+ 11.0
+ 312.5
+ 373.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 634
+ TWIN
+
+
+
+ true
+ 312.5
+ 373
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 635
+ 11.0
+ 375.5
+ 373.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 636
+ TWINLIFT
+
+
+
+ true
+ 375.5
+ 373
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 637
+ 11.0
+ 254.0
+ 399.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 638
+ CLOSED
+
+
+
+ true
+ 254.0
+ 399
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 639
+ 11.0
+ 312.5
+ 399.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 640
+ OPEN
+
+
+
+ true
+ 312.5
+ 399
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 641
+ 11.0
+ 375.5
+ 399.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 642
+ PINS UP
+
+
+
+ true
+ 375.5
+ 399
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 643
+ 317.0
+ 415.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 644
+ LOAD
+
+
+
+ true
+ 239.0
+ 427
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 645
+ 31.8
+
+
+
+ true
+ 270.0
+ 443
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 646
+ t
+
+
+
+ true
+ 300.0
+ 447
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 647
+ LIFTS / TRIP
+
+
+
+ true
+ 354.5
+ 427
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 648
+ 65
+
+
+
+ true
+ 396.0
+ 443
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 649
+ 317.0
+ 455.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 650
+ RPM
+
+
+
+ true
+ 236.5
+ 468
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 651
+ 1483
+
+
+
+ true
+ 292.0
+ 468
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 652
+ TEMP
+
+
+
+ true
+ 332.5
+ 468
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 653
+ 88
+
+
+
+ true
+ 400.0
+ 468
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 654
+ STAB
+
+
+
+ true
+ 237.0
+ 487
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 655
+ 73
+
+
+
+ true
+ 300.0
+ 487
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 656
+ HGT
+
+
+
+ true
+ 329.5
+ 487
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 657
+ 7.2
+
+
+
+ true
+ 396.0
+ 487
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 658
+ LEN
+
+
+
+ true
+ 234.5
+ 506
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 659
+ 40.0
+
+
+
+ true
+ 292.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 660
+ L/H
+
+
+
+ true
+ 328.0
+ 506
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 661
+ 33.6
+
+
+
+ true
+ 392.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 662
+ FUEL
+
+
+
+ true
+ 237.0
+ 524
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 663
+ 63.0
+
+
+
+ true
+ 380.0
+ 524
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 664
+ %
+
+
+
+ true
+ 404.0
+ 525
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 665
+ 3.0
+ 317.0
+ 534.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 666
+ 3.0
+ 283.33
+ 534.0
+ 3.0
+ 3.0
+ 57.33
+ 57.33
+ 0.0
+ 0.0
+
+
+
+
+
+ 667
+ 6.0
+ 317.0
+ 550.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 668
+ TWISTLOCK
+
+
+
+ true
+ 252
+ 545
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 669
+ 3.5
+ 232.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 670
+ 3.5
+ 245.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 671
+ 3.5
+ 258.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 672
+ 3.5
+ 271.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 673
+ BOX / PIN
+
+
+
+ true
+ 316
+ 545
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 674
+ 3.5
+ 296.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 675
+ 3.5
+ 309.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 676
+ 3.5
+ 322.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 677
+ 3.5
+ 335.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 678
+ GAP
+
+
+
+ true
+ 362
+ 545
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 679
+ 3.5
+ 362.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 680
+ HOIST
+
+
+
+ true
+ 396
+ 545
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 681
+ 3.5
+ 396.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 682
+ 8.0
+ 529.0
+ 444.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 683
+ 8.0
+ 529.0
+ 341.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 684
+ 2.0
+ 430.0
+ 341.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 685
+ STRADDLE 10
+
+
+
+ true
+ 491.0
+ 341
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 686
+ 4.0
+ 577.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 687
+ F
+
+
+
+ true
+ 577
+ 341
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 688
+ 4.0
+ 607.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 689
+ R
+
+
+
+ true
+ 607
+ 341
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 690
+
+
+
+
+
+
+ 691
+ 11.0
+ 466.0
+ 373.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 692
+ SINGLE
+
+
+
+ true
+ 466.0
+ 373
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 693
+ 11.0
+ 524.5
+ 373.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 694
+ TWIN
+
+
+
+ true
+ 524.5
+ 373
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 695
+ 11.0
+ 587.5
+ 373.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 696
+ TWINLIFT
+
+
+
+ true
+ 587.5
+ 373
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 697
+ 11.0
+ 466.0
+ 399.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 698
+ CLOSED
+
+
+
+ true
+ 466.0
+ 399
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 699
+ 11.0
+ 524.5
+ 399.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 700
+ OPEN
+
+
+
+ true
+ 524.5
+ 399
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 701
+ 11.0
+ 587.5
+ 399.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 702
+ PINS UP
+
+
+
+ true
+ 587.5
+ 399
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 703
+ 529.0
+ 415.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 704
+ LOAD
+
+
+
+ true
+ 451.0
+ 427
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 705
+ 0.0
+
+
+
+ true
+ 488.0
+ 443
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 706
+ t
+
+
+
+ true
+ 512.0
+ 447
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 707
+ LIFTS / TRIP
+
+
+
+ true
+ 566.5
+ 427
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 708
+ 53
+
+
+
+ true
+ 608.0
+ 443
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 709
+ 529.0
+ 455.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 710
+ RPM
+
+
+
+ true
+ 448.5
+ 468
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 711
+ 1571
+
+
+
+ true
+ 504.0
+ 468
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 712
+ TEMP
+
+
+
+ true
+ 544.5
+ 468
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 713
+ 93
+
+
+
+ true
+ 612.0
+ 468
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 714
+ STAB
+
+
+
+ true
+ 449.0
+ 487
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 715
+ 85
+
+
+
+ true
+ 512.0
+ 487
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 716
+ HGT
+
+
+
+ true
+ 541.5
+ 487
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 717
+ 1.2
+
+
+
+ true
+ 608.0
+ 487
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 718
+ LEN
+
+
+
+ true
+ 446.5
+ 506
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 719
+ 40.0
+
+
+
+ true
+ 504.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 720
+ L/H
+
+
+
+ true
+ 540.0
+ 506
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 721
+ 15.5
+
+
+
+ true
+ 604.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 722
+ FUEL
+
+
+
+ true
+ 449.0
+ 524
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 723
+ 26.2
+
+
+
+ true
+ 592.0
+ 524
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 724
+ %
+
+
+
+ true
+ 616.0
+ 525
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 725
+ 3.0
+ 529.0
+ 534.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 726
+ 3.0
+ 461.842
+ 534.0
+ 3.0
+ 3.0
+ 23.842
+ 23.842
+ 0.0
+ 0.0
+
+
+
+
+
+ 727
+ 6.0
+ 529.0
+ 550.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 728
+ TWISTLOCK
+
+
+
+ true
+ 464
+ 545
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 729
+ 3.5
+ 444.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 730
+ 3.5
+ 457.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 731
+ 3.5
+ 470.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 732
+ 3.5
+ 483.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 733
+ BOX / PIN
+
+
+
+ true
+ 528
+ 545
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 734
+ 3.5
+ 508.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 735
+ 3.5
+ 521.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 736
+ 3.5
+ 534.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 737
+ 3.5
+ 547.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 738
+ GAP
+
+
+
+ true
+ 574
+ 545
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 739
+ 3.5
+ 574.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 740
+ HOIST
+
+
+
+ true
+ 608
+ 545
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 741
+ 3.5
+ 608.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 742
+ 8.0
+ 741.0
+ 444.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 743
+ 8.0
+ 741.0
+ 341.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 744
+ 2.0
+ 642.0
+ 341.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 745
+ STRADDLE 11
+
+
+
+ true
+ 703.0
+ 341
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 746
+ 4.0
+ 789.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 747
+ F
+
+
+
+ true
+ 789
+ 341
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 748
+ 4.0
+ 819.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 749
+ R
+
+
+
+ true
+ 819
+ 341
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 750
+
+
+
+
+
+
+ 751
+ 11.0
+ 678.0
+ 373.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 752
+ SINGLE
+
+
+
+ true
+ 678.0
+ 373
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 753
+ 11.0
+ 736.5
+ 373.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 754
+ TWIN
+
+
+
+ true
+ 736.5
+ 373
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 755
+ 11.0
+ 799.5
+ 373.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 756
+ TWINLIFT
+
+
+
+ true
+ 799.5
+ 373
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 757
+ 11.0
+ 678.0
+ 399.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 758
+ CLOSED
+
+
+
+ true
+ 678.0
+ 399
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 759
+ 11.0
+ 736.5
+ 399.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 760
+ OPEN
+
+
+
+ true
+ 736.5
+ 399
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 761
+ 11.0
+ 799.5
+ 399.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 762
+ PINS UP
+
+
+
+ true
+ 799.5
+ 399
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 763
+ 741.0
+ 415.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 764
+ LOAD
+
+
+
+ true
+ 663.0
+ 427
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 765
+ 43.1
+
+
+
+ true
+ 694.0
+ 443
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 766
+ t
+
+
+
+ true
+ 724.0
+ 447
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 767
+ LIFTS / TRIP
+
+
+
+ true
+ 778.5
+ 427
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 768
+ 84
+
+
+
+ true
+ 820.0
+ 443
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 769
+ 741.0
+ 455.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 770
+ RPM
+
+
+
+ true
+ 660.5
+ 468
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 771
+ 1838
+
+
+
+ true
+ 716.0
+ 468
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 772
+ TEMP
+
+
+
+ true
+ 756.5
+ 468
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 773
+ 90
+
+
+
+ true
+ 824.0
+ 468
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 774
+ STAB
+
+
+
+ true
+ 661.0
+ 487
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 775
+ 90
+
+
+
+ true
+ 724.0
+ 487
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 776
+ HGT
+
+
+
+ true
+ 753.5
+ 487
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 777
+ 6.4
+
+
+
+ true
+ 820.0
+ 487
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 778
+ LEN
+
+
+
+ true
+ 658.5
+ 506
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 779
+ 40.0
+
+
+
+ true
+ 716.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 780
+ L/H
+
+
+
+ true
+ 752.0
+ 506
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 781
+ 40.9
+
+
+
+ true
+ 816.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 782
+ FUEL
+
+
+
+ true
+ 661.0
+ 524
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 783
+ 35.4
+
+
+
+ true
+ 804.0
+ 524
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 784
+ %
+
+
+
+ true
+ 828.0
+ 525
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 785
+ 3.0
+ 741.0
+ 534.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 786
+ 3.0
+ 682.214
+ 534.0
+ 3.0
+ 3.0
+ 32.214
+ 32.214
+ 0.0
+ 0.0
+
+
+
+
+
+ 787
+ 6.0
+ 741.0
+ 550.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 788
+ TWISTLOCK
+
+
+
+ true
+ 676
+ 545
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 789
+ 3.5
+ 656.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 790
+ 3.5
+ 669.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 791
+ 3.5
+ 682.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 792
+ 3.5
+ 695.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 793
+ BOX / PIN
+
+
+
+ true
+ 740
+ 545
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 794
+ 3.5
+ 720.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 795
+ 3.5
+ 733.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 796
+ 3.5
+ 746.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 797
+ 3.5
+ 759.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 798
+ GAP
+
+
+
+ true
+ 786
+ 545
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 799
+ 3.5
+ 786.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 800
+ HOIST
+
+
+
+ true
+ 820
+ 545
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 801
+ 3.5
+ 820.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 802
+ 8.0
+ 953.0
+ 444.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 803
+ 8.0
+ 953.0
+ 341.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 804
+ 2.0
+ 854.0
+ 341.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 805
+ STRADDLE 12
+
+
+
+ true
+ 915.0
+ 341
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 806
+ 4.0
+ 1001.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 807
+ F
+
+
+
+ true
+ 1001
+ 341
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 808
+ 4.0
+ 1031.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 809
+ R
+
+
+
+ true
+ 1031
+ 341
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 810
+
+
+
+
+
+
+ 811
+ 11.0
+ 890.0
+ 373.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 812
+ SINGLE
+
+
+
+ true
+ 890.0
+ 373
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 813
+ 11.0
+ 948.5
+ 373.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 814
+ TWIN
+
+
+
+ true
+ 948.5
+ 373
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 815
+ 11.0
+ 1011.5
+ 373.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 816
+ TWINLIFT
+
+
+
+ true
+ 1011.5
+ 373
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 817
+ 11.0
+ 890.0
+ 399.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 818
+ CLOSED
+
+
+
+ true
+ 890.0
+ 399
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 819
+ 11.0
+ 948.5
+ 399.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 820
+ OPEN
+
+
+
+ true
+ 948.5
+ 399
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 821
+ 11.0
+ 1011.5
+ 399.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 822
+ PINS UP
+
+
+
+ true
+ 1011.5
+ 399
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 823
+ 953.0
+ 415.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 824
+ LOAD
+
+
+
+ true
+ 875.0
+ 427
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 825
+ 0.0
+
+
+
+ true
+ 912.0
+ 443
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 826
+ t
+
+
+
+ true
+ 936.0
+ 447
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 827
+ LIFTS / TRIP
+
+
+
+ true
+ 990.5
+ 427
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 828
+ 5
+
+
+
+ true
+ 1038.0
+ 443
+ 11.5
+ 11.5
+ 6.0
+ 6.0
+ 0.0
+ 0.0
+
+
+ 829
+ 953.0
+ 455.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 830
+ RPM
+
+
+
+ true
+ 872.5
+ 468
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 831
+ 1609
+
+
+
+ true
+ 928.0
+ 468
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 832
+ TEMP
+
+
+
+ true
+ 968.5
+ 468
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 833
+ 91
+
+
+
+ true
+ 1036.0
+ 468
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 834
+ STAB
+
+
+
+ true
+ 873.0
+ 487
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 835
+ 75
+
+
+
+ true
+ 936.0
+ 487
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 836
+ HGT
+
+
+
+ true
+ 965.5
+ 487
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 837
+ 0.9
+
+
+
+ true
+ 1032.0
+ 487
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 838
+ LEN
+
+
+
+ true
+ 870.5
+ 506
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 839
+ 20.0
+
+
+
+ true
+ 928.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 840
+ L/H
+
+
+
+ true
+ 964.0
+ 506
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 841
+ 16.2
+
+
+
+ true
+ 1028.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 842
+ FUEL
+
+
+
+ true
+ 873.0
+ 524
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 843
+ 31.2
+
+
+
+ true
+ 1016.0
+ 524
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 844
+ %
+
+
+
+ true
+ 1040.0
+ 525
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 845
+ 3.0
+ 953.0
+ 534.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 846
+ 3.0
+ 890.392
+ 534.0
+ 3.0
+ 3.0
+ 28.392
+ 28.392
+ 0.0
+ 0.0
+
+
+
+
+
+ 847
+ 6.0
+ 953.0
+ 550.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 848
+ TWISTLOCK
+
+
+
+ true
+ 888
+ 545
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 849
+ 3.5
+ 868.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 850
+ 3.5
+ 881.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 851
+ 3.5
+ 894.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 852
+ 3.5
+ 907.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 853
+ BOX / PIN
+
+
+
+ true
+ 952
+ 545
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 854
+ 3.5
+ 932.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 855
+ 3.5
+ 945.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 856
+ 3.5
+ 958.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 857
+ 3.5
+ 971.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 858
+ GAP
+
+
+
+ true
+ 998
+ 545
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 859
+ 3.5
+ 998.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 860
+ HOIST
+
+
+
+ true
+ 1032
+ 545
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 861
+ 3.5
+ 1032.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 862
+ 8.0
+ 1165.0
+ 444.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 863
+ 8.0
+ 1165.0
+ 341.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 864
+ 2.0
+ 1066.0
+ 341.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 865
+ STRADDLE 13
+
+
+
+ true
+ 1127.0
+ 341
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 866
+ 4.0
+ 1213.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 867
+ F
+
+
+
+ true
+ 1213
+ 341
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 868
+ 4.0
+ 1243.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 869
+ R
+
+
+
+ true
+ 1243
+ 341
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 870
+
+
+
+
+
+
+ 871
+ 11.0
+ 1102.0
+ 373.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 872
+ SINGLE
+
+
+
+ true
+ 1102.0
+ 373
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 873
+ 11.0
+ 1160.5
+ 373.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 874
+ TWIN
+
+
+
+ true
+ 1160.5
+ 373
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 875
+ 11.0
+ 1223.5
+ 373.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 876
+ TWINLIFT
+
+
+
+ true
+ 1223.5
+ 373
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 877
+ 11.0
+ 1102.0
+ 399.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 878
+ CLOSED
+
+
+
+ true
+ 1102.0
+ 399
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 879
+ 11.0
+ 1160.5
+ 399.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 880
+ OPEN
+
+
+
+ true
+ 1160.5
+ 399
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 881
+ 11.0
+ 1223.5
+ 399.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 882
+ PINS UP
+
+
+
+ true
+ 1223.5
+ 399
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 883
+ 1165.0
+ 415.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 884
+ LOAD
+
+
+
+ true
+ 1087.0
+ 427
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 885
+ 17.9
+
+
+
+ true
+ 1118.0
+ 443
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 886
+ t
+
+
+
+ true
+ 1148.0
+ 447
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 887
+ LIFTS / TRIP
+
+
+
+ true
+ 1202.5
+ 427
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 888
+ 131
+
+
+
+ true
+ 1238.0
+ 443
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 889
+ 1165.0
+ 455.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 890
+ RPM
+
+
+
+ true
+ 1084.5
+ 468
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 891
+ 1421
+
+
+
+ true
+ 1140.0
+ 468
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 892
+ TEMP
+
+
+
+ true
+ 1180.5
+ 468
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 893
+ 76
+
+
+
+ true
+ 1248.0
+ 468
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 894
+ STAB
+
+
+
+ true
+ 1085.0
+ 487
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 895
+ 70
+
+
+
+ true
+ 1148.0
+ 487
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 896
+ HGT
+
+
+
+ true
+ 1177.5
+ 487
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 897
+ 11.0
+
+
+
+ true
+ 1240.0
+ 487
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 898
+ LEN
+
+
+
+ true
+ 1082.5
+ 506
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 899
+ 40.0
+
+
+
+ true
+ 1140.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 900
+ L/H
+
+
+
+ true
+ 1176.0
+ 506
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 901
+ 30.3
+
+
+
+ true
+ 1240.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 902
+ FUEL
+
+
+
+ true
+ 1085.0
+ 524
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 903
+ 50.3
+
+
+
+ true
+ 1228.0
+ 524
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 904
+ %
+
+
+
+ true
+ 1252.0
+ 525
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 905
+ 3.0
+ 1165.0
+ 534.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 906
+ 3.0
+ 1119.773
+ 534.0
+ 3.0
+ 3.0
+ 45.773
+ 45.773
+ 0.0
+ 0.0
+
+
+
+
+
+ 907
+ 6.0
+ 1165.0
+ 550.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 908
+ TWISTLOCK
+
+
+
+ true
+ 1100
+ 545
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 909
+ 3.5
+ 1080.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 910
+ 3.5
+ 1093.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 911
+ 3.5
+ 1106.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 912
+ 3.5
+ 1119.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 913
+ BOX / PIN
+
+
+
+ true
+ 1164
+ 545
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 914
+ 3.5
+ 1144.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 915
+ 3.5
+ 1157.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 916
+ 3.5
+ 1170.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 917
+ 3.5
+ 1183.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 918
+ GAP
+
+
+
+ true
+ 1210
+ 545
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 919
+ 3.5
+ 1210.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 920
+ HOIST
+
+
+
+ true
+ 1244
+ 545
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 921
+ 3.5
+ 1244.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 922
+ 8.0
+ 1377.0
+ 444.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 923
+ 8.0
+ 1377.0
+ 341.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 924
+ 2.0
+ 1278.0
+ 341.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 925
+ STRADDLE 14
+
+
+
+ true
+ 1339.0
+ 341
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 926
+ 4.0
+ 1425.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 927
+ F
+
+
+
+ true
+ 1425
+ 341
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 928
+ 4.0
+ 1455.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 929
+ R
+
+
+
+ true
+ 1455
+ 341
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 930
+
+
+
+
+
+
+ 931
+ 11.0
+ 1314.0
+ 373.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 932
+ SINGLE
+
+
+
+ true
+ 1314.0
+ 373
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 933
+ 11.0
+ 1372.5
+ 373.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 934
+ TWIN
+
+
+
+ true
+ 1372.5
+ 373
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 935
+ 11.0
+ 1435.5
+ 373.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 936
+ TWINLIFT
+
+
+
+ true
+ 1435.5
+ 373
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 937
+ 11.0
+ 1314.0
+ 399.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 938
+ CLOSED
+
+
+
+ true
+ 1314.0
+ 399
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 939
+ 11.0
+ 1372.5
+ 399.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 940
+ OPEN
+
+
+
+ true
+ 1372.5
+ 399
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 941
+ 11.0
+ 1435.5
+ 399.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 942
+ PINS UP
+
+
+
+ true
+ 1435.5
+ 399
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 943
+ 1377.0
+ 415.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 944
+ LOAD
+
+
+
+ true
+ 1299.0
+ 427
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 945
+ 0.0
+
+
+
+ true
+ 1336.0
+ 443
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 946
+ t
+
+
+
+ true
+ 1360.0
+ 447
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 947
+ LIFTS / TRIP
+
+
+
+ true
+ 1414.5
+ 427
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 948
+ 44
+
+
+
+ true
+ 1456.0
+ 443
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 949
+ 1377.0
+ 455.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 950
+ RPM
+
+
+
+ true
+ 1296.5
+ 468
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 951
+ 1465
+
+
+
+ true
+ 1352.0
+ 468
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 952
+ TEMP
+
+
+
+ true
+ 1392.5
+ 468
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 953
+ 75
+
+
+
+ true
+ 1460.0
+ 468
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 954
+ STAB
+
+
+
+ true
+ 1297.0
+ 487
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 955
+ 81
+
+
+
+ true
+ 1360.0
+ 487
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 956
+ HGT
+
+
+
+ true
+ 1389.5
+ 487
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 957
+ 2.0
+
+
+
+ true
+ 1456.0
+ 487
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 958
+ LEN
+
+
+
+ true
+ 1294.5
+ 506
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 959
+ 40.0
+
+
+
+ true
+ 1352.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 960
+ L/H
+
+
+
+ true
+ 1388.0
+ 506
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 961
+ 24.9
+
+
+
+ true
+ 1452.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 962
+ FUEL
+
+
+
+ true
+ 1297.0
+ 524
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 963
+ 55.9
+
+
+
+ true
+ 1440.0
+ 524
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 964
+ %
+
+
+
+ true
+ 1464.0
+ 525
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 965
+ 3.0
+ 1377.0
+ 534.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 966
+ 3.0
+ 1336.869
+ 534.0
+ 3.0
+ 3.0
+ 50.869
+ 50.869
+ 0.0
+ 0.0
+
+
+
+
+
+ 967
+ 6.0
+ 1377.0
+ 550.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 968
+ TWISTLOCK
+
+
+
+ true
+ 1312
+ 545
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 969
+ 3.5
+ 1292.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 970
+ 3.5
+ 1305.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 971
+ 3.5
+ 1318.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 972
+ 3.5
+ 1331.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 973
+ BOX / PIN
+
+
+
+ true
+ 1376
+ 545
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 974
+ 3.5
+ 1356.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 975
+ 3.5
+ 1369.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 976
+ 3.5
+ 1382.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 977
+ 3.5
+ 1395.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 978
+ GAP
+
+
+
+ true
+ 1422
+ 545
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 979
+ 3.5
+ 1422.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 980
+ HOIST
+
+
+
+ true
+ 1456
+ 545
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 981
+ 3.5
+ 1456.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 982
+ 8.0
+ 1589.0
+ 444.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 983
+ 8.0
+ 1589.0
+ 341.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 984
+ 2.0
+ 1490.0
+ 341.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 985
+ STRADDLE 15
+
+
+
+ true
+ 1551.0
+ 341
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 986
+ 4.0
+ 1637.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 987
+ F
+
+
+
+ true
+ 1637
+ 341
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 988
+ 4.0
+ 1667.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 989
+ R
+
+
+
+ true
+ 1667
+ 341
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 990
+
+
+
+
+
+
+ 991
+ 11.0
+ 1526.0
+ 373.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 992
+ SINGLE
+
+
+
+ true
+ 1526.0
+ 373
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 993
+ 11.0
+ 1584.5
+ 373.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 994
+ TWIN
+
+
+
+ true
+ 1584.5
+ 373
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 995
+ 11.0
+ 1647.5
+ 373.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 996
+ TWINLIFT
+
+
+
+ true
+ 1647.5
+ 373
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 997
+ 11.0
+ 1526.0
+ 399.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 998
+ CLOSED
+
+
+
+ true
+ 1526.0
+ 399
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 999
+ 11.0
+ 1584.5
+ 399.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1000
+ OPEN
+
+
+
+ true
+ 1584.5
+ 399
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1001
+ 11.0
+ 1647.5
+ 399.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1002
+ PINS UP
+
+
+
+ true
+ 1647.5
+ 399
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1003
+ 1589.0
+ 415.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1004
+ LOAD
+
+
+
+ true
+ 1511.0
+ 427
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1005
+ 27.1
+
+
+
+ true
+ 1542.0
+ 443
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1006
+ t
+
+
+
+ true
+ 1572.0
+ 447
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1007
+ LIFTS / TRIP
+
+
+
+ true
+ 1626.5
+ 427
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1008
+ 97
+
+
+
+ true
+ 1668.0
+ 443
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1009
+ 1589.0
+ 455.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1010
+ RPM
+
+
+
+ true
+ 1508.5
+ 468
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1011
+ 1658
+
+
+
+ true
+ 1564.0
+ 468
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1012
+ TEMP
+
+
+
+ true
+ 1604.5
+ 468
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1013
+ 84
+
+
+
+ true
+ 1672.0
+ 468
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1014
+ STAB
+
+
+
+ true
+ 1509.0
+ 487
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1015
+ 77
+
+
+
+ true
+ 1572.0
+ 487
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1016
+ HGT
+
+
+
+ true
+ 1601.5
+ 487
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1017
+ 5.1
+
+
+
+ true
+ 1668.0
+ 487
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1018
+ LEN
+
+
+
+ true
+ 1506.5
+ 506
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1019
+ 40.0
+
+
+
+ true
+ 1564.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1020
+ L/H
+
+
+
+ true
+ 1600.0
+ 506
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1021
+ 26.7
+
+
+
+ true
+ 1664.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1022
+ FUEL
+
+
+
+ true
+ 1509.0
+ 524
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1023
+ 16.2
+
+
+
+ true
+ 1652.0
+ 524
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1024
+ %
+
+
+
+ true
+ 1676.0
+ 525
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1025
+ 3.0
+ 1589.0
+ 534.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1026
+ 3.0
+ 1512.742
+ 534.0
+ 3.0
+ 3.0
+ 14.742
+ 14.742
+ 0.0
+ 0.0
+
+
+
+
+
+ 1027
+ 6.0
+ 1589.0
+ 550.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1028
+ TWISTLOCK
+
+
+
+ true
+ 1524
+ 545
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1029
+ 3.5
+ 1504.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1030
+ 3.5
+ 1517.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1031
+ 3.5
+ 1530.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1032
+ 3.5
+ 1543.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1033
+ BOX / PIN
+
+
+
+ true
+ 1588
+ 545
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1034
+ 3.5
+ 1568.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1035
+ 3.5
+ 1581.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1036
+ 3.5
+ 1594.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1037
+ 3.5
+ 1607.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1038
+ GAP
+
+
+
+ true
+ 1634
+ 545
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1039
+ 3.5
+ 1634.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1040
+ HOIST
+
+
+
+ true
+ 1668
+ 545
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1041
+ 3.5
+ 1668.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1042
+ 8.0
+ 1801.0
+ 444.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1043
+ 8.0
+ 1801.0
+ 341.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1044
+ 2.0
+ 1702.0
+ 341.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1045
+ STRADDLE 16
+
+
+
+ true
+ 1763.0
+ 341
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1046
+ 4.0
+ 1849.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1047
+ F
+
+
+
+ true
+ 1849
+ 341
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1048
+ 4.0
+ 1879.0
+ 341.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1049
+ R
+
+
+
+ true
+ 1879
+ 341
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1050
+
+
+
+
+
+
+ 1051
+ 11.0
+ 1738.0
+ 373.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1052
+ SINGLE
+
+
+
+ true
+ 1738.0
+ 373
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1053
+ 11.0
+ 1796.5
+ 373.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1054
+ TWIN
+
+
+
+ true
+ 1796.5
+ 373
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1055
+ 11.0
+ 1859.5
+ 373.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1056
+ TWINLIFT
+
+
+
+ true
+ 1859.5
+ 373
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1057
+ 11.0
+ 1738.0
+ 399.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1058
+ CLOSED
+
+
+
+ true
+ 1738.0
+ 399
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1059
+ 11.0
+ 1796.5
+ 399.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1060
+ OPEN
+
+
+
+ true
+ 1796.5
+ 399
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1061
+ 11.0
+ 1859.5
+ 399.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1062
+ PINS UP
+
+
+
+ true
+ 1859.5
+ 399
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1063
+ 1801.0
+ 415.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1064
+ LOAD
+
+
+
+ true
+ 1723.0
+ 427
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1065
+ 14.7
+
+
+
+ true
+ 1754.0
+ 443
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1066
+ t
+
+
+
+ true
+ 1784.0
+ 447
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1067
+ LIFTS / TRIP
+
+
+
+ true
+ 1838.5
+ 427
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1068
+ 21
+
+
+
+ true
+ 1880.0
+ 443
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1069
+ 1801.0
+ 455.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1070
+ RPM
+
+
+
+ true
+ 1720.5
+ 468
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1071
+ 1564
+
+
+
+ true
+ 1776.0
+ 468
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1072
+ TEMP
+
+
+
+ true
+ 1816.5
+ 468
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1073
+ 92
+
+
+
+ true
+ 1884.0
+ 468
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1074
+ STAB
+
+
+
+ true
+ 1721.0
+ 487
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1075
+ 60
+
+
+
+ true
+ 1784.0
+ 487
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1076
+ HGT
+
+
+
+ true
+ 1813.5
+ 487
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1077
+ 9.6
+
+
+
+ true
+ 1880.0
+ 487
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1078
+ LEN
+
+
+
+ true
+ 1718.5
+ 506
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1079
+ 20.0
+
+
+
+ true
+ 1776.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1080
+ L/H
+
+
+
+ true
+ 1812.0
+ 506
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1081
+ 22.9
+
+
+
+ true
+ 1876.0
+ 506
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1082
+ FUEL
+
+
+
+ true
+ 1721.0
+ 524
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1083
+ 78.8
+
+
+
+ true
+ 1864.0
+ 524
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1084
+ %
+
+
+
+ true
+ 1888.0
+ 525
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1085
+ 3.0
+ 1801.0
+ 534.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1086
+ 3.0
+ 1781.708
+ 534.0
+ 3.0
+ 3.0
+ 71.708
+ 71.708
+ 0.0
+ 0.0
+
+
+
+
+
+ 1087
+ 6.0
+ 1801.0
+ 550.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1088
+ TWISTLOCK
+
+
+
+ true
+ 1736
+ 545
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1089
+ 3.5
+ 1716.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1090
+ 3.5
+ 1729.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1091
+ 3.5
+ 1742.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1092
+ 3.5
+ 1755.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1093
+ BOX / PIN
+
+
+
+ true
+ 1800
+ 545
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1094
+ 3.5
+ 1780.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1095
+ 3.5
+ 1793.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1096
+ 3.5
+ 1806.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1097
+ 3.5
+ 1819.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1098
+ GAP
+
+
+
+ true
+ 1846
+ 545
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1099
+ 3.5
+ 1846.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1100
+ HOIST
+
+
+
+ true
+ 1880
+ 545
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1101
+ 3.5
+ 1880.0
+ 556.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1102
+ 8.0
+ 317.0
+ 696.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1103
+ 8.0
+ 317.0
+ 593.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1104
+ 2.0
+ 218.0
+ 593.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1105
+ STRADDLE 17
+
+
+
+ true
+ 279.0
+ 593
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1106
+ 4.0
+ 365.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1107
+ F
+
+
+
+ true
+ 365
+ 593
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1108
+ 4.0
+ 395.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1109
+ R
+
+
+
+ true
+ 395
+ 593
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1110
+
+
+
+
+
+
+ 1111
+ 11.0
+ 254.0
+ 625.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1112
+ SINGLE
+
+
+
+ true
+ 254.0
+ 625
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1113
+ 11.0
+ 312.5
+ 625.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1114
+ TWIN
+
+
+
+ true
+ 312.5
+ 625
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1115
+ 11.0
+ 375.5
+ 625.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1116
+ TWINLIFT
+
+
+
+ true
+ 375.5
+ 625
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1117
+ 11.0
+ 254.0
+ 651.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1118
+ CLOSED
+
+
+
+ true
+ 254.0
+ 651
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1119
+ 11.0
+ 312.5
+ 651.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1120
+ OPEN
+
+
+
+ true
+ 312.5
+ 651
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1121
+ 11.0
+ 375.5
+ 651.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1122
+ PINS UP
+
+
+
+ true
+ 375.5
+ 651
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1123
+ 317.0
+ 667.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1124
+ LOAD
+
+
+
+ true
+ 239.0
+ 679
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1125
+ 0.0
+
+
+
+ true
+ 276.0
+ 695
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1126
+ t
+
+
+
+ true
+ 300.0
+ 699
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1127
+ LIFTS / TRIP
+
+
+
+ true
+ 354.5
+ 679
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1128
+ 94
+
+
+
+ true
+ 396.0
+ 695
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1129
+ 317.0
+ 707.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1130
+ RPM
+
+
+
+ true
+ 236.5
+ 720
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1131
+ 853
+
+
+
+ true
+ 296.0
+ 720
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1132
+ TEMP
+
+
+
+ true
+ 332.5
+ 720
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1133
+ 67
+
+
+
+ true
+ 400.0
+ 720
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1134
+ STAB
+
+
+
+ true
+ 237.0
+ 739
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1135
+ 73
+
+
+
+ true
+ 300.0
+ 739
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1136
+ HGT
+
+
+
+ true
+ 329.5
+ 739
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1137
+ 0.2
+
+
+
+ true
+ 396.0
+ 739
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1138
+ LEN
+
+
+
+ true
+ 234.5
+ 758
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1139
+ 20.0
+
+
+
+ true
+ 292.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1140
+ L/H
+
+
+
+ true
+ 328.0
+ 758
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1141
+ 7.2
+
+
+
+ true
+ 396.0
+ 758
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1142
+ FUEL
+
+
+
+ true
+ 237.0
+ 776
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1143
+ 56.7
+
+
+
+ true
+ 380.0
+ 776
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1144
+ %
+
+
+
+ true
+ 404.0
+ 777
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1145
+ 3.0
+ 317.0
+ 786.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1146
+ 3.0
+ 277.597
+ 786.0
+ 3.0
+ 3.0
+ 51.597
+ 51.597
+ 0.0
+ 0.0
+
+
+
+
+
+ 1147
+ 6.0
+ 317.0
+ 802.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1148
+ TWISTLOCK
+
+
+
+ true
+ 252
+ 797
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1149
+ 3.5
+ 232.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1150
+ 3.5
+ 245.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1151
+ 3.5
+ 258.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1152
+ 3.5
+ 271.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1153
+ BOX / PIN
+
+
+
+ true
+ 316
+ 797
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1154
+ 3.5
+ 296.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1155
+ 3.5
+ 309.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1156
+ 3.5
+ 322.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1157
+ 3.5
+ 335.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1158
+ GAP
+
+
+
+ true
+ 362
+ 797
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1159
+ 3.5
+ 362.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1160
+ HOIST
+
+
+
+ true
+ 396
+ 797
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1161
+ 3.5
+ 396.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1162
+ 8.0
+ 529.0
+ 696.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1163
+ 8.0
+ 529.0
+ 593.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1164
+ 2.0
+ 430.0
+ 593.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1165
+ STRADDLE 18
+
+
+
+ true
+ 491.0
+ 593
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1166
+ 4.0
+ 577.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1167
+ F
+
+
+
+ true
+ 577
+ 593
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1168
+ 4.0
+ 607.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1169
+ R
+
+
+
+ true
+ 607
+ 593
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1170
+
+
+
+
+
+
+ 1171
+ 11.0
+ 466.0
+ 625.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1172
+ SINGLE
+
+
+
+ true
+ 466.0
+ 625
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1173
+ 11.0
+ 524.5
+ 625.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1174
+ TWIN
+
+
+
+ true
+ 524.5
+ 625
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1175
+ 11.0
+ 587.5
+ 625.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1176
+ TWINLIFT
+
+
+
+ true
+ 587.5
+ 625
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1177
+ 11.0
+ 466.0
+ 651.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1178
+ CLOSED
+
+
+
+ true
+ 466.0
+ 651
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1179
+ 11.0
+ 524.5
+ 651.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1180
+ OPEN
+
+
+
+ true
+ 524.5
+ 651
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1181
+ 11.0
+ 587.5
+ 651.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1182
+ PINS UP
+
+
+
+ true
+ 587.5
+ 651
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1183
+ 529.0
+ 667.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1184
+ LOAD
+
+
+
+ true
+ 451.0
+ 679
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1185
+ 0.0
+
+
+
+ true
+ 488.0
+ 695
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1186
+ t
+
+
+
+ true
+ 512.0
+ 699
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1187
+ LIFTS / TRIP
+
+
+
+ true
+ 566.5
+ 679
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1188
+ 21
+
+
+
+ true
+ 608.0
+ 695
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1189
+ 529.0
+ 707.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1190
+ RPM
+
+
+
+ true
+ 448.5
+ 720
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1191
+ 1671
+
+
+
+ true
+ 504.0
+ 720
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1192
+ TEMP
+
+
+
+ true
+ 544.5
+ 720
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1193
+ 86
+
+
+
+ true
+ 612.0
+ 720
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1194
+ STAB
+
+
+
+ true
+ 449.0
+ 739
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1195
+ 70
+
+
+
+ true
+ 512.0
+ 739
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1196
+ HGT
+
+
+
+ true
+ 541.5
+ 739
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1197
+ 2.0
+
+
+
+ true
+ 608.0
+ 739
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1198
+ LEN
+
+
+
+ true
+ 446.5
+ 758
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1199
+ 40.0
+
+
+
+ true
+ 504.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1200
+ L/H
+
+
+
+ true
+ 540.0
+ 758
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1201
+ 21.3
+
+
+
+ true
+ 604.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1202
+ FUEL
+
+
+
+ true
+ 449.0
+ 776
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1203
+ 80.1
+
+
+
+ true
+ 592.0
+ 776
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1204
+ %
+
+
+
+ true
+ 616.0
+ 777
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1205
+ 3.0
+ 529.0
+ 786.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1206
+ 3.0
+ 510.891
+ 786.0
+ 3.0
+ 3.0
+ 72.891
+ 72.891
+ 0.0
+ 0.0
+
+
+
+
+
+ 1207
+ 6.0
+ 529.0
+ 802.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1208
+ TWISTLOCK
+
+
+
+ true
+ 464
+ 797
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1209
+ 3.5
+ 444.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1210
+ 3.5
+ 457.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1211
+ 3.5
+ 470.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1212
+ 3.5
+ 483.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1213
+ BOX / PIN
+
+
+
+ true
+ 528
+ 797
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1214
+ 3.5
+ 508.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1215
+ 3.5
+ 521.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1216
+ 3.5
+ 534.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1217
+ 3.5
+ 547.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1218
+ GAP
+
+
+
+ true
+ 574
+ 797
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1219
+ 3.5
+ 574.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1220
+ HOIST
+
+
+
+ true
+ 608
+ 797
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1221
+ 3.5
+ 608.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1222
+ 8.0
+ 741.0
+ 696.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1223
+ 8.0
+ 741.0
+ 593.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1224
+ 2.0
+ 642.0
+ 593.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1225
+ STRADDLE 19
+
+
+
+ true
+ 703.0
+ 593
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1226
+ 4.0
+ 789.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1227
+ F
+
+
+
+ true
+ 789
+ 593
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1228
+ 4.0
+ 819.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1229
+ R
+
+
+
+ true
+ 819
+ 593
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1230
+
+
+
+
+
+
+ 1231
+ 11.0
+ 678.0
+ 625.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1232
+ SINGLE
+
+
+
+ true
+ 678.0
+ 625
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1233
+ 11.0
+ 736.5
+ 625.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1234
+ TWIN
+
+
+
+ true
+ 736.5
+ 625
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1235
+ 11.0
+ 799.5
+ 625.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1236
+ TWINLIFT
+
+
+
+ true
+ 799.5
+ 625
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1237
+ 11.0
+ 678.0
+ 651.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1238
+ CLOSED
+
+
+
+ true
+ 678.0
+ 651
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1239
+ 11.0
+ 736.5
+ 651.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1240
+ OPEN
+
+
+
+ true
+ 736.5
+ 651
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1241
+ 11.0
+ 799.5
+ 651.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1242
+ PINS UP
+
+
+
+ true
+ 799.5
+ 651
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1243
+ 741.0
+ 667.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1244
+ LOAD
+
+
+
+ true
+ 663.0
+ 679
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1245
+ 31.4
+
+
+
+ true
+ 694.0
+ 695
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1246
+ t
+
+
+
+ true
+ 724.0
+ 699
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1247
+ LIFTS / TRIP
+
+
+
+ true
+ 778.5
+ 679
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1248
+ 69
+
+
+
+ true
+ 820.0
+ 695
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1249
+ 741.0
+ 707.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1250
+ RPM
+
+
+
+ true
+ 660.5
+ 720
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1251
+ 1571
+
+
+
+ true
+ 716.0
+ 720
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1252
+ TEMP
+
+
+
+ true
+ 756.5
+ 720
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1253
+ 75
+
+
+
+ true
+ 824.0
+ 720
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1254
+ STAB
+
+
+
+ true
+ 661.0
+ 739
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1255
+ 59
+
+
+
+ true
+ 724.0
+ 739
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1256
+ HGT
+
+
+
+ true
+ 753.5
+ 739
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1257
+ 10.2
+
+
+
+ true
+ 816.0
+ 739
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1258
+ LEN
+
+
+
+ true
+ 658.5
+ 758
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1259
+ 40.0
+
+
+
+ true
+ 716.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1260
+ L/H
+
+
+
+ true
+ 752.0
+ 758
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1261
+ 20.9
+
+
+
+ true
+ 816.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1262
+ FUEL
+
+
+
+ true
+ 661.0
+ 776
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1263
+ 81.1
+
+
+
+ true
+ 804.0
+ 776
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1264
+ %
+
+
+
+ true
+ 828.0
+ 777
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1265
+ 3.0
+ 741.0
+ 786.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1266
+ 3.0
+ 723.801
+ 786.0
+ 3.0
+ 3.0
+ 73.801
+ 73.801
+ 0.0
+ 0.0
+
+
+
+
+
+ 1267
+ 6.0
+ 741.0
+ 802.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1268
+ TWISTLOCK
+
+
+
+ true
+ 676
+ 797
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1269
+ 3.5
+ 656.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1270
+ 3.5
+ 669.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1271
+ 3.5
+ 682.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1272
+ 3.5
+ 695.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1273
+ BOX / PIN
+
+
+
+ true
+ 740
+ 797
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1274
+ 3.5
+ 720.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1275
+ 3.5
+ 733.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1276
+ 3.5
+ 746.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1277
+ 3.5
+ 759.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1278
+ GAP
+
+
+
+ true
+ 786
+ 797
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1279
+ 3.5
+ 786.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1280
+ HOIST
+
+
+
+ true
+ 820
+ 797
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1281
+ 3.5
+ 820.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1282
+ 8.0
+ 953.0
+ 696.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1283
+ 8.0
+ 953.0
+ 593.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1284
+ 2.0
+ 854.0
+ 593.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1285
+ STRADDLE 20
+
+
+
+ true
+ 915.0
+ 593
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1286
+ 4.0
+ 1001.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1287
+ F
+
+
+
+ true
+ 1001
+ 593
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1288
+ 4.0
+ 1031.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1289
+ R
+
+
+
+ true
+ 1031
+ 593
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1290
+
+
+
+
+
+
+ 1291
+ 11.0
+ 890.0
+ 625.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1292
+ SINGLE
+
+
+
+ true
+ 890.0
+ 625
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1293
+ 11.0
+ 948.5
+ 625.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1294
+ TWIN
+
+
+
+ true
+ 948.5
+ 625
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1295
+ 11.0
+ 1011.5
+ 625.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1296
+ TWINLIFT
+
+
+
+ true
+ 1011.5
+ 625
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1297
+ 11.0
+ 890.0
+ 651.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1298
+ CLOSED
+
+
+
+ true
+ 890.0
+ 651
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1299
+ 11.0
+ 948.5
+ 651.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1300
+ OPEN
+
+
+
+ true
+ 948.5
+ 651
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1301
+ 11.0
+ 1011.5
+ 651.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1302
+ PINS UP
+
+
+
+ true
+ 1011.5
+ 651
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1303
+ 953.0
+ 667.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1304
+ LOAD
+
+
+
+ true
+ 875.0
+ 679
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1305
+ 16.0
+
+
+
+ true
+ 906.0
+ 695
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1306
+ t
+
+
+
+ true
+ 936.0
+ 699
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1307
+ LIFTS / TRIP
+
+
+
+ true
+ 990.5
+ 679
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1308
+ 34
+
+
+
+ true
+ 1032.0
+ 695
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1309
+ 953.0
+ 707.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1310
+ RPM
+
+
+
+ true
+ 872.5
+ 720
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1311
+ 1190
+
+
+
+ true
+ 928.0
+ 720
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1312
+ TEMP
+
+
+
+ true
+ 968.5
+ 720
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1313
+ 79
+
+
+
+ true
+ 1036.0
+ 720
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1314
+ STAB
+
+
+
+ true
+ 873.0
+ 739
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1315
+ 74
+
+
+
+ true
+ 936.0
+ 739
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1316
+ HGT
+
+
+
+ true
+ 965.5
+ 739
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1317
+ 11.7
+
+
+
+ true
+ 1028.0
+ 739
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1318
+ LEN
+
+
+
+ true
+ 870.5
+ 758
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1319
+ 40.0
+
+
+
+ true
+ 928.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1320
+ L/H
+
+
+
+ true
+ 964.0
+ 758
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1321
+ 32.1
+
+
+
+ true
+ 1028.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1322
+ FUEL
+
+
+
+ true
+ 873.0
+ 776
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1323
+ 30.8
+
+
+
+ true
+ 1016.0
+ 776
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1324
+ %
+
+
+
+ true
+ 1040.0
+ 777
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1325
+ 3.0
+ 953.0
+ 786.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1326
+ 3.0
+ 890.028
+ 786.0
+ 3.0
+ 3.0
+ 28.028
+ 28.028
+ 0.0
+ 0.0
+
+
+
+
+
+ 1327
+ 6.0
+ 953.0
+ 802.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1328
+ TWISTLOCK
+
+
+
+ true
+ 888
+ 797
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1329
+ 3.5
+ 868.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1330
+ 3.5
+ 881.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1331
+ 3.5
+ 894.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1332
+ 3.5
+ 907.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1333
+ BOX / PIN
+
+
+
+ true
+ 952
+ 797
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1334
+ 3.5
+ 932.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1335
+ 3.5
+ 945.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1336
+ 3.5
+ 958.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1337
+ 3.5
+ 971.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1338
+ GAP
+
+
+
+ true
+ 998
+ 797
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1339
+ 3.5
+ 998.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1340
+ HOIST
+
+
+
+ true
+ 1032
+ 797
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1341
+ 3.5
+ 1032.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1342
+ 8.0
+ 1165.0
+ 696.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1343
+ 8.0
+ 1165.0
+ 593.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1344
+ 2.0
+ 1066.0
+ 593.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1345
+ STRADDLE 21
+
+
+
+ true
+ 1127.0
+ 593
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1346
+ 4.0
+ 1213.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1347
+ F
+
+
+
+ true
+ 1213
+ 593
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1348
+ 4.0
+ 1243.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1349
+ R
+
+
+
+ true
+ 1243
+ 593
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1350
+
+
+
+
+
+
+ 1351
+ 11.0
+ 1102.0
+ 625.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1352
+ SINGLE
+
+
+
+ true
+ 1102.0
+ 625
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1353
+ 11.0
+ 1160.5
+ 625.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1354
+ TWIN
+
+
+
+ true
+ 1160.5
+ 625
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1355
+ 11.0
+ 1223.5
+ 625.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1356
+ TWINLIFT
+
+
+
+ true
+ 1223.5
+ 625
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1357
+ 11.0
+ 1102.0
+ 651.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1358
+ CLOSED
+
+
+
+ true
+ 1102.0
+ 651
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1359
+ 11.0
+ 1160.5
+ 651.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1360
+ OPEN
+
+
+
+ true
+ 1160.5
+ 651
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1361
+ 11.0
+ 1223.5
+ 651.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1362
+ PINS UP
+
+
+
+ true
+ 1223.5
+ 651
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1363
+ 1165.0
+ 667.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1364
+ LOAD
+
+
+
+ true
+ 1087.0
+ 679
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1365
+ 35.0
+
+
+
+ true
+ 1118.0
+ 695
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1366
+ t
+
+
+
+ true
+ 1148.0
+ 699
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1367
+ LIFTS / TRIP
+
+
+
+ true
+ 1202.5
+ 679
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1368
+ 92
+
+
+
+ true
+ 1244.0
+ 695
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1369
+ 1165.0
+ 707.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1370
+ RPM
+
+
+
+ true
+ 1084.5
+ 720
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1371
+ 1474
+
+
+
+ true
+ 1140.0
+ 720
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1372
+ TEMP
+
+
+
+ true
+ 1180.5
+ 720
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1373
+ 85
+
+
+
+ true
+ 1248.0
+ 720
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1374
+ STAB
+
+
+
+ true
+ 1085.0
+ 739
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1375
+ 77
+
+
+
+ true
+ 1148.0
+ 739
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1376
+ HGT
+
+
+
+ true
+ 1177.5
+ 739
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1377
+ 11.9
+
+
+
+ true
+ 1240.0
+ 739
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1378
+ LEN
+
+
+
+ true
+ 1082.5
+ 758
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1379
+ 40.0
+
+
+
+ true
+ 1140.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1380
+ L/H
+
+
+
+ true
+ 1176.0
+ 758
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1381
+ 26.1
+
+
+
+ true
+ 1240.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1382
+ FUEL
+
+
+
+ true
+ 1085.0
+ 776
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1383
+ 29.0
+
+
+
+ true
+ 1228.0
+ 776
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1384
+ %
+
+
+
+ true
+ 1252.0
+ 777
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1385
+ 3.0
+ 1165.0
+ 786.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1386
+ 3.0
+ 1100.39
+ 786.0
+ 3.0
+ 3.0
+ 26.39
+ 26.39
+ 0.0
+ 0.0
+
+
+
+
+
+ 1387
+ 6.0
+ 1165.0
+ 802.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1388
+ TWISTLOCK
+
+
+
+ true
+ 1100
+ 797
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1389
+ 3.5
+ 1080.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1390
+ 3.5
+ 1093.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1391
+ 3.5
+ 1106.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1392
+ 3.5
+ 1119.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1393
+ BOX / PIN
+
+
+
+ true
+ 1164
+ 797
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1394
+ 3.5
+ 1144.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1395
+ 3.5
+ 1157.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1396
+ 3.5
+ 1170.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1397
+ 3.5
+ 1183.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1398
+ GAP
+
+
+
+ true
+ 1210
+ 797
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1399
+ 3.5
+ 1210.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1400
+ HOIST
+
+
+
+ true
+ 1244
+ 797
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1401
+ 3.5
+ 1244.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1402
+ 8.0
+ 1377.0
+ 696.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1403
+ 8.0
+ 1377.0
+ 593.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1404
+ 2.0
+ 1278.0
+ 593.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1405
+ STRADDLE 22
+
+
+
+ true
+ 1339.0
+ 593
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1406
+ 4.0
+ 1425.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1407
+ F
+
+
+
+ true
+ 1425
+ 593
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1408
+ 4.0
+ 1455.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1409
+ R
+
+
+
+ true
+ 1455
+ 593
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1410
+
+
+
+
+
+
+ 1411
+ 11.0
+ 1314.0
+ 625.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1412
+ SINGLE
+
+
+
+ true
+ 1314.0
+ 625
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1413
+ 11.0
+ 1372.5
+ 625.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1414
+ TWIN
+
+
+
+ true
+ 1372.5
+ 625
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1415
+ 11.0
+ 1435.5
+ 625.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1416
+ TWINLIFT
+
+
+
+ true
+ 1435.5
+ 625
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1417
+ 11.0
+ 1314.0
+ 651.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1418
+ CLOSED
+
+
+
+ true
+ 1314.0
+ 651
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1419
+ 11.0
+ 1372.5
+ 651.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1420
+ OPEN
+
+
+
+ true
+ 1372.5
+ 651
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1421
+ 11.0
+ 1435.5
+ 651.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1422
+ PINS UP
+
+
+
+ true
+ 1435.5
+ 651
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1423
+ 1377.0
+ 667.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1424
+ LOAD
+
+
+
+ true
+ 1299.0
+ 679
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1425
+ 17.1
+
+
+
+ true
+ 1330.0
+ 695
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1426
+ t
+
+
+
+ true
+ 1360.0
+ 699
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1427
+ LIFTS / TRIP
+
+
+
+ true
+ 1414.5
+ 679
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1428
+ 85
+
+
+
+ true
+ 1456.0
+ 695
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1429
+ 1377.0
+ 707.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1430
+ RPM
+
+
+
+ true
+ 1296.5
+ 720
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1431
+ 1725
+
+
+
+ true
+ 1352.0
+ 720
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1432
+ TEMP
+
+
+
+ true
+ 1392.5
+ 720
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1433
+ 83
+
+
+
+ true
+ 1460.0
+ 720
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1434
+ STAB
+
+
+
+ true
+ 1297.0
+ 739
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1435
+ 94
+
+
+
+ true
+ 1360.0
+ 739
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1436
+ HGT
+
+
+
+ true
+ 1389.5
+ 739
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1437
+ 8.4
+
+
+
+ true
+ 1456.0
+ 739
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1438
+ LEN
+
+
+
+ true
+ 1294.5
+ 758
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1439
+ 40.0
+
+
+
+ true
+ 1352.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1440
+ L/H
+
+
+
+ true
+ 1388.0
+ 758
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1441
+ 27.1
+
+
+
+ true
+ 1452.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1442
+ FUEL
+
+
+
+ true
+ 1297.0
+ 776
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1443
+ 47.1
+
+
+
+ true
+ 1440.0
+ 776
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1444
+ %
+
+
+
+ true
+ 1464.0
+ 777
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1445
+ 3.0
+ 1377.0
+ 786.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1446
+ 3.0
+ 1328.861
+ 786.0
+ 3.0
+ 3.0
+ 42.861
+ 42.861
+ 0.0
+ 0.0
+
+
+
+
+
+ 1447
+ 6.0
+ 1377.0
+ 802.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1448
+ TWISTLOCK
+
+
+
+ true
+ 1312
+ 797
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1449
+ 3.5
+ 1292.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1450
+ 3.5
+ 1305.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1451
+ 3.5
+ 1318.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1452
+ 3.5
+ 1331.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1453
+ BOX / PIN
+
+
+
+ true
+ 1376
+ 797
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1454
+ 3.5
+ 1356.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1455
+ 3.5
+ 1369.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1456
+ 3.5
+ 1382.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1457
+ 3.5
+ 1395.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1458
+ GAP
+
+
+
+ true
+ 1422
+ 797
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1459
+ 3.5
+ 1422.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1460
+ HOIST
+
+
+
+ true
+ 1456
+ 797
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1461
+ 3.5
+ 1456.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1462
+ 8.0
+ 1589.0
+ 696.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1463
+ 8.0
+ 1589.0
+ 593.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1464
+ 2.0
+ 1490.0
+ 593.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1465
+ STRADDLE 23
+
+
+
+ true
+ 1551.0
+ 593
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1466
+ 4.0
+ 1637.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1467
+ F
+
+
+
+ true
+ 1637
+ 593
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1468
+ 4.0
+ 1667.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1469
+ R
+
+
+
+ true
+ 1667
+ 593
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1470
+
+
+
+
+
+
+ 1471
+ 11.0
+ 1526.0
+ 625.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1472
+ SINGLE
+
+
+
+ true
+ 1526.0
+ 625
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1473
+ 11.0
+ 1584.5
+ 625.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1474
+ TWIN
+
+
+
+ true
+ 1584.5
+ 625
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1475
+ 11.0
+ 1647.5
+ 625.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1476
+ TWINLIFT
+
+
+
+ true
+ 1647.5
+ 625
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1477
+ 11.0
+ 1526.0
+ 651.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1478
+ CLOSED
+
+
+
+ true
+ 1526.0
+ 651
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1479
+ 11.0
+ 1584.5
+ 651.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1480
+ OPEN
+
+
+
+ true
+ 1584.5
+ 651
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1481
+ 11.0
+ 1647.5
+ 651.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1482
+ PINS UP
+
+
+
+ true
+ 1647.5
+ 651
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1483
+ 1589.0
+ 667.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1484
+ LOAD
+
+
+
+ true
+ 1511.0
+ 679
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1485
+ 11.7
+
+
+
+ true
+ 1542.0
+ 695
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1486
+ t
+
+
+
+ true
+ 1572.0
+ 699
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1487
+ LIFTS / TRIP
+
+
+
+ true
+ 1626.5
+ 679
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1488
+ 19
+
+
+
+ true
+ 1668.0
+ 695
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1489
+ 1589.0
+ 707.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1490
+ RPM
+
+
+
+ true
+ 1508.5
+ 720
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1491
+ 1222
+
+
+
+ true
+ 1564.0
+ 720
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1492
+ TEMP
+
+
+
+ true
+ 1604.5
+ 720
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1493
+ 94
+
+
+
+ true
+ 1672.0
+ 720
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1494
+ STAB
+
+
+
+ true
+ 1509.0
+ 739
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1495
+ 89
+
+
+
+ true
+ 1572.0
+ 739
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1496
+ HGT
+
+
+
+ true
+ 1601.5
+ 739
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1497
+ 2.7
+
+
+
+ true
+ 1668.0
+ 739
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1498
+ LEN
+
+
+
+ true
+ 1506.5
+ 758
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1499
+ 20.0
+
+
+
+ true
+ 1564.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1500
+ L/H
+
+
+
+ true
+ 1600.0
+ 758
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1501
+ 30.3
+
+
+
+ true
+ 1664.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1502
+ FUEL
+
+
+
+ true
+ 1509.0
+ 776
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1503
+ 81.4
+
+
+
+ true
+ 1652.0
+ 776
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1504
+ %
+
+
+
+ true
+ 1676.0
+ 777
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1505
+ 3.0
+ 1589.0
+ 786.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1506
+ 3.0
+ 1572.074
+ 786.0
+ 3.0
+ 3.0
+ 74.074
+ 74.074
+ 0.0
+ 0.0
+
+
+
+
+
+ 1507
+ 6.0
+ 1589.0
+ 802.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1508
+ TWISTLOCK
+
+
+
+ true
+ 1524
+ 797
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1509
+ 3.5
+ 1504.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1510
+ 3.5
+ 1517.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1511
+ 3.5
+ 1530.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1512
+ 3.5
+ 1543.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1513
+ BOX / PIN
+
+
+
+ true
+ 1588
+ 797
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1514
+ 3.5
+ 1568.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1515
+ 3.5
+ 1581.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1516
+ 3.5
+ 1594.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1517
+ 3.5
+ 1607.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1518
+ GAP
+
+
+
+ true
+ 1634
+ 797
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1519
+ 3.5
+ 1634.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1520
+ HOIST
+
+
+
+ true
+ 1668
+ 797
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1521
+ 3.5
+ 1668.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1522
+ 8.0
+ 1801.0
+ 696.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1523
+ 8.0
+ 1801.0
+ 593.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1524
+ 2.0
+ 1702.0
+ 593.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1525
+ STRADDLE 24
+
+
+
+ true
+ 1763.0
+ 593
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1526
+ 4.0
+ 1849.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1527
+ F
+
+
+
+ true
+ 1849
+ 593
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1528
+ 4.0
+ 1879.0
+ 593.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1529
+ R
+
+
+
+ true
+ 1879
+ 593
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1530
+
+
+
+
+
+
+ 1531
+ 11.0
+ 1738.0
+ 625.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1532
+ SINGLE
+
+
+
+ true
+ 1738.0
+ 625
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1533
+ 11.0
+ 1796.5
+ 625.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1534
+ TWIN
+
+
+
+ true
+ 1796.5
+ 625
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1535
+ 11.0
+ 1859.5
+ 625.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1536
+ TWINLIFT
+
+
+
+ true
+ 1859.5
+ 625
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1537
+ 11.0
+ 1738.0
+ 651.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1538
+ CLOSED
+
+
+
+ true
+ 1738.0
+ 651
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1539
+ 11.0
+ 1796.5
+ 651.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1540
+ OPEN
+
+
+
+ true
+ 1796.5
+ 651
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1541
+ 11.0
+ 1859.5
+ 651.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1542
+ PINS UP
+
+
+
+ true
+ 1859.5
+ 651
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1543
+ 1801.0
+ 667.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1544
+ LOAD
+
+
+
+ true
+ 1723.0
+ 679
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1545
+ 18.6
+
+
+
+ true
+ 1754.0
+ 695
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1546
+ t
+
+
+
+ true
+ 1784.0
+ 699
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1547
+ LIFTS / TRIP
+
+
+
+ true
+ 1838.5
+ 679
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1548
+ 113
+
+
+
+ true
+ 1874.0
+ 695
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1549
+ 1801.0
+ 707.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1550
+ RPM
+
+
+
+ true
+ 1720.5
+ 720
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1551
+ 1652
+
+
+
+ true
+ 1776.0
+ 720
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1552
+ TEMP
+
+
+
+ true
+ 1816.5
+ 720
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1553
+ 90
+
+
+
+ true
+ 1884.0
+ 720
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1554
+ STAB
+
+
+
+ true
+ 1721.0
+ 739
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1555
+ 76
+
+
+
+ true
+ 1784.0
+ 739
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1556
+ HGT
+
+
+
+ true
+ 1813.5
+ 739
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1557
+ 4.4
+
+
+
+ true
+ 1880.0
+ 739
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1558
+ LEN
+
+
+
+ true
+ 1718.5
+ 758
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1559
+ 40.0
+
+
+
+ true
+ 1776.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1560
+ L/H
+
+
+
+ true
+ 1812.0
+ 758
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1561
+ 28.7
+
+
+
+ true
+ 1876.0
+ 758
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1562
+ FUEL
+
+
+
+ true
+ 1721.0
+ 776
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1563
+ 55.2
+
+
+
+ true
+ 1864.0
+ 776
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1564
+ %
+
+
+
+ true
+ 1888.0
+ 777
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1565
+ 3.0
+ 1801.0
+ 786.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1566
+ 3.0
+ 1760.232
+ 786.0
+ 3.0
+ 3.0
+ 50.232
+ 50.232
+ 0.0
+ 0.0
+
+
+
+
+
+ 1567
+ 6.0
+ 1801.0
+ 802.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1568
+ TWISTLOCK
+
+
+
+ true
+ 1736
+ 797
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1569
+ 3.5
+ 1716.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1570
+ 3.5
+ 1729.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1571
+ 3.5
+ 1742.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1572
+ 3.5
+ 1755.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1573
+ BOX / PIN
+
+
+
+ true
+ 1800
+ 797
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1574
+ 3.5
+ 1780.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1575
+ 3.5
+ 1793.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1576
+ 3.5
+ 1806.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1577
+ 3.5
+ 1819.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1578
+ GAP
+
+
+
+ true
+ 1846
+ 797
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1579
+ 3.5
+ 1846.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1580
+ HOIST
+
+
+
+ true
+ 1880
+ 797
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1581
+ 3.5
+ 1880.0
+ 808.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1582
+ 8.0
+ 317.0
+ 948.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1583
+ 8.0
+ 317.0
+ 845.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1584
+ 2.0
+ 218.0
+ 845.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1585
+ STRADDLE 25
+
+
+
+ true
+ 279.0
+ 845
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1586
+ 4.0
+ 365.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1587
+ F
+
+
+
+ true
+ 365
+ 845
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1588
+ 4.0
+ 395.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1589
+ R
+
+
+
+ true
+ 395
+ 845
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1590
+
+
+
+
+
+
+ 1591
+ 11.0
+ 254.0
+ 877.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1592
+ SINGLE
+
+
+
+ true
+ 254.0
+ 877
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1593
+ 11.0
+ 312.5
+ 877.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1594
+ TWIN
+
+
+
+ true
+ 312.5
+ 877
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1595
+ 11.0
+ 375.5
+ 877.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1596
+ TWINLIFT
+
+
+
+ true
+ 375.5
+ 877
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1597
+ 11.0
+ 254.0
+ 903.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1598
+ CLOSED
+
+
+
+ true
+ 254.0
+ 903
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1599
+ 11.0
+ 312.5
+ 903.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1600
+ OPEN
+
+
+
+ true
+ 312.5
+ 903
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1601
+ 11.0
+ 375.5
+ 903.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1602
+ PINS UP
+
+
+
+ true
+ 375.5
+ 903
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1603
+ 317.0
+ 919.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1604
+ LOAD
+
+
+
+ true
+ 239.0
+ 931
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1605
+ 9.1
+
+
+
+ true
+ 276.0
+ 947
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1606
+ t
+
+
+
+ true
+ 300.0
+ 951
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1607
+ LIFTS / TRIP
+
+
+
+ true
+ 354.5
+ 931
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1608
+ 121
+
+
+
+ true
+ 390.0
+ 947
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1609
+ 317.0
+ 959.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1610
+ RPM
+
+
+
+ true
+ 236.5
+ 972
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1611
+ 1780
+
+
+
+ true
+ 292.0
+ 972
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1612
+ TEMP
+
+
+
+ true
+ 332.5
+ 972
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1613
+ 74
+
+
+
+ true
+ 400.0
+ 972
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1614
+ STAB
+
+
+
+ true
+ 237.0
+ 991
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1615
+ 85
+
+
+
+ true
+ 300.0
+ 991
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1616
+ HGT
+
+
+
+ true
+ 329.5
+ 991
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1617
+ 2.5
+
+
+
+ true
+ 396.0
+ 991
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1618
+ LEN
+
+
+
+ true
+ 234.5
+ 1010
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1619
+ 20.0
+
+
+
+ true
+ 292.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1620
+ L/H
+
+
+
+ true
+ 328.0
+ 1010
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1621
+ 33.8
+
+
+
+ true
+ 392.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1622
+ FUEL
+
+
+
+ true
+ 237.0
+ 1028
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1623
+ 11.7
+
+
+
+ true
+ 380.0
+ 1028
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1624
+ %
+
+
+
+ true
+ 404.0
+ 1029
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1625
+ 3.0
+ 317.0
+ 1038.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1626
+ 3.0
+ 236.647
+ 1038.0
+ 3.0
+ 3.0
+ 10.647
+ 10.647
+ 0.0
+ 0.0
+
+
+
+
+
+ 1627
+ 6.0
+ 317.0
+ 1054.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1628
+ TWISTLOCK
+
+
+
+ true
+ 252
+ 1049
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1629
+ 3.5
+ 232.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1630
+ 3.5
+ 245.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1631
+ 3.5
+ 258.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1632
+ 3.5
+ 271.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1633
+ BOX / PIN
+
+
+
+ true
+ 316
+ 1049
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1634
+ 3.5
+ 296.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1635
+ 3.5
+ 309.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1636
+ 3.5
+ 322.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1637
+ 3.5
+ 335.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1638
+ GAP
+
+
+
+ true
+ 362
+ 1049
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1639
+ 3.5
+ 362.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1640
+ HOIST
+
+
+
+ true
+ 396
+ 1049
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1641
+ 3.5
+ 396.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1642
+ 8.0
+ 529.0
+ 948.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1643
+ 8.0
+ 529.0
+ 845.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1644
+ 2.0
+ 430.0
+ 845.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1645
+ STRADDLE 26
+
+
+
+ true
+ 491.0
+ 845
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1646
+ 4.0
+ 577.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1647
+ F
+
+
+
+ true
+ 577
+ 845
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1648
+ 4.0
+ 607.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1649
+ R
+
+
+
+ true
+ 607
+ 845
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1650
+
+
+
+
+
+
+ 1651
+ 11.0
+ 466.0
+ 877.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1652
+ SINGLE
+
+
+
+ true
+ 466.0
+ 877
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1653
+ 11.0
+ 524.5
+ 877.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1654
+ TWIN
+
+
+
+ true
+ 524.5
+ 877
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1655
+ 11.0
+ 587.5
+ 877.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1656
+ TWINLIFT
+
+
+
+ true
+ 587.5
+ 877
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1657
+ 11.0
+ 466.0
+ 903.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1658
+ CLOSED
+
+
+
+ true
+ 466.0
+ 903
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1659
+ 11.0
+ 524.5
+ 903.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1660
+ OPEN
+
+
+
+ true
+ 524.5
+ 903
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1661
+ 11.0
+ 587.5
+ 903.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1662
+ PINS UP
+
+
+
+ true
+ 587.5
+ 903
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1663
+ 529.0
+ 919.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1664
+ LOAD
+
+
+
+ true
+ 451.0
+ 931
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1665
+ 26.4
+
+
+
+ true
+ 482.0
+ 947
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1666
+ t
+
+
+
+ true
+ 512.0
+ 951
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1667
+ LIFTS / TRIP
+
+
+
+ true
+ 566.5
+ 931
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1668
+ 15
+
+
+
+ true
+ 608.0
+ 947
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1669
+ 529.0
+ 959.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1670
+ RPM
+
+
+
+ true
+ 448.5
+ 972
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1671
+ 1725
+
+
+
+ true
+ 504.0
+ 972
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1672
+ TEMP
+
+
+
+ true
+ 544.5
+ 972
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1673
+ 78
+
+
+
+ true
+ 612.0
+ 972
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1674
+ STAB
+
+
+
+ true
+ 449.0
+ 991
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1675
+ 63
+
+
+
+ true
+ 512.0
+ 991
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1676
+ HGT
+
+
+
+ true
+ 541.5
+ 991
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1677
+ 11.4
+
+
+
+ true
+ 604.0
+ 991
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1678
+ LEN
+
+
+
+ true
+ 446.5
+ 1010
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1679
+ 40.0
+
+
+
+ true
+ 504.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1680
+ L/H
+
+
+
+ true
+ 540.0
+ 1010
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1681
+ 22.4
+
+
+
+ true
+ 604.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1682
+ FUEL
+
+
+
+ true
+ 449.0
+ 1028
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1683
+ 64.1
+
+
+
+ true
+ 592.0
+ 1028
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1684
+ %
+
+
+
+ true
+ 616.0
+ 1029
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1685
+ 3.0
+ 529.0
+ 1038.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1686
+ 3.0
+ 496.331
+ 1038.0
+ 3.0
+ 3.0
+ 58.331
+ 58.331
+ 0.0
+ 0.0
+
+
+
+
+
+ 1687
+ 6.0
+ 529.0
+ 1054.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1688
+ TWISTLOCK
+
+
+
+ true
+ 464
+ 1049
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1689
+ 3.5
+ 444.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1690
+ 3.5
+ 457.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1691
+ 3.5
+ 470.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1692
+ 3.5
+ 483.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1693
+ BOX / PIN
+
+
+
+ true
+ 528
+ 1049
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1694
+ 3.5
+ 508.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1695
+ 3.5
+ 521.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1696
+ 3.5
+ 534.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1697
+ 3.5
+ 547.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1698
+ GAP
+
+
+
+ true
+ 574
+ 1049
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1699
+ 3.5
+ 574.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1700
+ HOIST
+
+
+
+ true
+ 608
+ 1049
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1701
+ 3.5
+ 608.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1702
+ 8.0
+ 741.0
+ 948.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1703
+ 8.0
+ 741.0
+ 845.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1704
+ 2.0
+ 642.0
+ 845.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1705
+ STRADDLE 27
+
+
+
+ true
+ 703.0
+ 845
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1706
+ 4.0
+ 789.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1707
+ F
+
+
+
+ true
+ 789
+ 845
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1708
+ 4.0
+ 819.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1709
+ R
+
+
+
+ true
+ 819
+ 845
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1710
+
+
+
+
+
+
+ 1711
+ 11.0
+ 678.0
+ 877.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1712
+ SINGLE
+
+
+
+ true
+ 678.0
+ 877
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1713
+ 11.0
+ 736.5
+ 877.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1714
+ TWIN
+
+
+
+ true
+ 736.5
+ 877
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1715
+ 11.0
+ 799.5
+ 877.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1716
+ TWINLIFT
+
+
+
+ true
+ 799.5
+ 877
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1717
+ 11.0
+ 678.0
+ 903.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1718
+ CLOSED
+
+
+
+ true
+ 678.0
+ 903
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1719
+ 11.0
+ 736.5
+ 903.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1720
+ OPEN
+
+
+
+ true
+ 736.5
+ 903
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1721
+ 11.0
+ 799.5
+ 903.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1722
+ PINS UP
+
+
+
+ true
+ 799.5
+ 903
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1723
+ 741.0
+ 919.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1724
+ LOAD
+
+
+
+ true
+ 663.0
+ 931
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1725
+ 36.8
+
+
+
+ true
+ 694.0
+ 947
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1726
+ t
+
+
+
+ true
+ 724.0
+ 951
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1727
+ LIFTS / TRIP
+
+
+
+ true
+ 778.5
+ 931
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1728
+ 139
+
+
+
+ true
+ 814.0
+ 947
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1729
+ 741.0
+ 959.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1730
+ RPM
+
+
+
+ true
+ 660.5
+ 972
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1731
+ 1284
+
+
+
+ true
+ 716.0
+ 972
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1732
+ TEMP
+
+
+
+ true
+ 756.5
+ 972
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1733
+ 82
+
+
+
+ true
+ 824.0
+ 972
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1734
+ STAB
+
+
+
+ true
+ 661.0
+ 991
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1735
+ 67
+
+
+
+ true
+ 724.0
+ 991
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1736
+ HGT
+
+
+
+ true
+ 753.5
+ 991
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1737
+ 6.0
+
+
+
+ true
+ 820.0
+ 991
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1738
+ LEN
+
+
+
+ true
+ 658.5
+ 1010
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1739
+ 40.0
+
+
+
+ true
+ 716.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1740
+ L/H
+
+
+
+ true
+ 752.0
+ 1010
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1741
+ 22.3
+
+
+
+ true
+ 816.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1742
+ FUEL
+
+
+
+ true
+ 661.0
+ 1028
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1743
+ 53.2
+
+
+
+ true
+ 804.0
+ 1028
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1744
+ %
+
+
+
+ true
+ 828.0
+ 1029
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1745
+ 3.0
+ 741.0
+ 1038.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1746
+ 3.0
+ 698.412
+ 1038.0
+ 3.0
+ 3.0
+ 48.412
+ 48.412
+ 0.0
+ 0.0
+
+
+
+
+
+ 1747
+ 6.0
+ 741.0
+ 1054.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1748
+ TWISTLOCK
+
+
+
+ true
+ 676
+ 1049
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1749
+ 3.5
+ 656.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1750
+ 3.5
+ 669.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1751
+ 3.5
+ 682.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1752
+ 3.5
+ 695.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1753
+ BOX / PIN
+
+
+
+ true
+ 740
+ 1049
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1754
+ 3.5
+ 720.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1755
+ 3.5
+ 733.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1756
+ 3.5
+ 746.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1757
+ 3.5
+ 759.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1758
+ GAP
+
+
+
+ true
+ 786
+ 1049
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1759
+ 3.5
+ 786.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1760
+ HOIST
+
+
+
+ true
+ 820
+ 1049
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1761
+ 3.5
+ 820.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1762
+ 8.0
+ 953.0
+ 948.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1763
+ 8.0
+ 953.0
+ 845.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1764
+ 2.0
+ 854.0
+ 845.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1765
+ STRADDLE 28
+
+
+
+ true
+ 915.0
+ 845
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1766
+ 4.0
+ 1001.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1767
+ F
+
+
+
+ true
+ 1001
+ 845
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1768
+ 4.0
+ 1031.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1769
+ R
+
+
+
+ true
+ 1031
+ 845
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1770
+
+
+
+
+
+
+ 1771
+ 11.0
+ 890.0
+ 877.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1772
+ SINGLE
+
+
+
+ true
+ 890.0
+ 877
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1773
+ 11.0
+ 948.5
+ 877.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1774
+ TWIN
+
+
+
+ true
+ 948.5
+ 877
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1775
+ 11.0
+ 1011.5
+ 877.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1776
+ TWINLIFT
+
+
+
+ true
+ 1011.5
+ 877
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1777
+ 11.0
+ 890.0
+ 903.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1778
+ CLOSED
+
+
+
+ true
+ 890.0
+ 903
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1779
+ 11.0
+ 948.5
+ 903.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1780
+ OPEN
+
+
+
+ true
+ 948.5
+ 903
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1781
+ 11.0
+ 1011.5
+ 903.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1782
+ PINS UP
+
+
+
+ true
+ 1011.5
+ 903
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1783
+ 953.0
+ 919.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1784
+ LOAD
+
+
+
+ true
+ 875.0
+ 931
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1785
+ 0.0
+
+
+
+ true
+ 912.0
+ 947
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1786
+ t
+
+
+
+ true
+ 936.0
+ 951
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1787
+ LIFTS / TRIP
+
+
+
+ true
+ 990.5
+ 931
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1788
+ 116
+
+
+
+ true
+ 1026.0
+ 947
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1789
+ 953.0
+ 959.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1790
+ RPM
+
+
+
+ true
+ 872.5
+ 972
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1791
+ 1633
+
+
+
+ true
+ 928.0
+ 972
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1792
+ TEMP
+
+
+
+ true
+ 968.5
+ 972
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1793
+ 90
+
+
+
+ true
+ 1036.0
+ 972
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1794
+ STAB
+
+
+
+ true
+ 873.0
+ 991
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1795
+ 92
+
+
+
+ true
+ 936.0
+ 991
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1796
+ HGT
+
+
+
+ true
+ 965.5
+ 991
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1797
+ 1.6
+
+
+
+ true
+ 1032.0
+ 991
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1798
+ LEN
+
+
+
+ true
+ 870.5
+ 1010
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1799
+ 40.0
+
+
+
+ true
+ 928.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1800
+ L/H
+
+
+
+ true
+ 964.0
+ 1010
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1801
+ 29.3
+
+
+
+ true
+ 1028.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1802
+ FUEL
+
+
+
+ true
+ 873.0
+ 1028
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1803
+ 62.8
+
+
+
+ true
+ 1016.0
+ 1028
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1804
+ %
+
+
+
+ true
+ 1040.0
+ 1029
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1805
+ 3.0
+ 953.0
+ 1038.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1806
+ 3.0
+ 919.148
+ 1038.0
+ 3.0
+ 3.0
+ 57.148
+ 57.148
+ 0.0
+ 0.0
+
+
+
+
+
+ 1807
+ 6.0
+ 953.0
+ 1054.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1808
+ TWISTLOCK
+
+
+
+ true
+ 888
+ 1049
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1809
+ 3.5
+ 868.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1810
+ 3.5
+ 881.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1811
+ 3.5
+ 894.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1812
+ 3.5
+ 907.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1813
+ BOX / PIN
+
+
+
+ true
+ 952
+ 1049
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1814
+ 3.5
+ 932.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1815
+ 3.5
+ 945.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1816
+ 3.5
+ 958.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1817
+ 3.5
+ 971.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1818
+ GAP
+
+
+
+ true
+ 998
+ 1049
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1819
+ 3.5
+ 998.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1820
+ HOIST
+
+
+
+ true
+ 1032
+ 1049
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1821
+ 3.5
+ 1032.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1822
+ 8.0
+ 1165.0
+ 948.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1823
+ 8.0
+ 1165.0
+ 845.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1824
+ 2.0
+ 1066.0
+ 845.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1825
+ STRADDLE 29
+
+
+
+ true
+ 1127.0
+ 845
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1826
+ 4.0
+ 1213.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1827
+ F
+
+
+
+ true
+ 1213
+ 845
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1828
+ 4.0
+ 1243.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1829
+ R
+
+
+
+ true
+ 1243
+ 845
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1830
+
+
+
+
+
+
+ 1831
+ 11.0
+ 1102.0
+ 877.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1832
+ SINGLE
+
+
+
+ true
+ 1102.0
+ 877
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1833
+ 11.0
+ 1160.5
+ 877.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1834
+ TWIN
+
+
+
+ true
+ 1160.5
+ 877
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1835
+ 11.0
+ 1223.5
+ 877.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1836
+ TWINLIFT
+
+
+
+ true
+ 1223.5
+ 877
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1837
+ 11.0
+ 1102.0
+ 903.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1838
+ CLOSED
+
+
+
+ true
+ 1102.0
+ 903
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1839
+ 11.0
+ 1160.5
+ 903.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1840
+ OPEN
+
+
+
+ true
+ 1160.5
+ 903
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1841
+ 11.0
+ 1223.5
+ 903.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1842
+ PINS UP
+
+
+
+ true
+ 1223.5
+ 903
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1843
+ 1165.0
+ 919.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1844
+ LOAD
+
+
+
+ true
+ 1087.0
+ 931
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1845
+ 28.6
+
+
+
+ true
+ 1118.0
+ 947
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1846
+ t
+
+
+
+ true
+ 1148.0
+ 951
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1847
+ LIFTS / TRIP
+
+
+
+ true
+ 1202.5
+ 931
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1848
+ 102
+
+
+
+ true
+ 1238.0
+ 947
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1849
+ 1165.0
+ 959.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1850
+ RPM
+
+
+
+ true
+ 1084.5
+ 972
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1851
+ 1643
+
+
+
+ true
+ 1140.0
+ 972
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1852
+ TEMP
+
+
+
+ true
+ 1180.5
+ 972
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1853
+ 87
+
+
+
+ true
+ 1248.0
+ 972
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1854
+ STAB
+
+
+
+ true
+ 1085.0
+ 991
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1855
+ 83
+
+
+
+ true
+ 1148.0
+ 991
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1856
+ HGT
+
+
+
+ true
+ 1177.5
+ 991
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1857
+ 6.8
+
+
+
+ true
+ 1244.0
+ 991
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1858
+ LEN
+
+
+
+ true
+ 1082.5
+ 1010
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1859
+ 20.0
+
+
+
+ true
+ 1140.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1860
+ L/H
+
+
+
+ true
+ 1176.0
+ 1010
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1861
+ 28.6
+
+
+
+ true
+ 1240.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1862
+ FUEL
+
+
+
+ true
+ 1085.0
+ 1028
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1863
+ 26.1
+
+
+
+ true
+ 1228.0
+ 1028
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1864
+ %
+
+
+
+ true
+ 1252.0
+ 1029
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1865
+ 3.0
+ 1165.0
+ 1038.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1866
+ 3.0
+ 1097.751
+ 1038.0
+ 3.0
+ 3.0
+ 23.751
+ 23.751
+ 0.0
+ 0.0
+
+
+
+
+
+ 1867
+ 6.0
+ 1165.0
+ 1054.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1868
+ TWISTLOCK
+
+
+
+ true
+ 1100
+ 1049
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1869
+ 3.5
+ 1080.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1870
+ 3.5
+ 1093.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1871
+ 3.5
+ 1106.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1872
+ 3.5
+ 1119.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1873
+ BOX / PIN
+
+
+
+ true
+ 1164
+ 1049
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1874
+ 3.5
+ 1144.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1875
+ 3.5
+ 1157.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1876
+ 3.5
+ 1170.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1877
+ 3.5
+ 1183.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1878
+ GAP
+
+
+
+ true
+ 1210
+ 1049
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1879
+ 3.5
+ 1210.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1880
+ HOIST
+
+
+
+ true
+ 1244
+ 1049
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1881
+ 3.5
+ 1244.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1882
+ 8.0
+ 1377.0
+ 948.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1883
+ 8.0
+ 1377.0
+ 845.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1884
+ 2.0
+ 1278.0
+ 845.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1885
+ STRADDLE 30
+
+
+
+ true
+ 1339.0
+ 845
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1886
+ 4.0
+ 1425.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1887
+ F
+
+
+
+ true
+ 1425
+ 845
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1888
+ 4.0
+ 1455.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1889
+ R
+
+
+
+ true
+ 1455
+ 845
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1890
+
+
+
+
+
+
+ 1891
+ 11.0
+ 1314.0
+ 877.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1892
+ SINGLE
+
+
+
+ true
+ 1314.0
+ 877
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1893
+ 11.0
+ 1372.5
+ 877.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1894
+ TWIN
+
+
+
+ true
+ 1372.5
+ 877
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1895
+ 11.0
+ 1435.5
+ 877.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1896
+ TWINLIFT
+
+
+
+ true
+ 1435.5
+ 877
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1897
+ 11.0
+ 1314.0
+ 903.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1898
+ CLOSED
+
+
+
+ true
+ 1314.0
+ 903
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1899
+ 11.0
+ 1372.5
+ 903.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1900
+ OPEN
+
+
+
+ true
+ 1372.5
+ 903
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1901
+ 11.0
+ 1435.5
+ 903.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1902
+ PINS UP
+
+
+
+ true
+ 1435.5
+ 903
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1903
+ 1377.0
+ 919.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1904
+ LOAD
+
+
+
+ true
+ 1299.0
+ 931
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1905
+ 27.0
+
+
+
+ true
+ 1330.0
+ 947
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+ 1906
+ t
+
+
+
+ true
+ 1360.0
+ 951
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1907
+ LIFTS / TRIP
+
+
+
+ true
+ 1414.5
+ 931
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1908
+ 108
+
+
+
+ true
+ 1450.0
+ 947
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1909
+ 1377.0
+ 959.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1910
+ RPM
+
+
+
+ true
+ 1296.5
+ 972
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1911
+ 1161
+
+
+
+ true
+ 1352.0
+ 972
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1912
+ TEMP
+
+
+
+ true
+ 1392.5
+ 972
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1913
+ 90
+
+
+
+ true
+ 1460.0
+ 972
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1914
+ STAB
+
+
+
+ true
+ 1297.0
+ 991
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1915
+ 60
+
+
+
+ true
+ 1360.0
+ 991
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1916
+ HGT
+
+
+
+ true
+ 1389.5
+ 991
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1917
+ 4.4
+
+
+
+ true
+ 1456.0
+ 991
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1918
+ LEN
+
+
+
+ true
+ 1294.5
+ 1010
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1919
+ 20.0
+
+
+
+ true
+ 1352.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1920
+ L/H
+
+
+
+ true
+ 1388.0
+ 1010
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1921
+ 28.7
+
+
+
+ true
+ 1452.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1922
+ FUEL
+
+
+
+ true
+ 1297.0
+ 1028
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1923
+ 64.8
+
+
+
+ true
+ 1440.0
+ 1028
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1924
+ %
+
+
+
+ true
+ 1464.0
+ 1029
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1925
+ 3.0
+ 1377.0
+ 1038.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1926
+ 3.0
+ 1344.968
+ 1038.0
+ 3.0
+ 3.0
+ 58.968
+ 58.968
+ 0.0
+ 0.0
+
+
+
+
+
+ 1927
+ 6.0
+ 1377.0
+ 1054.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1928
+ TWISTLOCK
+
+
+
+ true
+ 1312
+ 1049
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1929
+ 3.5
+ 1292.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1930
+ 3.5
+ 1305.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1931
+ 3.5
+ 1318.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1932
+ 3.5
+ 1331.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1933
+ BOX / PIN
+
+
+
+ true
+ 1376
+ 1049
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1934
+ 3.5
+ 1356.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1935
+ 3.5
+ 1369.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1936
+ 3.5
+ 1382.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1937
+ 3.5
+ 1395.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1938
+ GAP
+
+
+
+ true
+ 1422
+ 1049
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1939
+ 3.5
+ 1422.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1940
+ HOIST
+
+
+
+ true
+ 1456
+ 1049
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1941
+ 3.5
+ 1456.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1942
+ 8.0
+ 1589.0
+ 948.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1943
+ 8.0
+ 1589.0
+ 845.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1944
+ 2.0
+ 1490.0
+ 845.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1945
+ STRADDLE 31
+
+
+
+ true
+ 1551.0
+ 845
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 1946
+ 4.0
+ 1637.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1947
+ F
+
+
+
+ true
+ 1637
+ 845
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 1948
+ 4.0
+ 1667.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1949
+ R
+
+
+
+ true
+ 1667
+ 845
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 1950
+
+
+
+
+
+
+ 1951
+ 11.0
+ 1526.0
+ 877.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1952
+ SINGLE
+
+
+
+ true
+ 1526.0
+ 877
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 1953
+ 11.0
+ 1584.5
+ 877.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1954
+ TWIN
+
+
+
+ true
+ 1584.5
+ 877
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 1955
+ 11.0
+ 1647.5
+ 877.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1956
+ TWINLIFT
+
+
+
+ true
+ 1647.5
+ 877
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 1957
+ 11.0
+ 1526.0
+ 903.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1958
+ CLOSED
+
+
+
+ true
+ 1526.0
+ 903
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 1959
+ 11.0
+ 1584.5
+ 903.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1960
+ OPEN
+
+
+
+ true
+ 1584.5
+ 903
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 1961
+ 11.0
+ 1647.5
+ 903.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1962
+ PINS UP
+
+
+
+ true
+ 1647.5
+ 903
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 1963
+ 1589.0
+ 919.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1964
+ LOAD
+
+
+
+ true
+ 1511.0
+ 931
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 1965
+ 0.0
+
+
+
+ true
+ 1548.0
+ 947
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+ 1966
+ t
+
+
+
+ true
+ 1572.0
+ 951
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 1967
+ LIFTS / TRIP
+
+
+
+ true
+ 1626.5
+ 931
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 1968
+ 67
+
+
+
+ true
+ 1668.0
+ 947
+ 11.5
+ 11.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1969
+ 1589.0
+ 959.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1970
+ RPM
+
+
+
+ true
+ 1508.5
+ 972
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 1971
+ 661
+
+
+
+ true
+ 1568.0
+ 972
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1972
+ TEMP
+
+
+
+ true
+ 1604.5
+ 972
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 1973
+ 68
+
+
+
+ true
+ 1672.0
+ 972
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1974
+ STAB
+
+
+
+ true
+ 1509.0
+ 991
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1975
+ 63
+
+
+
+ true
+ 1572.0
+ 991
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1976
+ HGT
+
+
+
+ true
+ 1601.5
+ 991
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 1977
+ 0.3
+
+
+
+ true
+ 1668.0
+ 991
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1978
+ LEN
+
+
+
+ true
+ 1506.5
+ 1010
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1979
+ 20.0
+
+
+
+ true
+ 1564.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1980
+ L/H
+
+
+
+ true
+ 1600.0
+ 1010
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 1981
+ 8.2
+
+
+
+ true
+ 1668.0
+ 1010
+ 7.5
+ 7.5
+ 12.0
+ 12.0
+ 0.0
+ 0.0
+
+
+ 1982
+ FUEL
+
+
+
+ true
+ 1509.0
+ 1028
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 1983
+ 73.7
+
+
+
+ true
+ 1652.0
+ 1028
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+ 1984
+ %
+
+
+
+ true
+ 1676.0
+ 1029
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 1985
+ 3.0
+ 1589.0
+ 1038.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1986
+ 3.0
+ 1565.067
+ 1038.0
+ 3.0
+ 3.0
+ 67.067
+ 67.067
+ 0.0
+ 0.0
+
+
+
+
+
+ 1987
+ 6.0
+ 1589.0
+ 1054.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 1988
+ TWISTLOCK
+
+
+
+ true
+ 1524
+ 1049
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 1989
+ 3.5
+ 1504.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1990
+ 3.5
+ 1517.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1991
+ 3.5
+ 1530.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1992
+ 3.5
+ 1543.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1993
+ BOX / PIN
+
+
+
+ true
+ 1588
+ 1049
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 1994
+ 3.5
+ 1568.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1995
+ 3.5
+ 1581.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1996
+ 3.5
+ 1594.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1997
+ 3.5
+ 1607.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 1998
+ GAP
+
+
+
+ true
+ 1634
+ 1049
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 1999
+ 3.5
+ 1634.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 2000
+ HOIST
+
+
+
+ true
+ 1668
+ 1049
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 2001
+ 3.5
+ 1668.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+ 2002
+ 8.0
+ 1801.0
+ 948.0
+ 120.0
+ 120.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 2003
+ 8.0
+ 1801.0
+ 845.0
+ 17.0
+ 17.0
+ 101.0
+ 101.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 2004
+ 2.0
+ 1702.0
+ 845.0
+ 10.0
+ 10.0
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2005
+ STRADDLE 32
+
+
+
+ true
+ 1763.0
+ 845
+ 10.5
+ 10.5
+ 49.0
+ 49.0
+ 0.0
+ 0.0
+
+
+ 2006
+ 4.0
+ 1849.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2007
+ F
+
+
+
+ true
+ 1849
+ 845
+ 7.5
+ 7.5
+ 3.0
+ 3.0
+ 0.0
+ 0.0
+
+
+ 2008
+ 4.0
+ 1879.0
+ 845.0
+ 8.0
+ 8.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2009
+ R
+
+
+
+ true
+ 1879
+ 845
+ 7.5
+ 7.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+ 2010
+
+
+
+
+
+
+ 2011
+ 11.0
+ 1738.0
+ 877.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2012
+ SINGLE
+
+
+
+ true
+ 1738.0
+ 877
+ 7.5
+ 7.5
+ 19.0
+ 19.0
+ 0.0
+ 0.0
+
+
+ 2013
+ 11.0
+ 1796.5
+ 877.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2014
+ TWIN
+
+
+
+ true
+ 1796.5
+ 877
+ 7.5
+ 7.5
+ 14.5
+ 14.5
+ 0.0
+ 0.0
+
+
+ 2015
+ 11.0
+ 1859.5
+ 877.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2016
+ TWINLIFT
+
+
+
+ true
+ 1859.5
+ 877
+ 7.5
+ 7.5
+ 25.0
+ 25.0
+ 0.0
+ 0.0
+
+
+ 2017
+ 11.0
+ 1738.0
+ 903.0
+ 11.0
+ 11.0
+ 30.0
+ 30.0
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2018
+ CLOSED
+
+
+
+ true
+ 1738.0
+ 903
+ 7.5
+ 7.5
+ 20.5
+ 20.5
+ 0.0
+ 0.0
+
+
+ 2019
+ 11.0
+ 1796.5
+ 903.0
+ 11.0
+ 11.0
+ 24.5
+ 24.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2020
+ OPEN
+
+
+
+ true
+ 1796.5
+ 903
+ 7.5
+ 7.5
+ 15.0
+ 15.0
+ 0.0
+ 0.0
+
+
+ 2021
+ 11.0
+ 1859.5
+ 903.0
+ 11.0
+ 11.0
+ 34.5
+ 34.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2022
+ PINS UP
+
+
+
+ true
+ 1859.5
+ 903
+ 7.5
+ 7.5
+ 21.5
+ 21.5
+ 0.0
+ 0.0
+
+
+ 2023
+ 1801.0
+ 919.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 2024
+ LOAD
+
+
+
+ true
+ 1723.0
+ 931
+ 7.0
+ 7.0
+ 13.0
+ 13.0
+ 0.0
+ 0.0
+
+
+ 2025
+ 29.9
+
+
+
+ true
+ 1754.0
+ 947
+ 11.5
+ 11.5
+ 24.0
+ 24.0
+ 0.0
+ 0.0
+
+
+
+ 2026
+ t
+
+
+
+ true
+ 1784.0
+ 951
+ 7.5
+ 7.5
+ 2.0
+ 2.0
+ 0.0
+ 0.0
+
+
+ 2027
+ LIFTS / TRIP
+
+
+
+ true
+ 1838.5
+ 931
+ 7.0
+ 7.0
+ 26.5
+ 26.5
+ 0.0
+ 0.0
+
+
+ 2028
+ 107
+
+
+
+ true
+ 1874.0
+ 947
+ 11.5
+ 11.5
+ 18.0
+ 18.0
+ 0.0
+ 0.0
+
+
+
+ 2029
+ 1801.0
+ 959.5
+ 0.5
+ 0.5
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 2030
+ RPM
+
+
+
+ true
+ 1720.5
+ 972
+ 7.0
+ 7.0
+ 10.5
+ 10.5
+ 0.0
+ 0.0
+
+
+ 2031
+ 1540
+
+
+
+ true
+ 1776.0
+ 972
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+
+ 2032
+ TEMP
+
+
+
+ true
+ 1816.5
+ 972
+ 7.0
+ 7.0
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 2033
+ 85
+
+
+
+ true
+ 1884.0
+ 972
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+
+ 2034
+ STAB
+
+
+
+ true
+ 1721.0
+ 991
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 2035
+ 94
+
+
+
+ true
+ 1784.0
+ 991
+ 7.5
+ 7.5
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+
+ 2036
+ HGT
+
+
+
+ true
+ 1813.5
+ 991
+ 7.0
+ 7.0
+ 9.5
+ 9.5
+ 0.0
+ 0.0
+
+
+ 2037
+ 12.4
+
+
+
+ true
+ 1876.0
+ 991
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+
+ 2038
+ LEN
+
+
+
+ true
+ 1718.5
+ 1010
+ 7.0
+ 7.0
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 2039
+ 40.0
+
+
+
+ true
+ 1776.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+
+ 2040
+ L/H
+
+
+
+ true
+ 1812.0
+ 1010
+ 7.0
+ 7.0
+ 8.0
+ 8.0
+ 0.0
+ 0.0
+
+
+ 2041
+ 33.2
+
+
+
+ true
+ 1876.0
+ 1010
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+
+ 2042
+ FUEL
+
+
+
+ true
+ 1721.0
+ 1028
+ 7.0
+ 7.0
+ 11.0
+ 11.0
+ 0.0
+ 0.0
+
+
+ 2043
+ 63.5
+
+
+
+ true
+ 1864.0
+ 1028
+ 7.5
+ 7.5
+ 16.0
+ 16.0
+ 0.0
+ 0.0
+
+
+
+ 2044
+ %
+
+
+
+ true
+ 1888.0
+ 1029
+ 7.0
+ 7.0
+ 4.0
+ 4.0
+ 0.0
+ 0.0
+
+
+ 2045
+ 3.0
+ 1801.0
+ 1038.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 2046
+ Fuel level %
+ 1801.0
+ 1038.0
+ 3.0
+ 3.0
+ 91.0
+ 91.0
+ 0.0
+ 0.0
+
+ 100.0
+
+
+
+ 2047
+ 6.0
+ 1801.0
+ 1054.5
+ 12.5
+ 12.5
+ 99.0
+ 99.0
+ 0.0
+ 0.0
+
+
+
+
+
+ 2048
+ TWISTLOCK
+
+
+
+ true
+ 1736
+ 1049
+ 6.5
+ 6.5
+ 23.5
+ 23.5
+ 0.0
+ 0.0
+
+
+ 2049
+ 3.5
+ 1716.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2050
+ 3.5
+ 1729.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2051
+ 3.5
+ 1742.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2052
+ 3.5
+ 1755.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2053
+ BOX / PIN
+
+
+
+ true
+ 1800
+ 1049
+ 6.5
+ 6.5
+ 19.5
+ 19.5
+ 0.0
+ 0.0
+
+
+ 2054
+ 3.5
+ 1780.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2055
+ 3.5
+ 1793.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2056
+ 3.5
+ 1806.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2057
+ 3.5
+ 1819.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2058
+ GAP
+
+
+
+ true
+ 1846
+ 1049
+ 6.5
+ 6.5
+ 8.5
+ 8.5
+ 0.0
+ 0.0
+
+
+ 2059
+ 3.5
+ 1846.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 2060
+ HOIST
+
+
+
+ true
+ 1880
+ 1049
+ 6.5
+ 6.5
+ 12.5
+ 12.5
+ 0.0
+ 0.0
+
+
+ 2061
+ 3.5
+ 1880.0
+ 1060.0
+ 3.5
+ 3.5
+ 3.5
+ 3.5
+ 0.0
+ 0.0
+
+
+
+
+
+
+
diff --git a/99-reference/ciserver-hmi-deployment/displays/Straddle_Trends.xml b/99-reference/ciserver-hmi-deployment/displays/Straddle_Trends.xml
new file mode 100644
index 0000000..2f9adb6
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/displays/Straddle_Trends.xml
@@ -0,0 +1,21848 @@
+
+
+
+
+
+ 0.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Straddle_Overview
+
+
+
+
+
+
+
+ Straddle_Maintenance
+
+
+
+
+
+
+
+ Straddle_Location
+
+
+
+
+
+
+
+ Straddle_Detail
+
+
+
+
+
+
+
+ Straddle_Alarms
+
+
+
+
+
+
+
+ Straddle_Trends_Light
+
+
+
+
+
+
+
+ Straddle_Trends_Grey
+
+
+
+
+
+
+
+
+ Signal_Board
+ FixedPopup
+ default
+
+
+
+
+
+
+ Straddle Trends
+ 66
+
+
+
+
+
+
+
+
+
+
+ PATRICK
+ true
+
+ 700
+ false
+ false
+
+
+ AOG_SIL
+ Stroke Indicator Limit
+
+
+
+
+
+
+
+ AOG_SIO
+ Stroke Indicator Outline
+
+
+
+
+
+
+
+ AOG_SEO
+ Stroke Equipment Outline
+
+
+
+
+
+
+
+ AOG_SIS
+ Stroke Indicator Signal
+
+
+
+
+
+
+
+ AOG_CAL
+ Color Alarm Low
+
+
+
+
+
+
+
+ AOG_CAM
+ Color Alarm Medium
+
+
+
+
+
+
+
+ AOG_CER
+ Color Equipment Running
+
+
+
+
+
+
+
+ AOG_CAO
+ Color Alarm Off
+
+
+
+
+
+
+
+ AOG_CAD
+ Color Alarm Diagnostic
+
+
+
+
+
+
+
+ AOG_FT4
+ Font Text 4
+
+
+
+
+
+
+
+ AOG_CIL
+ Color Indicator Limit
+
+
+
+
+
+
+
+ AOG_CIN
+ Color Indicator Normal
+
+
+
+
+
+
+
+ AOG_CIO
+ Color Indicator Outline
+
+
+
+
+
+
+
+ AOG_CAH
+ Color Alarm High
+
+
+
+
+
+
+
+ AOG_CEO
+ Color Equipment Off
+
+
+
+
+
+
+
+ AOG_CIS
+ Color Indicator Signal
+
+
+
+
+
+
+
+ AOG_CT1
+ Color Text 1
+
+
+
+
+
+
+
+ AOG_ShowTagName
+ Show Tag Name
+
+
+ true
+
+
+
+
+ AOG_CT2
+ Color Text 2
+
+
+
+
+
+
+
+ AOG_CT3
+ Color Text 3
+
+
+
+
+
+
+
+ AOG_CT4
+ Color Text 4
+
+
+
+
+
+
+
+ AOG_CSS
+ Color Selector Selected
+
+
+
+
+
+
+
+ AOG_CSI
+ Color Selector Indicator
+
+
+
+
+
+
+
+ AOG_CFS
+ Color Fluid Sub
+
+
+
+
+
+
+
+ AOG_CFM
+ Color Fluid Main
+
+
+
+
+
+
+
+ AOG_SGS
+ Stroke Gas Sub
+
+
+
+
+
+
+
+ AOG_CDB
+ Color Display Background
+
+
+
+
+
+
+
+ AOG_CLL
+ Color Line Leader
+
+
+
+
+
+
+
+ AOG_CLB
+ Color Line Border
+
+
+
+
+
+
+
+ AOG_SGM
+ Stroke Gas Main line
+
+
+
+
+
+
+
+ AOG_CLD
+ Color Line Derived sub line
+
+
+
+
+
+
+
+ AOG_CLE
+ Color Line Equipment
+
+
+
+
+
+
+
+ AOG_CGS
+ Color Gas Sub line
+
+
+
+
+
+
+
+ AOG_SSS
+ Stroke Selector Selected
+
+
+
+
+
+
+
+ AOG_SSI
+ Stroke Selector Indicator
+
+
+
+
+
+
+
+ AOG_CGM
+ Color Gas Main line
+
+
+
+
+
+
+
+ AOG_FT1
+ Font Text 1
+
+
+
+
+
+
+
+ AOG_FT2
+ Font Text 2
+
+
+
+
+
+
+
+ AOG_FT3
+ Font Text 3
+
+
+
+
+
+
+
+ AOG_SLP
+ Stroke Line Product
+
+
+
+
+
+
+
+ AOG_CMC
+ Color Manual Cotrol
+
+
+
+
+
+
+
+ AOG_SLS
+ Stroke Line Signal
+
+
+
+
+
+
+
+ AOG_CIB
+ Color Indicator Background
+
+
+
+
+
+
+
+ AOG_SLL
+ Stroke Line Leader
+
+
+
+
+
+
+
+ AOG_CLP
+ Color Line Product
+
+
+
+
+
+
+
+ AOG_SLB
+ Stroke Line Border
+
+
+
+
+
+
+
+ AOG_CLS
+ Color Line Signal
+
+
+
+
+
+
+
+ AOG_SLD
+ Stroke Line Derived sub line
+
+
+
+
+
+
+
+ AOG_SLE
+ Stroke Line Equipment
+
+
+
+
+
+
+
+ AOG_CDN
+ Color Display Neighbor
+
+
+
+
+
+
+
+ AOG_CENR
+ Color Equipment Not Running
+
+
+
+
+
+
+
+ AOG_OnText
+
+
+ ON
+
+
+
+
+ AOG_OffText
+
+
+ OFF
+
+
+
+
+ AOG_ET1
+ Engineering Units of Temperature
+
+
+ Deg.C
+
+
+
+
+ AOG_ET2
+ Engineering Unit of Temperature
+
+
+ Deg.F
+
+
+
+
+ AOG_EP1
+ Engineering unit of Pressure
+
+
+ Pa
+
+
+
+
+ AOG_CEB
+ Color Equipment Background
+
+
+
+
+
+
+
+ AOG_EL1
+
+
+ m
+
+
+
+
+ AOG_EF1
+
+
+ m3/s
+
+
+
+
+ AOG_BlinkOnNotAcknowledged
+
+
+ true
+
+
+
+
+ AOG_COC
+ Color Offline Condition
+
+
+
+
+
+
+ 2
+ Overview
+ Always shown
+ true
+ 10.0
+
+
+ 3
+ Rough
+ Shown when viewing a large area
+ true
+ 25.0
+
+
+ 4
+ Standard
+ Shown when using the default view setting
+ true
+ 100.0
+
+
+ 5
+ Detail
+ Shown only when viewing a small area
+ true
+ 400.0
+
+
+ 6
+ Intricacies
+ Shown only when viewing a very small area
+ true
+ 1000.0
+
+
+
+
+
+
+ 1
+ AOG_CDB
+
+
+
+ 1587
+ Chrome
+
+ 12
+
+ 101
+ 960.000
+ 540.000
+ 540.000
+ 540.000
+ 960.000
+ 960.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 102
+ 100.000
+ 540.000
+ 540.000
+ 540.000
+ 100.000
+ 100.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 103
+ 200.500
+ 540.000
+ 540.000
+ 540.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 104
+
+
+
+ 105
+ STRADDLE TRENDS
+
+
+
+ true
+ 363.500
+ 34.000
+ 22.000
+ 22.000
+ 147.500
+ 147.500
+ 0.0
+ 0.0
+
+
+ 106
+ HISTORICAL PROCESS DATA · STRADDLE 32
+
+
+
+ true
+ 350.492
+ 58.000
+ 9.500
+ 9.500
+ 134.492
+ 134.492
+ 0.0
+ 0.0
+
+
+ 107
+ 5.0
+ 1867.000
+ 34.000
+ 12.000
+ 12.000
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 108
+ 4.0
+ 1854.000
+ 34.000
+ 4.000
+ 4.000
+ 4.000
+ 4.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 109
+ LIVE
+
+
+
+ true
+ 1875.000
+ 34.000
+ 8.500
+ 8.500
+ 11.000
+ 11.000
+ 0.0
+ 0.0
+
+
+ 110
+ 5.0
+ 1779.500
+ 34.000
+ 12.000
+ 12.000
+ 48.500
+ 48.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 111
+ 4.0
+ 1747.000
+ 34.000
+ 4.000
+ 4.000
+ 4.000
+ 4.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 112
+ SAMPLE 1 s
+
+
+
+ true
+ 1787.500
+ 34.000
+ 8.500
+ 8.500
+ 30.500
+ 30.500
+ 0.0
+ 0.0
+
+
+ 1588
+ Navigation
+
+ 32
+
+ 113
+ NAVIGATION
+
+
+
+ true
+ 49.000
+ 104.000
+ 7.000
+ 7.000
+ 29.000
+ 29.000
+ 0.0
+ 0.0
+
+
+ 114
+ 6.0
+ 100.000
+ 146.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 115
+ STRADDLE OVERVIEW
+
+
+
+ true
+ 98.500
+ 146.000
+ 10.000
+ 10.000
+ 68.500
+ 68.500
+ 0.0
+ 0.0
+
+
+ 116
+
+
+
+
+
+
+ 117
+ 6.0
+ 100.000
+ 196.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 118
+ MAINTENANCE
+
+
+
+ true
+ 77.500
+ 196.000
+ 10.000
+ 10.000
+ 47.500
+ 47.500
+ 0.0
+ 0.0
+
+
+ 119
+
+
+
+
+
+
+ 120
+ 6.0
+ 100.000
+ 246.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 121
+ LIVE LOCATION
+
+
+
+ true
+ 79.492
+ 246.000
+ 10.000
+ 10.000
+ 49.492
+ 49.492
+ 0.0
+ 0.0
+
+
+ 122
+
+
+
+
+
+
+ 123
+ 6.0
+ 100.000
+ 296.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 124
+ STRADDLE DETAIL
+
+
+
+ true
+ 86.492
+ 296.000
+ 10.000
+ 10.000
+ 56.492
+ 56.492
+ 0.0
+ 0.0
+
+
+ 125
+
+
+
+
+
+
+ 126
+ 6.0
+ 100.000
+ 346.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 127
+ ALARMS
+
+
+
+ true
+ 56.500
+ 346.000
+ 10.000
+ 10.000
+ 26.500
+ 26.500
+ 0.0
+ 0.0
+
+
+ 128
+
+
+
+
+
+
+ 129
+ 6.0
+ 100.000
+ 396.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 130
+ 1.5
+ 13.500
+ 396.000
+ 12.000
+ 12.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 131
+ TRENDS
+
+
+
+ true
+ 56.500
+ 396.000
+ 10.000
+ 10.000
+ 26.500
+ 26.500
+ 0.0
+ 0.0
+
+
+ 132
+ 6.0
+ 100.000
+ 446.000
+ 22.000
+ 22.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 133
+ SIGNAL BOARD
+
+
+
+ true
+ 78.500
+ 446.000
+ 10.000
+ 10.000
+ 48.500
+ 48.500
+ 0.0
+ 0.0
+
+
+ 1595
+
+
+
+
+
+
+ 134
+ APPEARANCE
+
+
+
+ true
+ 49.500
+ 966.000
+ 7.000
+ 7.000
+ 29.500
+ 29.500
+ 0.0
+ 0.0
+
+
+ 135
+ 8.0
+ 100.000
+ 1000.000
+ 18.000
+ 18.000
+ 88.000
+ 88.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 136
+ 6.0
+ 42.000
+ 1000.000
+ 15.000
+ 15.000
+ 27.000
+ 27.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 137
+ DARK
+
+
+
+ true
+ 42.000
+ 1000.000
+ 7.500
+ 7.500
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 138
+ 6.0
+ 100.000
+ 1000.000
+ 15.000
+ 15.000
+ 27.000
+ 27.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 139
+ LIGHT
+
+
+
+ true
+ 100.000
+ 1000.000
+ 7.500
+ 7.500
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 140
+
+
+
+
+
+
+ 141
+ 6.0
+ 158.000
+ 1000.000
+ 15.000
+ 15.000
+ 27.000
+ 27.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 142
+ GREY
+
+
+
+ true
+ 158.000
+ 1000.000
+ 7.500
+ 7.500
+ 13.500
+ 13.500
+ 0.0
+ 0.0
+
+
+ 143
+
+
+
+
+
+
+ 144
+ YOKOGAWA CI SERVER
+
+
+
+ true
+ 100.000
+ 1044.000
+ 7.000
+ 7.000
+ 52.000
+ 52.000
+ 0.0
+ 0.0
+
+
+ 1589
+ Controls
+
+ 22
+
+ 145
+ 4.0
+ 249.000
+ 111.000
+ 15.000
+ 15.000
+ 33.000
+ 33.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 146
+ 15 MIN
+
+
+
+ true
+ 249.000
+ 111.000
+ 8.500
+ 8.500
+ 19.000
+ 19.000
+ 0.0
+ 0.0
+
+
+ 147
+ 4.0
+ 313.000
+ 111.000
+ 15.000
+ 15.000
+ 23.000
+ 23.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 148
+ 1 H
+
+
+
+ true
+ 313.000
+ 111.000
+ 8.500
+ 8.500
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 149
+ 4.0
+ 367.000
+ 111.000
+ 15.000
+ 15.000
+ 23.000
+ 23.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 150
+ 8 H
+
+
+
+ true
+ 367.000
+ 111.000
+ 8.500
+ 8.500
+ 9.500
+ 9.500
+ 0.0
+ 0.0
+
+
+ 151
+ 4.0
+ 424.000
+ 111.000
+ 15.000
+ 15.000
+ 26.000
+ 26.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 152
+ 24 H
+
+
+
+ true
+ 424.000
+ 111.000
+ 8.500
+ 8.500
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 153
+ 4.0
+ 480.500
+ 111.000
+ 15.000
+ 15.000
+ 22.500
+ 22.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 154
+ 7 D
+
+
+
+ true
+ 480.500
+ 111.000
+ 8.500
+ 8.500
+ 8.500
+ 8.500
+ 0.0
+ 0.0
+
+
+ 155
+ 4.0
+ 536.500
+ 111.000
+ 15.000
+ 15.000
+ 25.500
+ 25.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 156
+ 30 D
+
+
+
+ true
+ 536.500
+ 111.000
+ 8.500
+ 8.500
+ 11.500
+ 11.500
+ 0.0
+ 0.0
+
+
+ 157
+ 4.0
+ 609.000
+ 111.000
+ 15.000
+ 15.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 158
+ ◄
+
+
+
+ true
+ 609.000
+ 111.000
+ 8.500
+ 8.500
+ 5.000
+ 5.000
+ 0.0
+ 0.0
+
+
+ 159
+ 4.0
+ 647.000
+ 111.000
+ 15.000
+ 15.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 160
+ ►
+
+
+
+ true
+ 647.000
+ 111.000
+ 8.500
+ 8.500
+ 5.000
+ 5.000
+ 0.0
+ 0.0
+
+
+ 161
+ 4.0
+ 697.000
+ 111.000
+ 15.000
+ 15.000
+ 27.000
+ 27.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 162
+ NOW
+
+
+
+ true
+ 697.000
+ 111.000
+ 8.500
+ 8.500
+ 14.500
+ 14.500
+ 0.0
+ 0.0
+
+
+ 163
+ 4.0
+ 1648.000
+ 111.000
+ 15.000
+ 15.000
+ 248.000
+ 248.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 164
+ CURSOR
+
+
+
+ true
+ 1435.000
+ 111.000
+ 7.000
+ 7.000
+ 19.000
+ 19.000
+ 0.0
+ 0.0
+
+
+ 165
+ 2026-08-03 06:24:00
+
+
+
+ true
+ 1548.000
+ 111.000
+ 7.000
+ 7.000
+ 70.000
+ 70.000
+ 0.0
+ 0.0
+
+
+ 166
+ RANGE 23:41 → 07:41
+
+
+
+ true
+ 1770.000
+ 111.000
+ 6.500
+ 6.500
+ 70.000
+ 70.000
+ 0.0
+ 0.0
+
+
+ 1590
+ Trend primary
+
+ 868
+
+ 167
+ 4.0
+ 888.000
+ 394.000
+ 244.000
+ 244.000
+ 672.000
+ 672.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 168
+ 888.000
+ 165.000
+ 15.000
+ 15.000
+ 672.000
+ 672.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 169
+ 217.500
+ 165.000
+ 15.000
+ 15.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 170
+ PRIMARY TREND · HOIST AND DRIVE
+
+
+
+ true
+ 343.500
+ 165.000
+ 8.500
+ 8.500
+ 109.500
+ 109.500
+ 0.0
+ 0.0
+
+
+ 171
+ 08 H WINDOW · AVERAGED 30 s
+
+
+
+ true
+ 1458.000
+ 165.000
+ 7.500
+ 7.500
+ 86.000
+ 86.000
+ 0.0
+ 0.0
+
+
+ 172
+ 908.000
+ 394.000
+ 198.000
+ 198.000
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 173
+ 908.000
+ 196.500
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 174
+ 100
+
+
+
+ true
+ 267.000
+ 196.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 175
+ 908.000
+ 275.700
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 176
+ 80
+
+
+
+ true
+ 270.000
+ 275.200
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 177
+ 908.000
+ 354.900
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 178
+ 60
+
+
+
+ true
+ 270.000
+ 354.400
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 179
+ 908.000
+ 434.100
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 180
+ 40
+
+
+
+ true
+ 270.000
+ 433.600
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 181
+ 908.000
+ 513.300
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 182
+ 20
+
+
+
+ true
+ 270.000
+ 512.800
+ 6.000
+ 6.000
+ 6.000
+ 6.000
+ 0.0
+ 0.0
+
+
+ 183
+ 908.000
+ 592.500
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 184
+ 0
+
+
+
+ true
+ 273.000
+ 592.000
+ 6.000
+ 6.000
+ 3.000
+ 3.000
+ 0.0
+ 0.0
+
+
+ 185
+ 286.500
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 186
+ 23:41
+
+
+
+ true
+ 286.000
+ 606.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 187
+ 442.000
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 188
+ 00:41
+
+
+
+ true
+ 441.500
+ 606.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 189
+ 597.500
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 190
+ 01:41
+
+
+
+ true
+ 597.000
+ 606.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 191
+ 753.000
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 192
+ 02:41
+
+
+
+ true
+ 752.500
+ 606.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 193
+ 908.500
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 194
+ 03:41
+
+
+
+ true
+ 908.000
+ 606.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 195
+ 1064.000
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 196
+ 04:41
+
+
+
+ true
+ 1063.500
+ 606.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 197
+ 1219.500
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 198
+ 05:41
+
+
+
+ true
+ 1219.000
+ 606.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 199
+ 1375.000
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 200
+ 06:41
+
+
+
+ true
+ 1374.500
+ 606.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 201
+ 1530.500
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 202
+ 07:41
+
+
+
+ true
+ 1530.000
+ 606.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 203
+ %
+
+
+
+ true
+ 244.000
+ 184.000
+ 7.000
+ 7.000
+ 4.000
+ 4.000
+ 0.0
+ 0.0
+
+
+ 204
+ 292.027
+ 371.894
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 205
+ 296.454
+ 370.031
+ 1.863
+ 1.863
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 206
+ 302.481
+ 368.168
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 207
+ 306.908
+ 366.020
+ 2.148
+ 2.148
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 208
+ 312.934
+ 363.872
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 209
+ 317.361
+ 357.642
+ 6.230
+ 6.230
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 210
+ 323.388
+ 351.413
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 211
+ 327.815
+ 341.901
+ 9.512
+ 9.512
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 212
+ 333.842
+ 332.389
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 213
+ 338.269
+ 333.829
+ 1.440
+ 1.440
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 214
+ 344.296
+ 335.270
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 215
+ 348.723
+ 326.771
+ 8.498
+ 8.498
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 216
+ 354.750
+ 318.273
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 217
+ 359.176
+ 310.385
+ 7.888
+ 7.888
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 218
+ 365.203
+ 302.498
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 219
+ 369.630
+ 303.817
+ 1.320
+ 1.320
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 220
+ 375.657
+ 305.137
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 221
+ 380.084
+ 306.013
+ 0.875
+ 0.875
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 222
+ 386.111
+ 306.888
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 223
+ 390.538
+ 308.298
+ 1.410
+ 1.410
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 224
+ 396.565
+ 309.708
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 225
+ 400.992
+ 306.643
+ 3.065
+ 3.065
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 226
+ 407.018
+ 303.577
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 227
+ 411.445
+ 299.615
+ 3.963
+ 3.963
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 228
+ 417.472
+ 295.652
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 229
+ 421.899
+ 293.681
+ 1.971
+ 1.971
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 230
+ 427.926
+ 291.710
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 231
+ 432.353
+ 299.444
+ 7.734
+ 7.734
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 232
+ 438.380
+ 307.178
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 233
+ 442.807
+ 315.613
+ 8.435
+ 8.435
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 234
+ 448.834
+ 324.048
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 235
+ 453.261
+ 327.942
+ 3.894
+ 3.894
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 236
+ 459.287
+ 331.836
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 237
+ 463.714
+ 332.708
+ 0.873
+ 0.873
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 238
+ 469.741
+ 333.581
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 239
+ 474.168
+ 336.416
+ 2.835
+ 2.835
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 240
+ 480.195
+ 339.250
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 241
+ 484.622
+ 346.561
+ 7.311
+ 7.311
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 242
+ 490.649
+ 353.873
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 243
+ 495.076
+ 363.939
+ 10.066
+ 10.066
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 244
+ 501.103
+ 374.005
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 245
+ 505.529
+ 377.510
+ 3.505
+ 3.505
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 246
+ 511.556
+ 381.015
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 247
+ 515.983
+ 389.315
+ 8.300
+ 8.300
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 248
+ 522.010
+ 397.615
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 249
+ 532.464
+ 396.079
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 250
+ 536.891
+ 399.261
+ 3.183
+ 3.183
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 251
+ 542.918
+ 402.444
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 252
+ 547.345
+ 406.531
+ 4.086
+ 4.086
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 253
+ 553.371
+ 410.617
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 254
+ 557.798
+ 408.110
+ 2.507
+ 2.507
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 255
+ 563.825
+ 405.604
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 256
+ 568.252
+ 407.447
+ 1.844
+ 1.844
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 257
+ 574.279
+ 409.291
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 258
+ 578.706
+ 407.606
+ 1.685
+ 1.685
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 259
+ 584.733
+ 405.921
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 260
+ 589.160
+ 407.754
+ 1.833
+ 1.833
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 261
+ 595.187
+ 409.588
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 262
+ 599.613
+ 411.199
+ 1.611
+ 1.611
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 263
+ 605.640
+ 412.810
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 264
+ 610.067
+ 414.155
+ 1.345
+ 1.345
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 265
+ 616.094
+ 415.500
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 266
+ 620.521
+ 411.149
+ 4.351
+ 4.351
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 267
+ 626.548
+ 406.798
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 268
+ 630.975
+ 409.901
+ 3.103
+ 3.103
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 269
+ 637.002
+ 413.005
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 270
+ 641.429
+ 407.209
+ 5.796
+ 5.796
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 271
+ 647.455
+ 401.414
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 272
+ 651.882
+ 396.239
+ 5.175
+ 5.175
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 273
+ 657.909
+ 391.064
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 274
+ 662.336
+ 386.578
+ 4.486
+ 4.486
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 275
+ 668.363
+ 382.091
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 276
+ 672.790
+ 383.442
+ 1.350
+ 1.350
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 277
+ 678.817
+ 384.792
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 278
+ 683.244
+ 383.388
+ 1.404
+ 1.404
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 279
+ 689.271
+ 381.983
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 280
+ 693.697
+ 373.093
+ 8.891
+ 8.891
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 281
+ 699.724
+ 364.202
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 282
+ 704.151
+ 358.701
+ 5.501
+ 5.501
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 283
+ 710.178
+ 353.200
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 284
+ 714.605
+ 349.955
+ 3.245
+ 3.245
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 285
+ 720.632
+ 346.710
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 286
+ 725.059
+ 348.111
+ 1.401
+ 1.401
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 287
+ 731.086
+ 349.513
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 288
+ 735.513
+ 340.901
+ 8.611
+ 8.611
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 289
+ 741.539
+ 332.290
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 290
+ 751.993
+ 332.838
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 291
+ 756.420
+ 329.474
+ 3.364
+ 3.364
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 292
+ 762.447
+ 326.109
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 293
+ 766.874
+ 323.977
+ 2.133
+ 2.133
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 294
+ 772.901
+ 321.844
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 295
+ 783.355
+ 323.083
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 296
+ 787.782
+ 324.833
+ 1.751
+ 1.751
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 297
+ 793.808
+ 326.584
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 298
+ 798.235
+ 329.635
+ 3.051
+ 3.051
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 299
+ 804.262
+ 332.687
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 300
+ 808.689
+ 334.365
+ 1.678
+ 1.678
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 301
+ 814.716
+ 336.044
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 302
+ 819.143
+ 331.936
+ 4.108
+ 4.108
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 303
+ 825.170
+ 327.828
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 304
+ 829.597
+ 331.244
+ 3.416
+ 3.416
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 305
+ 835.624
+ 334.660
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 306
+ 846.077
+ 334.459
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 307
+ 856.531
+ 335.122
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 308
+ 860.958
+ 332.800
+ 2.321
+ 2.321
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 309
+ 866.985
+ 330.479
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 310
+ 871.412
+ 331.432
+ 0.953
+ 0.953
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 311
+ 877.439
+ 332.384
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 312
+ 881.866
+ 337.564
+ 5.179
+ 5.179
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 313
+ 887.892
+ 342.743
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 314
+ 892.319
+ 352.098
+ 9.354
+ 9.354
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 315
+ 898.346
+ 361.452
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 316
+ 902.773
+ 365.140
+ 3.688
+ 3.688
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 317
+ 908.800
+ 368.828
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 318
+ 913.227
+ 375.655
+ 6.826
+ 6.826
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 319
+ 919.254
+ 382.481
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 320
+ 923.681
+ 381.104
+ 1.378
+ 1.378
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 321
+ 929.708
+ 379.726
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 322
+ 934.134
+ 384.086
+ 4.360
+ 4.360
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 323
+ 940.161
+ 388.446
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 324
+ 944.588
+ 390.845
+ 2.399
+ 2.399
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 325
+ 950.615
+ 393.244
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 326
+ 955.042
+ 396.087
+ 2.843
+ 2.843
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 327
+ 961.069
+ 398.930
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 328
+ 965.496
+ 403.037
+ 4.107
+ 4.107
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 329
+ 971.523
+ 407.144
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 330
+ 975.950
+ 410.084
+ 2.939
+ 2.939
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 331
+ 981.976
+ 413.023
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 332
+ 986.403
+ 417.165
+ 4.142
+ 4.142
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 333
+ 992.430
+ 421.307
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 334
+ 1002.884
+ 420.514
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 335
+ 1007.311
+ 426.883
+ 6.369
+ 6.369
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 336
+ 1013.338
+ 433.252
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 337
+ 1017.765
+ 437.373
+ 4.122
+ 4.122
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 338
+ 1023.792
+ 441.495
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 339
+ 1028.218
+ 439.442
+ 2.053
+ 2.053
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 340
+ 1034.245
+ 437.388
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 341
+ 1038.672
+ 434.144
+ 3.244
+ 3.244
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 342
+ 1044.699
+ 430.900
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 343
+ 1049.126
+ 436.149
+ 5.250
+ 5.250
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 344
+ 1055.153
+ 441.399
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 345
+ 1059.580
+ 439.489
+ 1.910
+ 1.910
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 346
+ 1065.607
+ 437.579
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 347
+ 1070.034
+ 435.446
+ 2.132
+ 2.132
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 348
+ 1076.061
+ 433.314
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 349
+ 1086.514
+ 433.972
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 350
+ 1090.941
+ 428.030
+ 5.941
+ 5.941
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 351
+ 1096.968
+ 422.089
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 352
+ 1101.395
+ 413.713
+ 8.376
+ 8.376
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 353
+ 1107.422
+ 405.337
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 354
+ 1111.849
+ 397.439
+ 7.898
+ 7.898
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 355
+ 1117.876
+ 389.540
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 356
+ 1122.303
+ 387.657
+ 1.883
+ 1.883
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 357
+ 1128.329
+ 385.774
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 358
+ 1132.756
+ 384.889
+ 0.884
+ 0.884
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 359
+ 1138.783
+ 384.005
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 360
+ 1149.237
+ 385.491
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 361
+ 1153.664
+ 379.868
+ 5.623
+ 5.623
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 362
+ 1159.691
+ 374.245
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 363
+ 1164.118
+ 364.367
+ 9.878
+ 9.878
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 364
+ 1170.145
+ 354.489
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 365
+ 1174.571
+ 345.387
+ 9.101
+ 9.101
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 366
+ 1180.598
+ 336.286
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 367
+ 1185.025
+ 328.022
+ 8.264
+ 8.264
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 368
+ 1191.052
+ 319.758
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 369
+ 1195.479
+ 318.880
+ 0.877
+ 0.877
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 370
+ 1201.506
+ 318.003
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 371
+ 1205.933
+ 316.822
+ 1.181
+ 1.181
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 372
+ 1211.960
+ 315.641
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 373
+ 1216.387
+ 309.621
+ 6.019
+ 6.019
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 374
+ 1222.413
+ 303.602
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 375
+ 1226.840
+ 298.897
+ 4.705
+ 4.705
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 376
+ 1232.867
+ 294.192
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 377
+ 1237.294
+ 298.418
+ 4.226
+ 4.226
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 378
+ 1243.321
+ 302.644
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 379
+ 1247.748
+ 304.414
+ 1.770
+ 1.770
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 380
+ 1253.775
+ 306.184
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 381
+ 1258.202
+ 310.332
+ 4.148
+ 4.148
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 382
+ 1264.229
+ 314.480
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 383
+ 1268.655
+ 321.061
+ 6.581
+ 6.581
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 384
+ 1274.682
+ 327.642
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 385
+ 1279.109
+ 325.469
+ 2.173
+ 2.173
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 386
+ 1285.136
+ 323.296
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 387
+ 1289.563
+ 319.650
+ 3.646
+ 3.646
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 388
+ 1295.590
+ 316.005
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 389
+ 1300.017
+ 320.115
+ 4.110
+ 4.110
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 390
+ 1306.044
+ 324.225
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 391
+ 1310.471
+ 326.929
+ 2.703
+ 2.703
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 392
+ 1316.497
+ 329.632
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 393
+ 1320.924
+ 331.170
+ 1.538
+ 1.538
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 394
+ 1326.951
+ 332.707
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 395
+ 1331.378
+ 341.016
+ 8.309
+ 8.309
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 396
+ 1337.405
+ 349.325
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 397
+ 1341.832
+ 356.142
+ 6.817
+ 6.817
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 398
+ 1347.859
+ 362.960
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 399
+ 1352.286
+ 362.152
+ 0.807
+ 0.807
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 400
+ 1358.313
+ 361.345
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 401
+ 1362.739
+ 368.333
+ 6.987
+ 6.987
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 402
+ 1368.766
+ 375.320
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 403
+ 1373.193
+ 379.575
+ 4.254
+ 4.254
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 404
+ 1379.220
+ 383.829
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 405
+ 1383.647
+ 385.705
+ 1.876
+ 1.876
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 406
+ 1389.674
+ 387.581
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 407
+ 1394.101
+ 389.240
+ 1.659
+ 1.659
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 408
+ 1400.128
+ 390.899
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 409
+ 1404.555
+ 395.845
+ 4.946
+ 4.946
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 410
+ 1410.582
+ 400.791
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 411
+ 1415.008
+ 407.710
+ 6.918
+ 6.918
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 412
+ 1421.035
+ 414.628
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 413
+ 1425.462
+ 421.921
+ 7.293
+ 7.293
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 414
+ 1431.489
+ 429.215
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 415
+ 1441.943
+ 429.036
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 416
+ 1446.370
+ 432.367
+ 3.332
+ 3.332
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 417
+ 1452.397
+ 435.699
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 418
+ 1456.824
+ 440.686
+ 4.987
+ 4.987
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 419
+ 1462.850
+ 445.674
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 420
+ 1467.277
+ 440.858
+ 4.816
+ 4.816
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 421
+ 1473.304
+ 436.042
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 422
+ 1477.731
+ 439.419
+ 3.377
+ 3.377
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 423
+ 1483.758
+ 442.796
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 424
+ 1488.185
+ 438.640
+ 4.156
+ 4.156
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 425
+ 1494.212
+ 434.484
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 426
+ 1498.639
+ 426.544
+ 7.940
+ 7.940
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 427
+ 1504.666
+ 418.603
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 428
+ 1515.119
+ 420.003
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 429
+ 1519.546
+ 412.012
+ 7.992
+ 7.992
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 430
+ 1525.573
+ 404.020
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 431
+ 1530.000
+ 395.549
+ 8.471
+ 8.471
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 432
+ 292.027
+ 347.922
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 433
+ 296.454
+ 349.672
+ 1.750
+ 1.750
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 434
+ 302.481
+ 351.422
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 435
+ 306.908
+ 345.111
+ 6.311
+ 6.311
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 436
+ 312.934
+ 338.801
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 437
+ 323.388
+ 339.977
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 438
+ 327.815
+ 332.551
+ 7.426
+ 7.426
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 439
+ 333.842
+ 325.125
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 440
+ 338.269
+ 321.950
+ 3.175
+ 3.175
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 441
+ 344.296
+ 318.775
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 442
+ 348.723
+ 321.350
+ 2.575
+ 2.575
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 443
+ 354.750
+ 323.925
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 444
+ 365.203
+ 323.949
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 445
+ 369.630
+ 320.541
+ 3.408
+ 3.408
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 446
+ 375.657
+ 317.133
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 447
+ 380.084
+ 312.222
+ 4.911
+ 4.911
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 448
+ 386.111
+ 307.312
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 449
+ 390.538
+ 311.684
+ 4.373
+ 4.373
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 450
+ 396.565
+ 316.057
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 451
+ 400.992
+ 318.864
+ 2.806
+ 2.806
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 452
+ 407.018
+ 321.670
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 453
+ 411.445
+ 320.300
+ 1.371
+ 1.371
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 454
+ 417.472
+ 318.929
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 455
+ 421.899
+ 324.297
+ 5.368
+ 5.368
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 456
+ 427.926
+ 329.666
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 457
+ 432.353
+ 327.275
+ 2.391
+ 2.391
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 458
+ 438.380
+ 324.884
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 459
+ 442.807
+ 327.265
+ 2.381
+ 2.381
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 460
+ 448.834
+ 329.646
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 461
+ 453.261
+ 335.701
+ 6.055
+ 6.055
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 462
+ 459.287
+ 341.756
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 463
+ 463.714
+ 345.441
+ 3.684
+ 3.684
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 464
+ 469.741
+ 349.125
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 465
+ 474.168
+ 351.224
+ 2.099
+ 2.099
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 466
+ 480.195
+ 353.324
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 467
+ 484.622
+ 360.481
+ 7.157
+ 7.157
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 468
+ 490.649
+ 367.638
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 469
+ 495.076
+ 374.886
+ 7.248
+ 7.248
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 470
+ 501.103
+ 382.134
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 471
+ 505.529
+ 383.992
+ 1.858
+ 1.858
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 472
+ 511.556
+ 385.850
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 473
+ 522.010
+ 385.819
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 474
+ 526.437
+ 384.806
+ 1.012
+ 1.012
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 475
+ 532.464
+ 383.794
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 476
+ 536.891
+ 390.998
+ 7.204
+ 7.204
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 477
+ 542.918
+ 398.202
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 478
+ 547.345
+ 404.760
+ 6.558
+ 6.558
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 479
+ 553.371
+ 411.317
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 480
+ 563.825
+ 410.223
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 481
+ 568.252
+ 416.969
+ 6.746
+ 6.746
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 482
+ 574.279
+ 423.715
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 483
+ 578.706
+ 427.759
+ 4.043
+ 4.043
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 484
+ 584.733
+ 431.802
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 485
+ 589.160
+ 434.489
+ 2.687
+ 2.687
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 486
+ 595.187
+ 437.177
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 487
+ 599.613
+ 439.542
+ 2.365
+ 2.365
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 488
+ 605.640
+ 441.906
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 489
+ 610.067
+ 437.776
+ 4.130
+ 4.130
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 490
+ 616.094
+ 433.646
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 491
+ 620.521
+ 430.661
+ 2.985
+ 2.985
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 492
+ 626.548
+ 427.677
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 493
+ 630.975
+ 428.669
+ 0.992
+ 0.992
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 494
+ 637.002
+ 429.660
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 495
+ 641.429
+ 428.248
+ 1.412
+ 1.412
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 496
+ 647.455
+ 426.836
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 497
+ 651.882
+ 429.173
+ 2.337
+ 2.337
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 498
+ 657.909
+ 431.511
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 499
+ 662.336
+ 434.337
+ 2.826
+ 2.826
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 500
+ 668.363
+ 437.163
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 501
+ 672.790
+ 433.932
+ 3.232
+ 3.232
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 502
+ 678.817
+ 430.700
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 503
+ 683.244
+ 426.751
+ 3.949
+ 3.949
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 504
+ 689.271
+ 422.803
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 505
+ 693.697
+ 416.977
+ 5.825
+ 5.825
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 506
+ 699.724
+ 411.152
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 507
+ 704.151
+ 403.942
+ 7.211
+ 7.211
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 508
+ 710.178
+ 396.731
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 509
+ 714.605
+ 395.202
+ 1.529
+ 1.529
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 510
+ 720.632
+ 393.672
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 511
+ 725.059
+ 395.203
+ 1.530
+ 1.530
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 512
+ 731.086
+ 396.733
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 513
+ 735.513
+ 394.688
+ 2.046
+ 2.046
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 514
+ 741.539
+ 392.642
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 515
+ 745.966
+ 387.634
+ 5.008
+ 5.008
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 516
+ 751.993
+ 382.627
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 517
+ 756.420
+ 375.576
+ 7.050
+ 7.050
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 518
+ 762.447
+ 368.526
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 519
+ 766.874
+ 369.339
+ 0.813
+ 0.813
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 520
+ 772.901
+ 370.152
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 521
+ 777.328
+ 363.368
+ 6.785
+ 6.785
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 522
+ 783.355
+ 356.583
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 523
+ 787.782
+ 353.386
+ 3.197
+ 3.197
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 524
+ 793.808
+ 350.189
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 525
+ 798.235
+ 346.411
+ 3.778
+ 3.778
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 526
+ 804.262
+ 342.633
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 527
+ 808.689
+ 344.381
+ 1.748
+ 1.748
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 528
+ 814.716
+ 346.129
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 529
+ 819.143
+ 349.467
+ 3.339
+ 3.339
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 530
+ 825.170
+ 352.806
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 531
+ 835.624
+ 354.337
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 532
+ 840.050
+ 351.390
+ 2.947
+ 2.947
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 533
+ 846.077
+ 348.443
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 534
+ 856.531
+ 349.749
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 535
+ 860.958
+ 354.272
+ 4.523
+ 4.523
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 536
+ 866.985
+ 358.795
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 537
+ 871.412
+ 356.605
+ 2.190
+ 2.190
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 538
+ 877.439
+ 354.415
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 539
+ 881.866
+ 355.959
+ 1.544
+ 1.544
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 540
+ 887.892
+ 357.503
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 541
+ 892.319
+ 362.287
+ 4.784
+ 4.784
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 542
+ 898.346
+ 367.070
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 543
+ 902.773
+ 369.160
+ 2.090
+ 2.090
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 544
+ 908.800
+ 371.250
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 545
+ 913.227
+ 374.083
+ 2.833
+ 2.833
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 546
+ 919.254
+ 376.916
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 547
+ 923.681
+ 382.625
+ 5.709
+ 5.709
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 548
+ 929.708
+ 388.333
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 549
+ 934.134
+ 389.273
+ 0.940
+ 0.940
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 550
+ 940.161
+ 390.213
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 551
+ 944.588
+ 394.792
+ 4.579
+ 4.579
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 552
+ 950.615
+ 399.371
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 553
+ 955.042
+ 404.954
+ 5.583
+ 5.583
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 554
+ 961.069
+ 410.536
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 555
+ 965.496
+ 415.702
+ 5.166
+ 5.166
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 556
+ 971.523
+ 420.868
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 557
+ 975.950
+ 423.723
+ 2.855
+ 2.855
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 558
+ 981.976
+ 426.577
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 559
+ 986.403
+ 423.892
+ 2.685
+ 2.685
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 560
+ 992.430
+ 421.207
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 561
+ 996.857
+ 422.891
+ 1.684
+ 1.684
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 562
+ 1002.884
+ 424.576
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 563
+ 1007.311
+ 422.195
+ 2.381
+ 2.381
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 564
+ 1013.338
+ 419.814
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 565
+ 1017.765
+ 417.975
+ 1.839
+ 1.839
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 566
+ 1023.792
+ 416.136
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 567
+ 1028.218
+ 418.469
+ 2.333
+ 2.333
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 568
+ 1034.245
+ 420.802
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 569
+ 1038.672
+ 417.188
+ 3.614
+ 3.614
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 570
+ 1044.699
+ 413.574
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 571
+ 1049.126
+ 411.778
+ 1.796
+ 1.796
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 572
+ 1055.153
+ 409.982
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 573
+ 1059.580
+ 406.916
+ 3.065
+ 3.065
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 574
+ 1065.607
+ 403.851
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 575
+ 1076.061
+ 403.304
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 576
+ 1080.487
+ 400.740
+ 2.564
+ 2.564
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 577
+ 1086.514
+ 398.176
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 578
+ 1090.941
+ 391.947
+ 6.229
+ 6.229
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 579
+ 1096.968
+ 385.719
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 580
+ 1101.395
+ 378.532
+ 7.187
+ 7.187
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 581
+ 1107.422
+ 371.345
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 582
+ 1111.849
+ 366.749
+ 4.595
+ 4.595
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 583
+ 1117.876
+ 362.154
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 584
+ 1122.303
+ 360.838
+ 1.316
+ 1.316
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 585
+ 1128.329
+ 359.523
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 586
+ 1132.756
+ 354.416
+ 5.107
+ 5.107
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 587
+ 1138.783
+ 349.309
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 588
+ 1143.210
+ 348.503
+ 0.805
+ 0.805
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 589
+ 1149.237
+ 347.698
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 590
+ 1159.691
+ 348.723
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 591
+ 1170.145
+ 349.927
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 592
+ 1174.571
+ 342.852
+ 7.075
+ 7.075
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 593
+ 1180.598
+ 335.777
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 594
+ 1185.025
+ 337.049
+ 1.272
+ 1.272
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 595
+ 1191.052
+ 338.321
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 596
+ 1201.506
+ 337.627
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 597
+ 1211.960
+ 337.718
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 598
+ 1222.413
+ 339.178
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 599
+ 1226.840
+ 335.479
+ 3.700
+ 3.700
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 600
+ 1232.867
+ 331.779
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 601
+ 1243.321
+ 331.478
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 602
+ 1247.748
+ 326.895
+ 4.583
+ 4.583
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 603
+ 1253.775
+ 322.312
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 604
+ 1258.202
+ 326.471
+ 4.158
+ 4.158
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 605
+ 1264.229
+ 330.629
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 606
+ 1268.655
+ 333.033
+ 2.404
+ 2.404
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 607
+ 1274.682
+ 335.436
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 608
+ 1285.136
+ 334.844
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 609
+ 1289.563
+ 333.718
+ 1.127
+ 1.127
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 610
+ 1295.590
+ 332.591
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 611
+ 1300.017
+ 335.374
+ 2.783
+ 2.783
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 612
+ 1306.044
+ 338.158
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 613
+ 1316.497
+ 338.779
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 614
+ 1326.951
+ 339.371
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 615
+ 1331.378
+ 342.003
+ 2.631
+ 2.631
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 616
+ 1337.405
+ 344.634
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 617
+ 1341.832
+ 351.123
+ 6.489
+ 6.489
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 618
+ 1347.859
+ 357.612
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 619
+ 1352.286
+ 362.639
+ 5.027
+ 5.027
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 620
+ 1358.313
+ 367.666
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 621
+ 1362.739
+ 373.746
+ 6.080
+ 6.080
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 622
+ 1368.766
+ 379.826
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 623
+ 1379.220
+ 379.473
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 624
+ 1383.647
+ 377.509
+ 1.965
+ 1.965
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 625
+ 1389.674
+ 375.544
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 626
+ 1394.101
+ 379.614
+ 4.070
+ 4.070
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 627
+ 1400.128
+ 383.684
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 628
+ 1404.555
+ 382.354
+ 1.330
+ 1.330
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 629
+ 1410.582
+ 381.023
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 630
+ 1415.008
+ 387.948
+ 6.925
+ 6.925
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 631
+ 1421.035
+ 394.872
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 632
+ 1425.462
+ 400.242
+ 5.369
+ 5.369
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 633
+ 1431.489
+ 405.611
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 634
+ 1435.916
+ 404.475
+ 1.137
+ 1.137
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 635
+ 1441.943
+ 403.338
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 636
+ 1452.397
+ 403.503
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 637
+ 1462.850
+ 403.748
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 638
+ 1467.277
+ 400.599
+ 3.149
+ 3.149
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 639
+ 1473.304
+ 397.450
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 640
+ 1477.731
+ 392.327
+ 5.123
+ 5.123
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 641
+ 1483.758
+ 387.205
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 642
+ 1494.212
+ 388.198
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 643
+ 1504.666
+ 387.873
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 644
+ 1515.119
+ 389.174
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 645
+ 1519.546
+ 388.180
+ 0.994
+ 0.994
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 646
+ 1525.573
+ 387.187
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 647
+ 1530.000
+ 383.084
+ 4.102
+ 4.102
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 648
+ 292.027
+ 442.252
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 649
+ 296.454
+ 432.940
+ 9.312
+ 9.312
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 650
+ 302.481
+ 423.628
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 651
+ 306.908
+ 421.548
+ 2.079
+ 2.079
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 652
+ 312.934
+ 419.469
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 653
+ 317.361
+ 413.059
+ 6.410
+ 6.410
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 654
+ 323.388
+ 406.649
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 655
+ 327.815
+ 394.623
+ 12.027
+ 12.027
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 656
+ 333.842
+ 382.596
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 657
+ 338.269
+ 387.863
+ 5.266
+ 5.266
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 658
+ 344.296
+ 393.129
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 659
+ 348.723
+ 399.015
+ 5.885
+ 5.885
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 660
+ 354.750
+ 404.900
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 661
+ 359.176
+ 401.301
+ 3.599
+ 3.599
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 662
+ 365.203
+ 397.703
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 663
+ 369.630
+ 404.226
+ 6.524
+ 6.524
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 664
+ 375.657
+ 410.750
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 665
+ 380.084
+ 413.030
+ 2.280
+ 2.280
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 666
+ 386.111
+ 415.311
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 667
+ 396.565
+ 414.515
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 668
+ 400.992
+ 415.337
+ 0.823
+ 0.823
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 669
+ 407.018
+ 416.160
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 670
+ 411.445
+ 421.028
+ 4.868
+ 4.868
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 671
+ 417.472
+ 425.897
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 672
+ 421.899
+ 433.887
+ 7.990
+ 7.990
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 673
+ 427.926
+ 441.877
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 674
+ 438.380
+ 442.995
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 675
+ 442.807
+ 441.041
+ 1.953
+ 1.953
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 676
+ 448.834
+ 439.088
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 677
+ 459.287
+ 437.553
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 678
+ 463.714
+ 449.401
+ 11.848
+ 11.848
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 679
+ 469.741
+ 461.249
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 680
+ 474.168
+ 463.128
+ 1.880
+ 1.880
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 681
+ 480.195
+ 465.008
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 682
+ 484.622
+ 459.187
+ 5.821
+ 5.821
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 683
+ 490.649
+ 453.366
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 684
+ 495.076
+ 460.199
+ 6.833
+ 6.833
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 685
+ 501.103
+ 467.032
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 686
+ 505.529
+ 463.030
+ 4.001
+ 4.001
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 687
+ 511.556
+ 459.029
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 688
+ 515.983
+ 457.795
+ 1.234
+ 1.234
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 689
+ 522.010
+ 456.561
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 690
+ 526.437
+ 446.626
+ 9.935
+ 9.935
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 691
+ 532.464
+ 436.691
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 692
+ 536.891
+ 431.974
+ 4.718
+ 4.718
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 693
+ 542.918
+ 427.256
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 694
+ 547.345
+ 418.560
+ 8.696
+ 8.696
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 695
+ 553.371
+ 409.864
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 696
+ 557.798
+ 403.356
+ 6.509
+ 6.509
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 697
+ 563.825
+ 396.847
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 698
+ 568.252
+ 392.667
+ 4.180
+ 4.180
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 699
+ 574.279
+ 388.487
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 700
+ 578.706
+ 380.642
+ 7.844
+ 7.844
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 701
+ 584.733
+ 372.798
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 702
+ 589.160
+ 373.719
+ 0.921
+ 0.921
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 703
+ 595.187
+ 374.641
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 704
+ 599.613
+ 376.128
+ 1.488
+ 1.488
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 705
+ 605.640
+ 377.616
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 706
+ 610.067
+ 375.571
+ 2.045
+ 2.045
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 707
+ 616.094
+ 373.526
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 708
+ 620.521
+ 368.124
+ 5.402
+ 5.402
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 709
+ 626.548
+ 362.722
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 710
+ 637.002
+ 361.946
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 711
+ 641.429
+ 368.136
+ 6.190
+ 6.190
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 712
+ 647.455
+ 374.325
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 713
+ 651.882
+ 377.066
+ 2.741
+ 2.741
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 714
+ 657.909
+ 379.807
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 715
+ 662.336
+ 384.914
+ 5.107
+ 5.107
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 716
+ 668.363
+ 390.021
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 717
+ 672.790
+ 401.606
+ 11.585
+ 11.585
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 718
+ 678.817
+ 413.191
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 719
+ 683.244
+ 409.607
+ 3.584
+ 3.584
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 720
+ 689.271
+ 406.023
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 721
+ 693.697
+ 407.662
+ 1.639
+ 1.639
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 722
+ 699.724
+ 409.301
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 723
+ 704.151
+ 419.056
+ 9.755
+ 9.755
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 724
+ 710.178
+ 428.810
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 725
+ 714.605
+ 437.781
+ 8.971
+ 8.971
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 726
+ 720.632
+ 446.751
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 727
+ 725.059
+ 459.345
+ 12.593
+ 12.593
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 728
+ 731.086
+ 471.938
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 729
+ 735.513
+ 468.064
+ 3.874
+ 3.874
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 730
+ 741.539
+ 464.189
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 731
+ 745.966
+ 470.841
+ 6.652
+ 6.652
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 732
+ 751.993
+ 477.494
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 733
+ 756.420
+ 480.855
+ 3.361
+ 3.361
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 734
+ 762.447
+ 484.216
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 735
+ 766.874
+ 476.800
+ 7.416
+ 7.416
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 736
+ 772.901
+ 469.384
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 737
+ 777.328
+ 464.399
+ 4.984
+ 4.984
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 738
+ 783.355
+ 459.415
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 739
+ 787.782
+ 463.874
+ 4.460
+ 4.460
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 740
+ 793.808
+ 468.334
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 741
+ 798.235
+ 467.008
+ 1.326
+ 1.326
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 742
+ 804.262
+ 465.682
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 743
+ 808.689
+ 466.860
+ 1.178
+ 1.178
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 744
+ 814.716
+ 468.038
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 745
+ 819.143
+ 464.355
+ 3.683
+ 3.683
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 746
+ 825.170
+ 460.673
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 747
+ 829.597
+ 453.053
+ 7.620
+ 7.620
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 748
+ 835.624
+ 445.434
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 749
+ 840.050
+ 446.624
+ 1.190
+ 1.190
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 750
+ 846.077
+ 447.814
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 751
+ 850.504
+ 442.891
+ 4.923
+ 4.923
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 752
+ 856.531
+ 437.968
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 753
+ 860.958
+ 432.857
+ 5.111
+ 5.111
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 754
+ 866.985
+ 427.746
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 755
+ 871.412
+ 429.243
+ 1.497
+ 1.497
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 756
+ 877.439
+ 430.740
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 757
+ 881.866
+ 421.862
+ 8.878
+ 8.878
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 758
+ 887.892
+ 412.984
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 759
+ 892.319
+ 410.118
+ 2.867
+ 2.867
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 760
+ 898.346
+ 407.251
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 761
+ 902.773
+ 404.012
+ 3.239
+ 3.239
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 762
+ 908.800
+ 400.772
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 763
+ 913.227
+ 396.486
+ 4.286
+ 4.286
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 764
+ 919.254
+ 392.200
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 765
+ 923.681
+ 393.832
+ 1.632
+ 1.632
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 766
+ 929.708
+ 395.464
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 767
+ 934.134
+ 390.252
+ 5.212
+ 5.212
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 768
+ 940.161
+ 385.040
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 769
+ 944.588
+ 396.945
+ 11.906
+ 11.906
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 770
+ 950.615
+ 408.851
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 771
+ 955.042
+ 406.871
+ 1.980
+ 1.980
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 772
+ 961.069
+ 404.890
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 773
+ 965.496
+ 418.175
+ 13.284
+ 13.284
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 774
+ 971.523
+ 431.459
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 775
+ 975.950
+ 438.840
+ 7.380
+ 7.380
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 776
+ 981.976
+ 446.220
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 777
+ 986.403
+ 450.132
+ 3.913
+ 3.913
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 778
+ 992.430
+ 454.045
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 779
+ 996.857
+ 462.921
+ 8.876
+ 8.876
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 780
+ 1002.884
+ 471.797
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 781
+ 1007.311
+ 473.743
+ 1.946
+ 1.946
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 782
+ 1013.338
+ 475.689
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 783
+ 1017.765
+ 482.798
+ 7.109
+ 7.109
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 784
+ 1023.792
+ 489.907
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 785
+ 1028.218
+ 485.334
+ 4.573
+ 4.573
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 786
+ 1034.245
+ 480.760
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 787
+ 1038.672
+ 473.943
+ 6.818
+ 6.818
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 788
+ 1044.699
+ 467.125
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 789
+ 1049.126
+ 471.410
+ 4.285
+ 4.285
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 790
+ 1055.153
+ 475.696
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 791
+ 1059.580
+ 467.792
+ 7.904
+ 7.904
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 792
+ 1065.607
+ 459.888
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 793
+ 1070.034
+ 461.859
+ 1.971
+ 1.971
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 794
+ 1076.061
+ 463.831
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 795
+ 1080.487
+ 453.436
+ 10.394
+ 10.394
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 796
+ 1086.514
+ 443.042
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 797
+ 1090.941
+ 446.376
+ 3.334
+ 3.334
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 798
+ 1096.968
+ 449.711
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 799
+ 1101.395
+ 453.103
+ 3.392
+ 3.392
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 800
+ 1107.422
+ 456.495
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 801
+ 1111.849
+ 450.720
+ 5.775
+ 5.775
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 802
+ 1117.876
+ 444.945
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 803
+ 1122.303
+ 442.186
+ 2.759
+ 2.759
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 804
+ 1128.329
+ 439.427
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 805
+ 1138.783
+ 440.098
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 806
+ 1143.210
+ 436.251
+ 3.848
+ 3.848
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 807
+ 1149.237
+ 432.403
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 808
+ 1153.664
+ 425.762
+ 6.641
+ 6.641
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 809
+ 1159.691
+ 419.121
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 810
+ 1164.118
+ 420.016
+ 0.895
+ 0.895
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 811
+ 1170.145
+ 420.911
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 812
+ 1174.571
+ 411.700
+ 9.211
+ 9.211
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 813
+ 1180.598
+ 402.489
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 814
+ 1185.025
+ 405.116
+ 2.627
+ 2.627
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 815
+ 1191.052
+ 407.743
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 816
+ 1195.479
+ 412.078
+ 4.335
+ 4.335
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 817
+ 1201.506
+ 416.412
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 818
+ 1205.933
+ 423.280
+ 6.867
+ 6.867
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 819
+ 1211.960
+ 430.147
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 820
+ 1222.413
+ 428.641
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 821
+ 1232.867
+ 427.436
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 822
+ 1237.294
+ 426.199
+ 1.237
+ 1.237
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 823
+ 1243.321
+ 424.962
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 824
+ 1247.748
+ 428.967
+ 4.005
+ 4.005
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 825
+ 1253.775
+ 432.972
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 826
+ 1258.202
+ 446.465
+ 13.493
+ 13.493
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 827
+ 1264.229
+ 459.958
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 828
+ 1268.655
+ 462.606
+ 2.649
+ 2.649
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 829
+ 1274.682
+ 465.255
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 830
+ 1279.109
+ 470.184
+ 4.929
+ 4.929
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 831
+ 1285.136
+ 475.112
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 832
+ 1289.563
+ 477.916
+ 2.803
+ 2.803
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 833
+ 1295.590
+ 480.719
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 834
+ 1300.017
+ 484.461
+ 3.742
+ 3.742
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 835
+ 1306.044
+ 488.203
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 836
+ 1310.471
+ 483.562
+ 4.641
+ 4.641
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 837
+ 1316.497
+ 478.922
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 838
+ 1320.924
+ 474.365
+ 4.557
+ 4.557
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 839
+ 1326.951
+ 469.808
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 840
+ 1331.378
+ 461.950
+ 7.858
+ 7.858
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 841
+ 1337.405
+ 454.093
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 842
+ 1341.832
+ 460.945
+ 6.853
+ 6.853
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 843
+ 1347.859
+ 467.798
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 844
+ 1352.286
+ 461.800
+ 5.997
+ 5.997
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 845
+ 1358.313
+ 455.803
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 846
+ 1362.739
+ 458.790
+ 2.987
+ 2.987
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 847
+ 1368.766
+ 461.778
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 848
+ 1373.193
+ 463.558
+ 1.780
+ 1.780
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 849
+ 1379.220
+ 465.338
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 850
+ 1383.647
+ 464.002
+ 1.335
+ 1.335
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 851
+ 1389.674
+ 462.667
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 852
+ 1394.101
+ 465.704
+ 3.036
+ 3.036
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 853
+ 1400.128
+ 468.740
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 854
+ 1404.555
+ 465.748
+ 2.992
+ 2.992
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 855
+ 1410.582
+ 462.756
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 856
+ 1415.008
+ 451.778
+ 10.978
+ 10.978
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 857
+ 1421.035
+ 440.801
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 858
+ 1425.462
+ 442.709
+ 1.909
+ 1.909
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 859
+ 1431.489
+ 444.618
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 860
+ 1435.916
+ 435.691
+ 8.928
+ 8.928
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 861
+ 1441.943
+ 426.763
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 862
+ 1446.370
+ 418.819
+ 7.944
+ 7.944
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 863
+ 1452.397
+ 410.876
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 864
+ 1456.824
+ 402.464
+ 8.412
+ 8.412
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 865
+ 1462.850
+ 394.052
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 866
+ 1467.277
+ 390.496
+ 3.556
+ 3.556
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 867
+ 1473.304
+ 386.940
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 868
+ 1477.731
+ 383.712
+ 3.229
+ 3.229
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 869
+ 1483.758
+ 380.483
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 870
+ 1488.185
+ 374.933
+ 5.550
+ 5.550
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 871
+ 1494.212
+ 369.383
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 872
+ 1504.666
+ 368.092
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 873
+ 1509.092
+ 376.573
+ 8.481
+ 8.481
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 874
+ 1515.119
+ 385.055
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 875
+ 1519.546
+ 383.859
+ 1.196
+ 1.196
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 876
+ 1525.573
+ 382.662
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 877
+ 1530.000
+ 389.484
+ 6.822
+ 6.822
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 878
+ 292.027
+ 403.486
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 879
+ 302.481
+ 402.633
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 880
+ 306.908
+ 401.496
+ 1.136
+ 1.136
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 881
+ 312.934
+ 400.360
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 882
+ 323.388
+ 401.099
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 883
+ 327.815
+ 401.997
+ 0.898
+ 0.898
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 884
+ 333.842
+ 402.895
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 885
+ 344.296
+ 402.509
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 886
+ 354.750
+ 402.358
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 887
+ 359.176
+ 401.397
+ 0.961
+ 0.961
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 888
+ 365.203
+ 400.437
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 889
+ 375.657
+ 400.327
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 890
+ 386.111
+ 400.838
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 891
+ 396.565
+ 399.653
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 892
+ 407.018
+ 399.046
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 893
+ 411.445
+ 397.822
+ 1.225
+ 1.225
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 894
+ 417.472
+ 396.597
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 895
+ 421.899
+ 397.469
+ 0.872
+ 0.872
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 896
+ 427.926
+ 398.342
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 897
+ 438.380
+ 397.089
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 898
+ 442.807
+ 396.148
+ 0.941
+ 0.941
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 899
+ 448.834
+ 395.207
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 900
+ 459.287
+ 396.475
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 901
+ 463.714
+ 395.595
+ 0.879
+ 0.879
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 902
+ 469.741
+ 394.716
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 903
+ 480.195
+ 395.015
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 904
+ 490.649
+ 395.971
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 905
+ 501.103
+ 396.076
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 906
+ 511.556
+ 397.338
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 907
+ 522.010
+ 396.278
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 908
+ 532.464
+ 396.038
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 909
+ 542.918
+ 396.864
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 910
+ 547.345
+ 395.721
+ 1.143
+ 1.143
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 911
+ 553.371
+ 394.578
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 912
+ 557.798
+ 393.583
+ 0.995
+ 0.995
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 913
+ 563.825
+ 392.588
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 914
+ 568.252
+ 393.476
+ 0.888
+ 0.888
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 915
+ 574.279
+ 394.363
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 916
+ 584.733
+ 394.992
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 917
+ 595.187
+ 393.496
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 918
+ 605.640
+ 392.726
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 919
+ 616.094
+ 392.339
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 920
+ 626.548
+ 391.531
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 921
+ 637.002
+ 392.966
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 922
+ 641.429
+ 391.753
+ 1.213
+ 1.213
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 923
+ 647.455
+ 390.539
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 924
+ 651.882
+ 389.290
+ 1.250
+ 1.250
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 925
+ 657.909
+ 388.040
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 926
+ 662.336
+ 386.713
+ 1.327
+ 1.327
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 927
+ 668.363
+ 385.385
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 928
+ 678.817
+ 386.058
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 929
+ 689.271
+ 386.300
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 930
+ 699.724
+ 385.245
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 931
+ 710.178
+ 383.763
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 932
+ 720.632
+ 385.097
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 933
+ 731.086
+ 386.678
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 934
+ 741.539
+ 387.752
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 935
+ 745.966
+ 386.898
+ 0.854
+ 0.854
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 936
+ 751.993
+ 386.045
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 937
+ 762.447
+ 386.214
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 938
+ 772.901
+ 386.426
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 939
+ 783.355
+ 387.009
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 940
+ 787.782
+ 388.002
+ 0.993
+ 0.993
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 941
+ 793.808
+ 388.995
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 942
+ 804.262
+ 389.162
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 943
+ 814.716
+ 388.897
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 944
+ 825.170
+ 388.430
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 945
+ 835.624
+ 386.981
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 946
+ 846.077
+ 388.032
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 947
+ 856.531
+ 386.519
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 948
+ 860.958
+ 387.348
+ 0.829
+ 0.829
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 949
+ 866.985
+ 388.176
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 950
+ 871.412
+ 389.184
+ 1.008
+ 1.008
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 951
+ 877.439
+ 390.193
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 952
+ 887.892
+ 390.442
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 953
+ 898.346
+ 390.421
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 954
+ 902.773
+ 391.271
+ 0.849
+ 0.849
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 955
+ 908.800
+ 392.120
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 956
+ 919.254
+ 390.572
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 957
+ 929.708
+ 389.123
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 958
+ 934.134
+ 390.129
+ 1.006
+ 1.006
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 959
+ 940.161
+ 391.135
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 960
+ 950.615
+ 392.324
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 961
+ 961.069
+ 392.293
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 962
+ 965.496
+ 393.436
+ 1.143
+ 1.143
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 963
+ 971.523
+ 394.579
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 964
+ 981.976
+ 395.399
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 965
+ 992.430
+ 396.319
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 966
+ 1002.884
+ 397.315
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 967
+ 1007.311
+ 398.300
+ 0.985
+ 0.985
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 968
+ 1013.338
+ 399.285
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 969
+ 1023.792
+ 400.796
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 970
+ 1034.245
+ 399.572
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 971
+ 1044.699
+ 399.863
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 972
+ 1055.153
+ 399.908
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 973
+ 1065.607
+ 399.792
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 974
+ 1076.061
+ 399.984
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 975
+ 1080.487
+ 398.980
+ 1.004
+ 1.004
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 976
+ 1086.514
+ 397.976
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 977
+ 1096.968
+ 399.107
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 978
+ 1101.395
+ 398.186
+ 0.921
+ 0.921
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 979
+ 1107.422
+ 397.266
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 980
+ 1117.876
+ 395.889
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 981
+ 1122.303
+ 394.956
+ 0.933
+ 0.933
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 982
+ 1128.329
+ 394.024
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 983
+ 1138.783
+ 393.409
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 984
+ 1149.237
+ 394.104
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 985
+ 1159.691
+ 393.947
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 986
+ 1164.118
+ 394.909
+ 0.962
+ 0.962
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 987
+ 1170.145
+ 395.871
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 988
+ 1180.598
+ 395.832
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 989
+ 1191.052
+ 395.800
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 990
+ 1201.506
+ 395.701
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 991
+ 1211.960
+ 394.166
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 992
+ 1222.413
+ 394.023
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 993
+ 1232.867
+ 392.684
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 994
+ 1243.321
+ 392.767
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 995
+ 1253.775
+ 392.778
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 996
+ 1258.202
+ 391.975
+ 0.803
+ 0.803
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 997
+ 1264.229
+ 391.172
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 998
+ 1268.655
+ 392.234
+ 1.062
+ 1.062
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 999
+ 1274.682
+ 393.297
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1000
+ 1279.109
+ 394.281
+ 0.985
+ 0.985
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1001
+ 1285.136
+ 395.266
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1002
+ 1295.590
+ 395.375
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1003
+ 1306.044
+ 396.039
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1004
+ 1316.497
+ 394.576
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1005
+ 1326.951
+ 393.965
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1006
+ 1337.405
+ 395.487
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1007
+ 1347.859
+ 394.110
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1008
+ 1358.313
+ 392.928
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1009
+ 1368.766
+ 393.608
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1010
+ 1373.193
+ 394.503
+ 0.895
+ 0.895
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1011
+ 1379.220
+ 395.398
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1012
+ 1383.647
+ 396.631
+ 1.233
+ 1.233
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1013
+ 1389.674
+ 397.864
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1014
+ 1400.128
+ 399.464
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1015
+ 1404.555
+ 398.580
+ 0.884
+ 0.884
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1016
+ 1410.582
+ 397.697
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1017
+ 1415.008
+ 398.961
+ 1.265
+ 1.265
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1018
+ 1421.035
+ 400.226
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1019
+ 1425.462
+ 401.450
+ 1.224
+ 1.224
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1020
+ 1431.489
+ 402.673
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1021
+ 1435.916
+ 404.065
+ 1.392
+ 1.392
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1022
+ 1441.943
+ 405.457
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1023
+ 1452.397
+ 404.990
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1024
+ 1456.824
+ 405.803
+ 0.813
+ 0.813
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1025
+ 1462.850
+ 406.617
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1026
+ 1473.304
+ 406.882
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1027
+ 1483.758
+ 407.430
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1028
+ 1494.212
+ 406.086
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1029
+ 1504.666
+ 407.230
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1030
+ 1515.119
+ 406.941
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1031
+ 1525.573
+ 408.232
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1032
+ 1530.000
+ 409.443
+ 1.211
+ 1.211
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1033
+ 1057.780
+ 394.000
+ 198.000
+ 198.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1034
+ 1.0
+ 1057.780
+ 193.500
+ 3.500
+ 3.500
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1591
+ Pens
+
+ 63
+
+ 1035
+ 4.0
+ 1738.000
+ 394.000
+ 244.000
+ 244.000
+ 158.000
+ 158.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1036
+ 1738.000
+ 165.000
+ 15.000
+ 15.000
+ 158.000
+ 158.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1037
+ PENS
+
+
+
+ true
+ 1610.500
+ 165.000
+ 8.500
+ 8.500
+ 14.500
+ 14.500
+ 0.0
+ 0.0
+
+
+ 1038
+ 4 / 8
+
+
+
+ true
+ 1865.000
+ 165.000
+ 6.000
+ 6.000
+ 15.000
+ 15.000
+ 0.0
+ 0.0
+
+
+ 1039
+ 4.0
+ 1738.000
+ 223.000
+ 31.000
+ 31.000
+ 148.000
+ 148.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1040
+ 1591.500
+ 223.000
+ 31.000
+ 31.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1041
+ HOIST HEIGHT
+
+
+
+ true
+ 1651.500
+ 206.000
+ 9.500
+ 9.500
+ 45.500
+ 45.500
+ 0.0
+ 0.0
+
+
+ 1042
+ STR32.HST.HEIGHT
+
+
+
+ true
+ 1654.000
+ 224.000
+ 6.000
+ 6.000
+ 48.000
+ 48.000
+ 0.0
+ 0.0
+
+
+ 1043
+ 1626.000
+ 240.500
+ 1.500
+ 1.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1044
+ SCALE 0 - 18 m
+
+
+
+ true
+ 1694.000
+ 240.000
+ 7.500
+ 7.500
+ 40.000
+ 40.000
+ 0.0
+ 0.0
+
+
+ 1045
+ 12.4
+
+
+
+ true
+ 1854.000
+ 216.000
+ 10.500
+ 10.500
+ 22.000
+ 22.000
+ 0.0
+ 0.0
+
+
+ 1046
+ m
+
+
+
+ true
+ 1871.500
+ 236.000
+ 7.500
+ 7.500
+ 4.500
+ 4.500
+ 0.0
+ 0.0
+
+
+ 1047
+ 4.0
+ 1738.000
+ 293.000
+ 31.000
+ 31.000
+ 148.000
+ 148.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1048
+ 1591.500
+ 293.000
+ 31.000
+ 31.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1049
+ HOIST LOAD
+
+
+
+ true
+ 1645.500
+ 276.000
+ 9.500
+ 9.500
+ 39.500
+ 39.500
+ 0.0
+ 0.0
+
+
+ 1050
+ STR32.HST.LOAD
+
+
+
+ true
+ 1648.000
+ 294.000
+ 6.000
+ 6.000
+ 42.000
+ 42.000
+ 0.0
+ 0.0
+
+
+ 1051
+ 1626.000
+ 310.500
+ 1.500
+ 1.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1052
+ SCALE 0 - 45 t
+
+
+
+ true
+ 1691.500
+ 310.000
+ 7.500
+ 7.500
+ 37.500
+ 37.500
+ 0.0
+ 0.0
+
+
+ 1053
+ 31.8
+
+
+
+ true
+ 1854.000
+ 286.000
+ 10.500
+ 10.500
+ 22.000
+ 22.000
+ 0.0
+ 0.0
+
+
+ 1054
+ t
+
+
+
+ true
+ 1874.000
+ 306.000
+ 7.500
+ 7.500
+ 2.000
+ 2.000
+ 0.0
+ 0.0
+
+
+ 1055
+ 4.0
+ 1738.000
+ 363.000
+ 31.000
+ 31.000
+ 148.000
+ 148.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1056
+ 1591.500
+ 363.000
+ 31.000
+ 31.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1057
+ TRAVEL SPEED
+
+
+
+ true
+ 1651.500
+ 346.000
+ 9.500
+ 9.500
+ 45.500
+ 45.500
+ 0.0
+ 0.0
+
+
+ 1058
+ STR32.TRV.SPEED
+
+
+
+ true
+ 1651.000
+ 364.000
+ 6.000
+ 6.000
+ 45.000
+ 45.000
+ 0.0
+ 0.0
+
+
+ 1059
+ 1626.000
+ 380.500
+ 1.500
+ 1.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1060
+ SCALE 0 - 30 km/h
+
+
+
+ true
+ 1701.500
+ 380.000
+ 7.500
+ 7.500
+ 47.500
+ 47.500
+ 0.0
+ 0.0
+
+
+ 1061
+ 18.2
+
+
+
+ true
+ 1854.000
+ 356.000
+ 10.500
+ 10.500
+ 22.000
+ 22.000
+ 0.0
+ 0.0
+
+
+ 1062
+ km/h
+
+
+
+ true
+ 1864.000
+ 376.000
+ 7.500
+ 7.500
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1063
+ 4.0
+ 1738.000
+ 433.000
+ 31.000
+ 31.000
+ 148.000
+ 148.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1064
+ 1591.500
+ 433.000
+ 31.000
+ 31.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1065
+ HYD OIL TEMP
+
+
+
+ true
+ 1652.000
+ 416.000
+ 9.500
+ 9.500
+ 46.000
+ 46.000
+ 0.0
+ 0.0
+
+
+ 1066
+ STR32.HYD.OIL.T
+
+
+
+ true
+ 1651.000
+ 434.000
+ 6.000
+ 6.000
+ 45.000
+ 45.000
+ 0.0
+ 0.0
+
+
+ 1067
+ 1626.000
+ 450.500
+ 1.500
+ 1.500
+ 20.000
+ 20.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1068
+ SCALE 20 - 120 °C
+
+
+
+ true
+ 1701.000
+ 450.000
+ 7.500
+ 7.500
+ 47.000
+ 47.000
+ 0.0
+ 0.0
+
+
+ 1069
+ 76.5
+
+
+
+ true
+ 1854.000
+ 426.000
+ 10.500
+ 10.500
+ 22.000
+ 22.000
+ 0.0
+ 0.0
+
+
+ 1070
+ °C
+
+
+
+ true
+ 1870.500
+ 446.000
+ 7.500
+ 7.500
+ 5.500
+ 5.500
+ 0.0
+ 0.0
+
+
+ 1071
+ 4.0
+ 1637.000
+ 493.000
+ 13.000
+ 13.000
+ 47.000
+ 47.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1072
+ ADD PEN
+
+
+
+ true
+ 1637.000
+ 493.000
+ 7.500
+ 7.500
+ 24.500
+ 24.500
+ 0.0
+ 0.0
+
+
+ 1073
+ 4.0
+ 1736.000
+ 493.000
+ 13.000
+ 13.000
+ 47.000
+ 47.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1074
+ SCALE
+
+
+
+ true
+ 1736.000
+ 493.000
+ 7.500
+ 7.500
+ 16.500
+ 16.500
+ 0.0
+ 0.0
+
+
+ 1075
+ 4.0
+ 1835.000
+ 493.000
+ 13.000
+ 13.000
+ 47.000
+ 47.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1076
+ EXPORT
+
+
+
+ true
+ 1835.000
+ 493.000
+ 7.500
+ 7.500
+ 20.500
+ 20.500
+ 0.0
+ 0.0
+
+
+ 1077
+ 1738.000
+ 520.500
+ 0.500
+ 0.500
+ 148.000
+ 148.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1078
+ STATISTICS · WINDOW
+
+
+
+ true
+ 1648.500
+ 540.000
+ 7.000
+ 7.000
+ 52.500
+ 52.500
+ 0.0
+ 0.0
+
+
+ 1079
+ MIN
+
+
+
+ true
+ 1751.000
+ 562.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1080
+ MAX
+
+
+
+ true
+ 1793.000
+ 562.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1081
+ AVG
+
+
+
+ true
+ 1835.000
+ 562.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1082
+ HST.HEIGHT
+
+
+
+ true
+ 1626.000
+ 580.000
+ 6.000
+ 6.000
+ 30.000
+ 30.000
+ 0.0
+ 0.0
+
+
+ 1083
+ 2.1
+
+
+
+ true
+ 1751.000
+ 580.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1084
+ 17.6
+
+
+
+ true
+ 1790.000
+ 580.000
+ 6.000
+ 6.000
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1085
+ 9.8
+
+
+
+ true
+ 1835.000
+ 580.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1086
+ HST.LOAD
+
+
+
+ true
+ 1620.000
+ 598.000
+ 6.000
+ 6.000
+ 24.000
+ 24.000
+ 0.0
+ 0.0
+
+
+ 1087
+ 0.0
+
+
+
+ true
+ 1751.000
+ 598.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1088
+ 44.2
+
+
+
+ true
+ 1790.000
+ 598.000
+ 6.000
+ 6.000
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1089
+ 24.7
+
+
+
+ true
+ 1832.000
+ 598.000
+ 6.000
+ 6.000
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1090
+ TRV.SPEED
+
+
+
+ true
+ 1623.000
+ 616.000
+ 6.000
+ 6.000
+ 27.000
+ 27.000
+ 0.0
+ 0.0
+
+
+ 1091
+ 0.0
+
+
+
+ true
+ 1751.000
+ 616.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1092
+ 28.9
+
+
+
+ true
+ 1790.000
+ 616.000
+ 6.000
+ 6.000
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1093
+ 14.1
+
+
+
+ true
+ 1832.000
+ 616.000
+ 6.000
+ 6.000
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1094
+ HYD.OIL.T
+
+
+
+ true
+ 1623.000
+ 634.000
+ 6.000
+ 6.000
+ 27.000
+ 27.000
+ 0.0
+ 0.0
+
+
+ 1095
+ 61.0
+
+
+
+ true
+ 1748.000
+ 634.000
+ 6.000
+ 6.000
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1096
+ 94.3
+
+
+
+ true
+ 1790.000
+ 634.000
+ 6.000
+ 6.000
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1097
+ 78.2
+
+
+
+ true
+ 1832.000
+ 634.000
+ 6.000
+ 6.000
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1592
+ Trend secondary
+
+ 449
+
+ 1098
+ 4.0
+ 888.000
+ 803.000
+ 147.000
+ 147.000
+ 672.000
+ 672.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1099
+ 888.000
+ 671.000
+ 15.000
+ 15.000
+ 672.000
+ 672.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1100
+ 217.500
+ 671.000
+ 15.000
+ 15.000
+ 1.500
+ 1.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1101
+ SECONDARY TREND · POWER AND ENERGY
+
+
+
+ true
+ 360.000
+ 671.000
+ 8.500
+ 8.500
+ 126.000
+ 126.000
+ 0.0
+ 0.0
+
+
+ 1102
+ ENGINE POWER kW · BATTERY SOC %
+
+
+
+ true
+ 1445.500
+ 671.000
+ 7.500
+ 7.500
+ 98.500
+ 98.500
+ 0.0
+ 0.0
+
+
+ 1103
+ 908.000
+ 803.000
+ 101.000
+ 101.000
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1104
+ 908.000
+ 702.500
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1105
+ 400
+
+
+
+ true
+ 267.000
+ 702.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1106
+ 908.000
+ 753.000
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1107
+ 300
+
+
+
+ true
+ 267.000
+ 752.500
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1108
+ 908.000
+ 803.500
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1109
+ 200
+
+
+
+ true
+ 267.000
+ 803.000
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1110
+ 908.000
+ 854.000
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1111
+ 100
+
+
+
+ true
+ 267.000
+ 853.500
+ 6.000
+ 6.000
+ 9.000
+ 9.000
+ 0.0
+ 0.0
+
+
+ 1112
+ 908.000
+ 904.500
+ 0.500
+ 0.500
+ 622.000
+ 622.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1113
+ 0
+
+
+
+ true
+ 273.000
+ 904.000
+ 6.000
+ 6.000
+ 3.000
+ 3.000
+ 0.0
+ 0.0
+
+
+ 1114
+ 286.500
+ 803.000
+ 101.000
+ 101.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1115
+ 442.000
+ 803.000
+ 101.000
+ 101.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1116
+ 597.500
+ 803.000
+ 101.000
+ 101.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1117
+ 753.000
+ 803.000
+ 101.000
+ 101.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1118
+ 908.500
+ 803.000
+ 101.000
+ 101.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1119
+ 1064.000
+ 803.000
+ 101.000
+ 101.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1120
+ 1219.500
+ 803.000
+ 101.000
+ 101.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1121
+ 1375.000
+ 803.000
+ 101.000
+ 101.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1122
+ 1530.500
+ 803.000
+ 101.000
+ 101.000
+ 0.500
+ 0.500
+ 0.0
+ 0.0
+
+
+
+
+
+ 1123
+ 292.027
+ 801.992
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1124
+ 296.454
+ 803.015
+ 1.023
+ 1.023
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1125
+ 302.481
+ 804.038
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1126
+ 312.934
+ 803.866
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1127
+ 317.361
+ 804.728
+ 0.862
+ 0.862
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1128
+ 323.388
+ 805.590
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1129
+ 327.815
+ 802.171
+ 3.419
+ 3.419
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1130
+ 333.842
+ 798.753
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1131
+ 338.269
+ 797.466
+ 1.287
+ 1.287
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1132
+ 344.296
+ 796.179
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1133
+ 348.723
+ 799.598
+ 3.419
+ 3.419
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1134
+ 354.750
+ 803.016
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1135
+ 365.203
+ 802.343
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1136
+ 369.630
+ 799.210
+ 3.133
+ 3.133
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1137
+ 375.657
+ 796.077
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1138
+ 380.084
+ 792.015
+ 4.061
+ 4.061
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1139
+ 386.111
+ 787.954
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1140
+ 396.565
+ 789.438
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1141
+ 400.992
+ 790.444
+ 1.006
+ 1.006
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1142
+ 407.018
+ 791.450
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1143
+ 411.445
+ 793.229
+ 1.779
+ 1.779
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1144
+ 417.472
+ 795.009
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1145
+ 421.899
+ 796.843
+ 1.835
+ 1.835
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1146
+ 427.926
+ 798.678
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1147
+ 438.380
+ 799.096
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1148
+ 442.807
+ 807.180
+ 8.084
+ 8.084
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1149
+ 448.834
+ 815.264
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1150
+ 453.261
+ 819.846
+ 4.582
+ 4.582
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1151
+ 459.287
+ 824.428
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1152
+ 463.714
+ 828.778
+ 4.350
+ 4.350
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1153
+ 469.741
+ 833.128
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1154
+ 474.168
+ 836.935
+ 3.807
+ 3.807
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1155
+ 480.195
+ 840.741
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1156
+ 484.622
+ 845.669
+ 4.928
+ 4.928
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1157
+ 490.649
+ 850.598
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1158
+ 495.076
+ 855.774
+ 5.176
+ 5.176
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1159
+ 501.103
+ 860.950
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1160
+ 505.529
+ 856.817
+ 4.133
+ 4.133
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1161
+ 511.556
+ 852.683
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1162
+ 515.983
+ 854.033
+ 1.350
+ 1.350
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1163
+ 522.010
+ 855.383
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1164
+ 532.464
+ 856.125
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1165
+ 536.891
+ 861.225
+ 5.100
+ 5.100
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1166
+ 542.918
+ 866.325
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1167
+ 547.345
+ 870.800
+ 4.475
+ 4.475
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1168
+ 553.371
+ 875.274
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1169
+ 557.798
+ 872.319
+ 2.955
+ 2.955
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1170
+ 563.825
+ 869.364
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1171
+ 568.252
+ 864.548
+ 4.816
+ 4.816
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1172
+ 574.279
+ 859.732
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1173
+ 584.733
+ 860.169
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1174
+ 589.160
+ 864.080
+ 3.911
+ 3.911
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1175
+ 595.187
+ 867.991
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1176
+ 599.613
+ 862.557
+ 5.434
+ 5.434
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1177
+ 605.640
+ 857.123
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1178
+ 610.067
+ 860.263
+ 3.140
+ 3.140
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1179
+ 616.094
+ 863.402
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1180
+ 620.521
+ 860.775
+ 2.628
+ 2.628
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1181
+ 626.548
+ 858.147
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1182
+ 630.975
+ 851.800
+ 6.347
+ 6.347
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1183
+ 637.002
+ 845.453
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1184
+ 641.429
+ 839.800
+ 5.652
+ 5.652
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1185
+ 647.455
+ 834.148
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1186
+ 651.882
+ 830.565
+ 3.583
+ 3.583
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1187
+ 657.909
+ 826.982
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1188
+ 662.336
+ 829.721
+ 2.739
+ 2.739
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1189
+ 668.363
+ 832.460
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1190
+ 672.790
+ 833.951
+ 1.490
+ 1.490
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1191
+ 678.817
+ 835.441
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1192
+ 683.244
+ 837.808
+ 2.367
+ 2.367
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1193
+ 689.271
+ 840.176
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1194
+ 693.697
+ 843.575
+ 3.400
+ 3.400
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1195
+ 699.724
+ 846.975
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1196
+ 704.151
+ 843.273
+ 3.702
+ 3.702
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1197
+ 710.178
+ 839.571
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1198
+ 714.605
+ 836.759
+ 2.812
+ 2.812
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1199
+ 720.632
+ 833.946
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1200
+ 725.059
+ 828.997
+ 4.950
+ 4.950
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1201
+ 731.086
+ 824.047
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1202
+ 735.513
+ 822.956
+ 1.091
+ 1.091
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1203
+ 741.539
+ 821.864
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1204
+ 745.966
+ 819.340
+ 2.524
+ 2.524
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1205
+ 751.993
+ 816.816
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1206
+ 756.420
+ 819.327
+ 2.511
+ 2.511
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1207
+ 762.447
+ 821.839
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1208
+ 766.874
+ 818.540
+ 3.298
+ 3.298
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1209
+ 772.901
+ 815.242
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1210
+ 777.328
+ 823.562
+ 8.320
+ 8.320
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1211
+ 783.355
+ 831.882
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1212
+ 787.782
+ 837.420
+ 5.538
+ 5.538
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1213
+ 793.808
+ 842.958
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1214
+ 798.235
+ 840.755
+ 2.203
+ 2.203
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1215
+ 804.262
+ 838.552
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1216
+ 808.689
+ 846.005
+ 7.454
+ 7.454
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1217
+ 814.716
+ 853.459
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1218
+ 819.143
+ 857.887
+ 4.428
+ 4.428
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1219
+ 825.170
+ 862.314
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1220
+ 829.597
+ 866.391
+ 4.077
+ 4.077
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1221
+ 835.624
+ 870.469
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1222
+ 840.050
+ 877.269
+ 6.800
+ 6.800
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1223
+ 846.077
+ 884.069
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1224
+ 850.504
+ 882.390
+ 1.679
+ 1.679
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1225
+ 856.531
+ 880.711
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1226
+ 860.958
+ 886.776
+ 6.065
+ 6.065
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1227
+ 866.985
+ 892.841
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1228
+ 871.412
+ 887.606
+ 5.235
+ 5.235
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1229
+ 877.439
+ 882.370
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1230
+ 881.866
+ 878.645
+ 3.726
+ 3.726
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1231
+ 887.892
+ 874.919
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1232
+ 892.319
+ 877.179
+ 2.260
+ 2.260
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1233
+ 898.346
+ 879.439
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1234
+ 902.773
+ 873.286
+ 6.153
+ 6.153
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1235
+ 908.800
+ 867.133
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1236
+ 913.227
+ 862.586
+ 4.547
+ 4.547
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1237
+ 919.254
+ 858.039
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1238
+ 923.681
+ 854.657
+ 3.382
+ 3.382
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1239
+ 929.708
+ 851.274
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1240
+ 934.134
+ 848.391
+ 2.884
+ 2.884
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1241
+ 940.161
+ 845.507
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1242
+ 944.588
+ 837.486
+ 8.022
+ 8.022
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1243
+ 950.615
+ 829.464
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1244
+ 955.042
+ 822.065
+ 7.399
+ 7.399
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1245
+ 961.069
+ 814.666
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1246
+ 965.496
+ 810.467
+ 4.199
+ 4.199
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1247
+ 971.523
+ 806.268
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1248
+ 975.950
+ 804.066
+ 2.202
+ 2.202
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1249
+ 981.976
+ 801.864
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1250
+ 986.403
+ 794.519
+ 7.345
+ 7.345
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1251
+ 992.430
+ 787.174
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1252
+ 996.857
+ 788.995
+ 1.821
+ 1.821
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1253
+ 1002.884
+ 790.815
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1254
+ 1007.311
+ 792.076
+ 1.261
+ 1.261
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1255
+ 1013.338
+ 793.337
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1256
+ 1017.765
+ 798.803
+ 5.467
+ 5.467
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1257
+ 1023.792
+ 804.270
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1258
+ 1034.245
+ 803.442
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1259
+ 1038.672
+ 799.843
+ 3.599
+ 3.599
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1260
+ 1044.699
+ 796.244
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1261
+ 1049.126
+ 800.070
+ 3.826
+ 3.826
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1262
+ 1055.153
+ 803.896
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1263
+ 1065.607
+ 805.372
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1264
+ 1076.061
+ 805.973
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1265
+ 1080.487
+ 808.732
+ 2.759
+ 2.759
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1266
+ 1086.514
+ 811.491
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1267
+ 1090.941
+ 819.196
+ 7.705
+ 7.705
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1268
+ 1096.968
+ 826.901
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1269
+ 1101.395
+ 830.835
+ 3.934
+ 3.934
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1270
+ 1107.422
+ 834.769
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1271
+ 1111.849
+ 832.543
+ 2.226
+ 2.226
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1272
+ 1117.876
+ 830.317
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1273
+ 1122.303
+ 831.210
+ 0.894
+ 0.894
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1274
+ 1128.329
+ 832.104
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1275
+ 1132.756
+ 837.526
+ 5.422
+ 5.422
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1276
+ 1138.783
+ 842.949
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1277
+ 1143.210
+ 843.888
+ 0.939
+ 0.939
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1278
+ 1149.237
+ 844.827
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1279
+ 1153.664
+ 852.273
+ 7.447
+ 7.447
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1280
+ 1159.691
+ 859.720
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1281
+ 1164.118
+ 860.710
+ 0.990
+ 0.990
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1282
+ 1170.145
+ 861.700
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1283
+ 1180.598
+ 863.088
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1284
+ 1191.052
+ 862.562
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1285
+ 1195.479
+ 867.025
+ 4.463
+ 4.463
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1286
+ 1201.506
+ 871.487
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1287
+ 1205.933
+ 866.199
+ 5.288
+ 5.288
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1288
+ 1211.960
+ 860.911
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1289
+ 1216.387
+ 855.376
+ 5.535
+ 5.535
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1290
+ 1222.413
+ 849.841
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1291
+ 1226.840
+ 854.009
+ 4.168
+ 4.168
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1292
+ 1232.867
+ 858.177
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1293
+ 1237.294
+ 852.232
+ 5.946
+ 5.946
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1294
+ 1243.321
+ 846.286
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1295
+ 1247.748
+ 841.374
+ 4.912
+ 4.912
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1296
+ 1253.775
+ 836.462
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1297
+ 1258.202
+ 837.619
+ 1.157
+ 1.157
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1298
+ 1264.229
+ 838.775
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1299
+ 1274.682
+ 840.366
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1300
+ 1279.109
+ 836.909
+ 3.457
+ 3.457
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1301
+ 1285.136
+ 833.452
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1302
+ 1289.563
+ 830.893
+ 2.559
+ 2.559
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1303
+ 1295.590
+ 828.334
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1304
+ 1300.017
+ 827.163
+ 1.171
+ 1.171
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1305
+ 1306.044
+ 825.992
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1306
+ 1316.497
+ 827.045
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1307
+ 1326.951
+ 825.514
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1308
+ 1331.378
+ 828.560
+ 3.045
+ 3.045
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1309
+ 1337.405
+ 831.605
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1310
+ 1341.832
+ 833.534
+ 1.930
+ 1.930
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1311
+ 1347.859
+ 835.464
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1312
+ 1352.286
+ 836.403
+ 0.939
+ 0.939
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1313
+ 1358.313
+ 837.342
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1314
+ 1362.739
+ 831.482
+ 5.860
+ 5.860
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1315
+ 1368.766
+ 825.622
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1316
+ 1373.193
+ 824.300
+ 1.322
+ 1.322
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1317
+ 1379.220
+ 822.978
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1318
+ 1383.647
+ 825.740
+ 2.763
+ 2.763
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1319
+ 1389.674
+ 828.503
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1320
+ 1394.101
+ 824.162
+ 4.341
+ 4.341
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1321
+ 1400.128
+ 819.821
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1322
+ 1404.555
+ 815.818
+ 4.003
+ 4.003
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1323
+ 1410.582
+ 811.815
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1324
+ 1415.008
+ 808.837
+ 2.977
+ 2.977
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1325
+ 1421.035
+ 805.860
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1326
+ 1425.462
+ 812.128
+ 6.268
+ 6.268
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1327
+ 1431.489
+ 818.395
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1328
+ 1435.916
+ 823.698
+ 5.302
+ 5.302
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1329
+ 1441.943
+ 829.000
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1330
+ 1446.370
+ 830.398
+ 1.398
+ 1.398
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1331
+ 1452.397
+ 831.796
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1332
+ 1456.824
+ 838.060
+ 6.265
+ 6.265
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1333
+ 1462.850
+ 844.325
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1334
+ 1473.304
+ 845.525
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1335
+ 1477.731
+ 846.753
+ 1.229
+ 1.229
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1336
+ 1483.758
+ 847.982
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1337
+ 1488.185
+ 849.095
+ 1.113
+ 1.113
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1338
+ 1494.212
+ 850.209
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1339
+ 1498.639
+ 847.207
+ 3.002
+ 3.002
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1340
+ 1504.666
+ 844.205
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1341
+ 1509.092
+ 847.064
+ 2.859
+ 2.859
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1342
+ 1515.119
+ 849.922
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1343
+ 1525.573
+ 848.562
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1344
+ 1530.000
+ 842.665
+ 5.897
+ 5.897
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1345
+ 292.027
+ 778.131
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1346
+ 296.454
+ 779.899
+ 1.768
+ 1.768
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1347
+ 302.481
+ 781.668
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1348
+ 306.908
+ 784.015
+ 2.347
+ 2.347
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1349
+ 312.934
+ 786.363
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1350
+ 317.361
+ 787.246
+ 0.884
+ 0.884
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1351
+ 323.388
+ 788.130
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1352
+ 333.842
+ 787.264
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1353
+ 338.269
+ 786.339
+ 0.925
+ 0.925
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1354
+ 344.296
+ 785.414
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1355
+ 348.723
+ 783.421
+ 1.992
+ 1.992
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1356
+ 354.750
+ 781.429
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1357
+ 365.203
+ 781.726
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1358
+ 375.657
+ 780.985
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1359
+ 380.084
+ 782.799
+ 1.814
+ 1.814
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1360
+ 386.111
+ 784.613
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1361
+ 396.565
+ 784.478
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1362
+ 407.018
+ 784.131
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1363
+ 417.472
+ 782.592
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1364
+ 427.926
+ 782.354
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1365
+ 432.353
+ 781.358
+ 0.996
+ 0.996
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1366
+ 438.380
+ 780.363
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1367
+ 442.807
+ 778.289
+ 2.073
+ 2.073
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1368
+ 448.834
+ 776.216
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1369
+ 453.261
+ 777.203
+ 0.987
+ 0.987
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1370
+ 459.287
+ 778.190
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1371
+ 463.714
+ 779.826
+ 1.636
+ 1.636
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1372
+ 469.741
+ 781.462
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1373
+ 480.195
+ 780.788
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1374
+ 484.622
+ 779.345
+ 1.443
+ 1.443
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1375
+ 490.649
+ 777.902
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1376
+ 501.103
+ 779.296
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1377
+ 505.529
+ 781.627
+ 2.331
+ 2.331
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1378
+ 511.556
+ 783.958
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1379
+ 522.010
+ 783.242
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1380
+ 526.437
+ 781.888
+ 1.354
+ 1.354
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1381
+ 532.464
+ 780.534
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1382
+ 536.891
+ 779.457
+ 1.077
+ 1.077
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1383
+ 542.918
+ 778.380
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1384
+ 553.371
+ 778.797
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1385
+ 563.825
+ 777.813
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1386
+ 574.279
+ 779.071
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1387
+ 584.733
+ 779.386
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1388
+ 589.160
+ 781.735
+ 2.349
+ 2.349
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1389
+ 595.187
+ 784.084
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1390
+ 599.613
+ 785.201
+ 1.118
+ 1.118
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1391
+ 605.640
+ 786.319
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1392
+ 616.094
+ 785.334
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1393
+ 626.548
+ 786.045
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1394
+ 637.002
+ 786.511
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1395
+ 641.429
+ 788.613
+ 2.102
+ 2.102
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1396
+ 647.455
+ 790.715
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1397
+ 651.882
+ 791.951
+ 1.237
+ 1.237
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1398
+ 657.909
+ 793.188
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1399
+ 662.336
+ 794.698
+ 1.510
+ 1.510
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1400
+ 668.363
+ 796.208
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1401
+ 672.790
+ 794.700
+ 1.507
+ 1.507
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1402
+ 678.817
+ 793.193
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1403
+ 683.244
+ 794.247
+ 1.054
+ 1.054
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1404
+ 689.271
+ 795.300
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1405
+ 699.724
+ 796.598
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1406
+ 704.151
+ 795.091
+ 1.506
+ 1.506
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1407
+ 710.178
+ 793.585
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1408
+ 714.605
+ 794.646
+ 1.061
+ 1.061
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1409
+ 720.632
+ 795.708
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1410
+ 731.086
+ 796.345
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1411
+ 735.513
+ 797.469
+ 1.124
+ 1.124
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1412
+ 741.539
+ 798.594
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1413
+ 745.966
+ 800.690
+ 2.096
+ 2.096
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1414
+ 751.993
+ 802.785
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1415
+ 756.420
+ 800.599
+ 2.187
+ 2.187
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1416
+ 762.447
+ 798.412
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1417
+ 766.874
+ 799.272
+ 0.860
+ 0.860
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1418
+ 772.901
+ 800.132
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1419
+ 777.328
+ 799.296
+ 0.836
+ 0.836
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1420
+ 783.355
+ 798.461
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1421
+ 787.782
+ 796.492
+ 1.968
+ 1.968
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1422
+ 793.808
+ 794.524
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1423
+ 798.235
+ 796.862
+ 2.338
+ 2.338
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1424
+ 804.262
+ 799.201
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1425
+ 808.689
+ 800.565
+ 1.364
+ 1.364
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1426
+ 814.716
+ 801.929
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1427
+ 819.143
+ 802.853
+ 0.923
+ 0.923
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1428
+ 825.170
+ 803.776
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1429
+ 829.597
+ 805.571
+ 1.795
+ 1.795
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1430
+ 835.624
+ 807.367
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1431
+ 840.050
+ 809.511
+ 2.144
+ 2.144
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1432
+ 846.077
+ 811.655
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1433
+ 850.504
+ 812.751
+ 1.096
+ 1.096
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1434
+ 856.531
+ 813.847
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1435
+ 860.958
+ 812.758
+ 1.089
+ 1.089
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1436
+ 866.985
+ 811.668
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1437
+ 871.412
+ 809.713
+ 1.956
+ 1.956
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1438
+ 877.439
+ 807.757
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1439
+ 881.866
+ 805.945
+ 1.812
+ 1.812
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1440
+ 887.892
+ 804.133
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1441
+ 892.319
+ 802.600
+ 1.533
+ 1.533
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1442
+ 898.346
+ 801.067
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1443
+ 902.773
+ 802.238
+ 1.171
+ 1.171
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1444
+ 908.800
+ 803.408
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1445
+ 919.254
+ 803.661
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1446
+ 929.708
+ 803.809
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1447
+ 940.161
+ 803.790
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1448
+ 950.615
+ 805.274
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1449
+ 955.042
+ 803.515
+ 1.759
+ 1.759
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1450
+ 961.069
+ 801.756
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1451
+ 965.496
+ 804.079
+ 2.323
+ 2.323
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1452
+ 971.523
+ 806.402
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1453
+ 975.950
+ 807.676
+ 1.274
+ 1.274
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1454
+ 981.976
+ 808.950
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1455
+ 986.403
+ 806.862
+ 2.087
+ 2.087
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1456
+ 992.430
+ 804.775
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1457
+ 996.857
+ 806.326
+ 1.551
+ 1.551
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1458
+ 1002.884
+ 807.877
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1459
+ 1013.338
+ 807.771
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1460
+ 1023.792
+ 808.114
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1461
+ 1028.218
+ 806.539
+ 1.575
+ 1.575
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1462
+ 1034.245
+ 804.964
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1463
+ 1038.672
+ 803.239
+ 1.725
+ 1.725
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1464
+ 1044.699
+ 801.514
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1465
+ 1049.126
+ 799.552
+ 1.962
+ 1.962
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1466
+ 1055.153
+ 797.589
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1467
+ 1059.580
+ 796.298
+ 1.291
+ 1.291
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1468
+ 1065.607
+ 795.007
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1469
+ 1070.034
+ 794.142
+ 0.865
+ 0.865
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1470
+ 1076.061
+ 793.277
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1471
+ 1080.487
+ 791.967
+ 1.311
+ 1.311
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1472
+ 1086.514
+ 790.656
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1473
+ 1090.941
+ 788.504
+ 2.151
+ 2.151
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1474
+ 1096.968
+ 786.353
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1475
+ 1101.395
+ 784.698
+ 1.655
+ 1.655
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1476
+ 1107.422
+ 783.043
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1477
+ 1117.876
+ 783.923
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1478
+ 1128.329
+ 784.342
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1479
+ 1138.783
+ 784.210
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1480
+ 1149.237
+ 785.672
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1481
+ 1153.664
+ 787.100
+ 1.427
+ 1.427
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1482
+ 1159.691
+ 788.527
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1483
+ 1164.118
+ 787.614
+ 0.913
+ 0.913
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1484
+ 1170.145
+ 786.701
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1485
+ 1174.571
+ 788.471
+ 1.770
+ 1.770
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1486
+ 1180.598
+ 790.241
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1487
+ 1185.025
+ 788.579
+ 1.662
+ 1.662
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1488
+ 1191.052
+ 786.917
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1489
+ 1195.479
+ 788.823
+ 1.906
+ 1.906
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1490
+ 1201.506
+ 790.730
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1491
+ 1205.933
+ 789.718
+ 1.012
+ 1.012
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1492
+ 1211.960
+ 788.707
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1493
+ 1222.413
+ 788.958
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1494
+ 1226.840
+ 791.413
+ 2.455
+ 2.455
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1495
+ 1232.867
+ 793.869
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1496
+ 1237.294
+ 791.446
+ 2.423
+ 2.423
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1497
+ 1243.321
+ 789.023
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1498
+ 1253.775
+ 788.205
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1499
+ 1258.202
+ 789.060
+ 0.854
+ 0.854
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1500
+ 1264.229
+ 789.914
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1501
+ 1268.655
+ 791.956
+ 2.041
+ 2.041
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1502
+ 1274.682
+ 793.997
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1503
+ 1279.109
+ 791.543
+ 2.454
+ 2.454
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1504
+ 1285.136
+ 789.089
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1505
+ 1289.563
+ 790.406
+ 1.317
+ 1.317
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1506
+ 1295.590
+ 791.723
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1507
+ 1300.017
+ 792.649
+ 0.926
+ 0.926
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1508
+ 1306.044
+ 793.575
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1509
+ 1310.471
+ 795.497
+ 1.922
+ 1.922
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1510
+ 1316.497
+ 797.419
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1511
+ 1326.951
+ 797.313
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1512
+ 1337.405
+ 795.778
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1513
+ 1341.832
+ 796.701
+ 0.923
+ 0.923
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1514
+ 1347.859
+ 797.625
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1515
+ 1352.286
+ 796.088
+ 1.536
+ 1.536
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1516
+ 1358.313
+ 794.552
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1517
+ 1368.766
+ 795.198
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1518
+ 1373.193
+ 797.443
+ 2.245
+ 2.245
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1519
+ 1379.220
+ 799.687
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1520
+ 1383.647
+ 797.353
+ 2.335
+ 2.335
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1521
+ 1389.674
+ 795.018
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1522
+ 1394.101
+ 795.848
+ 0.830
+ 0.830
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1523
+ 1400.128
+ 796.677
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1524
+ 1404.555
+ 795.508
+ 1.170
+ 1.170
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1525
+ 1410.582
+ 794.338
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1526
+ 1421.035
+ 794.562
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1527
+ 1431.489
+ 794.637
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1528
+ 1435.916
+ 796.024
+ 1.387
+ 1.387
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1529
+ 1441.943
+ 797.411
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1530
+ 1452.397
+ 797.644
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1531
+ 1462.850
+ 798.158
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1532
+ 1467.277
+ 795.648
+ 2.509
+ 2.509
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1533
+ 1473.304
+ 793.139
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1534
+ 1477.731
+ 791.461
+ 1.678
+ 1.678
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1535
+ 1483.758
+ 789.782
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1536
+ 1488.185
+ 792.022
+ 2.240
+ 2.240
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1537
+ 1494.212
+ 794.263
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1538
+ 1498.639
+ 795.607
+ 1.345
+ 1.345
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1539
+ 1504.666
+ 796.952
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1540
+ 1515.119
+ 797.023
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1541
+ 1525.573
+ 795.592
+ 0.800
+ 0.800
+ 6.027
+ 6.027
+ 0.0
+ 0.0
+
+
+
+
+
+ 1542
+ 1530.000
+ 794.368
+ 1.224
+ 1.224
+ 0.800
+ 0.800
+ 0.0
+ 0.0
+
+
+
+
+
+ 1543
+ 299.000
+ 924.500
+ 1.500
+ 1.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1544
+ ENGINE POWER
+
+
+
+ true
+ 359.500
+ 925.000
+ 7.500
+ 7.500
+ 39.500
+ 39.500
+ 0.0
+ 0.0
+
+
+ 1545
+ 479.000
+ 924.500
+ 1.500
+ 1.500
+ 13.000
+ 13.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1546
+ BATTERY SOC
+
+
+
+ true
+ 534.000
+ 925.000
+ 7.500
+ 7.500
+ 34.000
+ 34.000
+ 0.0
+ 0.0
+
+
+ 1593
+ Context
+
+ 27
+
+ 1547
+ 4.0
+ 1738.000
+ 803.000
+ 147.000
+ 147.000
+ 158.000
+ 158.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1548
+ 1738.000
+ 671.000
+ 15.000
+ 15.000
+ 158.000
+ 158.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1549
+ MACHINE CONTEXT
+
+
+
+ true
+ 1651.000
+ 671.000
+ 8.500
+ 8.500
+ 55.000
+ 55.000
+ 0.0
+ 0.0
+
+
+ 1550
+ MACHINE
+
+
+
+ true
+ 1620.500
+ 704.000
+ 7.500
+ 7.500
+ 24.500
+ 24.500
+ 0.0
+ 0.0
+
+
+ 1551
+ STRADDLE 32
+
+
+
+ true
+ 1841.500
+ 704.000
+ 6.500
+ 6.500
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 1552
+ 1738.000
+ 713.500
+ 0.500
+ 0.500
+ 142.000
+ 142.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1553
+ MODE
+
+
+
+ true
+ 1612.000
+ 732.000
+ 7.500
+ 7.500
+ 16.000
+ 16.000
+ 0.0
+ 0.0
+
+
+ 1554
+ AUTOMATIC
+
+
+
+ true
+ 1848.500
+ 732.000
+ 6.500
+ 6.500
+ 31.500
+ 31.500
+ 0.0
+ 0.0
+
+
+ 1555
+ 1738.000
+ 741.500
+ 0.500
+ 0.500
+ 142.000
+ 142.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1556
+ OPERATOR
+
+
+
+ true
+ 1623.500
+ 760.000
+ 7.500
+ 7.500
+ 27.500
+ 27.500
+ 0.0
+ 0.0
+
+
+ 1557
+ J. MARSHALL
+
+
+
+ true
+ 1841.500
+ 760.000
+ 6.500
+ 6.500
+ 38.500
+ 38.500
+ 0.0
+ 0.0
+
+
+ 1558
+ 1738.000
+ 769.500
+ 0.500
+ 0.500
+ 142.000
+ 142.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1559
+ SHIFT
+
+
+
+ true
+ 1610.000
+ 788.000
+ 7.500
+ 7.500
+ 14.000
+ 14.000
+ 0.0
+ 0.0
+
+
+ 1560
+ DAY 06:00–14:00
+
+
+
+ true
+ 1824.000
+ 788.000
+ 6.500
+ 6.500
+ 56.000
+ 56.000
+ 0.0
+ 0.0
+
+
+ 1561
+ 1738.000
+ 797.500
+ 0.500
+ 0.500
+ 142.000
+ 142.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1562
+ MOVES THIS SHIFT
+
+
+
+ true
+ 1643.000
+ 816.000
+ 7.500
+ 7.500
+ 47.000
+ 47.000
+ 0.0
+ 0.0
+
+
+ 1563
+ 148
+
+
+
+ true
+ 1869.500
+ 816.000
+ 6.500
+ 6.500
+ 10.500
+ 10.500
+ 0.0
+ 0.0
+
+
+ 1564
+ 1738.000
+ 825.500
+ 0.500
+ 0.500
+ 142.000
+ 142.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1565
+ ENGINE HOURS
+
+
+
+ true
+ 1635.500
+ 844.000
+ 7.500
+ 7.500
+ 39.500
+ 39.500
+ 0.0
+ 0.0
+
+
+ 1566
+ 28641
+
+
+
+ true
+ 1862.500
+ 844.000
+ 6.500
+ 6.500
+ 17.500
+ 17.500
+ 0.0
+ 0.0
+
+
+ 1567
+ 1738.000
+ 853.500
+ 0.500
+ 0.500
+ 142.000
+ 142.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1568
+ ACTIVE ALARMS
+
+
+
+ true
+ 1636.500
+ 872.000
+ 7.500
+ 7.500
+ 40.500
+ 40.500
+ 0.0
+ 0.0
+
+
+ 1569
+ 0
+
+
+
+ true
+ 1876.500
+ 872.000
+ 6.500
+ 6.500
+ 3.500
+ 3.500
+ 0.0
+ 0.0
+
+
+ 1570
+ 1738.000
+ 881.500
+ 0.500
+ 0.500
+ 142.000
+ 142.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1571
+ HISTORY SOURCE
+
+
+
+ true
+ 1640.500
+ 900.000
+ 7.500
+ 7.500
+ 44.500
+ 44.500
+ 0.0
+ 0.0
+
+
+ 1572
+ CI HISTORIAN A
+
+
+
+ true
+ 1831.000
+ 900.000
+ 6.500
+ 6.500
+ 49.000
+ 49.000
+ 0.0
+ 0.0
+
+
+ 1573
+ 1738.000
+ 909.500
+ 0.500
+ 0.500
+ 142.000
+ 142.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1594
+ Groups
+
+ 13
+
+ 1574
+ 4.0
+ 1056.000
+ 990.000
+ 18.000
+ 18.000
+ 840.000
+ 840.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1575
+ TREND GROUP
+
+
+
+ true
+ 265.500
+ 990.000
+ 7.000
+ 7.000
+ 33.500
+ 33.500
+ 0.0
+ 0.0
+
+
+ 1576
+ 3.0
+ 390.000
+ 990.000
+ 10.000
+ 10.000
+ 54.000
+ 54.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1577
+ DRIVE
+
+
+
+ true
+ 390.000
+ 990.000
+ 7.500
+ 7.500
+ 15.500
+ 15.500
+ 0.0
+ 0.0
+
+
+ 1578
+ 3.0
+ 508.000
+ 990.000
+ 10.000
+ 10.000
+ 54.000
+ 54.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1579
+ HYDRAULIC
+
+
+
+ true
+ 508.000
+ 990.000
+ 7.500
+ 7.500
+ 29.500
+ 29.500
+ 0.0
+ 0.0
+
+
+ 1580
+ 3.0
+ 626.000
+ 990.000
+ 10.000
+ 10.000
+ 54.000
+ 54.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1581
+ ELECTRICAL
+
+
+
+ true
+ 626.000
+ 990.000
+ 7.500
+ 7.500
+ 29.500
+ 29.500
+ 0.0
+ 0.0
+
+
+ 1582
+ 3.0
+ 744.000
+ 990.000
+ 10.000
+ 10.000
+ 54.000
+ 54.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1583
+ SPREADER
+
+
+
+ true
+ 744.000
+ 990.000
+ 7.500
+ 7.500
+ 26.500
+ 26.500
+ 0.0
+ 0.0
+
+
+ 1584
+ 3.0
+ 862.000
+ 990.000
+ 10.000
+ 10.000
+ 54.000
+ 54.000
+ 0.0
+ 0.0
+
+
+
+
+
+ 1585
+ FUEL
+
+
+
+ true
+ 862.000
+ 990.000
+ 7.500
+ 7.500
+ 12.000
+ 12.000
+ 0.0
+ 0.0
+
+
+ 1586
+ DUMMY DATA · NOT CONNECTED TO HISTORIAN
+
+
+
+ true
+ 1754.000
+ 990.000
+ 7.500
+ 7.500
+ 126.000
+ 126.000
+ 0.0
+ 0.0
+
+
+
diff --git a/99-reference/ciserver-hmi-deployment/layouts/Layouts-original.xml b/99-reference/ciserver-hmi-deployment/layouts/Layouts-original.xml
new file mode 100644
index 0000000..b4e131a
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/layouts/Layouts-original.xml
@@ -0,0 +1,6467 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/99-reference/ciserver-hmi-deployment/layouts/Layouts.readme b/99-reference/ciserver-hmi-deployment/layouts/Layouts.readme
new file mode 100644
index 0000000..dceeda3
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/layouts/Layouts.readme
@@ -0,0 +1,602 @@
+
+@(#)Layouts.readme
+
+Copyright: Yokogawa. All rights reserved.
+YOKOGAWA PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+
+Author: C. Horevoorts
+
+----------------------------------------------------------------------------
+Changes ....
+----------------------------------------------------------------------------
+Who When Change What
+----------------------------------------------------------------------------
+HVS Mar-05 e9435 First version documented
+HVS Jan-09 i10158 Allow printing in inverted mode
+HVS Feb-09 e10100 Add debugActivationKey
+HVS Nar-09 i10175 Implement shell command
+HVS Apr-09 i10192 Allow printing in additional modes
+HVS Jun-09 e10100 Web-HMI Phase 2
+HVS Jan-11 e10362 Playback
+HVS Apr-14 i11026 Correct usage
+HVS Jul-15 e10910 Add sub-menu
+HMN Aug-15 e11351 Add toggleSize action
+HVS Feb-18 e11928 Add passing parameters values to display activation from menu or toolbar
+HVS Mar-18 e11944 Add possibility to place new frame at coordinates of current or specific screen
+
+Layout definition
+=================
+
+The layouts.xml file describes the layout of a Web-HMI operator window.
+Multiple layouts can be described in this file. A layout is defined as
+follows:
+
+
+
+
+
+
+ menu definition
+
+
+
+ toolbar definition
+
+
+
+ frame definition
+
+
+
+ ...
+
+
+
+ ...
+
+
+
+The menu defines the layout and functions of the menu at the top of the
+window defined by the layout. The toolbar defines the layout and functions
+of toolbar that appears below the menu. The frame-set defines that frames
+that appear in the remainder of the window.
+
++----------------------------------------------------------------+
+| Window heading _OX|
++----------------------------------------------------------------+
+| Menu area |
++----------------------------------------------------------------+
+| Toolbar area |
++----------------------------------------------------------------+
+| |
+| Frame area |
+| |
+| |
+| |
+| |
+| |
+| |
+| |
+| |
+| |
++----------------------------------------------------------------+
+| Status line |
++----------------------------------------------------------------+
+
+The menu and toolbar definitions are optional. The frame set is required.
+
+Layouts options
+---------------
+
+debugActivationKey
+The name of a key ([..] ) that opens the display
+debugger window.
+ can be any letter or HOME, END, PAGE_UP, PAGE_DOWN, UP, DOWN, LEFT,
+RIGHT, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, INSERT.
+ can be CONTROL, SHIFT, ALT.
+For example: "CONTROL SHIFT F6"
+
+
+Layout options
+---------------
+
+name
+The name of the layout. An operator can have a layout assigned. This
+layout is activated when the operator logs-in. In addition the
+'Activate display' control in a display can specify a layout to activate
+the display in.
+
+title
+The title that appears in the window heading. This is only true when border
+is set to true. If the title is $ then
+the title of the display active in the frame will be used
+as window title.
+
+drawBorder
+If true the window border and window heading are drawn.
+
+sizingAllowed
+If true then the operator is allowed to resize or maximize the window.
+
+minimizingAllowed
+If true then the operator is allowed to minimize the window.
+
+closingAllowed
+If true then the operator is allowed to close the window.
+
+alwaysOnTop
+If true the window will always be the top window on the desktop.
+
+modal
+If true the layout will be modal if other layouts ar active.
+
+lookAndFeel
+Sets the look and feel. Must be a Java look and feel class like
+com.sun.java.swing.plaf.windows.WindowsLookAndFeel.
+
+initialPosition
+Specifies the default position of the window when it appears:
+pixels - the window will be positioned at the position specified by
+ initialPositionX and initialPositionY of the desktop.
+ This is the same as pixelsDesktop.
+pixelsDesktop - the window will be positioned at the position specified by
+ initialPositionX and initialPositionYof the desktop.
+ This is the same as pixels.
+pixelsCurrentScreen - the window will be positioned at the position of the current screen specified by
+ initialPositionX and initialPositionY of
+pixelsScreen - the window will be positioned at the position of the primary screen specified by
+ initialPositionX and initialPositionY of
+pixelsScreen1 - the window will be positioned at the position of the first screen specified by
+ initialPositionX and initialPositionY.
+pixelsScreen2 - the window will be positioned at the position of the second screen specified by
+ initialPositionX and initialPositionY.
+pixelsScreen - the window will be positioned at the position of the -the screen specified by
+ initialPositionX and initialPositionY.
+centreCurrentScreen - the window will be positioned around the centre of the current screen.
+centreScreen - the window will be positioned around the centre of the primary screen.
+centreScreen1 - the window will be positioned around the centre of the first screen.
+centreScreen2 - the window will be positioned around the centre of the seconds screen.
+centreScreen - the window will be positioned around the centre of the -the screen.
+centreDesktop - the window will be positioned around the centre of the desktop. In case of a
+ multiple screen environment the virtual desktop is used.
+centreLayout - the window will be positioned around the centre of the parent layout.
+centreFrame - the window will be positioned around the centre of the parent frame.
+atCursor - the window will be positioned right down at the current cursor position.
+awayFromCursor - the window will be positioned as far away as possible from the current cursor position.
+
+initialPositionX
+Specifies the X position of the window if initialPosition is pixels, pixelsDesktop, pixelsCurrentScreen or pixelsScreen else
+it is ignored.
+
+initialPositionY
+Specifies the Y position of the window if initialPosition is pixels, pixelsDesktop, pixelsCurrentScreen or pixelsScreen else
+it is ignored.
+
+initialSize
+Specifies the default size of the window when it appears:
+pixels - the window size is specified by initialSizeWidth and initialSizeHeight.
+screenSize - the window size will be the size of the screen.
+desktopSize - the window size will be the size of the desktop. In case of a
+ multiple screen environment the virtual desktop is used.
+fitFrames - the window is wrapped around the size of the defined frames.
+
+initialSizeWidth
+Specifies the width of the window if initialSize is pixels else
+it is ignored.
+
+initialSizeHeight
+Specifies the height of the window if initialSize is pixels else
+it is ignored.
+
+maximumOpen
+Specifies the maximum number of open instances of the layout. Default is 1.
+
+printOrientation
+Specifies the print orientation:
+landscape - landscape orientation
+portrait - portrait orientation
+Default is landscape.
+
+printLeftMargin
+Specifies the left printing margin in mm.
+
+printRightMargin
+Specifies the right printing margin in mm.
+
+printTopMargin
+Specifies the top printing margin in mm.
+
+printBottomMargin
+Specifies the bottom printing margin in mm.
+
+Menu definition
+===============
+
+Only one menu can be defined. The menu is defined as follows:
+
+
+
+
+
+
+
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+ ...
+
+
+The maximum level of menu nesting is two. A menu item specifies the layout and
+associated command of a menu entry. A menu separator specifies a separator
+between two menu items and may only appear in the nested menus.
+
+menu item options
+-----------------
+
+name
+The name of the menu item.
+
+label
+The label of the menu.
+
+icon
+The name of the icon file. Icons can be found at http://www.trash.net/~ffischer/admin/icons/
+
+type
+The menu entry type. Can be one of:
+normal - normal menu entry (default)
+radio - radio button
+check - check button
+sub - start of a sub menu
+
+mnemonic
+The mnemonic character in the menu.
+
+accelerator
+The accelerator key ([..] ) for the menu:
+ can be any letter or HOME, END, PAGE_UP, PAGE_DOWN, UP, DOWN, LEFT,
+RIGHT, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, INSERT.
+ can be CONTROL, SHIFT, ALT.
+For example: "CONTROL F1"
+
+tooltip
+The tooltip text. A $ sign in the tooltip text will be replaced by a text depending
+the command (see next).
+
+command
+The command to be executed. One of:
+exit - close the window.
+print [inverted|grayInverted|lightnessInverted] - print to the default system printer.
+ can be:
+ frameWithSetup - print the selected frame after viewing the setup dialog.
+ frame - print the selected frame without viewing the setup dialog.
+ preview - shows the preview dialog.
+ setup - shows the setup dialog.
+ selectFrame - allows to select a frame for printing.
+ If inverted is specified then all colors are inverted before printing
+ If grayInverted is specified then all gray colors are inverted before printing
+ If lightnessInverted is specified then lightness is inverted whilst maintaining the same hue and saturation.
+help - activate the help.
+navigate [] - navigate through displays.
+ specifies the navigation direction:
+ back - navigates back in the specified frame. A $ sign in the tooltip text will
+ be replaced by the back display name.
+ backList - navigates backwards showing the history list in the specified frame.
+ forward - navigates forward in the specified frame. A $ sign in the tooltip text
+ will be replaced by the forward display name.
+ forwardList - navigates forward showing the history list in the specified frame.
+ up - navigates up in the specified frame.
+ home - navigates home in the specified frame. A $ sign in the tooltip text
+ will be replaced by the home display name.
+ to - activates the specified display in the specified frame.
+ history - shows a combobox with all the displays shows before in the specified frame.
+ specifies the name of the frame to navigate in.
+ specifies the name of the display to be activated if the
+ direction is "to".
+ specifies the initial zooming:
+ asIs = the display is shown using the size as created (this is the default)
+ fitDisplay = the display is fit into the frame remaining the aspect ratio.
+ stretchDisplay = the display is fit into the frame without remaining the aspect ratio.
+ % = zoom value
+ specifies the values to be passed to external parameters of the display to activate.
+ Will be used when is "to".
+ The parameters are specified as =[;=]...
+ Example:
+ Pipeline=MainLine;Station=Houston;Inlet=Valinta;Count=12
+shell - Executes the specified os command.
+ specifies the location to execute the command and is one of:
+ client - executes the command on the client.
+ server - executes the command on the server.
+ specifies the command to execute. The command may not contain spaces.
+zooom - zoom in the display.
+ specifies the zoom level. A number between 0 and 10 specifies an
+ absolute zoom level where the value of 1 means original size, 2 means
+ a double size, 0.5 means halve size and 0 means fit into frame.
+ Values between 10 and 1000 mean a relative zoom size in % where
+ 100 means no change and 200 means zoom in twice.
+ specified the name of the frame where zooming occurs.
+lookfeel - Switch to a look&feel.
+ specifies the look and feel and is one of:
+ Java look and feel classes like:
+ com.sun.java.swing.plaf.windows.WindowsLookAndFeel
+ or
+ lookfeel javax.swing.plaf.metal.MetalLookAndFeel
+toolbar - shows/hides the toolbar.
+ can be:
+ true - show the toolbar
+ false - hide the toolbar
+login - secondary login.
+logout - secondary logout.
+playback - Access to the playback functionality.
+ is one of:
+ record - toggles recording on or off
+ view - opens the viewer or moves the viewer to the top if the viewer is already open.
+toggleSize - Toggles between initial size and position and provided size and position.
+ is one of:
+ "fullScreen [screenNr]" - will switch to fullscreen. screenNr is optional.
+ if layout is 'alwaysOnTop', then whole visible area will be used,
+ else taskbar stays visible.
+ screenNr 0 expands across all screens.
+ screenNr 1+ to select specific screen.
+ ",,x" - will switch to provided size and location.
+
+Toolbar definition
+==================
+
+More toolbars can be defined. The toolbar is defined as follows:
+
+
+
+ ...
+
+ ...
+
+
+
+A toolbar item specifies the layout and associated command of a toolbar button.
+A toolbar separator specifies a separator between two toolbar items.
+
+toolbar options
+---------------
+
+name
+The name of the toolbar.
+
+label
+The label of the toolbar, appears when the toolbar floats.
+
+floatable
+If true then the toolbar is floatable. Default is true
+
+position
+The position of the toolbar, default position is top:
+top - top of the layout.
+bottom - bottom of the layout.
+left - left side of the layout.
+right - right side of the layout.
+
+toolbar item options
+--------------------
+
+name
+The name of the toolbar item.
+
+label
+The label of the button. Optional.
+
+icon
+The name of the icon file. Required for the normal type (see type).
+
+type
+The toolbar entry type. Can be one of:
+normal - normal toolbar button (default)
+combo - combo box
+editableCombo - editable combo box
+dropdownList - a normal toolbar button with a dropdown list
+
+tooltip
+The tooltip text
+
+command
+The command to be executed (see menu item command).
+
+
+Status line definition
+======================
+
+The status line is defined as follows:
+
+
+
+ ...
+
+ ...
+
+
+A status line item specifies the layout of a status line field.
+A status line separator specifies a separator between two status line items.
+
+status line item options
+------------------------
+
+name
+The name of the status line item
+
+type
+The status line entry type. Can be one of:
+statusText - In this field the status is displayed.
+userName - The user name is displayed.
+progresBar - In this field the progress bar is displayed.
+graphicsQueueLevel - In this field the level of the graphics queue is displayed.
+connectionState - In this field the connection state is displayed.
+
+icon
+The name of the icon file for the connection state. The name is appended with:
+_v - for the good server connection indication.
+_x - for the bad server connection indication.
+_s - for a bad server.
+
+tooltip
+The tooltip text
+
+
+Frame definition
+================
+
+The frames are defined as follows:
+
+
+
+ ...
+
+
+
+ ...
+
+
+
+ ...
+
+ ...
+
+
+Frames can be nested unlimited. The frame mechanism is described in
+http://www.w3.org/TR/REC-html40/present/frames.html.
+The options supported are described here.
+
+frame-set options
+-----------------
+
+cols
+The frame is divided into the number of columns specified as
+[, ]...
+ can be an absolute width in pixels or a fraction of the width
+left over. For example "2*, 100, 3*" defines three columns. The middle has a
+width of 100 pixels. When there are 500 pixels left then the first columns
+takes 200 pixels and the last column 300 pixels. A value of "fitDisplay" will
+make the width to match the width of the display shown in the related frame.
+
+rows
+The frame is divided into the number of rows specified as
+[, ]...
+ can be an absolute width in pixels or a fraction of the height
+left over. A value of "fitDisplay" will
+make the height to match the height of the display shown in the related frame.
+
+Note that only one of cols, rows or tabs can be specified.
+
+borderStyle
+Specifies the border of the frame or frame-set:
+none - no border is drawn
+line - a simple line is drawn
+raisedEtched -
+loweredEtched -
+raisedBevel -
+loweredBevel -
+
+frame options
+-------------
+
+name
+The name of the frame.
+
+scrollingAllowed
+If true then the display in the frame can be panned.
+
+zoomingAllowed
+If true then the display in the frame can be zoomed.
+
+initialDisplay
+The name of the display that is initially shown in the fame. This display
+becomes the 'home' display.
+
+stackSize
+Specifies the number of displays that can be stacked for the Back and Forward navigation
+functions
+
+borderStyle
+Specifies the border of the frame or frame-set:
+none - no border is drawn
+line - a simple line is drawn
+raisedEtched -
+loweredEtched -
+raisedBevel -
+loweredBevel -
+
+zoom
+Specifies the initial zooming of the display:
+fitdisplay = the display is fit into the frame remaining the aspect ratio.
+stretchdisplay = the display is fit into the frame without remaining the aspect ratio.
+% = zoom value
+
+minimumTabLabelWidth
+The minimum length of a tab label.
+
+tabButtonGap
+The space between the tab label and the close button.
+
+tab Options
+-----------
+
+tabPosition
+top -
+bottom -
+left -
+right -
+
+maximumTabs
+Specifies the maximum number of tabs that can be opened.
+
+The element can also provide defaults for the embedded Frames. Default options are:
+stacksize
+name
+zoomingAllowed
+scrollingAllowed
+closeTabAllowed
+borderStyle
+
+Embedded Frames have an extra option 'closeTabAllowed'
+
+
+Translation definitions
+=======================
+
+For localization purposes more translation table can be added to the layouts.
+
+ ..
+
+Translation options
+-------------------
+
+name
+The name of the locale for which this translation contains the translations. For example "nl_NL".
+
+The name option is followed be the list of translations for the locale specified by the name option.
+Each translation contains a key/value pair where the key is the name of the menu item, status bar item, etc.
+followed by . where option name is one of the options of the menu item for example.
+The value contains the text to be used for the option.
diff --git a/99-reference/ciserver-hmi-deployment/layouts/Layouts.xml b/99-reference/ciserver-hmi-deployment/layouts/Layouts.xml
new file mode 100644
index 0000000..5f713c5
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/layouts/Layouts.xml
@@ -0,0 +1,6502 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/99-reference/ciserver-hmi-deployment/locales/readme.txt b/99-reference/ciserver-hmi-deployment/locales/readme.txt
new file mode 100644
index 0000000..7d1fe27
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/locales/readme.txt
@@ -0,0 +1 @@
+This directory contains the global display/symbol translations
\ No newline at end of file
diff --git a/99-reference/ciserver-hmi-deployment/thresholds/readme.txt b/99-reference/ciserver-hmi-deployment/thresholds/readme.txt
new file mode 100644
index 0000000..6f62db9
--- /dev/null
+++ b/99-reference/ciserver-hmi-deployment/thresholds/readme.txt
@@ -0,0 +1 @@
+This directory contains the thresholds
\ No newline at end of file
diff --git a/99-reference/ciserver-qli-exports/ITEM_HIS.qli b/99-reference/ciserver-qli-exports/ITEM_HIS.qli
new file mode 100644
index 0000000..c41b5fc
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/ITEM_HIS.qli
@@ -0,0 +1,25 @@
+
+@LANGUAGE
+ENGLISH
+
+
+@VERSION
+1.03.00
+
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,ITEM_NAME,GROUP_NAME,ON_EACH_UPDATE,ON_FIRST_UPDATE
+ON_OPTION_CHANGE,ON_PASS_PIT,ON_QUALITY_CHANGE,ON_STATUS_CHANGE,ON_VALUE_CHANGE,STORE_DEADBAND
+STORE_HIGH_HIGH_LIMIT,STORE_HIGH_LIMIT,STORE_LOW_LIMIT,STORE_LOW_LOW_LIMIT,STORE_VALUE,STORE_AGG_MAX
+STORE_AGG_MIN,STORE_AGG_AVG,STORE_AGG_INTG,STORE_AGG_STDV,STORE_AGG_CNT,STORE_AGG_DIFF_SUM
+AGG_DIFF_SUM_RANGE,AGG_DIFF_SUM_PERC,AGG_INTG_PERIOD
+
+@ITEM_HIS_DF
+"EVENT:ESDS32DCD.HeTwTwLocksClos","ESDS32DCD.HeTwTwLocksClos","EVENT",0,0,\
+0,0,0,0,1,0,\
+0,0,0,0,1,0,\
+0,0,0,0,0,0,\
+1000000,10,"Second"
+
diff --git a/99-reference/ciserver-qli-exports/ITEM_HIS_IN.qli b/99-reference/ciserver-qli-exports/ITEM_HIS_IN.qli
new file mode 100644
index 0000000..aad0ba9
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/ITEM_HIS_IN.qli
@@ -0,0 +1,18 @@
+
+@LANGUAGE
+ENGLISH
+
+
+@VERSION
+1.03.00
+
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,ITEM_NAME,GROUP_NAME,ON_VALUE_CHANGE
+
+
+
+@ITEM_HIS_DF
+"ONE_HOUR:Site1.Comms_Status","ESDS32DCD.HeTwTwLocksClosTest","ONE_HOUR",1
\ No newline at end of file
diff --git a/99-reference/ciserver-qli-exports/MQTT_RULE.qli b/99-reference/ciserver-qli-exports/MQTT_RULE.qli
new file mode 100644
index 0000000..abd9902
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/MQTT_RULE.qli
@@ -0,0 +1,22 @@
+
+@LANGUAGE
+ENGLISH
+
+
+@VERSION
+1.03.00
+
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,DESCRIPTION,STATION_NAME,RULE_NAME,TYPE
+RULE,SUBSTITUTE,CHANGE_TO,PREFIX,PRIORITY
+
+@MQTT_RULE_DF
+"STN_MQTT:ESDS32DCD","","STN_MQTT","ESDS32DCD","Subscriber",\
+"ESDS32DCD/#","","","",1
+
+"STN_MQTT:SITE1","","STN_MQTT","SITE1","Subscriber",\
+"Site1/#","","","",1
+
diff --git a/99-reference/ciserver-qli-exports/TestTagsShortlist.qli b/99-reference/ciserver-qli-exports/TestTagsShortlist.qli
new file mode 100644
index 0000000..e3cbc7d
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/TestTagsShortlist.qli
@@ -0,0 +1,228 @@
+
+@LANGUAGE
+ENGLISH
+
+@VERSION
+1.03.00
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,DESCRIPTION,ITEM_REP
+
+@ITEM_DF
+"ESDS32DCD.HeTwTwLocksClos","TWINLIFT TWISTLOCKS ARE CLOSED","Boolean"
+
+"ESDS32DCD.HeTwTwLocksOpen","TWINLIFT TWISTLOCKS ARE OPEN","Boolean"
+
+"ESDS32DCD.HeAllTwiTwLoClo","ALL TWINLIFT TWISTLOCKS ARE CLOSED","Boolean"
+
+"ESDS32DCD.HeTwinDisplay","TWINLIFT DISPLAY","Boolean"
+
+"ESDS32DCD.KeTwinMode","TWIN MODE","Boolean"
+
+"ESDS32DCD.HeSingleMode","SINGLE MODE","Boolean"
+
+"ESDS32DCD.HeAllTwLoBoxUp","ALL TWISTLOCK BOXES ARE UP","Boolean"
+
+"ESDS32DCD.NsTwinliftSel","TWINLIFT SELECTION TO DISPLAY","Boolean"
+
+"ESDS32DCD.HeAllTwiTwLoOpe","ALL TWINLIFT TWISTLOCKS ARE OPEN","Boolean"
+
+"ESDS32DCD.HeSingleTwinOn","SINGLE TWIN ON","Boolean"
+
+"ESDS32DCD.HeTwLockOpeFr","TWISTLOCKS OPEN (FRONT WHEN TWINLIFT)","Boolean"
+
+"ESDS32DCD.HeTwLockCloFr","TWISTLOCKS CLOSE (FRONT WHEN TWINLIFT)","Boolean"
+
+"ESDS32DCD.HeTwLockCloseRe","TWISTLOCKS CLOSE REAR WHEN TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwLockOpenRe","TWISTLOCK OPEN REAR WHEN TWINLIFT","Boolean"
+
+"ESDS32DCD.HeAllLandPinsUp","NORMAL & TWINLIFT LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeTwFrontLandPi","TWINLIFT, FRONT CONTAINER LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeTwRearLandPin","TWINLIFT, REAR CONTAINER LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeTwinLiftGapR","GAP BETWEEN TWINLIFT CONTAINERS REAR","Boolean"
+
+"ESDS32DCD.HeSprT_BeLandPiUpFr","SPREADER T-BEAM FRONT LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeSprT_BeLandPiUpRe","SPREADER T-BEAM REAR LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeTwLoOpeFr","TWISTLOCK OPEN FRONT T-BEAM AND TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwLoCloFr","TWISTLOCK CLOSE FRONT T-BEAM AND TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwLoCloRe","TWISTLOCK CLOSE REAR T-BEAM AND TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwLoOpeRe","TWISTLOCK OPEN REAR T-BEAM AND TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwBoOrLandErFL","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR FRONT LEFT","Boolean"
+
+"ESDS32DCD.HeTwBoOrLandErFR","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR FRONT RIGHT","Boolean"
+
+"ESDS32DCD.HeTwBoOrLandErRL","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR REAR LEFT","Boolean"
+
+"ESDS32DCD.HeTwBoOrLandErRR","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR REAR RIGHT","Boolean"
+
+"ESDS32DCD.HeTwTwLoErrFL","TWINLIFT TWISTLOCK ERROR FRONT LEFT","Boolean"
+
+"ESDS32DCD.HeTwTwLoErrFR","TWINLIFT TWISTLOCK ERROR FRONT RIGHT","Boolean"
+
+"ESDS32DCD.HeTwTwLoErrRL","TWINLIFT TWISTLOCK ERROR REAR LEFT","Boolean"
+
+"ESDS32DCD.HeTwTwLoErrRR","TWINLIFT TWISTLOCK ERROR REAR RIGHT","Boolean"
+
+"ESDS32DCD.HeTwinGapSensEr","TWINLIFT GAP SENSOR ERROR","Boolean"
+
+"ESDS32DCD.HeTwinGapSenErrHoPrev","TWINGAP SENSOR ERROR HOIST PREVENTION WHEN TWLOCKS CLOSED","Boolean"
+
+"ESDS32DCD.KeTwBoxUpFr","TWINLIFT TWISTLOCK BOXES UP FRONT","Boolean"
+
+"ESDS32DCD.KeAutoTwLoBoxUpAllow","AUTOMATIC TWISTLOCK BOXES UP ALLOWED","Boolean"
+
+"ESDS32DCD.POuTwBoxDownL","TWINLIFT TW-LO BOX DOWN LIGHT","Boolean"
+
+"ESDS32DCD.POuTwBoxUpL","TWINLIFT TW-LO BOX UP LIGHT","Boolean"
+
+"ESDS32DCD.HeTwBoxOrLandErr","TWINLIFT TWISTLOCKBOX / LANDPIN ERROR","Boolean"
+
+"ESDS32DCD.HeTwFreeCircVal","TWINLIFT CONTROL FOR FREE CIRC VALVE","Boolean"
+
+"ESDS32DCD.HeOneTwLandPinsUp","AT LEAST ONE OF TWINLIFT LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeOneLandPin","AT LEAST ONE OF LANDPINS ARE ON","Boolean"
+
+"ESDS32DCD.HeHoist5","HELP BIT FOR HOISTING 5 (TWINLIFT)","Boolean"
+
+"ESDS32DCD.HeT_BeLandPinsUp","T-BEAM LANDPINS ARE UP AT SELECTED END (FRONT/REAR) OR AT BOTH END","Boolean"
+
+"ESDS32DCD.HeGap_TwinMode","GAP & TWIN MODE","Boolean"
+
+"ESDS32DCD.HeGap_SingleMod","GAP & SINGLE MODE","Boolean"
+
+"ESDS32DCD.HeNoGap_TwinMod","NO GAP & TWIN MODE","Boolean"
+
+"ESDS32DCD.HeNoGap_SingleM","NO GAP & SINGLE MODE","Boolean"
+
+"ESDS32DCD.KeTwinOnSelect","TWIN ON SELECTION WHEN GAP SENSOR DOESN'T SEE THE GAP","Boolean"
+
+"ESDS32DCD.KeTwinOffSelect","TWIN OFF SELECTION WHEN OPEN TOP CONTAINER","Boolean"
+
+"ESDS32DCD.KeTwinBoxUpRe","TWIN BOX UP REAR","Boolean"
+
+"ESDS32DCD.PInS613TwLoB2CloseFL","TWINLIFT TWISTLOCKS CLOSE B2 FRONT LEFT","Boolean"
+
+"ESDS32DCD.PInS614TwLoB2OpeFL","TWINLIFT TWISTLOCKS OPEN B2 FRONT LEFT","Boolean"
+
+"ESDS32DCD.PInS615TwB2LandPFL","TWINLIFT LANDPINS UP B2 FRONT LEFT","Boolean"
+
+"ESDS32DCD.PInS608TwLoBoUpB1FR","TWISTLOCK BOX B1 UP FRONT RIGHT","Boolean"
+
+"ESDS32DCD.PInS609TwLoB1CloseFR","TWINLIFT TWISTLOCKS CLOSE B1 FRONT RIGHT","Boolean"
+
+"ESDS32DCD.PInS610TwLoB1OpeFR","TWINLIFT TWISTLOCKS OPEN B1 FRONT RIGHT","Boolean"
+
+"ESDS32DCD.PInS611TwB1LandPFR","TWINLIFT LANDPINS B1 UP FRONT RIGHT","Boolean"
+
+"ESDS32DCD.PInS604TwLoBoUpA2RL","TWISTLOCK BOX A2 UP REAR LEFT","Boolean"
+
+"ESDS32DCD.PInS605TwLoA2CloseRL","TWINLIFT TWISTLOCKS CLOSE A2 REAR LEFT","Boolean"
+
+"ESDS32DCD.PInS606TwLoA2OpeRL","TWINLIFT TWISTLOCKS OPEN A2 REAR LEFT","Boolean"
+
+"ESDS32DCD.PInS607TwA2LandPRL","TWINLIFT LANDPINS UP A2 REAR LEFT","Boolean"
+
+"ESDS32DCD.PInS600TwLoBoUpA1RR","TWISTLOCK BOX A1 UP REAR RIGHT","Boolean"
+
+"ESDS32DCD.PInS601TwLoA1CloseRR","TWINLIFT TWISTLOCKS CLOSE A1 REAR RIGHT","Boolean"
+
+"ESDS32DCD.PInS602TwLoA1OpeRR","TWINLIFT TWISTLOCKS OPEN A1 REAR RIGHT","Boolean"
+
+"ESDS32DCD.PInS603TwA1LandPRR","TWINLIFT LANDPINS A1 UP REAR RIGHT","Boolean"
+
+"ESDS32DCD.PInS700_1GapContR","TWINLIFT GAP BETWEEN TWO CONTAINERS WHEN \"0\", REAR","Boolean"
+
+"ESDS32DCD.PInS702_2TwLiCoFr","TWINLIFT CONTAINERS (NOT TOP OPEN CONTAINER), FRONT","Boolean"
+
+"ESDS32DCD.PInS700_2GapContF","TWINLIFT GAP BETWEEN TWO CONTAINERS WHEN \"0\", FRONT","Boolean"
+
+"ESDS32DCD.PInS702_1TwLiCoRe","TWINLIFT CONTAINERS (NOT TOP OPEN CONTAINER), REAR","Boolean"
+
+"ESDS32DCD.MachineType","Machine type (1=ESC, 2=ESH, 3=HSC, 4=HSH, 5=FSC, 6=FSH)","Real"
+
+"ESDS32DCD.MachineNumber","Machine number","Real"
+
+"ESDS32DCD.EngineHoursTotal","Engine hours (total)","Real"
+
+"ESDS32DCD.HybridHoursTotal","Hybrid hours (total)","Real"
+
+"ESDS32DCD.TravelingHoursTotalFwd","Traveling hours forward (total)","Real"
+
+"ESDS32DCD.TravelingHoursTotalBwd","Traveling hours backward (total)","Real"
+
+"ESDS32DCD.HoistLowerTotalHours","Hoisting and Lowering hours (total)","Real"
+
+"ESDS32DCD.StandingTotalHours","Standing hours (total)","Real"
+
+"ESDS32DCD.TravelingDistanceTotalFwd","Traveling distance forward (total)","Real"
+
+"ESDS32DCD.TravelingDistanceTotalBwd","Traveling distance backward (total)","Real"
+
+"ESDS32DCD._20ftCountTotal","Number of 20ft containers (total)","Real"
+
+"ESDS32DCD._40ftCountTotal","Number of 40ft containers (total)","Real"
+
+"ESDS32DCD.TwinCountTotal","Number of twin picks (total)","Real"
+
+"ESDS32DCD.FuelConsumptionTotal","Fuel consumption l/h (total)","Real"
+
+"ESDS32DCD.EnergyConsumptionTotal","Energy consumption kW (total)","Real"
+
+"ESDS32DCD.NsRPM","RPM TO NS DISPLAY","Real"
+
+"ESDS32DCD.NsStability","STABILITY TO NS DISPLAY","Real"
+
+"ESDS32DCD.NsFuelLevelPercentVal","FUEL LEVEL IN % TO DISPLAY","Real"
+
+"ESDS32DCD.ContWeightHex","CONTAINER WEIGHT TO DISPLAY (Tons, HEX)","Real"
+
+"ESDS32DCD.NsEngTemp","ENGINE TEMP TO NS DISPLAY","Real"
+
+"ESDS32DCD.NsSprHeight","SPREADER HEIGHT TO NS DISPLAY","Real"
+
+"ESDS32DCD.NsSprLength","SPREADER LENGTH TO NS DISPLAY","Real"
+
+"ESDS32DCD.NsHoursFwdTrip","FORWARD HOURS (TRIP) FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsHoursBwdTrip","BACKWARD HOURS (TRIP) FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsHoursInPlaceTrip","IN PLACE HOURS (TRIP) FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsKmsFwdTrip","FORWARD KMS (TRIP) FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsKmsBwdTrip","REVERSE KMS (TRIP) FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsHoistHoursTrip","HOISTING HOURS (TRIP) FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsNrOf20contTrip","NUMBER OF 20' CONTAINERS (TRIP) FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsNrOf40contTrip","NUMBER OF 40' CONTAINERS (TRIP) FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsCentrLub","NUMBER OF CENTRAL LUBRICATIONS FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsNrOf2x20contTrip","NUMBER OF TWIN / SINGLE LIFTS (TRIP) FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsSprLengthFr","SPREADER LENGTH FRONT FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsSprLengthRe","SPREADER LENGTH REAR FOR DISPLAY","Real"
+
+"ESDS32DCD.NsFuelRate","FUEL RATE l/h FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsTotFuelUsed","TOTAL FUEL USED FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsFuelConsLTim","ENGINE FUEL CONSUMPTION LONG TIME l/h FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsEngineHoursTrip","ENGINE HOURS (TRIP) FOR NS DISPLAY","Real"
diff --git a/99-reference/ciserver-qli-exports/export.qli b/99-reference/ciserver-qli-exports/export.qli
new file mode 100644
index 0000000..15fbec5
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/export.qli
@@ -0,0 +1,228 @@
+
+@LANGUAGE
+ENGLISH
+
+@VERSION
+1.03.00
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,DESCRIPTION,ITEM_REP
+
+@ITEM_DF
+"ESDS32DCD.HeTwTwLocksClos","TWINLIFT TWISTLOCKS ARE CLOSED","Boolean"
+
+"ESDS32DCD.HeTwTwLocksOpen","TWINLIFT TWISTLOCKS ARE OPEN","Boolean"
+
+"ESDS32DCD.HeAllTwiTwLoClo","ALL TWINLIFT TWISTLOCKS ARE CLOSED","Boolean"
+
+"ESDS32DCD.HeTwinDisplay","TWINLIFT DISPLAY","Boolean"
+
+"ESDS32DCD.KeTwinMode","TWIN MODE","Boolean"
+
+"ESDS32DCD.HeSingleMode","SINGLE MODE","Boolean"
+
+"ESDS32DCD.HeAllTwLoBoxUp","ALL TWISTLOCK BOXES ARE UP","Boolean"
+
+"ESDS32DCD.NsTwinliftSel","TWINLIFT SELECTION TO DISPLAY","Boolean"
+
+"ESDS32DCD.HeAllTwiTwLoOpe","ALL TWINLIFT TWISTLOCKS ARE OPEN","Boolean"
+
+"ESDS32DCD.HeSingleTwinOn","SINGLE TWIN ON","Boolean"
+
+"ESDS32DCD.HeTwLockOpeFr","TWISTLOCKS OPEN (FRONT WHEN TWINLIFT)","Boolean"
+
+"ESDS32DCD.HeTwLockCloFr","TWISTLOCKS CLOSE (FRONT WHEN TWINLIFT)","Boolean"
+
+"ESDS32DCD.HeTwLockCloseRe","TWISTLOCKS CLOSE REAR WHEN TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwLockOpenRe","TWISTLOCK OPEN REAR WHEN TWINLIFT","Boolean"
+
+"ESDS32DCD.HeAllLandPinsUp","NORMAL & TWINLIFT LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeTwFrontLandPi","TWINLIFT, FRONT CONTAINER LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeTwRearLandPin","TWINLIFT, REAR CONTAINER LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeTwinLiftGapR","GAP BETWEEN TWINLIFT CONTAINERS REAR","Boolean"
+
+"ESDS32DCD.HeSprT_BeLandPiUpFr","SPREADER T-BEAM FRONT LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeSprT_BeLandPiUpRe","SPREADER T-BEAM REAR LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeTwLoOpeFr","TWISTLOCK OPEN FRONT T-BEAM AND TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwLoCloFr","TWISTLOCK CLOSE FRONT T-BEAM AND TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwLoCloRe","TWISTLOCK CLOSE REAR T-BEAM AND TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwLoOpeRe","TWISTLOCK OPEN REAR T-BEAM AND TWINLIFT","Boolean"
+
+"ESDS32DCD.HeTwBoOrLandErFL","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR FRONT LEFT","Boolean"
+
+"ESDS32DCD.HeTwBoOrLandErFR","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR FRONT RIGHT","Boolean"
+
+"ESDS32DCD.HeTwBoOrLandErRL","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR REAR LEFT","Boolean"
+
+"ESDS32DCD.HeTwBoOrLandErRR","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR REAR RIGHT","Boolean"
+
+"ESDS32DCD.HeTwTwLoErrFL","TWINLIFT TWISTLOCK ERROR FRONT LEFT","Boolean"
+
+"ESDS32DCD.HeTwTwLoErrFR","TWINLIFT TWISTLOCK ERROR FRONT RIGHT","Boolean"
+
+"ESDS32DCD.HeTwTwLoErrRL","TWINLIFT TWISTLOCK ERROR REAR LEFT","Boolean"
+
+"ESDS32DCD.HeTwTwLoErrRR","TWINLIFT TWISTLOCK ERROR REAR RIGHT","Boolean"
+
+"ESDS32DCD.HeTwinGapSensEr","TWINLIFT GAP SENSOR ERROR","Boolean"
+
+"ESDS32DCD.HeTwinGapSenErrHoPrev","TWINGAP SENSOR ERROR HOIST PREVENTION WHEN TWLOCKS CLOSED","Boolean"
+
+"ESDS32DCD.KeTwBoxUpFr","TWINLIFT TWISTLOCK BOXES UP FRONT","Boolean"
+
+"ESDS32DCD.KeAutoTwLoBoxUpAllow","AUTOMATIC TWISTLOCK BOXES UP ALLOWED","Boolean"
+
+"ESDS32DCD.POuTwBoxDownL","TWINLIFT TW-LO BOX DOWN LIGHT","Boolean"
+
+"ESDS32DCD.POuTwBoxUpL","TWINLIFT TW-LO BOX UP LIGHT","Boolean"
+
+"ESDS32DCD.HeTwBoxOrLandErr","TWINLIFT TWISTLOCKBOX / LANDPIN ERROR","Boolean"
+
+"ESDS32DCD.HeTwFreeCircVal","TWINLIFT CONTROL FOR FREE CIRC VALVE","Boolean"
+
+"ESDS32DCD.HeOneTwLandPinsUp","AT LEAST ONE OF TWINLIFT LANDPINS ARE UP","Boolean"
+
+"ESDS32DCD.HeOneLandPin","AT LEAST ONE OF LANDPINS ARE ON","Boolean"
+
+"ESDS32DCD.HeHoist5","HELP BIT FOR HOISTING 5 (TWINLIFT)","Boolean"
+
+"ESDS32DCD.HeT_BeLandPinsUp","T-BEAM LANDPINS ARE UP AT SELECTED END (FRONT/REAR) OR AT BOTH END","Boolean"
+
+"ESDS32DCD.HeGap_TwinMode","GAP & TWIN MODE","Boolean"
+
+"ESDS32DCD.HeGap_SingleMod","GAP & SINGLE MODE","Boolean"
+
+"ESDS32DCD.HeNoGap_TwinMod","NO GAP & TWIN MODE","Boolean"
+
+"ESDS32DCD.HeNoGap_SingleM","NO GAP & SINGLE MODE","Boolean"
+
+"ESDS32DCD.KeTwinOnSelect","TWIN ON SELECTION WHEN GAP SENSOR DOESN'T SEE THE GAP","Boolean"
+
+"ESDS32DCD.KeTwinOffSelect","TWIN OFF SELECTION WHEN OPEN TOP CONTAINER","Boolean"
+
+"ESDS32DCD.KeTwinBoxUpRe","TWIN BOX UP REAR","Boolean"
+
+"ESDS32DCD.PInS613TwLoB2CloseFL","TWINLIFT TWISTLOCKS CLOSE B2 FRONT LEFT","Boolean"
+
+"ESDS32DCD.PInS614TwLoB2OpeFL","TWINLIFT TWISTLOCKS OPEN B2 FRONT LEFT","Boolean"
+
+"ESDS32DCD.PInS615TwB2LandPFL","TWINLIFT LANDPINS UP B2 FRONT LEFT","Boolean"
+
+"ESDS32DCD.PInS608TwLoBoUpB1FR","TWISTLOCK BOX B1 UP FRONT RIGHT","Boolean"
+
+"ESDS32DCD.PInS609TwLoB1CloseFR","TWINLIFT TWISTLOCKS CLOSE B1 FRONT RIGHT","Boolean"
+
+"ESDS32DCD.PInS610TwLoB1OpeFR","TWINLIFT TWISTLOCKS OPEN B1 FRONT RIGHT","Boolean"
+
+"ESDS32DCD.PInS611TwB1LandPFR","TWINLIFT LANDPINS B1 UP FRONT RIGHT","Boolean"
+
+"ESDS32DCD.PInS604TwLoBoUpA2RL","TWISTLOCK BOX A2 UP REAR LEFT","Boolean"
+
+"ESDS32DCD.PInS605TwLoA2CloseRL","TWINLIFT TWISTLOCKS CLOSE A2 REAR LEFT","Boolean"
+
+"ESDS32DCD.PInS606TwLoA2OpeRL","TWINLIFT TWISTLOCKS OPEN A2 REAR LEFT","Boolean"
+
+"ESDS32DCD.PInS607TwA2LandPRL","TWINLIFT LANDPINS UP A2 REAR LEFT","Boolean"
+
+"ESDS32DCD.PInS600TwLoBoUpA1RR","TWISTLOCK BOX A1 UP REAR RIGHT","Boolean"
+
+"ESDS32DCD.PInS601TwLoA1CloseRR","TWINLIFT TWISTLOCKS CLOSE A1 REAR RIGHT","Boolean"
+
+"ESDS32DCD.PInS602TwLoA1OpeRR","TWINLIFT TWISTLOCKS OPEN A1 REAR RIGHT","Boolean"
+
+"ESDS32DCD.PInS603TwA1LandPRR","TWINLIFT LANDPINS A1 UP REAR RIGHT","Boolean"
+
+"ESDS32DCD.PInS700_1GapContR","TWINLIFT GAP BETWEEN TWO CONTAINERS WHEN \"0\", REAR","Boolean"
+
+"ESDS32DCD.PInS702_2TwLiCoFr","TWINLIFT CONTAINERS (NOT TOP OPEN CONTAINER), FRONT","Boolean"
+
+"ESDS32DCD.PInS700_2GapContF","TWINLIFT GAP BETWEEN TWO CONTAINERS WHEN \"0\", FRONT","Boolean"
+
+"ESDS32DCD.PInS702_1TwLiCoRe","TWINLIFT CONTAINERS (NOT TOP OPEN CONTAINER), REAR","Boolean"
+
+"ESDS32DCD.MachineType","Machine type (1=ESC, 2=ESH, 3=HSC, 4=HSH, 5=FSC, 6=FSH)","UReal"
+
+"ESDS32DCD.MachineNumber","Machine number","UReal"
+
+"ESDS32DCD.EngineHoursTotal","Engine hours (total)","UDReal"
+
+"ESDS32DCD.HybridHoursTotal","Hybrid hours (total)","UDReal"
+
+"ESDS32DCD.TravelingHoursTotalFwd","Traveling hours forward (total)","UDReal"
+
+"ESDS32DCD.TravelingHoursTotalBwd","Traveling hours backward (total)","UDReal"
+
+"ESDS32DCD.HoistLowerTotalHours","Hoisting and Lowering hours (total)","UDReal"
+
+"ESDS32DCD.StandingTotalHours","Standing hours (total)","UDReal"
+
+"ESDS32DCD.TravelingDistanceTotalFwd","Traveling distance forward (total)","UDReal"
+
+"ESDS32DCD.TravelingDistanceTotalBwd","Traveling distance backward (total)","UDReal"
+
+"ESDS32DCD._20ftCountTotal","Number of 20ft containers (total)","UDReal"
+
+"ESDS32DCD._40ftCountTotal","Number of 40ft containers (total)","UDReal"
+
+"ESDS32DCD.TwinCountTotal","Number of twin picks (total)","UDReal"
+
+"ESDS32DCD.FuelConsumptionTotal","Fuel consumption l/h (total)","UReal"
+
+"ESDS32DCD.EnergyConsumptionTotal","Energy consumption kW (total)","UReal"
+
+"ESDS32DCD.NsRPM","RPM TO NS DISPLAY","UReal"
+
+"ESDS32DCD.NsStability","STABILITY TO NS DISPLAY","UReal"
+
+"ESDS32DCD.NsFuelLevelPercentVal","FUEL LEVEL IN % TO DISPLAY","Real"
+
+"ESDS32DCD.ContWeightHex","CONTAINER WEIGHT TO DISPLAY (Tons, HEX)","Real"
+
+"ESDS32DCD.NsEngTemp","ENGINE TEMP TO NS DISPLAY","Real"
+
+"ESDS32DCD.NsSprHeight","SPREADER HEIGHT TO NS DISPLAY","Real"
+
+"ESDS32DCD.NsSprLength","SPREADER LENGTH TO NS DISPLAY","Real"
+
+"ESDS32DCD.NsHoursFwdTrip","FORWARD HOURS (TRIP) FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsHoursBwdTrip","BACKWARD HOURS (TRIP) FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsHoursInPlaceTrip","IN PLACE HOURS (TRIP) FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsKmsFwdTrip","FORWARD KMS (TRIP) FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsKmsBwdTrip","REVERSE KMS (TRIP) FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsHoistHoursTrip","HOISTING HOURS (TRIP) FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsNrOf20contTrip","NUMBER OF 20' CONTAINERS (TRIP) FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsNrOf40contTrip","NUMBER OF 40' CONTAINERS (TRIP) FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsCentrLub","NUMBER OF CENTRAL LUBRICATIONS FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsNrOf2x20contTrip","NUMBER OF TWIN / SINGLE LIFTS (TRIP) FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsSprLengthFr","SPREADER LENGTH FRONT FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsSprLengthRe","SPREADER LENGTH REAR FOR DISPLAY","Real"
+
+"ESDS32DCD.NsFuelRate","FUEL RATE l/h FOR NS DISPLAY","Real"
+
+"ESDS32DCD.NsTotFuelUsed","TOTAL FUEL USED FOR NS DISPLAY","UDReal"
+
+"ESDS32DCD.NsFuelConsLTim","ENGINE FUEL CONSUMPTION LONG TIME l/h FOR NS DISPLAY","UReal"
+
+"ESDS32DCD.NsEngineHoursTrip","ENGINE HOURS (TRIP) FOR NS DISPLAY","UReal"
diff --git a/99-reference/ciserver-qli-exports/item_df.qli b/99-reference/ciserver-qli-exports/item_df.qli
new file mode 100644
index 0000000..1168412
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/item_df.qli
@@ -0,0 +1,3141 @@
+
+@LANGUAGE
+ENGLISH
+
+
+@VERSION
+1.03.00
+
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,NSID,PARENT_NSID,SECTION_PATH,DESCRIPTION
+DEADBAND,LOW_LIMIT,HIGH_LIMIT,LOW_LOW_LIMIT,HIGH_HIGH_LIMIT,T_VALUE
+P_VALUE,I_VALUE,TREND_UP_LIMIT,TREND_LOW_LIMIT,SCALE_HIGH_LIMIT,SCALE_LOW_LIMIT
+DUMMY2,COMMENT_1,COMMENT_2,VALUE_FORMAT,POSITIONED,LONGITUDE
+LATITUDE,ALARMING,DIAG,NAME_IN_ITM_TAB,STORAGE,AUDIT_INFO
+FO_ITEM,BLOCKED,PARENT_BLOCKED,ALARM_INHIBIT,PARENT_ALARM_INHIBIT,OPC_VISIBLE
+PARENT_OPC_VISIBLE,OPC_READ,OPC_WRITE,OPC_ALARM_DETECTION,HAS_SUB,STRING_LENGTH
+DELAY,REPEAT,ID_GROUP,ID_NUMBER,ITEM_REP,ITEM_TYPE
+ITEM_SPECIAL,ACKN_TYPE,ALARM_GROUP,FRONT_END_NODE,DISTR_TYPE,INSTALL
+UNIT,TAG,LIMIT_CLAMP,OUT_OF_RANGE,COL_GROUP,STATION
+POINT,FO_GROUP,ITEM_STAT_1,ITEM_STAT_2,ITEM_STAT_3,ITEM_STAT_4
+ITEM_STAT_5,ITEM_STAT_6,ALARM_STATE_1,ALARM_STATE_2,ALARM_STATE_3,ALARM_STATE_4
+ALARM_STATE_5,ALARM_STATE_6,PRIORITY_1,PRIORITY_2,PRIORITY_3,PRIORITY_4
+PRIORITY_5,PRIORITY_6,ALARM_TEXT_1,ALARM_TEXT_2,ALARM_TEXT_3,ALARM_TEXT_4
+ALARM_TEXT_5,ALARM_TEXT_6,ALARM_COLOR_1,ALARM_COLOR_2,ALARM_COLOR_3,ALARM_COLOR_4
+ALARM_COLOR_5,ALARM_COLOR_6,MNEMONIC_1,MNEMONIC_2,MNEMONIC_3,MNEMONIC_4
+MNEMONIC_5,MNEMONIC_6,AOI_1,AOI_2,AOI_3,AOI_4
+AOI_5,AOI_6,AOI_7,AOI_8,AOI_9,AOI_10
+AOI_11,AOI_12,AOI_13,AOI_14,AOI_15,AOI_16
+ENG_UNIT,PROCESS_LIST,POINT_NAME,OPC_AE_STATION_NAME,OPC_EVENT_SOURCE,OPC_EVENT_SOURCE_NAME
+CREATED_BY,SHELVE_ENABLED_1,SHELVE_ENABLED_2,SHELVE_ENABLED_3,SHELVE_ENABLED_4,SHELVE_ENABLED_5
+SHELVE_ENABLED_6,AGG_INTERVAL
+
+@ITEM_DF
+"AOG.Templates.Alarm",5,2,"AOG.Templates","Template item for the AOG base classes",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,3,"Integer","",\
+"","MANUAL","","UNLICENCED","Local Host","AOG",\
+"Templates","Alarm","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","AOI_COMMS","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"AOG.Templates.Integer",4,2,"AOG.Templates","Template item for the AOG base classes",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,2,"Integer","",\
+"","","","UNLICENCED","Local Host","AOG",\
+"Templates","Integer","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"AOG.Templates.PV",6,2,"AOG.Templates","Template item for the AOG base classes",\
+0,10,90,5,95,0,\
+0,0,0,0,100,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,4,"Real","",\
+"","MANUAL","","UNLICENCED","Local Host","AOG",\
+"Templates","PV","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"AOG.Templates.Real",3,2,"AOG.Templates","Template item for the AOG base classes",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,1,"Real","",\
+"","","","UNLICENCED","Local Host","AOG",\
+"Templates","Real","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.ContWeightHex",147,57,"ESDS32DCD","CONTAINER WEIGHT TO DISPLAY (Tons, HEX)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,116,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","ContWeightHex","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.EnergyConsumptionTotal",143,57,"ESDS32DCD","Energy consumption kW (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,112,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","EnergyConsumptionTotal","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.EngineHoursTotal",131,57,"ESDS32DCD","Engine hours (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,100,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","EngineHoursTotal","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.FuelConsumptionTotal",142,57,"ESDS32DCD","Fuel consumption l/h (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,111,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","FuelConsumptionTotal","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeAllLandPinsUp",73,57,"ESDS32DCD","NORMAL & TWINLIFT LANDPINS ARE UP",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,42,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeAllLandPinsUp","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeAllTwLoBoxUp",65,57,"ESDS32DCD","ALL TWISTLOCK BOXES ARE UP",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,34,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeAllTwLoBoxUp","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeAllTwiTwLoClo",61,57,"ESDS32DCD","ALL TWINLIFT TWISTLOCKS ARE CLOSED",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,30,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeAllTwiTwLoClo","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeAllTwiTwLoOpe",67,57,"ESDS32DCD","ALL TWINLIFT TWISTLOCKS ARE OPEN",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,36,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeAllTwiTwLoOpe","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeGap_SingleMod",104,57,"ESDS32DCD","GAP & SINGLE MODE",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,73,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeGap_SingleMod","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeGap_TwinMode",103,57,"ESDS32DCD","GAP & TWIN MODE",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,72,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeGap_TwinMode","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeHoist5",101,57,"ESDS32DCD","HELP BIT FOR HOISTING 5 (TWINLIFT)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,70,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeHoist5","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeNoGap_SingleM",106,57,"ESDS32DCD","NO GAP & SINGLE MODE",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,75,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeNoGap_SingleM","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeNoGap_TwinMod",105,57,"ESDS32DCD","NO GAP & TWIN MODE",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,74,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeNoGap_TwinMod","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeOneLandPin",100,57,"ESDS32DCD","AT LEAST ONE OF LANDPINS ARE ON",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,69,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeOneLandPin","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeOneTwLandPinsUp",99,57,"ESDS32DCD","AT LEAST ONE OF TWINLIFT LANDPINS ARE UP",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,68,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeOneTwLandPinsUp","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeSingleMode",64,57,"ESDS32DCD","SINGLE MODE",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,33,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeSingleMode","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeSingleTwinOn",68,57,"ESDS32DCD","SINGLE TWIN ON",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,37,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeSingleTwinOn","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeSprT_BeLandPiUpFr",77,57,"ESDS32DCD","SPREADER T-BEAM FRONT LANDPINS ARE UP",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,46,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeSprT_BeLandPiUpFr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeSprT_BeLandPiUpRe",78,57,"ESDS32DCD","SPREADER T-BEAM REAR LANDPINS ARE UP",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,47,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeSprT_BeLandPiUpRe","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeT_BeLandPinsUp",102,57,"ESDS32DCD","T-BEAM LANDPINS ARE UP AT SELECTED END (FRONT/REAR) OR AT BOTH END",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,71,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeT_BeLandPinsUp","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwBoOrLandErFL",83,57,"ESDS32DCD","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR FRONT LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,52,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwBoOrLandErFL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwBoOrLandErFR",84,57,"ESDS32DCD","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR FRONT RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,53,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwBoOrLandErFR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwBoOrLandErRL",85,57,"ESDS32DCD","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR REAR LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,54,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwBoOrLandErRL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwBoOrLandErRR",86,57,"ESDS32DCD","TWINLIFT TWISTLOCKBOX/ LANDPIN SENSOR ERROR REAR RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,55,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwBoOrLandErRR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwBoxOrLandErr",97,57,"ESDS32DCD","TWINLIFT TWISTLOCKBOX / LANDPIN ERROR",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,66,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwBoxOrLandErr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwFreeCircVal",98,57,"ESDS32DCD","TWINLIFT CONTROL FOR FREE CIRC VALVE",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,67,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwFreeCircVal","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwFrontLandPi",74,57,"ESDS32DCD","TWINLIFT, FRONT CONTAINER LANDPINS ARE UP",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,43,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwFrontLandPi","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwLoCloFr",80,57,"ESDS32DCD","TWISTLOCK CLOSE FRONT T-BEAM AND TWINLIFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,49,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwLoCloFr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwLoCloRe",81,57,"ESDS32DCD","TWISTLOCK CLOSE REAR T-BEAM AND TWINLIFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,50,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwLoCloRe","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwLoOpeFr",79,57,"ESDS32DCD","TWISTLOCK OPEN FRONT T-BEAM AND TWINLIFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,48,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwLoOpeFr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwLoOpeRe",82,57,"ESDS32DCD","TWISTLOCK OPEN REAR T-BEAM AND TWINLIFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,51,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwLoOpeRe","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwLockCloFr",70,57,"ESDS32DCD","TWISTLOCKS CLOSE (FRONT WHEN TWINLIFT)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,39,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwLockCloFr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwLockCloseRe",71,57,"ESDS32DCD","TWISTLOCKS CLOSE REAR WHEN TWINLIFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,40,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwLockCloseRe","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwLockOpeFr",69,57,"ESDS32DCD","TWISTLOCKS OPEN (FRONT WHEN TWINLIFT)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,38,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwLockOpeFr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwLockOpenRe",72,57,"ESDS32DCD","TWISTLOCK OPEN REAR WHEN TWINLIFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,41,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwLockOpenRe","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwRearLandPin",75,57,"ESDS32DCD","TWINLIFT, REAR CONTAINER LANDPINS ARE UP",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,44,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwRearLandPin","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwTwLoErrFL",87,57,"ESDS32DCD","TWINLIFT TWISTLOCK ERROR FRONT LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,56,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwTwLoErrFL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwTwLoErrFR",88,57,"ESDS32DCD","TWINLIFT TWISTLOCK ERROR FRONT RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,57,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwTwLoErrFR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwTwLoErrRL",89,57,"ESDS32DCD","TWINLIFT TWISTLOCK ERROR REAR LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,58,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwTwLoErrRL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwTwLoErrRR",90,57,"ESDS32DCD","TWINLIFT TWISTLOCK ERROR REAR RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,59,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwTwLoErrRR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwTwLocksClos",58,57,"ESDS32DCD","TWINLIFT TWISTLOCKS ARE CLOSED",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,25,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwTwLocksClos","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwTwLocksClosTest",59,57,"ESDS32DCD","TWINLIFT TWISTLOCKS ARE CLOSED",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,26,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwTwLocksClosTest","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwTwLocksOpen",60,57,"ESDS32DCD","TWINLIFT TWISTLOCKS ARE OPEN",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,29,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwTwLocksOpen","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwinDisplay",62,57,"ESDS32DCD","TWINLIFT DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,31,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwinDisplay","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwinGapSenErrHoPrev",92,57,"ESDS32DCD","TWINGAP SENSOR ERROR HOIST PREVENTION WHEN TWLOCKS CLOSED",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,61,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwinGapSenErrHoPrev","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwinGapSensEr",91,57,"ESDS32DCD","TWINLIFT GAP SENSOR ERROR",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,60,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwinGapSensEr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwinLiftGapR",76,57,"ESDS32DCD","GAP BETWEEN TWINLIFT CONTAINERS REAR",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,45,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwinLiftGapR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HoistLowerTotalHours",135,57,"ESDS32DCD","Hoisting and Lowering hours (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,104,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HoistLowerTotalHours","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HybridHoursTotal",132,57,"ESDS32DCD","Hybrid hours (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,101,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HybridHoursTotal","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.KeAutoTwLoBoxUpAllow",94,57,"ESDS32DCD","AUTOMATIC TWISTLOCK BOXES UP ALLOWED",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,63,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","KeAutoTwLoBoxUpAllow","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.KeTwBoxUpFr",93,57,"ESDS32DCD","TWINLIFT TWISTLOCK BOXES UP FRONT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,62,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","KeTwBoxUpFr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.KeTwinBoxUpRe",109,57,"ESDS32DCD","TWIN BOX UP REAR",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,78,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","KeTwinBoxUpRe","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.KeTwinMode",63,57,"ESDS32DCD","TWIN MODE",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,32,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","KeTwinMode","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.KeTwinOffSelect",108,57,"ESDS32DCD","TWIN OFF SELECTION WHEN OPEN TOP CONTAINER",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,77,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","KeTwinOffSelect","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.KeTwinOnSelect",107,57,"ESDS32DCD","TWIN ON SELECTION WHEN GAP SENSOR DOESN'T SEE THE GAP",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,76,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","KeTwinOnSelect","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.MachineNumber",130,57,"ESDS32DCD","Machine number",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,99,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","MachineNumber","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.MachineType",129,57,"ESDS32DCD","Machine type (1=ESC, 2=ESH, 3=HSC, 4=HSH, 5=FSC, 6=FSH)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,98,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","MachineType","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsCentrLub",159,57,"ESDS32DCD","NUMBER OF CENTRAL LUBRICATIONS FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,128,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsCentrLub","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsEngTemp",148,57,"ESDS32DCD","ENGINE TEMP TO NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,117,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsEngTemp","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsEngineHoursTrip",166,57,"ESDS32DCD","ENGINE HOURS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,135,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsEngineHoursTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsFuelConsLTim",165,57,"ESDS32DCD","ENGINE FUEL CONSUMPTION LONG TIME l/h FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,134,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsFuelConsLTim","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsFuelLevelPercentVal",146,57,"ESDS32DCD","FUEL LEVEL IN % TO DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,115,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsFuelLevelPercentVal","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsFuelRate",163,57,"ESDS32DCD","FUEL RATE l/h FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,132,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsFuelRate","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsHoistHoursTrip",156,57,"ESDS32DCD","HOISTING HOURS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,125,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsHoistHoursTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsHoursBwdTrip",152,57,"ESDS32DCD","BACKWARD HOURS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,121,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsHoursBwdTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsHoursFwdTrip",151,57,"ESDS32DCD","FORWARD HOURS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,120,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsHoursFwdTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsHoursInPlaceTrip",153,57,"ESDS32DCD","IN PLACE HOURS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,122,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsHoursInPlaceTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsKmsBwdTrip",155,57,"ESDS32DCD","REVERSE KMS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,124,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsKmsBwdTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsKmsFwdTrip",154,57,"ESDS32DCD","FORWARD KMS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,123,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsKmsFwdTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsNrOf20contTrip",157,57,"ESDS32DCD","NUMBER OF 20' CONTAINERS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,126,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsNrOf20contTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsNrOf2x20contTrip",160,57,"ESDS32DCD","NUMBER OF TWIN / SINGLE LIFTS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,129,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsNrOf2x20contTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsNrOf40contTrip",158,57,"ESDS32DCD","NUMBER OF 40' CONTAINERS (TRIP) FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,127,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsNrOf40contTrip","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsRPM",144,57,"ESDS32DCD","RPM TO NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,113,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsRPM","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsSprHeight",149,57,"ESDS32DCD","SPREADER HEIGHT TO NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,118,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsSprHeight","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsSprLength",150,57,"ESDS32DCD","SPREADER LENGTH TO NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,119,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsSprLength","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsSprLengthFr",161,57,"ESDS32DCD","SPREADER LENGTH FRONT FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,130,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsSprLengthFr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsSprLengthRe",162,57,"ESDS32DCD","SPREADER LENGTH REAR FOR DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,131,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsSprLengthRe","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsStability",145,57,"ESDS32DCD","STABILITY TO NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,114,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsStability","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsTotFuelUsed",164,57,"ESDS32DCD","TOTAL FUEL USED FOR NS DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,133,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsTotFuelUsed","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.NsTwinliftSel",66,57,"ESDS32DCD","TWINLIFT SELECTION TO DISPLAY",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,35,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","NsTwinliftSel","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS600TwLoBoUpA1RR",121,57,"ESDS32DCD","TWISTLOCK BOX A1 UP REAR RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,90,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS600TwLoBoUpA1RR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS601TwLoA1CloseRR",122,57,"ESDS32DCD","TWINLIFT TWISTLOCKS CLOSE A1 REAR RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,91,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS601TwLoA1CloseRR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS602TwLoA1OpeRR",123,57,"ESDS32DCD","TWINLIFT TWISTLOCKS OPEN A1 REAR RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,92,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS602TwLoA1OpeRR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS603TwA1LandPRR",124,57,"ESDS32DCD","TWINLIFT LANDPINS A1 UP REAR RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,93,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS603TwA1LandPRR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS604TwLoBoUpA2RL",117,57,"ESDS32DCD","TWISTLOCK BOX A2 UP REAR LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,86,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS604TwLoBoUpA2RL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS605TwLoA2CloseRL",118,57,"ESDS32DCD","TWINLIFT TWISTLOCKS CLOSE A2 REAR LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,87,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS605TwLoA2CloseRL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS606TwLoA2OpeRL",119,57,"ESDS32DCD","TWINLIFT TWISTLOCKS OPEN A2 REAR LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,88,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS606TwLoA2OpeRL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS607TwA2LandPRL",120,57,"ESDS32DCD","TWINLIFT LANDPINS UP A2 REAR LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,89,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS607TwA2LandPRL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS608TwLoBoUpB1FR",113,57,"ESDS32DCD","TWISTLOCK BOX B1 UP FRONT RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,82,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS608TwLoBoUpB1FR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS609TwLoB1CloseFR",114,57,"ESDS32DCD","TWINLIFT TWISTLOCKS CLOSE B1 FRONT RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,83,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS609TwLoB1CloseFR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS610TwLoB1OpeFR",115,57,"ESDS32DCD","TWINLIFT TWISTLOCKS OPEN B1 FRONT RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,84,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS610TwLoB1OpeFR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS611TwB1LandPFR",116,57,"ESDS32DCD","TWINLIFT LANDPINS B1 UP FRONT RIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,85,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS611TwB1LandPFR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS613TwLoB2CloseFL",110,57,"ESDS32DCD","TWINLIFT TWISTLOCKS CLOSE B2 FRONT LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,79,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS613TwLoB2CloseFL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS614TwLoB2OpeFL",111,57,"ESDS32DCD","TWINLIFT TWISTLOCKS OPEN B2 FRONT LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,80,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS614TwLoB2OpeFL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS615TwB2LandPFL",112,57,"ESDS32DCD","TWINLIFT LANDPINS UP B2 FRONT LEFT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,81,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS615TwB2LandPFL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS700_1GapContR",125,57,"ESDS32DCD","TWINLIFT GAP BETWEEN TWO CONTAINERS WHEN \0\, REAR",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,94,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS700_1GapContR","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS700_2GapContF",127,57,"ESDS32DCD","TWINLIFT GAP BETWEEN TWO CONTAINERS WHEN \0\, FRONT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,96,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS700_2GapContF","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS702_1TwLiCoRe",128,57,"ESDS32DCD","TWINLIFT CONTAINERS (NOT TOP OPEN CONTAINER), REAR",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,97,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS702_1TwLiCoRe","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.PInS702_2TwLiCoFr",126,57,"ESDS32DCD","TWINLIFT CONTAINERS (NOT TOP OPEN CONTAINER), FRONT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,95,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","PInS702_2TwLiCoFr","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.POuTwBoxDownL",95,57,"ESDS32DCD","TWINLIFT TW-LO BOX DOWN LIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,64,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","POuTwBoxDownL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.POuTwBoxUpL",96,57,"ESDS32DCD","TWINLIFT TW-LO BOX UP LIGHT",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,65,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","POuTwBoxUpL","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.StandingTotalHours",136,57,"ESDS32DCD","Standing hours (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,105,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","StandingTotalHours","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.TravelingDistanceTotalBwd",138,57,"ESDS32DCD","Traveling distance backward (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,107,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","TravelingDistanceTotalBwd","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.TravelingDistanceTotalFwd",137,57,"ESDS32DCD","Traveling distance forward (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,106,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","TravelingDistanceTotalFwd","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.TravelingHoursTotalBwd",134,57,"ESDS32DCD","Traveling hours backward (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,103,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","TravelingHoursTotalBwd","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.TravelingHoursTotalFwd",133,57,"ESDS32DCD","Traveling hours forward (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,102,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","TravelingHoursTotalFwd","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.TwinCountTotal",141,57,"ESDS32DCD","Number of twin picks (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,110,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","TwinCountTotal","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD._20ftCountTotal",139,57,"ESDS32DCD","Number of 20ft containers (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,108,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","_20ftCountTotal","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD._40ftCountTotal",140,57,"ESDS32DCD","Number of 40ft containers (total)",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,109,"Real","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","_40ftCountTotal","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"Site1.Comms_Status",50,47,"Site1","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,28,"Integer","",\
+"","","","UNLICENCED","Local Host","Site1",\
+"","Comms_Status","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"Site1.Crane1.Heartbeat",52,48,"Site1.Crane1","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,1,1,\
+0,0,1,27,"Boolean","",\
+"","","","UNLICENCED","Local Host","Site1",\
+"Crane1","Heartbeat","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_01",23,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,13,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_01","",0,"","MODSIM_STATION",\
+"AI_01","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AI_01","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_02",24,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,14,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_02","",0,"","MODSIM_STATION",\
+"AI_02","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AI_02","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_04",33,12,"TRAINING.MOD_SIM.IO","",\
+0,20,80,10,90,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,21,"Integer","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_04","",0,"","MODSIM_STATION",\
+"AI_04","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:AI_04","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_05",25,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,15,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_05","",0,"","MODSIM_STATION",\
+"AI_05","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AI_05","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_06",26,12,"TRAINING.MOD_SIM.IO","",\
+0,0,80,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,16,"Real","",\
+"","MANUAL","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_06","",0,"","MODSIM_STATION",\
+"AI_06","","HIGH","","","",\
+"","","Alarm 1","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"AI_06 High Alarm","","","",\
+"","","178.42.42.210","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AI_06","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_07",36,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,1,1,\
+0,0,1,24,"Real","",\
+"","MANUAL","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_07","",0,"","MODSIM_STATION",\
+"AI_07","","HIGH","","","",\
+"","","Alarm 1","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"AI_06 High Alarm","","","",\
+"","","178.42.42.210","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:AI_07","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AO_01",27,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,17,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AO_01","",0,"","MODSIM_STATION",\
+"AO_01","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AO_01","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AO_02",28,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,18,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AO_02","",0,"","MODSIM_STATION",\
+"AO_02","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AO_02","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AO_05",29,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,19,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AO_05","",0,"","MODSIM_STATION",\
+"AO_05","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AO_05","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AO_06",30,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,20,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AO_06","",0,"","MODSIM_STATION",\
+"AO_06","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AO_06","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_01",15,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,1,1,\
+0,0,1,5,"Boolean","",\
+"","EX1","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_01","",0,"","MODSIM_STATION",\
+"DI_01","","BOOLEAN 0","BOOLEAN 1","","",\
+"","","Normal","Alarm 1","Normal","Normal",\
+"Normal","Normal",0,1,0,0,\
+0,0,"Normal","Alarm","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_01","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_02",16,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,6,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_02","",0,"","MODSIM_STATION",\
+"DI_02","","BOOLEAN 0","BOOLEAN 1","","",\
+"","","Normal","Alarm 1","Normal","Normal",\
+"Normal","Normal",0,2,0,0,\
+0,0,"Normal","Priority 2","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_02","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_03",34,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,22,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_03","",0,"","MODSIM_STATION",\
+"DI_03","","BOOLEAN 0","BOOLEAN 1","","",\
+"","","Normal","Alarm 1","Normal","Normal",\
+"Normal","Normal",0,3,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_03","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_04",35,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,23,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_04","",0,"","MODSIM_STATION",\
+"DI_04","","BOOLEAN 0","BOOLEAN 1","","",\
+"","","Normal","Alarm 1","Normal","Normal",\
+"Normal","Normal",0,4,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_04","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_09",17,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,7,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_09","",0,"","MODSIM_STATION",\
+"DI_09","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_09","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_10",18,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,8,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_10","",0,"","MODSIM_STATION",\
+"DI_10","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_10","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DO_01",19,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,9,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DO_01","",0,"","MODSIM_STATION",\
+"DO_01","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DO_01","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DO_02",20,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,10,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DO_02","",0,"","MODSIM_STATION",\
+"DO_02","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DO_02","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DO_09",21,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,11,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DO_09","",0,"","MODSIM_STATION",\
+"DO_09","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DO_09","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DO_10",22,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,12,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DO_10","",0,"","MODSIM_STATION",\
+"DO_10","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DO_10","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
diff --git a/99-reference/ciserver-qli-exports/items.qli b/99-reference/ciserver-qli-exports/items.qli
new file mode 100644
index 0000000..e777826
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/items.qli
@@ -0,0 +1,657 @@
+
+@LANGUAGE
+ENGLISH
+
+
+@VERSION
+1.03.00
+
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,NSID,PARENT_NSID,SECTION_PATH,DESCRIPTION
+DEADBAND,LOW_LIMIT,HIGH_LIMIT,LOW_LOW_LIMIT,HIGH_HIGH_LIMIT,T_VALUE
+P_VALUE,I_VALUE,TREND_UP_LIMIT,TREND_LOW_LIMIT,SCALE_HIGH_LIMIT,SCALE_LOW_LIMIT
+DUMMY2,COMMENT_1,COMMENT_2,VALUE_FORMAT,POSITIONED,LONGITUDE
+LATITUDE,ALARMING,DIAG,NAME_IN_ITM_TAB,STORAGE,AUDIT_INFO
+FO_ITEM,BLOCKED,PARENT_BLOCKED,ALARM_INHIBIT,PARENT_ALARM_INHIBIT,OPC_VISIBLE
+PARENT_OPC_VISIBLE,OPC_READ,OPC_WRITE,OPC_ALARM_DETECTION,HAS_SUB,STRING_LENGTH
+DELAY,REPEAT,ID_GROUP,ID_NUMBER,ITEM_REP,ITEM_TYPE
+ITEM_SPECIAL,ACKN_TYPE,ALARM_GROUP,FRONT_END_NODE,DISTR_TYPE,INSTALL
+UNIT,TAG,LIMIT_CLAMP,OUT_OF_RANGE,COL_GROUP,STATION
+POINT,FO_GROUP,ITEM_STAT_1,ITEM_STAT_2,ITEM_STAT_3,ITEM_STAT_4
+ITEM_STAT_5,ITEM_STAT_6,ALARM_STATE_1,ALARM_STATE_2,ALARM_STATE_3,ALARM_STATE_4
+ALARM_STATE_5,ALARM_STATE_6,PRIORITY_1,PRIORITY_2,PRIORITY_3,PRIORITY_4
+PRIORITY_5,PRIORITY_6,ALARM_TEXT_1,ALARM_TEXT_2,ALARM_TEXT_3,ALARM_TEXT_4
+ALARM_TEXT_5,ALARM_TEXT_6,ALARM_COLOR_1,ALARM_COLOR_2,ALARM_COLOR_3,ALARM_COLOR_4
+ALARM_COLOR_5,ALARM_COLOR_6,MNEMONIC_1,MNEMONIC_2,MNEMONIC_3,MNEMONIC_4
+MNEMONIC_5,MNEMONIC_6,AOI_1,AOI_2,AOI_3,AOI_4
+AOI_5,AOI_6,AOI_7,AOI_8,AOI_9,AOI_10
+AOI_11,AOI_12,AOI_13,AOI_14,AOI_15,AOI_16
+ENG_UNIT,PROCESS_LIST,POINT_NAME,OPC_AE_STATION_NAME,OPC_EVENT_SOURCE,OPC_EVENT_SOURCE_NAME
+CREATED_BY,SHELVE_ENABLED_1,SHELVE_ENABLED_2,SHELVE_ENABLED_3,SHELVE_ENABLED_4,SHELVE_ENABLED_5
+SHELVE_ENABLED_6,AGG_INTERVAL
+
+@ITEM_DF
+"AOG.Templates.Alarm",5,2,"AOG.Templates","Template item for the AOG base classes",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,3,"Integer","",\
+"","MANUAL","","UNLICENCED","Local Host","AOG",\
+"Templates","Alarm","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","AOI_COMMS","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"AOG.Templates.Integer",4,2,"AOG.Templates","Template item for the AOG base classes",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,2,"Integer","",\
+"","","","UNLICENCED","Local Host","AOG",\
+"Templates","Integer","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"AOG.Templates.PV",6,2,"AOG.Templates","Template item for the AOG base classes",\
+0,10,90,5,95,0,\
+0,0,0,0,100,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,4,"Real","",\
+"","MANUAL","","UNLICENCED","Local Host","AOG",\
+"Templates","PV","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"AOG.Templates.Real",3,2,"AOG.Templates","Template item for the AOG base classes",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,1,"Real","",\
+"","","","UNLICENCED","Local Host","AOG",\
+"Templates","Real","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"ESDS32DCD.HeTwTwLocksClos",58,57,"ESDS32DCD","TWINLIFT TWISTLOCKS ARE CLOSED",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,25,"Boolean","",\
+"","","","UNLICENCED","Local Host","ESDS32DCD",\
+"","HeTwTwLocksClos","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"Site1.Comms_Status",50,47,"Site1","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,28,"Integer","",\
+"","","","UNLICENCED","Local Host","Site1",\
+"","Comms_Status","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"Site1.Crane1.Heartbeat",52,48,"Site1.Crane1","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,1,1,\
+0,0,1,27,"Boolean","",\
+"","","","UNLICENCED","Local Host","Site1",\
+"Crane1","Heartbeat","",0,"","",\
+"","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","",":","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_01",23,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,13,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_01","",0,"","MODSIM_STATION",\
+"AI_01","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AI_01","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_02",24,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,14,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_02","",0,"","MODSIM_STATION",\
+"AI_02","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AI_02","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_04",33,12,"TRAINING.MOD_SIM.IO","",\
+0,20,80,10,90,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,21,"Integer","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_04","",0,"","MODSIM_STATION",\
+"AI_04","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:AI_04","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_05",25,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,15,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_05","",0,"","MODSIM_STATION",\
+"AI_05","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AI_05","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_06",26,12,"TRAINING.MOD_SIM.IO","",\
+0,0,80,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,16,"Real","",\
+"","MANUAL","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_06","",0,"","MODSIM_STATION",\
+"AI_06","","HIGH","","","",\
+"","","Alarm 1","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"AI_06 High Alarm","","","",\
+"","","178.42.42.210","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AI_06","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AI_07",36,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,1,1,\
+0,0,1,24,"Real","",\
+"","MANUAL","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AI_07","",0,"","MODSIM_STATION",\
+"AI_07","","HIGH","","","",\
+"","","Alarm 1","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"AI_06 High Alarm","","","",\
+"","","178.42.42.210","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:AI_07","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AO_01",27,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,17,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AO_01","",0,"","MODSIM_STATION",\
+"AO_01","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AO_01","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AO_02",28,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,18,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AO_02","",0,"","MODSIM_STATION",\
+"AO_02","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AO_02","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AO_05",29,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,19,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AO_05","",0,"","MODSIM_STATION",\
+"AO_05","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AO_05","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.AO_06",30,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","99.99",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,20,"Real","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","AO_06","",0,"","MODSIM_STATION",\
+"AO_06","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"%","","MODSIM_STATION:AO_06","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_01",15,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,1,1,\
+0,0,1,5,"Boolean","",\
+"","EX1","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_01","",0,"","MODSIM_STATION",\
+"DI_01","","BOOLEAN 0","BOOLEAN 1","","",\
+"","","Normal","Alarm 1","Normal","Normal",\
+"Normal","Normal",0,1,0,0,\
+0,0,"Normal","Alarm","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_01","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_02",16,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,6,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_02","",0,"","MODSIM_STATION",\
+"DI_02","","BOOLEAN 0","BOOLEAN 1","","",\
+"","","Normal","Alarm 1","Normal","Normal",\
+"Normal","Normal",0,2,0,0,\
+0,0,"Normal","Priority 2","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_02","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_03",34,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,22,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_03","",0,"","MODSIM_STATION",\
+"DI_03","","BOOLEAN 0","BOOLEAN 1","","",\
+"","","Normal","Alarm 1","Normal","Normal",\
+"Normal","Normal",0,3,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_03","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_04",35,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,1,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,23,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_04","",0,"","MODSIM_STATION",\
+"DI_04","","BOOLEAN 0","BOOLEAN 1","","",\
+"","","Normal","Alarm 1","Normal","Normal",\
+"Normal","Normal",0,4,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_04","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_09",17,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,7,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_09","",0,"","MODSIM_STATION",\
+"DI_09","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_09","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DI_10",18,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,8,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DI_10","",0,"","MODSIM_STATION",\
+"DI_10","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DI_10","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DO_01",19,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,9,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DO_01","",0,"","MODSIM_STATION",\
+"DO_01","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DO_01","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DO_02",20,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,10,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DO_02","",0,"","MODSIM_STATION",\
+"DO_02","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DO_02","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DO_09",21,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,11,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DO_09","",0,"","MODSIM_STATION",\
+"DO_09","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DO_09","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
+"TRAINING.MOD_SIM.IO.DO_10",22,12,"TRAINING.MOD_SIM.IO","",\
+0,0,0,0,0,0,\
+0,0,0,0,0,0,\
+0,"","","",0,0,\
+0,0,0,1,0,0,\
+0,0,0,0,0,0,\
+0,0,0,0,0,1,\
+0,0,1,12,"Boolean","",\
+"","","","UNLICENCED","Local Host","TRAINING",\
+"MOD_SIM","DO_10","",0,"","MODSIM_STATION",\
+"DO_10","","","","","",\
+"","","Normal","Normal","Normal","Normal",\
+"Normal","Normal",0,0,0,0,\
+0,0,"","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","","","","",\
+"","","MODSIM_STATION:DO_10","","",":",\
+"unknown",1,1,1,1,1,\
+1,""
+
diff --git a/99-reference/ciserver-qli-exports/items_to_import.qli b/99-reference/ciserver-qli-exports/items_to_import.qli
new file mode 100644
index 0000000..0e4c295
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/items_to_import.qli
@@ -0,0 +1,16 @@
+
+@LANGUAGE
+ENGLISH
+
+
+@VERSION
+1.03.00
+
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,DESCRIPTION,ITEM_REP
+
+@ITEM_DF
+"ESDS32DCD.HeTwTwLocksClosTest","TWINLIFT TWISTLOCKS ARE CLOSED","Boolean"
\ No newline at end of file
diff --git a/99-reference/ciserver-qli-exports/modbus_point_df.qli b/99-reference/ciserver-qli-exports/modbus_point_df.qli
new file mode 100644
index 0000000..efb50b2
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/modbus_point_df.qli
@@ -0,0 +1,160 @@
+
+@LANGUAGE
+ENGLISH
+
+
+@VERSION
+1.03.00
+
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,STATION,POINT,DESCRIPTION,IO_ADDRESS
+EXTERNAL_RELATION,SCAN_TYPE,CONV_TYPE,DELTA_LIMIT,MAX_INSENS,OFFSET
+PHYS_LOW,PHYS_HIGH,STEP,INVERS,HAS_SIGN,OVERFL_DET
+SWAP_BYTES,SWAP_WORDS,ELEC_LOW,ELEC_HIGH,TMO_NONE,TMO_BOTH
+AVE_UPD_INTERVAL,NO_ZERO,BURST_LIMIT,BITS,CHARS,DIGITS
+FLOAT_TYPE,TIME_ZONE,TIME_REPRES,WLS_VAL_TYPE
+
+@MODBUS_POINT_DF
+"MODSIM_STATION:AI_01","MODSIM_STATION","AI_01","","RI:01",\
+"Input","MOD_SCAN","Linear",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:AI_02","MODSIM_STATION","AI_02","","RI:02",\
+"Input","MOD_SCAN","Linear",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:AI_04","MODSIM_STATION","AI_04","","RI:04",\
+"Input","MOD_SCAN","Linear",0,0,0,\
+0,100,1,0,0,0,\
+0,0,800,4000,0,0,\
+0,0,0,12,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:AI_05","MODSIM_STATION","AI_05","","RI:05",\
+"Input","MOD_SCAN","Linear",0,0,0,\
+-100,100,1,0,1,0,\
+0,0,-100,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:AI_06","MODSIM_STATION","AI_06","","RI:06",\
+"Input","MOD_SCAN","Linear",0,0,0,\
+-100,100,1,0,1,0,\
+0,0,-100,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:AI_07","MODSIM_STATION","AI_07","","RI:07",\
+"Input","MOD_SCAN","Float",0,0,0,\
+-100,100,1,0,1,0,\
+0,1,0,100,0,0,\
+0,0,0,32,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:AO_01","MODSIM_STATION","AO_01","","RO:01",\
+"Output","","Linear",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:AO_02","MODSIM_STATION","AO_02","","RO:02",\
+"Output","","Linear",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:AO_05","MODSIM_STATION","AO_05","","RO:05",\
+"Input + Output","MOD_SCAN","Linear",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:AO_06","MODSIM_STATION","AO_06","","RO:06",\
+"Input + Output","MOD_SCAN","Linear",0,0,0,\
+-100,100,1,0,1,0,\
+0,0,-100,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DI_01","MODSIM_STATION","DI_01","","DI:01",\
+"Input","MOD_SCAN","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DI_02","MODSIM_STATION","DI_02","","DI:02",\
+"Input","MOD_SCAN","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DI_03","MODSIM_STATION","DI_03","","DI:03",\
+"Input","MOD_SCAN","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DI_04","MODSIM_STATION","DI_04","","DI:04",\
+"Input","MOD_SCAN","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DI_09","MODSIM_STATION","DI_09","","DI:09",\
+"Input","MOD_SCAN","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DI_10","MODSIM_STATION","DI_10","","DI:10",\
+"Input","MOD_SCAN","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DO_01","MODSIM_STATION","DO_01","","DO:01",\
+"Output","","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DO_02","MODSIM_STATION","DO_02","","DO:02",\
+"Output","","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DO_09","MODSIM_STATION","DO_09","","DO:09",\
+"Input + Output","MOD_SCAN","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
+"MODSIM_STATION:DO_10","MODSIM_STATION","DO_10","","DO:10",\
+"Input + Output","MOD_SCAN","Digital",0,0,0,\
+0,100,1,0,0,0,\
+0,0,0,100,0,0,\
+0,0,0,16,16,4,\
+"Intel","Date+time GMT","7 bytes IEC","Float value"
+
diff --git a/99-reference/ciserver-qli-exports/section_df.qli b/99-reference/ciserver-qli-exports/section_df.qli
new file mode 100644
index 0000000..86d99c6
--- /dev/null
+++ b/99-reference/ciserver-qli-exports/section_df.qli
@@ -0,0 +1,65 @@
+
+@LANGUAGE
+ENGLISH
+
+
+@VERSION
+1.03.00
+
+
+!==================================================================================================================================
+
+@FIELDS
+NAME,SECTION_PATH,SECTION_NAME,BLOCKED,PARENT_BLOCKED
+ALARM_INHIBIT,PARENT_ALARM_INHIBIT,OPC_VISIBLE,PARENT_OPC_VISIBLE,NSID,PARENT_NSID
+DESCRIPTION,CREATED_BY
+
+@SECTION_DF
+"AID","","AID",0,0,\
+0,0,0,1,169,0,\
+"","unknown"
+
+"AID.WRPS","AID","WRPS",0,0,\
+0,0,0,0,170,169,\
+"","unknown"
+
+"AOG","","AOG",0,0,\
+0,0,0,1,1,0,\
+"Contains Advanced Operating Graphic definitions and demo","unknown"
+
+"AOG.Templates","AOG","Templates",0,0,\
+0,0,0,0,2,1,\
+"Contains the template items used by the AOG base classes","unknown"
+
+"ESDS32DCD","","ESDS32DCD",0,0,\
+0,0,0,1,57,0,\
+"","unknown"
+
+"Site1","","Site1",0,0,\
+0,0,0,1,47,0,\
+"","unknown"
+
+"Site1.Crane1","Site1","Crane1",0,0,\
+0,0,0,0,48,47,\
+"","unknown"
+
+"TRAINING","","TRAINING",0,0,\
+0,0,0,1,7,0,\
+"","unknown"
+
+"TRAINING.MOD_SIM","TRAINING","MOD_SIM",0,0,\
+0,0,0,0,11,7,\
+"","unknown"
+
+"TRAINING.MOD_SIM.IO","TRAINING.MOD_SIM","IO",0,0,\
+0,0,0,0,12,11,\
+"","unknown"
+
+"TRAINING.MOD_SIM.Tank1","TRAINING.MOD_SIM","Tank1",0,0,\
+0,0,0,0,13,11,\
+"","unknown"
+
+"TRAINING.MOD_SIM.Tank2","TRAINING.MOD_SIM","Tank2",0,0,\
+0,0,0,0,14,11,\
+"","unknown"
+