From a944973e990b0c76127e9bcc27a4a1116498bf5d Mon Sep 17 00:00:00 2001 From: mandrica Date: Thu, 26 Mar 2026 14:48:36 +0200 Subject: [PATCH 1/2] eval-ad7134-fmcz: Initial commit Signed-off-by: mandrica --- .../eval-ad7134-fmcz/ad7134_iio_support.rst | 279 ++++++++++++++++++ .../eval-ad7134-fmcz/ad713x.rst | 178 +++++++++++ 2 files changed, 457 insertions(+) create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/ad7134_iio_support.rst create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/ad713x.rst diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/ad7134_iio_support.rst b/docs/solutions/reference-designs/eval-ad7134-fmcz/ad7134_iio_support.rst new file mode 100644 index 00000000000..09cbbd279d0 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/ad7134_iio_support.rst @@ -0,0 +1,279 @@ +AD7134 IIO Application +====================== + +Introduction +------------ + +This page gives an overview of using the ARM platforms supported (default is +Mbed) firmware application with Analog Devices AD7134 Evaluation board(s) and +SDP-K1/Nucleo-L552ZEQ controller board. This example code leverages the ADI +developed IIO (Industrial Input Output) ecosystem to evaluate the AD7134family +of devices by providing a device debug and data capture support. The code +provides support to MBED and STM32 platforms. + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/block_diagram.png + :align: center + :width: 600 + +IIO oscilloscope is used as client application running on Windows-os, which is +ADI developed GUI for ADC data visualization and device debug. The interface +used for communicating client application with firmware application (IIO device) +is UART (Note: SDP-K1 can also support high speed VirtualCOM port @1Mbps or +higher speed for faster data transmission). The firmware application +communicates with IIO device using ADI No-OS drivers and platform drivers low +level software layers. SDP-K1 for MBED and Nucleo-L552ZEQ is used as controller +board, on which IIO firmware application runs and using above software +libraries, the IIO firmware communicates with IIO device. + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/mbed_and_stm32_support_board_message#introduction&showfooter=nofooter + :alt: section>resources/tools-software/product-support-software/mbed_and_stm32_support_board_message#Introduction&showfooter=nofooter + +-------------- + +Useful links +------------ + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/useful_links#useful_link&showfooter=nofooter + :alt: section>resources/tools-software/product-support-software/useful_links#Useful Link&showfooter=nofooter + +- :git-no-OS:`AD7134 no-OS Drivers ` +- :adi:`AD7134 ` +- :adi:`AD4134 ` + +Hardware Connections +-------------------- + +SDP-K1 for mbed platform: +~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Connect the VIO_ADJUST jumper on the SDP-K1 board to 3.3V position to drive + SDP-K1 GPIOs at 3.3V + +Nucleo L552ZEQ for STM32 platform: +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- The Nucleo L552ZEQ board has been used to develop and test the STM32 firmware.Please refer to the board user guide `Nucleo-L552ZEQ User Manual `_ + +EVAL-AD7134: +~~~~~~~~~~~~ + +Connect a 9V power supply to the appropriate header on the Eval Board. The +device mode of operation can be set to either ‘MASTER’ Or ‘SLAVE’ by changing +P10 jumper position. If P10 is open, the mode of operation is master (which is a +default mode on EVB and as well in the firmware). If P10 is shorted, the mode of +operation is slave. Make sure to change the mode in both software (app_config.h +file) and hardware and power-cycle the AD7134 EVB to reflect new mode. + +Please contact product application engineer for more details on the jumper +connections and reference manual. + +Please refer to the respective board user guide on the product page of the +chosen device. + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/hw_connection_ad7134.png + :align: center + :width: 800 + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/hardware_connections_uart#uart_connections&showfooter=nofooter + :alt: section>resources/tools-software/product-support-software/hardware_connections_uart#UART Connections&showfooter=nofooter + +-------------- + +MBED and STM32 Firmware +^^^^^^^^^^^^^^^^^^^^^^^ + +This section briefs on the usage of MBED and STM32 firmware. This also explains the steps to compile and build the application using mbed and *make* based build. + +.. admonition:: Download + :class: download + + Source code is hosted here: + + + - `precision-converters-firmware `_ + + Build Guide for Precision Converters MBED firmware (Use below link): + + - :doc:`Precision Converters MBED Firmware ` + + Build Guide for Precision Converters STM32 firmware (Use below link): + + - :doc:`Precision Converters STM32 Firmware Build Guide ` + + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>/resources/tools-software/product-support-software/lib_iio_download#getting_started&showfooter=nofooter + :alt: section>/resources/tools-software/product-support-software/lib_iio_download#Getting Started&showfooter=nofooter + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>/resources/tools-software/product-support-software/iio_osc_download#getting_started&showfooter=nofooter + :alt: section>/resources/tools-software/product-support-software/iio_osc_download#Getting Started&showfooter=nofooter + +Evaluating AD7134 Using IIO Ecosystem +===================================== + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/note_hardware_connections#note_in_hardware_connections&showfooter=nofooter + :alt: section>resources/tools-software/product-support-software/note_hardware_connections#Note in Hardware Connections&showfooter=nofooter + +Running IIO Oscilloscope (Client) +--------------------------------- + +Open the IIO Oscilloscope application from start menu and configure the serial +(UART) settings as shown below. Click on refresh button and AD7134 device should +pop-up in IIO devices list. + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_iio_devices.png + :align: center + :width: 800 + +Click 'Connect' and it should by default open the data ‘Capture’ window. You can +drag aside or close this window to see the main ‘Debug and DMM’ tab window. + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_iio_windows.png + :align: center + :width: 800 + +Select the device from ‘Device’ pop-up list on ‘Debug’ tab window. This will +make available all device specific and channel specific attributes. + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_debug_window.png + :align: center + :width: 600 + +Configure/Access Device Attributes (Parameters) +----------------------------------------------- + +The IIO Oscilloscope allows user to access and configure different device +parameters, called as 'Device Attributes“. There are 2 types of attributes: + +- Device Attributes (Global): Access/Configure common device parameters. +- Channel Attributes (Specific to channels): Access/Configure channel specific + device parameters. + +How to read and write attribute: + +- To 'Read' an attribute, simply select the attribute from a list or press 'Read' button on left side. +- To 'Write' an attribute, select attribute value in the 'value field' and + press 'Write' button. + +Using DMM Tab to Read DC Voltage on Input Channels +-------------------------------------------------- + +DMM tab can be used read the instantaneous voltage applied on analog input +channels. Simply select the device and channels to read and press start button. + +*\*Note: The voltage is just instantaneous, so it is not possible to get RMS AC voltage or averaged DC voltage. Also, when using DMM tab, do not access/use the Data Capture or Debug tab as this could impact data capturing. Both DMM scan and data capture uses different methods of conversion. The DMM data is read using single conversion, while data capture uses continuous conversion mode of operation.* + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_dmm.png + :align: center + :width: 800 + +Data Capture from IIO Device +---------------------------- + +To capture the data from AD7134 IIO device, simply select the device and +channels to read/capture data. The data is plotted as “ADC Raw Value” Vs “Number +of Samples” and is just used for Visualization. The data is read as is from +device without any processing. If user wants to process the data, it must be +done externally by capturing data from the Serial link on controller board. + +.. warning:: + + The DMM or Debug tab should not be accessed when capturing data as this would impact data capturing. Both DMM scan and data capture uses different methods of conversion. The DMM data is read using single conversion, while data capture uses continuous conversion mode of operation. More info here: :doc:`Data Capture using IIO App ` + +- Time Domain Plot + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_data_capture_window.png + :align: center + :width: 800 + +Access Register map of IIO Device +--------------------------------- + +This tab is used to access the device registers in byte mode. + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_reg_map.png + :align: center + :width: 800 + +Python Environment and Scripts +------------------------------ + +Data capture can be achieved with clients other than the IIO Oscilloscope as well. A possible option using ADI's pyadi-iio library in python has been demonstrated in the forthcoming sections. The *ad7134_data_capture.py* is capable of achieving the same. + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/iio_support_python_application#python_application&showfooter=nofooter + :alt: section>resources/tools-software/product-support-software/iio_support_python_application#Python Application&showfooter=nofooter + +-------------- + +AD7134 Firmware Structure +========================= + +.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/fw_structure.png + :align: center + :width: 400 + +app_config.h +------------ + +This file can be used to: + +- Select the platform in which the firmware needs to be used. MBED and STM32 platforms are supported now. Select the active platform by modifying the '#define ACTIVE_PLATFORM' to 'MBED_PLATFORM' or 'STM32_PLATFORM' depending on the requirement. +- Select the DATA_CAPTURE_MODE to set the data capturing to CONTINUOUS_DATA_CAPTURE or BURST_DATA_CAPTURE +- Switch between two modes- SPI_MODE and TDM_MODE which can be chosen accordingly via the INTERFACE_MODE macro. +- Switch between CONTROLLER_MODE and TARGET_MODE using the AD7134_ASRC_MODE + macro. + +.. important:: + + Note that the maximum Output Data Rate of the device can be leveraged by + selecting the TDM_MODE in the STM32 platform. There is a limit in the maximum + achievable ODR while in SPI_MODE. + +ad7134_user_config.c +-------------------- + +This file defines the user configurations for the AD7134, such as SPI parameters +(frequency, mode, etc) and other init parameters used by No-OS drivers to +initialize AD7134 device (e.g. required GPIOs, software/hardware mode, etc). +These are the parameters loaded into device when device is powered-up or +power-cycled. + +ad7134_iio.c +------------ + +This file defines getter/setter functions for all the device and channel +specific attributes (related to AD7134 devices) to read/write the device +parameters. The majority of device specific functionality is present in this +module. + +ad7134_support.c +---------------- + +This file contains all the support functions utilized in the firmware + +app_config_mbed.c +----------------- + +This file contains all the extra parameters specific to mbed platform + +app_config_stm32.c +------------------ + +This file contains all the extra parameters specific to STM32 platform. There +might be a need to change certain parameters if any board other than the +Nucleo-L552ZEQ is chosen. + +No-OS Drivers for AD7134 +------------------------ + +The no-os drivers provide the high level abstracted layer for digital interface +of AD7134 devices. The complete digital interface (to access memory map and +perform data read) is done in integration with platform drivers. + +The functionality related with no-os drivers is covered in below 2 files: + +- ad7134.c +- ad7134.h + +.. tip:: + + It is hoped that the most common functions of the AD7134 family are coded, but it's likely that some special functionality is not implemented. Feel free to consult Analog Devices :adi:`Engineer-Zone ` for feature requests, feedback, bug-reports etc. diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/ad713x.rst b/docs/solutions/reference-designs/eval-ad7134-fmcz/ad713x.rst new file mode 100644 index 00000000000..c790abced5a --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/ad713x.rst @@ -0,0 +1,178 @@ +AD7134 No-OS Software +===================== + +Introduction +------------ + +This document describes the **No-OS** software used to control the :adi:`AD7134` and :adi:`AD4134` parts and includes an example of how to initialize a :adi:`AD7134` part. + +Overview +-------- + +The :adi:`AD7134`/:adi:`AD4134` 24-bit, 4-channel simultaneous sampling 1.5MSPS, precision, alias free ADC. It contains a continuous time Σ-Δ modulation technology that does not use sample-and-hold circuitry to alleviate the side effects introduced by it, like charge kickback and signal aliasing. This inherent alias rejection is up to 100dB. + +The device has an asynchronous sample rate converter used to synchronize two or +more devices using only a signal line. To do this one of the devices will +generate the synchronization signal while the others will receive it. This also +allows for freely programmable data rates from 10SPS up to 1.496MSPS. + +It has excellent AC and DC performance with 107dB dynamic for the FIR filter at +374kSPS and 138dB dynamic range for the sinc3 filter at 10SPS. The offset drift +is 1.5uV/°C, gain drift of 2ppm/°C and INL of ±2.5ppm. + +It can be powered from a 4.5V to 5.5V power supply and a 1.65V to 1.95V digital +power supply for 1.8V I/O level. It can have external voltage reference of 2.5V, +4.096V and 5V and a crystal or CMOS external clock of 48MHz. The device can be +configured and controlled by GPIOs or SPI. It has temperature operating range +between 0°C and 85°C. + +Applications: + +- Electrical test and measurement; +- Audio test; +- 3-phase power quality analysis; +- Control and hardware in loop verification; +- Sonar; +- Condition and monitoring for predictive maintenance; +- Acoustic and material science research and development. + +Supported Devices +----------------- + +- :adi:`AD7134` +- :adi:`AD4134` + +Evaluation Boards +----------------- + +- :adi:`EVAL-AD7134FMCZ` + +Driver Description +------------------ + +The driver itself is generic and can be used with any controller, but the +controller must implement the serial communication and the GPIO control. These +platform drivers are the connection between the driver and the hardware and hide +the actual details of the communication protocol from the ADI driver. The +platform drivers functions called by the AD7134 driver are: + +- spi_init() - initialize the controller's SPI peripheral. +- spi_remove() - free the memory allocated by spi_init(). +- spi_write_and_read() - do a SPI transmission. +- gpio_get_optional() - initialize a GPIO if it's ID is provided. +- gpio_remove() - free memory allocated by gpio_get_optional(). +- gpio_direction_output() - set GPIO as digital output and set the output + level. + +.. image:: https://wiki.analog.com/_media/resources/tools-software/uc-drivers/ad7134_platform_drv.png + :align: center + +.. container:: centeralign + + SPI platform driver architecture + +The AD7134 driver contains the following: + +- AD714.h - Header file of the driver. Contains the driver function declarations, custom data types to be used by the driver and driver specific constants. +- AD7134.c - Implementation file of the driver. Contains the implementations of + the driver functions. + +The following functions are implemented as API in this version of AD7134 driver: + ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| Function | Description | ++=========================================================================================================================================+=====================================================+ +| ``int32_t ad713x_spi_reg_read(struct ad713x_dev *dev, uint8_t reg_addr, uint8_t *reg_data)`` | Read from device. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_spi_reg_write(struct ad713x_dev *dev, uint8_t reg_addr, uint8_t reg_data)`` | Write to device. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_spi_write_mask(struct ad713x_dev *dev, uint8_t reg_addr, uint32_t mask, uint8_t data)`` | SPI write to device using a mask. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_set_power_mode(struct ad713x_dev *dev, enum ad713x_power_mode mode)`` | Device power mode control. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_set_out_data_frame(struct ad713x_dev *dev, enum ad713x_adc_data_len adc_data_len, enum ad713x_crc_header crc_header)`` | ADC conversion data output frame control. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_dout_format_config(struct ad713x_dev *dev, enum ad713x_doutx_format format)`` | DOUTx output format configuration. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_mag_phase_clk_delay(struct ad713x_dev *dev, bool clk_delay_en)`` | Magnitude and phase at 2 clock delay. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_dig_filter_sel_ch(struct ad713x_dev *dev, enum ad713x_dig_filter_sel filter, enum ad713x_channels ch)`` | Digital filter type selection for each channel. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_clkout_output_en(struct ad713x_dev *dev, bool enable)`` | Enable/Disable CLKOUT output. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_ref_gain_correction_en(struct ad713x_dev *dev, bool enable)`` | Enable/Disable reference gain correction. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_wideband_bw_sel(struct ad713x_dev *dev, enum ad713x_channels ch, uint8_t wb_opt)`` | Select the wideband filter bandwidth for a channel. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_init(struct ad713x_dev **device, struct ad713x_init_param *init_param)`` | Initialize the device. | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ +| ``int32_t ad713x_remove(struct ad713x_dev *dev)`` | Free the resources allocated by ad713x_init(). | ++-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ + +The driver has to be instantiated by using an initialization structure with the +following composition: + +.. code:: c + + /** + * @struct ad713x_init_param + * @brief AD713x driver initialization structure + */ + struct ad713x_init_param { + /** SPI layer initialization structure. */ + struct spi_init_param spi_init_prm; + /** MODE GPIO initialization structure. */ + struct gpio_init_param *gpio_mode; + /** DCLKMODE GPIO initialization structure. */ + struct gpio_init_param *gpio_dclkmode; + /** DCLKIO GPIO initialization structure. */ + struct gpio_init_param *gpio_dclkio; + /** RESET GPIO initialization structure. */ + struct gpio_init_param *gpio_resetn; + /** PDN GPIO initialization structure. */ + struct gpio_init_param *gpio_pnd; + /** MODE GPIO starting value */ + bool mode_master_nslave; + /** DCLKMODE GPIO starting value */ + bool dclkmode_free_ngated; + /** DCLKIO GPIO starting value */ + bool dclkio_out_nin; + /** PDN GPIO starting value */ + bool pnd; + /** ID of supported device. */ + enum ad713x_supported_dev_ids dev_id; + /** Length of data in bits. */ + enum ad713x_adc_data_len adc_data_len; + /** CRC option. */ + enum ad713x_crc_header crc_header; + enum ad713x_doutx_format format; + /** Clock delay state. */ + bool clk_delay_en; + /** SPI layer handler if the SPI bus is shared with another device. In this + * case the SPI should not be initialized again. */ + struct spi_desc *spi_common_dev; + }; + +Downloads +--------- + +.. admonition:: Download + :class: download + + + - :git-no-OS:`AD7134/AD4134 driver ` + - :git-no-OS:`Supported platform drivers ` + - :git-no-OS:`Platform includes ` + + +Using the API +------------- + +The following link shows an example of using the driver with two devices working in tandem with a Xilinx platform: :git-no-OS:`projects/ad713x_fmcz/src/ad713x_fmc.c` + +More information +================ + +.. note:: + + See `more-information `_ From 91f2e0d8e368552fd42ead2a973c95e181772871 Mon Sep 17 00:00:00 2001 From: mandrica Date: Tue, 31 Mar 2026 15:32:07 +0300 Subject: [PATCH 2/2] eval-ad7134-fmcz: Add and update doc files/images Signed-off-by: mandrica --- .../eval-ad7134-fmcz/ad7134_iio_support.rst | 291 ++- .../eval-ad7134-fmcz/ad713x.rst | 178 -- .../images/ad7134_block_diagram.png | 3 + .../eval-ad7134-fmcz/images/ad7134_chip.png | 3 + .../images/ad7134_data_capture_window.png | 3 + .../images/ad7134_debug_window.png | 3 + .../eval-ad7134-fmcz/images/ad7134_dmm.png | 3 + .../eval-ad7134-fmcz/images/ad7134_eval.png | 3 + .../images/ad7134_fw_structure.png | 3 + .../images/ad7134_hardware_setup_linux.jpg | 3 + .../images/ad7134_hardware_setup_no_os.jpg | 3 + .../images/ad7134_hw_connection.png | 3 + .../images/ad7134_iio_block_diagram.png | 3 + .../images/ad7134_iio_devices.png | 3 + .../images/ad7134_iio_osc_connect.jpg | 3 + .../images/ad7134_iio_osc_plot.jpg | 3 + .../images/ad7134_iio_windows.png | 3 + .../images/ad7134_platform_drv.png | 3 + .../images/ad7134_reg_map.png | 3 + .../images/ad7134_scopy_ch1.jpg | 3 + .../images/ad7134_scopy_ch2.jpg | 3 + .../images/ad7134_zed_jtag_jumpers.jpg | 3 + .../images/ad7134_zed_linux_jumpers.jpg | 3 + .../images/ad717x_assigned_com_port.png | 3 + .../images/ad717x_installing_dependencies.png | 3 + .../ad717x_number_of_samples_request.png | 3 + .../images/ad717x_phy_and_virtual_com.png | 3 + .../images/ad717x_py_env_variable.png | 3 + .../images/ad717x_py_version_check.png | 3 + .../images/ad717x_pyadi-iio_installation.png | 3 + .../images/ad717x_python_output.png | 3 + .../images/ad717x_update_uri.png | 3 + .../images/ad717x_vir_com_port.png | 3 + .../eval-ad7134-fmcz/index.rst | 142 ++ .../eval-ad7134-fmcz/prerequisites.rst | 59 + .../eval-ad7134-fmcz/quickstart/index.rst | 69 + .../eval-ad7134-fmcz/quickstart/zed.rst | 1955 +++++++++++++++++ .../eval-ad7134-fmcz/user-guide.rst | 141 ++ 38 files changed, 2708 insertions(+), 220 deletions(-) delete mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/ad713x.rst create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_block_diagram.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_chip.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_data_capture_window.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_debug_window.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_dmm.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_eval.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_fw_structure.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hardware_setup_linux.jpg create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hardware_setup_no_os.jpg create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hw_connection.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_block_diagram.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_devices.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_osc_connect.jpg create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_osc_plot.jpg create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_windows.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_platform_drv.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_reg_map.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_scopy_ch1.jpg create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_scopy_ch2.jpg create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_zed_jtag_jumpers.jpg create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_zed_linux_jumpers.jpg create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_assigned_com_port.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_installing_dependencies.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_number_of_samples_request.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_phy_and_virtual_com.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_py_env_variable.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_py_version_check.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_pyadi-iio_installation.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_python_output.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_update_uri.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_vir_com_port.png create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/index.rst create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/prerequisites.rst create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/quickstart/index.rst create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/quickstart/zed.rst create mode 100644 docs/solutions/reference-designs/eval-ad7134-fmcz/user-guide.rst diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/ad7134_iio_support.rst b/docs/solutions/reference-designs/eval-ad7134-fmcz/ad7134_iio_support.rst index 09cbbd279d0..b10800555e8 100644 --- a/docs/solutions/reference-designs/eval-ad7134-fmcz/ad7134_iio_support.rst +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/ad7134_iio_support.rst @@ -1,3 +1,5 @@ +.. _eval-ad7134-fmcz ad7134-iio-support: + AD7134 IIO Application ====================== @@ -11,10 +13,12 @@ developed IIO (Industrial Input Output) ecosystem to evaluate the AD7134family of devices by providing a device debug and data capture support. The code provides support to MBED and STM32 platforms. -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/block_diagram.png +.. figure:: images/ad7134_iio_block_diagram.png :align: center :width: 600 + AD7134 IIO application block diagram + IIO oscilloscope is used as client application running on Windows-os, which is ADI developed GUI for ADC data visualization and device debug. The interface used for communicating client application with firmware application (IIO device) @@ -25,16 +29,23 @@ level software layers. SDP-K1 for MBED and Nucleo-L552ZEQ is used as controller board, on which IIO firmware application runs and using above software libraries, the IIO firmware communicates with IIO device. -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/mbed_and_stm32_support_board_message#introduction&showfooter=nofooter - :alt: section>resources/tools-software/product-support-software/mbed_and_stm32_support_board_message#Introduction&showfooter=nofooter +.. note:: + + This code has been developed and tested for mbed platform on the SDP-K1 and + for STM32 platform on the Nucleo-L552ZEQ Controller Board. However, same code + can be used without or with little modifications on any Mbed or STM32 enabled + board which has Arduino/Arduino+Zio Header Support on it, such as + STM32-Discovery, STM32-Nucleo, etc. -------------- Useful links ------------ -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/useful_links#useful_link&showfooter=nofooter - :alt: section>resources/tools-software/product-support-software/useful_links#Useful Link&showfooter=nofooter +- `Mbed Online Compiler `_ +- `SDP-K1 on Mbed `_ +- `no-OS Drivers `_ +- :adi:`Products ` - :git-no-OS:`AD7134 no-OS Drivers ` - :adi:`AD7134 ` @@ -52,7 +63,12 @@ SDP-K1 for mbed platform: Nucleo L552ZEQ for STM32 platform: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- The Nucleo L552ZEQ board has been used to develop and test the STM32 firmware.Please refer to the board user guide `Nucleo-L552ZEQ User Manual `_ +- The Nucleo L552ZEQ board has been used to develop and test the + STM32 firmware. Please refer to the board user guide + `Nucleo-L552ZEQ User Manual`_. + +.. _Nucleo-L552ZEQ User Manual: + https://www.st.com/content/ccc/resource/technical/document/user_manual/group1/ad/a4/bd/5e/14/15/4e/e8/DM00615305/files/DM00615305.pdf/jcr:content/translations/en.DM00615305.pdf EVAL-AD7134: ~~~~~~~~~~~~ @@ -70,48 +86,123 @@ connections and reference manual. Please refer to the respective board user guide on the product page of the chosen device. -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/hw_connection_ad7134.png +.. figure:: images/ad7134_hw_connection.png :align: center :width: 800 -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/hardware_connections_uart#uart_connections&showfooter=nofooter - :alt: section>resources/tools-software/product-support-software/hardware_connections_uart#UART Connections&showfooter=nofooter + AD7134 hardware connection + +UART Connections +~~~~~~~~~~~~~~~~ + +For data transmission to IIO client, VirtualCOM or UART serial communication is +used. SDP-K1 by default uses the VCOM serial interface for higher speed data +transmission. + +SDP-K1 is powered through USB connections from the computer. SDP-K1 acts as a +Serial device when connected to PC, which creates a COM Port to connect to IIO +Oscilloscope GUI running on windows-os. The COM port assigned to a device can be +seen through the device manager for windows-based OS. + +.. figure:: images/ad717x_assigned_com_port.png + :align: center + :width: 600 + + Assigned COM port in Device Manager + +SDP-K1 can support high speed VirtualCOM port USB interface, so by default VCOM +is configured as default interface in the firmware. The interface can be set to +UART by defining macro ``USE_PHY_COM_PORT`` in the ``app_config.h`` file. + +.. figure:: images/ad717x_phy_and_virtual_com.png + :align: center + :width: 600 + + Physical and Virtual COM port options + +.. figure:: images/ad717x_vir_com_port.png + :align: center + :width: 600 + + Virtual COM port in Device Manager + +.. warning:: + + Actual COM port number for your device may not be the same as shown above. + Therefore, always check your SDP-K1 serial COM port number before connecting + to IIO client. -------------- MBED and STM32 Firmware ^^^^^^^^^^^^^^^^^^^^^^^ -This section briefs on the usage of MBED and STM32 firmware. This also explains the steps to compile and build the application using mbed and *make* based build. +This section briefs on the usage of MBED and STM32 firmware. This also explains +the steps to compile and build the application using mbed and *make* based +build. .. admonition:: Download :class: download Source code is hosted here: - - - `precision-converters-firmware `_ - + - `precision-converters-firmware + `_ + Build Guide for Precision Converters MBED firmware (Use below link): - - - :doc:`Precision Converters MBED Firmware ` - + + - `Precision Converters MBED Firmware + `_ + Build Guide for Precision Converters STM32 firmware (Use below link): - - - :doc:`Precision Converters STM32 Firmware Build Guide ` - -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>/resources/tools-software/product-support-software/lib_iio_download#getting_started&showfooter=nofooter - :alt: section>/resources/tools-software/product-support-software/lib_iio_download#Getting Started&showfooter=nofooter + - `Precision Converters STM32 Firmware Build Guide + `_ + + +Libiio: IIO Library +~~~~~~~~~~~~~~~~~~~ + +The libiio library provides an abstracted interface to communicate between the +IIO device and the IIO client application (IIO Oscilloscope) without worrying +about low level hardware details. Download and install the libiio Windows +installer on your computer. + +.. admonition:: Download + :class: download + + Libiio installer for Windows (Use below link): -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>/resources/tools-software/product-support-software/iio_osc_download#getting_started&showfooter=nofooter - :alt: section>/resources/tools-software/product-support-software/iio_osc_download#Getting Started&showfooter=nofooter + - `libiio windows installer (.exe) + `_ + +IIO Oscilloscope (Client) +~~~~~~~~~~~~~~~~~~~~~~~~~ + +The IIO Oscilloscope is a GUI based IIO client application for data +visualization and device configuration/debugging. It provides visualization of +data from IIO devices (ADCs/DACs) transmitted via Serial/Ethernet/USB +connections through the libiio abstraction layer. Download and install the IIO +Oscilloscope Windows installer on your computer. + +.. admonition:: Download + :class: download + + IIO Oscilloscope installer for Windows (Use below link): + + - `IIO Oscilloscope windows installer (.exe) + `_ Evaluating AD7134 Using IIO Ecosystem ===================================== -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/note_hardware_connections#note_in_hardware_connections&showfooter=nofooter - :alt: section>resources/tools-software/product-support-software/note_hardware_connections#Note in Hardware Connections&showfooter=nofooter +.. note:: + + Ensure that the hardware connection has been made properly between the + Controller Board (SDP-K1) and the ADC Eval board. Also ensure all software + (IIO firmware, Libiio windows installer and IIO Oscilloscope windows + installer) are downloaded and installed on your computer before trying to + communicate with the device. Running IIO Oscilloscope (Client) --------------------------------- @@ -120,24 +211,30 @@ Open the IIO Oscilloscope application from start menu and configure the serial (UART) settings as shown below. Click on refresh button and AD7134 device should pop-up in IIO devices list. -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_iio_devices.png +.. figure:: images/ad7134_iio_devices.png :align: center :width: 800 + AD7134 IIO device connection + Click 'Connect' and it should by default open the data ‘Capture’ window. You can drag aside or close this window to see the main ‘Debug and DMM’ tab window. -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_iio_windows.png +.. figure:: images/ad7134_iio_windows.png :align: center :width: 800 + AD7134 IIO Oscilloscope windows + Select the device from ‘Device’ pop-up list on ‘Debug’ tab window. This will make available all device specific and channel specific attributes. -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_debug_window.png +.. figure:: images/ad7134_debug_window.png :align: center :width: 600 + AD7134 debug window + Configure/Access Device Attributes (Parameters) ----------------------------------------------- @@ -150,7 +247,8 @@ parameters, called as 'Device Attributes“. There are 2 types of attributes: How to read and write attribute: -- To 'Read' an attribute, simply select the attribute from a list or press 'Read' button on left side. +- To 'Read' an attribute, simply select the attribute from a list or press + 'Read' button on left side. - To 'Write' an attribute, select attribute value in the 'value field' and press 'Write' button. @@ -160,12 +258,19 @@ Using DMM Tab to Read DC Voltage on Input Channels DMM tab can be used read the instantaneous voltage applied on analog input channels. Simply select the device and channels to read and press start button. -*\*Note: The voltage is just instantaneous, so it is not possible to get RMS AC voltage or averaged DC voltage. Also, when using DMM tab, do not access/use the Data Capture or Debug tab as this could impact data capturing. Both DMM scan and data capture uses different methods of conversion. The DMM data is read using single conversion, while data capture uses continuous conversion mode of operation.* +*\*Note: The voltage is just instantaneous, so it is not possible to get RMS AC +voltage or averaged DC voltage. Also, when using DMM tab, do not access/use the +Data Capture or Debug tab as this could impact data capturing. Both DMM scan and +data capture uses different methods of conversion. The DMM data is read using +single conversion, while data capture uses continuous conversion mode of +operation.* -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_dmm.png +.. figure:: images/ad7134_dmm.png :align: center :width: 800 + AD7134 DMM tab + Data Capture from IIO Device ---------------------------- @@ -177,48 +282,147 @@ done externally by capturing data from the Serial link on controller board. .. warning:: - The DMM or Debug tab should not be accessed when capturing data as this would impact data capturing. Both DMM scan and data capture uses different methods of conversion. The DMM data is read using single conversion, while data capture uses continuous conversion mode of operation. More info here: :doc:`Data Capture using IIO App ` + The DMM or Debug tab should not be accessed when capturing data as this would + impact data capturing. Both DMM scan and data capture uses different methods + of conversion. The DMM data is read using single conversion, while data + capture uses continuous conversion mode of operation. More info here: `Data + Capture using IIO App + `_ - Time Domain Plot -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_data_capture_window.png +.. figure:: images/ad7134_data_capture_window.png :align: center :width: 800 + AD7134 time domain data capture + Access Register map of IIO Device --------------------------------- This tab is used to access the device registers in byte mode. -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/ad7134_reg_map.png +.. figure:: images/ad7134_reg_map.png :align: center :width: 800 + AD7134 register map access + Python Environment and Scripts ------------------------------ -Data capture can be achieved with clients other than the IIO Oscilloscope as well. A possible option using ADI's pyadi-iio library in python has been demonstrated in the forthcoming sections. The *ad7134_data_capture.py* is capable of achieving the same. +Data capture can be achieved with clients other than the IIO Oscilloscope as +well. A possible option using ADI's pyadi-iio library in python has been +demonstrated in the forthcoming sections. The *ad7134_data_capture.py* is +capable of achieving the same. + +Setting-up Python Environment +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Please install python into your local machine. The python scripts are + developed and executed using python 3.9.0 version, so recommend using version + 3.9.0 or beyond. `Download python `_ +- Once python is installed, make sure the environment path (on windows machine) + is set properly. You can verify if python is installed properly by typing + "python --version" command on command line tool such as gitbash, command + prompt, power shell, etc. + +.. figure:: images/ad717x_py_env_variable.png + :align: center + :width: 600 + + Python environment variable + +.. figure:: images/ad717x_py_version_check.png + :align: center + :width: 600 + + Python version check + +- Install the "pyadi-iio" python package by executing command ``python -m pip + install pyadi-iio``. Detailed guide on installing it is available in `Python + Interfaces for ADI Hardware `_ + +.. note:: + + Make sure to install additional support packages by running requirements.txt + file using command ``python -m pip install -r requirements.txt`` from + ``scripts/`` directory. + +.. figure:: images/ad717x_pyadi-iio_installation.png + :align: center + :width: 600 + + pyadi-iio installation + +Modifying/running Python Scripts +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/section>resources/tools-software/product-support-software/iio_support_python_application#python_application&showfooter=nofooter - :alt: section>resources/tools-software/product-support-software/iio_support_python_application#Python Application&showfooter=nofooter +- All python scripts specific to the IIO firmware are stored into ``scripts`` + folder present in the project directory. So, any script must be executed from + this folder. + +.. figure:: images/ad717x_installing_dependencies.png + :align: center + :width: 600 + + Installing dependencies + +- Update the ``uri`` interface in script according to COM port assigned to your + device (sdp-k1). Default COM port is set to COM16 in all scripts. + +.. figure:: images/ad717x_update_uri.png + :align: center + :width: 600 + + Updating the URI interface + +Output Obtained from the Python Script +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +While executing the *adxxxx_data_capture.py*, the command prompt requests for +the number of samples to be entered by the user. + +.. figure:: images/ad717x_number_of_samples_request.png + :align: center + :width: 600 + + Number of samples request + +On entering the number of samples *n*, on successful completion of capturing *n* +samples, the data points are stored in a csv as *adc_data_capture.csv* in the +folder where the script is present. + +.. figure:: images/ad717x_python_output.png + :align: center + :width: 600 + + Python script output -------------- AD7134 Firmware Structure ========================= -.. image:: https://wiki.analog.com/_media/resources/tools-software/product-support-software/fw_structure.png +.. figure:: images/ad7134_fw_structure.png :align: center :width: 400 + AD7134 firmware structure + app_config.h ------------ This file can be used to: -- Select the platform in which the firmware needs to be used. MBED and STM32 platforms are supported now. Select the active platform by modifying the '#define ACTIVE_PLATFORM' to 'MBED_PLATFORM' or 'STM32_PLATFORM' depending on the requirement. -- Select the DATA_CAPTURE_MODE to set the data capturing to CONTINUOUS_DATA_CAPTURE or BURST_DATA_CAPTURE -- Switch between two modes- SPI_MODE and TDM_MODE which can be chosen accordingly via the INTERFACE_MODE macro. +- Select the platform in which the firmware needs to be used. MBED and STM32 + platforms are supported now. Select the active platform by modifying the + '#define ACTIVE_PLATFORM' to 'MBED_PLATFORM' or 'STM32_PLATFORM' depending on + the requirement. +- Select the DATA_CAPTURE_MODE to set the data capturing to + CONTINUOUS_DATA_CAPTURE or BURST_DATA_CAPTURE +- Switch between two modes- SPI_MODE and TDM_MODE which can be chosen + accordingly via the INTERFACE_MODE macro. - Switch between CONTROLLER_MODE and TARGET_MODE using the AD7134_ASRC_MODE macro. @@ -276,4 +480,7 @@ The functionality related with no-os drivers is covered in below 2 files: .. tip:: - It is hoped that the most common functions of the AD7134 family are coded, but it's likely that some special functionality is not implemented. Feel free to consult Analog Devices :adi:`Engineer-Zone ` for feature requests, feedback, bug-reports etc. + It is hoped that the most common functions of the AD7134 family are coded, + but it's likely that some special functionality is not implemented. Feel free + to consult Analog Devices :adi:`Engineer-Zone ` for feature + requests, feedback, bug-reports etc. diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/ad713x.rst b/docs/solutions/reference-designs/eval-ad7134-fmcz/ad713x.rst deleted file mode 100644 index c790abced5a..00000000000 --- a/docs/solutions/reference-designs/eval-ad7134-fmcz/ad713x.rst +++ /dev/null @@ -1,178 +0,0 @@ -AD7134 No-OS Software -===================== - -Introduction ------------- - -This document describes the **No-OS** software used to control the :adi:`AD7134` and :adi:`AD4134` parts and includes an example of how to initialize a :adi:`AD7134` part. - -Overview --------- - -The :adi:`AD7134`/:adi:`AD4134` 24-bit, 4-channel simultaneous sampling 1.5MSPS, precision, alias free ADC. It contains a continuous time Σ-Δ modulation technology that does not use sample-and-hold circuitry to alleviate the side effects introduced by it, like charge kickback and signal aliasing. This inherent alias rejection is up to 100dB. - -The device has an asynchronous sample rate converter used to synchronize two or -more devices using only a signal line. To do this one of the devices will -generate the synchronization signal while the others will receive it. This also -allows for freely programmable data rates from 10SPS up to 1.496MSPS. - -It has excellent AC and DC performance with 107dB dynamic for the FIR filter at -374kSPS and 138dB dynamic range for the sinc3 filter at 10SPS. The offset drift -is 1.5uV/°C, gain drift of 2ppm/°C and INL of ±2.5ppm. - -It can be powered from a 4.5V to 5.5V power supply and a 1.65V to 1.95V digital -power supply for 1.8V I/O level. It can have external voltage reference of 2.5V, -4.096V and 5V and a crystal or CMOS external clock of 48MHz. The device can be -configured and controlled by GPIOs or SPI. It has temperature operating range -between 0°C and 85°C. - -Applications: - -- Electrical test and measurement; -- Audio test; -- 3-phase power quality analysis; -- Control and hardware in loop verification; -- Sonar; -- Condition and monitoring for predictive maintenance; -- Acoustic and material science research and development. - -Supported Devices ------------------ - -- :adi:`AD7134` -- :adi:`AD4134` - -Evaluation Boards ------------------ - -- :adi:`EVAL-AD7134FMCZ` - -Driver Description ------------------- - -The driver itself is generic and can be used with any controller, but the -controller must implement the serial communication and the GPIO control. These -platform drivers are the connection between the driver and the hardware and hide -the actual details of the communication protocol from the ADI driver. The -platform drivers functions called by the AD7134 driver are: - -- spi_init() - initialize the controller's SPI peripheral. -- spi_remove() - free the memory allocated by spi_init(). -- spi_write_and_read() - do a SPI transmission. -- gpio_get_optional() - initialize a GPIO if it's ID is provided. -- gpio_remove() - free memory allocated by gpio_get_optional(). -- gpio_direction_output() - set GPIO as digital output and set the output - level. - -.. image:: https://wiki.analog.com/_media/resources/tools-software/uc-drivers/ad7134_platform_drv.png - :align: center - -.. container:: centeralign - - SPI platform driver architecture - -The AD7134 driver contains the following: - -- AD714.h - Header file of the driver. Contains the driver function declarations, custom data types to be used by the driver and driver specific constants. -- AD7134.c - Implementation file of the driver. Contains the implementations of - the driver functions. - -The following functions are implemented as API in this version of AD7134 driver: - -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| Function | Description | -+=========================================================================================================================================+=====================================================+ -| ``int32_t ad713x_spi_reg_read(struct ad713x_dev *dev, uint8_t reg_addr, uint8_t *reg_data)`` | Read from device. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_spi_reg_write(struct ad713x_dev *dev, uint8_t reg_addr, uint8_t reg_data)`` | Write to device. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_spi_write_mask(struct ad713x_dev *dev, uint8_t reg_addr, uint32_t mask, uint8_t data)`` | SPI write to device using a mask. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_set_power_mode(struct ad713x_dev *dev, enum ad713x_power_mode mode)`` | Device power mode control. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_set_out_data_frame(struct ad713x_dev *dev, enum ad713x_adc_data_len adc_data_len, enum ad713x_crc_header crc_header)`` | ADC conversion data output frame control. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_dout_format_config(struct ad713x_dev *dev, enum ad713x_doutx_format format)`` | DOUTx output format configuration. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_mag_phase_clk_delay(struct ad713x_dev *dev, bool clk_delay_en)`` | Magnitude and phase at 2 clock delay. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_dig_filter_sel_ch(struct ad713x_dev *dev, enum ad713x_dig_filter_sel filter, enum ad713x_channels ch)`` | Digital filter type selection for each channel. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_clkout_output_en(struct ad713x_dev *dev, bool enable)`` | Enable/Disable CLKOUT output. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_ref_gain_correction_en(struct ad713x_dev *dev, bool enable)`` | Enable/Disable reference gain correction. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_wideband_bw_sel(struct ad713x_dev *dev, enum ad713x_channels ch, uint8_t wb_opt)`` | Select the wideband filter bandwidth for a channel. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_init(struct ad713x_dev **device, struct ad713x_init_param *init_param)`` | Initialize the device. | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ -| ``int32_t ad713x_remove(struct ad713x_dev *dev)`` | Free the resources allocated by ad713x_init(). | -+-----------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------+ - -The driver has to be instantiated by using an initialization structure with the -following composition: - -.. code:: c - - /** - * @struct ad713x_init_param - * @brief AD713x driver initialization structure - */ - struct ad713x_init_param { - /** SPI layer initialization structure. */ - struct spi_init_param spi_init_prm; - /** MODE GPIO initialization structure. */ - struct gpio_init_param *gpio_mode; - /** DCLKMODE GPIO initialization structure. */ - struct gpio_init_param *gpio_dclkmode; - /** DCLKIO GPIO initialization structure. */ - struct gpio_init_param *gpio_dclkio; - /** RESET GPIO initialization structure. */ - struct gpio_init_param *gpio_resetn; - /** PDN GPIO initialization structure. */ - struct gpio_init_param *gpio_pnd; - /** MODE GPIO starting value */ - bool mode_master_nslave; - /** DCLKMODE GPIO starting value */ - bool dclkmode_free_ngated; - /** DCLKIO GPIO starting value */ - bool dclkio_out_nin; - /** PDN GPIO starting value */ - bool pnd; - /** ID of supported device. */ - enum ad713x_supported_dev_ids dev_id; - /** Length of data in bits. */ - enum ad713x_adc_data_len adc_data_len; - /** CRC option. */ - enum ad713x_crc_header crc_header; - enum ad713x_doutx_format format; - /** Clock delay state. */ - bool clk_delay_en; - /** SPI layer handler if the SPI bus is shared with another device. In this - * case the SPI should not be initialized again. */ - struct spi_desc *spi_common_dev; - }; - -Downloads ---------- - -.. admonition:: Download - :class: download - - - - :git-no-OS:`AD7134/AD4134 driver ` - - :git-no-OS:`Supported platform drivers ` - - :git-no-OS:`Platform includes ` - - -Using the API -------------- - -The following link shows an example of using the driver with two devices working in tandem with a Xilinx platform: :git-no-OS:`projects/ad713x_fmcz/src/ad713x_fmc.c` - -More information -================ - -.. note:: - - See `more-information `_ diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_block_diagram.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_block_diagram.png new file mode 100644 index 00000000000..606f5121211 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_block_diagram.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19dc62fe8f2df1ab25bfb35ce7abaafa1325493b9a53a58869f5194c3029d2c +size 128858 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_chip.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_chip.png new file mode 100644 index 00000000000..506351df39a --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_chip.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b425c0d8547579f7980cf7e5c2a3cd5a973d5ccc644d464f93082678969d980 +size 5381160 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_data_capture_window.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_data_capture_window.png new file mode 100644 index 00000000000..acc7ae68a1a --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_data_capture_window.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f201509ef54fc549168646a41619655ff571c7949e42b99a32cb68923f9c93e +size 174362 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_debug_window.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_debug_window.png new file mode 100644 index 00000000000..9ea4e852f15 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_debug_window.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac75d4f6535ba6999fca7c3bf0895376fccb1bf6a65782b7caed30f9b65956a +size 84950 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_dmm.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_dmm.png new file mode 100644 index 00000000000..4361c13829c --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_dmm.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce6e3a2815d5eb3b324ac0e2e2df2cc722b37e46ff44c6fda5cd548c6ffef1d +size 80829 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_eval.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_eval.png new file mode 100644 index 00000000000..8ce074455a0 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_eval.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4098166c19f21b33bc68a1498c2697ae908c17073dcbd634397fbf5a3b1bc12 +size 304817 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_fw_structure.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_fw_structure.png new file mode 100644 index 00000000000..b060107d073 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_fw_structure.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d861d6a074116cef5f8e5241446c416c6832599e6bc50fa9a2051b5b6bbd02c3 +size 13054 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hardware_setup_linux.jpg b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hardware_setup_linux.jpg new file mode 100644 index 00000000000..490c257d500 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hardware_setup_linux.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6f9c0a5faca30c04c64837f56d238ebcabbe1089619ccc24a85b80f08f5efb +size 3161901 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hardware_setup_no_os.jpg b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hardware_setup_no_os.jpg new file mode 100644 index 00000000000..14504d603b8 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hardware_setup_no_os.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad1de4e97ad6d32bf1b5021de6abd8ecf8244987700a191593834fcb2846fbf +size 3073131 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hw_connection.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hw_connection.png new file mode 100644 index 00000000000..87558d7e1d9 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_hw_connection.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae32f7f636d467a395fd86edb2f00d14343352559637581692b759fd8deac474 +size 641641 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_block_diagram.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_block_diagram.png new file mode 100644 index 00000000000..8818bb9286a --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_block_diagram.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d57d0f649932c4b8b9e0759792db18dd0ba08caaf50c71c99d461bc2a7ad28e +size 123276 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_devices.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_devices.png new file mode 100644 index 00000000000..f5a7e5470d6 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_devices.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5ffbb8818d6695a958898404fa9d27ed1e8dea97b050a06d7bf4464b43bc51 +size 1362255 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_osc_connect.jpg b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_osc_connect.jpg new file mode 100644 index 00000000000..e203e1f2790 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_osc_connect.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45a7de53df48b40bf149da1efa7f57438aa8badfe5c1dcaef8225aa397e5eb3c +size 84993 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_osc_plot.jpg b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_osc_plot.jpg new file mode 100644 index 00000000000..5b02eac4362 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_osc_plot.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f08348cad74b4f801118f88c56b60a1f93a3d58e19aad840f03c235999d0e316 +size 219474 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_windows.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_windows.png new file mode 100644 index 00000000000..4c7346cf336 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_iio_windows.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294e24713b0e0635e71e807bccc0b0ead967528c7ff0f2762dbdd1aa8803a8ba +size 650891 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_platform_drv.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_platform_drv.png new file mode 100644 index 00000000000..8be250a6706 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_platform_drv.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b7b79b55af87b23373558f64c93400ef4384ea92f2c1f63d92bedb3437f456b +size 18619 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_reg_map.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_reg_map.png new file mode 100644 index 00000000000..cb36ba9631c --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_reg_map.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0386fc8e6ccaa072a39f33c7aaa341c0cbf172a7d6dfc39cec99ce0d34228e7d +size 1227741 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_scopy_ch1.jpg b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_scopy_ch1.jpg new file mode 100644 index 00000000000..3170546bd49 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_scopy_ch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84262bc8126bbade85eb49b969e6c4381d1b0ed6b69b2e1608fe6c95570a0d18 +size 134247 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_scopy_ch2.jpg b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_scopy_ch2.jpg new file mode 100644 index 00000000000..a4f68655363 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_scopy_ch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ac95ac9e3f45db7c23cdcefc87cb78b55a9f861d51da481c94029f11810c94 +size 132525 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_zed_jtag_jumpers.jpg b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_zed_jtag_jumpers.jpg new file mode 100644 index 00000000000..543b9d1b2a2 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_zed_jtag_jumpers.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e879616252eed58e9bfdb120966dbb9d3cb17b1d6a23b2f5431c152345dfb782 +size 3210510 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_zed_linux_jumpers.jpg b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_zed_linux_jumpers.jpg new file mode 100644 index 00000000000..ac6286cf308 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad7134_zed_linux_jumpers.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb80336298976ccbf57ebf43d3b11037fc80886b83ab21e23e04933482f2ab3 +size 4302026 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_assigned_com_port.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_assigned_com_port.png new file mode 100644 index 00000000000..9579114aa84 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_assigned_com_port.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a478aa531137eddc27820dd46bffbacbc325f81de49ca043bfa4da9b6ca36e4 +size 16186 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_installing_dependencies.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_installing_dependencies.png new file mode 100644 index 00000000000..388267d279e --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_installing_dependencies.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8378a336238f0a7f1986d4f0fa3b4a47502450e109013cd5ac5055bf1d2bdc +size 81878 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_number_of_samples_request.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_number_of_samples_request.png new file mode 100644 index 00000000000..377dc8b5570 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_number_of_samples_request.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca70c35f6b78c3f9eb71903136d57437d073fc3f94d482168210740364fb292 +size 9071 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_phy_and_virtual_com.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_phy_and_virtual_com.png new file mode 100644 index 00000000000..554cd7275ff --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_phy_and_virtual_com.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:354e1864192fc4ca23dda0b3bf54941df2351f6430c1bedfd3b071fad4488cff +size 5440 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_py_env_variable.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_py_env_variable.png new file mode 100644 index 00000000000..2cec14d425d --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_py_env_variable.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add3fb0486bee7f64e4d642f9c51742847d76f2904f5a7a02c5aed04662f70f8 +size 15883 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_py_version_check.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_py_version_check.png new file mode 100644 index 00000000000..bb50696d321 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_py_version_check.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c621e0eba14a833a76a5f66752d203a254de3a197e54880aebae6e360ec3443 +size 1256 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_pyadi-iio_installation.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_pyadi-iio_installation.png new file mode 100644 index 00000000000..26037ad3272 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_pyadi-iio_installation.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8065deeefc3d459c3a34dd5b00bf493a1ee6f7d08a92ad16b144c88ac4f5bd95 +size 72554 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_python_output.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_python_output.png new file mode 100644 index 00000000000..1b66f7d366d --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_python_output.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078f3d853b1563bc3beaaf660169f340647730d39161f921119c11beccc143bc +size 1979092 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_update_uri.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_update_uri.png new file mode 100644 index 00000000000..d2e5e7dd8eb --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_update_uri.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65279769d5d4c5cdfd3463e9498c686751f6172aba157a50bbfca161494e4dd1 +size 16908 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_vir_com_port.png b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_vir_com_port.png new file mode 100644 index 00000000000..90e22fa25d4 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/images/ad717x_vir_com_port.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898a046d2f24ff02f76cad4f35c85f346a261c3a85a750b4b20e255d62cc0f31 +size 638243 diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/index.rst b/docs/solutions/reference-designs/eval-ad7134-fmcz/index.rst new file mode 100644 index 00000000000..484488d1751 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/index.rst @@ -0,0 +1,142 @@ +.. _eval-ad7134-fmcz: + +EVAL-AD7134-FMCZ +================= + +24-Bit, 4-Channel Simultaneous Sampling 1.5 MSPS Precision Alias Free ADC + +.. image:: images/ad7134_chip.png + :align: left + :width: 100 + +Overview +-------- + +The :adi:`AD7134` is a 24-bit, 4-channel simultaneous sampling 1.5MSPS, +precision, alias free ADC. It contains a continuous time Σ-Δ modulation +technology that does not use sample-and-hold circuitry to alleviate the side +effects introduced by it, like charge kickback and signal aliasing. This +inherent alias rejection is up to 100dB. + +The device has an asynchronous sample rate converter used to synchronize two +or more devices using only a signal line. To do this one of the devices will +generate the synchronization signal while the others will receive it. This +also allows for freely programmable data rates from 10SPS up to 1.496MSPS. + +It has excellent AC and DC performance with 107dB dynamic for the FIR filter +at 374kSPS and 138dB dynamic range for the sinc3 filter at 10SPS. The offset +drift is 1.5uV/°C, gain drift of 2ppm/°C and INL of ±2.5ppm. + +It can be powered from a 4.5V to 5.5V power supply and a 1.65V to 1.95V +digital power supply for 1.8V I/O level. It can have external voltage +reference of 2.5V, 4.096V and 5V and a crystal or CMOS external clock of +48MHz. The device can be configured and controlled by GPIOs or SPI. It has +temperature operating range between 0°C and 85°C. + +Features: + +- 24-bit, 4-channel simultaneous sampling ADC +- Throughput of up to 1.496 MSPS +- Alias-free continuous time Σ-Δ modulation (up to 100dB rejection) +- Freely programmable data rates from 10SPS to 1.496MSPS +- Asynchronous sample rate converter for multi-device synchronization +- SPI or GPIO configuration and control + +Applications: + +- Electrical test and measurement +- Audio test +- 3-phase power quality analysis +- Control and hardware in loop verification +- Sonar +- Condition and monitoring for predictive maintenance +- Acoustic and material science research and development + + .. figure:: images/ad7134_eval.png + :align: center + :width: 400 + + EVAL-AD7134FMCZ evaluation board + +Recommendations +--------------- + +People who follow the flow that is outlined, have a much better experience +with things. However, like many things, documentation is never as complete +as it should be. If you have any questions, feel free to ask on our +:ref:`EngineerZone forums `, but before that, please make +sure you read our documentation thoroughly. + +To better understand the :adi:`AD7134`, we recommend to use the +:adi:`EVAL-AD7134FMCZ` evaluation board. + +Table of contents +----------------- + +#. Using the evaluation board/full stack reference design that we offer: + + #. :ref:`Prerequisites ` - what you + need to get started + #. :ref:`Quick start guides `: + + #. Using the :ref:`Zedboard/ Zynq-7000 SoC + ` + + #. Configure an SD Card with + :external+kuiper:doc:`Kuiper ` + + #. Linux Applications + + #. :ref:`iio-oscilloscope` + + #. :ref:`AD7134 IIO Application + ` (no-OS / MBED / STM32) + +#. Design with the AD7134 + + #. HDL reference design + + #. :external+hdl:ref:`HDL reference design ` which + you must use in your FPGA. + #. :git-hdl:`AD7134 HDL Reference Design + ` which you must use in your FPGA. + + #. More information + + #. :external+hdl:ref:`SPI Engine Framework ` + +#. :ref:`Help and Support ` + +Functional Block Diagram +~~~~~~~~~~~~~~~~~~~~~~~~ + + .. figure:: images/ad7134_block_diagram.png + :width: 1000 + + AD7134 functional block diagram + +.. toctree:: + :hidden: + + user-guide + quickstart/index + prerequisites + ad7134_iio_support + +Additional Information and Useful Links +---------------------------------------- + +- :adi:`AD7134 Product Page ` +- :adi:`EVAL-AD7134FMCZ Evaluation Board ` +- :adi:`AD7134 Data Sheet + ` + +Warning +-------- + +.. esd-warning:: + +Help and support +---------------- + +Please go to :ref:`Help and Support ` page. diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/prerequisites.rst b/docs/solutions/reference-designs/eval-ad7134-fmcz/prerequisites.rst new file mode 100644 index 00000000000..de77c24d3b7 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/prerequisites.rst @@ -0,0 +1,59 @@ +.. _eval-ad7134-fmcz prerequisites: + +Prerequisites +============= + +What you need, depends on what you are trying to do. As a minimum, you need to +start out with: + +Hardware prerequisites +---------------------- + +#. The AD7134 evaluation board: :adi:`EVAL-AD7134FMCZ` +#. An FPGA carrier platform. Our recommended ones can be found + :ref:`here `. + + - There are a few more boards, which do work, but are currently not + supported by us. The experience with the fabric-only solutions is very + close to the ARM/FPGA SoC based solutions, but the GUI runs on a host PC + (Windows or Linux). + +#. Some way to interact with the FPGA platform: + + #. for the ARM/FPGA SoC platforms, this normally includes: + + - Micro‑USB cable for UART console + - LAN cable (Ethernet) for SSH or IIO applications + - HDMI or DisplayPort monitor (Optional) + - USB Keyboard (Optional) + - USB Mouse (Optional) + + #. for the FPGA only solutions, this includes: + + - LAN cable (Ethernet) + - Host PC (Windows or Linux) + - Micro‑USB cable for UART + - Micro‑USB cable for JTAG (PROG) + +#. Internet connection (without proxies makes things much easier) to update + the scripts/binaries on the SD card that came with the ADI FMC Card + (firewalls are OK, proxies make things a pain). +#. Test equipment for generating analog input signals. +#. An SD card with at least 16GB of memory (in case you're using Linux). You + should have received one when purchasing the evaluation board. + +Software prerequisites +---------------------- + +Normally, for basic functionalities regarding visualizing the data received +from the FPGA, we use the following: + +#. :external+scopy:doc:`Scopy ` v2.0 or later (must contain the IIO + plugin) +#. :git-iio-oscilloscope:`IIO Oscilloscope ` +#. UART terminal application (PuTTY/TeraTerm/Minicom/MobaXterm), 115200, 8N1 + +.. note:: + + :adi:`ADI <>` does not offer FPGA carrier platforms for sale or loan; + getting one yourself is the normal part of development or evaluation. diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/quickstart/index.rst b/docs/solutions/reference-designs/eval-ad7134-fmcz/quickstart/index.rst new file mode 100644 index 00000000000..be427f95d44 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/quickstart/index.rst @@ -0,0 +1,69 @@ +.. _eval-ad7134-fmcz quickstart: + +Quickstart +========== + +The Quick start guides provide simple step by step instructions on how to +do an initial system setup for the :adi:`EVAL-AD7134FMCZ` board on various +FPGA development boards. In these guides, we will discuss how to program +the bitstream, run a no-OS program or boot a Linux distribution. + +.. toctree:: + + Zedboard + +.. _eval-ad7134-fmcz carriers: + +Supported carriers +------------------ + +The :adi:`EVAL-AD7134FMCZ`, is, by definition a "FPGA +mezzanine card" (FMC); that means it needs a carrier to plug into. + +The carriers we support are: + +.. list-table:: + :header-rows: 1 + + - - FPGA board + - EVAL-AD7134-FMCZ + - - `ZedBoard + `__ + - FMC LPC + +Supported Environments +---------------------- + +The supported OS are: + +.. list-table:: + :header-rows: 1 + + - - FPGA board + - HDL + - Linux software + - No-OS software + - - `ZedBoard + `__ + - Yes + - Yes + - Yes + +Hardware Setup +-------------- + +The :adi:`EVAL-AD7134FMCZ` board connects to the FMC LPC +connector of the carrier board. The carrier setup requires power, +UART (115200), ethernet (Linux), HDMI (if available) and/or JTAG (no-OS) +connections. + +A few typical setups are shown below. + +ZedBoard + EVAL-AD7134FMCZ +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. figure:: ../images/ad7134_hardware_setup_linux.jpg + :align: center + :width: 500 + + ZedBoard + EVAL-AD7134FMCZ hardware setup diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/quickstart/zed.rst b/docs/solutions/reference-designs/eval-ad7134-fmcz/quickstart/zed.rst new file mode 100644 index 00000000000..c7d01809664 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/quickstart/zed.rst @@ -0,0 +1,1955 @@ +.. _eval-ad7134-fmcz quickstart zed: + +ZED Quickstart +============== + +This guide provides quick instructions on how to set up the +:adi:`EVAL-AD7134FMCZ` on: + +- `ZedBoard + `__ FMC LPC + +.. figure:: ../../images/ZedBoard.png + :width: 900 + + ZedBoard development platform + +.. esd-warning:: + +Using Linux as software +----------------------- + +Necessary files +~~~~~~~~~~~~~~~ + +.. note:: + + The SD card includes several folders in the root directory of the BOOT + partition. In order to configure the SD card to work with a specific FPGA + board and ADI hardware, several files must be copied onto the root directory. + Using the host PC, drag and drop the required files onto the BOOT partition, + and use the EJECT function when removing the SD card from the reader. + +The following files are needed for the system to boot: + +- HDL boot image: ``BOOT.BIN`` +- Linux Kernel image: ``uImage`` +- Linux device tree: ``devicetree.dtb`` + +They can either be taken from the SD card -- already generated by us, or you can +build them manually: + +- Instructions on how to choose the boot files from the SD card can be found in + the **Platform-Specific Manual Steps** section from here: + :external+kuiper:ref:`hardware-configuration`. +- Instructions on how to manually build the boot files from source can be found + here: + + - :ref:`linux-kernel zynq` (the only difference compared to the ZynqMP is that + instead of running ``make adi_zynqmp_defconfig``, you must run ``make + zynq_xcomm_adv7511_defconfig``) + - :external+hdl:ref:`ad7134_fmc` build documentation. More HDL build details + at :external+hdl:ref:`build_hdl`. + +.. important:: + + Some projects provide multiple devicetree files in the SD card's boot folders. + Make sure you select the devicetree that matches your specific use case. + +Required Software +~~~~~~~~~~~~~~~~~ + +- SD Card 16GB imaged with :external+kuiper:doc:`Kuiper ` (check out that + guide on how to do it, then come back to this section) +- A UART terminal (Putty/Tera Term/Minicom, etc.) with baud rate 115200 (8N1) + +Required Hardware +~~~~~~~~~~~~~~~~~ + +- AMD Xilinx `ZedBoard + `__ FPGA + board and its power supply (12V) +- :adi:`EVAL-AD7134FMCZ` evaluation board +- SD card with at least 16GB of memory +- Micro-USB cable (UART) +- LAN cable (Ethernet) +- Signal generator + +More details as to why you need these can be found at :ref:`eval-ad7134-fmcz +prerequisites`. + +Testing +~~~~~~~ + +Creating the setup +^^^^^^^^^^^^^^^^^^ + +EVAL-AD7134FMCZ/ZED +"""""""""""""""""""" + +.. figure:: ../images/ad7134_hardware_setup_linux.jpg + :width: 800 + + EVAL-AD7134FMCZ/ZED Linux setup + +In the following example, we will prepare the evaluation setup by connecting the +:adi:`EVAL-AD7134FMCZ` board to the ZedBoard and applying a test input signal. + +Follow the steps in this order, to avoid damaging the components: + +#. Get the `ZedBoard + `__ +#. Configure ZedBoard for SD BOOT: + + .. figure:: ../images/ad7134_zed_linux_jumpers.jpg + :width: 800 + + ZedBoard SD boot jumper configuration + + The BOOT switches (JP7–JP11) and the MIO0 jumper (JP6) must be set for + SD‑card boot mode. VADJ must be set to 1.8V, as specified in the HDL + project's README at :external+hdl:ref:`ad7134_fmc`. Optionally, to use USB + peripheral devices with the ZedBoard, install jumpers JP2 and JP3. + +#. Insert the SD card into the SD Card Interface Connector (J12) +#. Connect your signal generator to the analog inputs of the evaluation board + using the appropriate jumper wires or SMB connectors. +#. Plug the :adi:`EVAL-AD7134FMCZ` into the FMC LPC Connector (J1) +#. Plug the Power Supply into 12V Power input connector (J20) (DO NOT turn the + device on). +#. Plug-in an Ethernet cable from your router/switch to the Ethernet port on the + FPGA board +#. Connect the UART port of ZedBoard (J14) to a PC via MicroUSB +#. Turn on the power switch on the FPGA board +#. Observe Kernel and serial console output messages on your terminal + +Boot messages +^^^^^^^^^^^^^ + +The following is what is printed in the serial console, after you have connected +to the proper ttyUSB or COM port: + +.. collapsible:: Complete boot log + + :: + + + U-Boot 2018.01-21441-ga6ab387 (Aug 31 2022 - 11:43:06 +0100), Build: jenkins-development-build_uboot-2 + + Model: Zynq Zed Development Board + Board: Xilinx Zynq + Silicon: v3.1 + DRAM: ECC disabled 512 MiB + MMC: sdhci@e0100000: 0 (SD) + SF: Detected s25fl256s_64k with page size 256 Bytes, erase size 64 KiB, total 32 MiB + In: serial@e0001000 + Out: serial@e0001000 + Err: serial@e0001000 + Net: ZYNQ GEM: e000b000, phyaddr 0, interface rgmii-id + eth0: ethernet@e000b000 + reading uEnv.txt + 408 bytes read in 22 ms (17.6 KiB/s) + Importing environment from SD ... + Hit any key to stop autoboot: 0 + Device: sdhci@e0100000 + Manufacturer ID: 3 + OEM: 5344 + Name: SK32G + Tran Speed: 50000000 + Rd Block Len: 512 + SD version 3.0 + High Capacity: Yes + Capacity: 29.7 GiB + Bus Width: 4-bit + Erase Group Size: 512 Bytes + reading uEnv.txt + 408 bytes read in 22 ms (17.6 KiB/s) + Loaded environment from uEnv.txt + Importing environment from SD ... + Running uenvcmd ... + Copying Linux from SD to RAM... + reading uImage + 8237544 bytes read in 474 ms (16.6 MiB/s) + reading devicetree.dtb + 17937 bytes read in 28 ms (625 KiB/s) + ** Unable to read file uramdisk.image.gz ** + ## Booting kernel from Legacy Image at 03000000 ... + Image Name: Linux-6.1.0-271662-gfbd2b84ac912 + Image Type: ARM Linux Kernel Image (uncompressed) + Data Size: 8237480 Bytes = 7.9 MiB + Load Address: 00008000 + Entry Point: 00008000 + Verifying Checksum ... OK + ## Flattened Device Tree blob at 02a00000 + Booting using the fdt blob at 0x2a00000 + Loading Kernel Image ... OK + Loading Device Tree to 1eb13000, end 1eb1a610 ... OK + + Starting kernel ... + + Booting Linux on physical CPU 0x0 + Linux version 6.1.0-271662-gfbd2b84ac912-dirty (pioandan@HYB-0FPP35J6CsI) (arm-xilinx-linux-gnueabi-gcc.real (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #33 SMP PREEMPT Thu May 16 11:51:07 EEST 2024 + CPU: ARMv7 Processor [413fc090] revision 0 (ARMv7), cr=18c5387d + CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache + OF: fdt: Machine model: Xilinx Zynq ZED + OF: fdt: earlycon: stdout-path /amba@0/uart@E0001000 not found + Memory policy: Data cache writealloc + cma: Reserved 128 MiB at 0x16800000 + Zone ranges: + Normal [mem 0x0000000000000000-0x000000001fffffff] + HighMem empty + Movable zone start for each node + Early memory node ranges + node 0: [mem 0x0000000000000000-0x000000001fffffff] + Initmem setup node 0 [mem 0x0000000000000000-0x000000001fffffff] + percpu: Embedded 11 pages/cpu s14420 r8192 d22444 u45056 + Built 1 zonelists, mobility grouping on. Total pages: 130048 + Kernel command line: console=ttyPS0,115200 root=/dev/mmcblk0p2 rw earlycon rootfstype=ext4 rootwait clk_ignore_unused cpuidle.off=1 + Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear) + Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear) + mem auto-init: stack:off, heap alloc:off, heap free:off + Memory: 361900K/524288K available (12288K kernel code, 817K rwdata, 10212K rodata, 1024K init, 471K bss, 31316K reserved, 131072K cma-reserved, 0K highmem) + rcu: Preemptible hierarchical RCU implementation. + rcu: RCU event tracing is enabled. + rcu: RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2. + rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. + rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 + NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 + efuse mapped to (ptrval) + slcr mapped to (ptrval) + L2C: platform modifies aux control register: 0x72360000 -> 0x72760000 + L2C: DT/platform modifies aux control register: 0x72360000 -> 0x72760000 + L2C-310 erratum 769419 enabled + L2C-310 enabling early BRESP for Cortex-A9 + L2C-310 full line of zeros enabled for Cortex-A9 + L2C-310 ID prefetch enabled, offset 1 lines + L2C-310 dynamic clock gating enabled, standby mode enabled + L2C-310 cache controller enabled, 8 ways, 512 kB + L2C-310: CACHE_ID 0x410000c8, AUX_CTRL 0x76760001 + rcu: srcu_init: Setting srcu_struct sizes based on contention. + zynq_clock_init: clkc starts at (ptrval) + Zynq clock init + sched_clock: 64 bits at 167MHz, resolution 6ns, wraps every 4398046511103ns + clocksource: arm_global_timer: mask: 0xffffffffffffffff max_cycles: 0x26703d7dd8, max_idle_ns: 440795208065 ns + Switching to timer-based delay loop, resolution 6ns + clocksource: ttc_clocksource: mask: 0xffff max_cycles: 0xffff, max_idle_ns: 537538477 ns + timer #0 at (ptrval), irq=25 + Console: colour dummy device 80x30 + Calibrating delay loop (skipped), value calculated using timer frequency.. 333.33 BogoMIPS (lpj=1666666) + pid_max: default: 32768 minimum: 301 + Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) + Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) + CPU: Testing write buffer coherency: ok + CPU0: Spectre v2: using BPIALL workaround + CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 + Setting up static identity map for 0x100000 - 0x100060 + rcu: Hierarchical SRCU implementation. + rcu: Max phase no-delay instances is 1000. + smp: Bringing up secondary CPUs ... + CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 + CPU1: Spectre v2: using BPIALL workaround + smp: Brought up 1 node, 2 CPUs + SMP: Total of 2 processors activated (666.66 BogoMIPS). + CPU: All CPU(s) started in SVC mode. + devtmpfs: initialized + VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4 + clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns + futex hash table entries: 512 (order: 3, 32768 bytes, linear) + pinctrl core: initialized pinctrl subsystem + NET: Registered PF_NETLINK/PF_ROUTE protocol family + DMA: preallocated 256 KiB pool for atomic coherent allocations + thermal_sys: Registered thermal governor 'step_wise' + amba f8801000.etb: Fixing up cyclic dependency with replicator + amba f8803000.tpiu: Fixing up cyclic dependency with replicator + amba f8804000.funnel: Fixing up cyclic dependency with replicator + amba f889c000.ptm: Fixing up cyclic dependency with f8804000.funnel + amba f889d000.ptm: Fixing up cyclic dependency with f8804000.funnel + hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers. + hw-breakpoint: maximum watchpoint size is 4 bytes. + e0001000.serial: ttyPS0 at MMIO 0xe0001000 (irq = 27, base_baud = 3125000) is a xuartps + printk: console [ttyPS0] enabled + SCSI subsystem initialized + usbcore: registered new interface driver usbfs + usbcore: registered new interface driver hub + usbcore: registered new device driver usb + mc: Linux media interface: v0.10 + videodev: Linux video capture interface: v2.00 + pps_core: LinuxPPS API ver. 1 registered + pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti + PTP clock support registered + jesd204: found 0 devices and 0 topologies + FPGA manager framework + Advanced Linux Sound Architecture Driver Initialized. + clocksource: Switched to clocksource arm_global_timer + NET: Registered PF_INET protocol family + IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear) + tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) + Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) + TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear) + TCP bind hash table entries: 4096 (order: 4, 65536 bytes, linear) + TCP: Hash tables configured (established 4096 bind 4096) + UDP hash table entries: 256 (order: 1, 8192 bytes, linear) + UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) + NET: Registered PF_UNIX/PF_LOCAL protocol family + RPC: Registered named UNIX socket transport module. + RPC: Registered udp transport module. + RPC: Registered tcp transport module. + RPC: Registered tcp NFSv4.1 backchannel transport module. + armv7-pmu f8891000.pmu: hw perfevents: no interrupt-affinity property, guessing. + hw perfevents: enabled with armv7_cortex_a9 PMU driver, 7 counters available + workingset: timestamp_bits=30 max_order=17 bucket_order=0 + NFS: Registering the id_resolver key type + Key type id_resolver registered + Key type id_legacy registered + nfs4filelayout_init: NFSv4 File Layout Driver Registering... + nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... + fuse: init (API version 7.37) + io scheduler mq-deadline registered + io scheduler kyber registered + zynq-pinctrl 700.pinctrl: zynq pinctrl initialized + dma-pl330 f8003000.dma-controller: Loaded driver for PL330 DMAC-241330 + dma-pl330 f8003000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-4 Num_Events-16 + brd: module loaded + loop: module loaded + Registered mathworks_ip class + SPI driver spidev has no spi_device_id for adi,swspi + spi-nor spi2.0: found s25fl256s1, expected n25q128a11 + spi-nor spi2.0: s25fl256s1 (32768 Kbytes) + 5 fixed-partitions partitions found on MTD device spi2.0 + Creating 5 MTD partitions on "spi2.0": + 0x000000000000-0x000000500000 : "boot" + 0x000000500000-0x000000520000 : "bootenv" + 0x000000520000-0x000000540000 : "config" + 0x000000540000-0x000000fc0000 : "image" + 0x000000fc0000-0x000002000000 : "spare" + MACsec IEEE 802.1AE + tun: Universal TUN/TAP device driver, 1.6 + hwmon hwmon0: temp1_input not attached to any thermal zone + macb e000b000.ethernet eth0: Cadence GEM rev 0x00020118 at 0xe000b000 irq 45 (c2:a0:b0:a0:00:00) + usbcore: registered new interface driver asix + usbcore: registered new interface driver ax88179_178a + usbcore: registered new interface driver cdc_ether + usbcore: registered new interface driver net1080 + usbcore: registered new interface driver cdc_subset + usbcore: registered new interface driver zaurus + usbcore: registered new interface driver cdc_ncm + usbcore: registered new interface driver r8153_ecm + usbcore: registered new interface driver uas + usbcore: registered new interface driver usb-storage + usbcore: registered new interface driver usbserial_generic + usbserial: USB Serial support registered for generic + usbcore: registered new interface driver ftdi_sio + usbserial: USB Serial support registered for FTDI USB Serial Device + usbcore: registered new interface driver upd78f0730 + usbserial: USB Serial support registered for upd78f0730 + ULPI transceiver vendor/product ID 0x0451/0x1507 + Found TI TUSB1210 ULPI transceiver. + ULPI integrity check: passed. + ci_hdrc ci_hdrc.0: EHCI Host Controller + ci_hdrc ci_hdrc.0: new USB bus registered, assigned bus number 1 + ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.00 + usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01 + usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 + usb usb1: Product: EHCI Host Controller + usb usb1: Manufacturer: Linux 6.1.0-271662-gfbd2b84ac912-dirty ehci_hcd + usb usb1: SerialNumber: ci_hdrc.0 + hub 1-0:1.0: USB hub found + hub 1-0:1.0: 1 port detected + SPI driver ads7846 has no spi_device_id for ti,tsc2046 + SPI driver ads7846 has no spi_device_id for ti,ads7843 + SPI driver ads7846 has no spi_device_id for ti,ads7845 + SPI driver ads7846 has no spi_device_id for ti,ads7873 + i2c_dev: i2c /dev entries driver + i2c 0-0039: Fixing up cyclic dependency with 70e00000.axi_hdmi + adv7511 0-0039: supply avdd not found, using dummy regulator + adv7511 0-0039: supply dvdd not found, using dummy regulator + adv7511 0-0039: supply pvdd not found, using dummy regulator + adv7511 0-0039: supply bgvdd not found, using dummy regulator + adv7511 0-0039: supply dvdd-3v not found, using dummy regulator + at24 1-0050: supply vcc not found, using dummy regulator + at24 1-0050: 256 byte 24c02 EEPROM, writable, 1 bytes/write + gspca_main: v2.14.0 registered + usbcore: registered new interface driver uvcvideo + cdns-wdt f8005000.watchdog: Xilinx Watchdog Timer with timeout 10s + Xilinx Zynq CpuIdle Driver started + failed to register cpuidle driver + sdhci: Secure Digital Host Controller Interface driver + sdhci: Copyright(c) Pierre Ossman + sdhci-pltfm: SDHCI platform and OF driver helper + ledtrig-cpu: registered to indicate activity on CPUs + hid: raw HID events driver (C) Jiri Kosina + usbcore: registered new interface driver usbhid + usbhid: USB HID core driver + SPI driver fb_seps525 has no spi_device_id for syncoam,seps525 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7988-5 + mmc0: SDHCI controller on e0100000.mmc [e0100000.mmc] using ADMA + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7988-1 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7984 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7983 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7982 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7980 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7949 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7946 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7942 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7699 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7693 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7691 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7690 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7689 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7688 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7687 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7686 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7685 + SPI driver pulsar_adc has no spi_device_id for adi,pulsar,ad7682 + iio iio:device0: ad4134_Frame_used: 16 realbits, 16 wordbits, 0 shift, 0 output_frame + ad4134 spi1.0: ad4134_probe_before_channel_init + ad4134 spi1.0: ad4134_probe_before_setup + mmc0: new high speed SDHC card at address aaaa + mmcblk0: mmc0:aaaa SK32G 29.7 GiB + mmcblk0: p1 p2 p3 + ad4134 spi1.0: ad4134_probe_after_setup + iio iio:device1: ad4134_Frame_used: 16 realbits, 16 wordbits, 0 shift, 0 output_frame + ad4134 spi1.1: ad4134_probe_before_channel_init + ad4134 spi1.1: ad4134_probe_before_setup + ad4134_setup: 636: Failed to find ODR PWM + ad4134_setup: 645: Failed to find trigger PWM + ad4134 spi1.1: ad4134_probe_after_setup + ad4134 spi1.0: bound spi0.0 (ops 0xc1096c48) + SPI driver ad7124 has no spi_device_id for adi,ad7124-4 + SPI driver ad7124 has no spi_device_id for adi,ad7124-8 + SPI driver ad7192 has no spi_device_id for adi,ad7190 + SPI driver ad7192 has no spi_device_id for adi,ad7193 + SPI driver ad7192 has no spi_device_id for adi,ad7195 + SPI driver ad9467 has no spi_device_id for adi,ad9643 + SPI driver ad9467 has no spi_device_id for adi,ad9250 + SPI driver ad9467 has no spi_device_id for adi,ad9250_2 + SPI driver ad9467 has no spi_device_id for adi,ad9265 + SPI driver ad9467 has no spi_device_id for adi,ad9683 + SPI driver ad9467 has no spi_device_id for adi,ad9434 + SPI driver ad9467 has no spi_device_id for adi,ad9625 + SPI driver ad9467 has no spi_device_id for adi,ad9652 + SPI driver ad9467 has no spi_device_id for adi,ad9649 + SPI driver adar3000 has no spi_device_id for adi,adar3001 + SPI driver adar3000 has no spi_device_id for adi,adar3002 + SPI driver ad9783 has no spi_device_id for adi,ad9780 + SPI driver ad9783 has no spi_device_id for adi,ad9781 + SPI driver adis16475 has no spi_device_id for adi,adis16470 + SPI driver adis16475 has no spi_device_id for adi,adis16475-1 + SPI driver adis16475 has no spi_device_id for adi,adis16475-2 + SPI driver adis16475 has no spi_device_id for adi,adis16475-3 + SPI driver adis16475 has no spi_device_id for adi,adis16477-1 + SPI driver adis16475 has no spi_device_id for adi,adis16477-2 + SPI driver adis16475 has no spi_device_id for adi,adis16477-3 + SPI driver adis16475 has no spi_device_id for adi,adis16465-1 + SPI driver adis16475 has no spi_device_id for adi,adis16465-2 + SPI driver adis16475 has no spi_device_id for adi,adis16465-3 + SPI driver adis16475 has no spi_device_id for adi,adis16467-1 + SPI driver adis16475 has no spi_device_id for adi,adis16467-2 + SPI driver adis16475 has no spi_device_id for adi,adis16467-3 + SPI driver adis16475 has no spi_device_id for adi,adis16500 + SPI driver adis16475 has no spi_device_id for adi,adis16505-1 + SPI driver adis16475 has no spi_device_id for adi,adis16505-2 + SPI driver adis16475 has no spi_device_id for adi,adis16505-3 + SPI driver adis16475 has no spi_device_id for adi,adis16507-1 + SPI driver adis16475 has no spi_device_id for adi,adis16507-2 + SPI driver adis16475 has no spi_device_id for adi,adis16507-3 + axi_sysid 45000000.axi-sysid-0: AXI System ID core version (1.01.a) found + axi_sysid 45000000.axi-sysid-0: [ad7134_fmc] on [zed] git branch git <876c98146519f397b08567645bd59f678dd5fa17> dirty [2024-05-16 07:21:28] UTC + fpga_manager fpga0: Xilinx Zynq FPGA Manager registered + usbcore: registered new interface driver snd-usb-audio + axi-i2s 77600000.axi-i2s: probed, capture enabled, playback enabled + NET: Registered PF_INET6 protocol family + Segment Routing with IPv6 + In-situ OAM (IOAM) with IPv6 + sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver + NET: Registered PF_PACKET protocol family + NET: Registered PF_IEEE802154 protocol family + Key type dns_resolver registered + zynq_pm_remap_ocm: OCM pool is not available + zynq_pm_suspend_init: Unable to map OCM. + Registering SWP/SWPB emulation handler + of-fpga-region fpga-full: FPGA Region probed + [drm] Initialized axi_hdmi_drm 1.0.0 20120930 for 70e00000.axi_hdmi on minor 0 + axi-hdmi 70e00000.axi_hdmi: [drm] Cannot find any crtc or sizes + debugfs: File 'Capture' in directory 'dapm' already present! + of_cfs_init + of_cfs_init: OK + clk: Not disabling unused clocks + ALSA device list: + #0: HDMI monitor + #1: ZED ADAU1761 + EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Quota mode: disabled. + VFS: Mounted root (ext4 filesystem) on device 179:2. + devtmpfs: mounted + Freeing unused kernel image (initmem) memory: 1024K + Run /sbin/init as init process + systemd[1]: System time advanced to built-in epoch: Wed 2025-09-03 14:38:20 EDT + systemd[1]: systemd 257.9-1~deb13u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE) + systemd[1]: Detected architecture arm. + + Welcome to Debian GNU/Linux 13 (trixie)! + + systemd[1]: Hostname set to . + systemd[1]: /usr/lib/systemd/system/iiod.service:16: Invalid environment assignment, ignoring: $IIOD_EXTRA_OPTS= + systemd[1]: Queued start job for default target graphical.target. + systemd[1]: Created slice system-getty.slice - Slice /system/getty. + [ OK ] Created slice system-getty.slice - Slice /system/getty. + systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe. + [ OK ] Created slice system-modprobe.slice - Slice /system/modprobe. + systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty. + [ OK ] Created slice system-serial\x2dget&slice - Slice /system/serial-getty. + systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck. + [ OK ] Created slice system-systemd\x2dfs&slice - Slice /system/systemd-fsck. + systemd[1]: Created slice user.slice - User and Session Slice. + [ OK ] Created slice user.slice - User and Session Slice. + systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch. + [ OK ] Started systemd-ask-password-wall.&d Requests to Wall Directory Watch. + systemd[1]: proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point was skipped because of an unmet condition check (ConditionPathExists=/proc/sys/fs/binfmt_misc). + systemd[1]: Expecting device dev-disk-by\x2dpartuuid-d29065e8\x2d01.device - /dev/disk/by-partuuid/d29065e8-01... + Expecting device dev-disk-by\x2dpa&dev/disk/by-partuuid/d29065e8-01... + systemd[1]: Expecting device dev-ttyGS0.device - /dev/ttyGS0... + Expecting device dev-ttyGS0.device - /dev/ttyGS0... + systemd[1]: Expecting device dev-ttyGS1.device - /dev/ttyGS1... + Expecting device dev-ttyGS1.device - /dev/ttyGS1... + systemd[1]: Expecting device dev-ttyPS0.device - /dev/ttyPS0... + Expecting device dev-ttyPS0.device - /dev/ttyPS0... + systemd[1]: Expecting device dev-ttyS0.device - /dev/ttyS0... + Expecting device dev-ttyS0.device - /dev/ttyS0... + systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups. + [ OK ] Reached target nss-user-lookup.target - User and Group Name Lookups. + systemd[1]: Reached target remote-fs.target - Remote File Systems. + [ OK ] Reached target remote-fs.target - Remote File Systems. + systemd[1]: Reached target slices.target - Slice Units. + [ OK ] Reached target slices.target - Slice Units. + systemd[1]: Reached target swap.target - Swaps. + [ OK ] Reached target swap.target - Swaps. + systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption. + [ OK ] Listening on systemd-creds.socket - Credential Encryption/Decryption. + systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe. + [ OK ] Listening on systemd-initctl.socke&- initctl Compatibility Named Pipe. + systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log). + [ OK ] Listening on systemd-journald-dev-&socket - Journal Socket (/dev/log). + systemd[1]: Listening on systemd-journald.socket - Journal Sockets. + [ OK ] Listening on systemd-journald.socket - Journal Sockets. + systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki). + systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki). + systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket. + [ OK ] Listening on systemd-udevd-control.socket - udev Control Socket. + systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket. + [ OK ] Listening on systemd-udevd-kernel.socket - udev Kernel Socket. + systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages). + systemd[1]: dev-mqueue.mount - POSIX Message Queue File System was skipped because of an unmet condition check (ConditionPathExists=/proc/sys/fs/mqueue). + systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock... + Mounting run-lock.mount - Legacy Locks Directory /run/lock... + systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System... + Mounting sys-kernel-debug.mount - Kernel Debug File System... + systemd[1]: sys-kernel-tracing.mount - Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing). + systemd[1]: Mounting tmp.mount - Temporary Directory /tmp... + Mounting tmp.mount - Temporary Directory /tmp... + systemd[1]: Starting fake-hwclock-load.service - Restore the current clock... + Starting fake-hwclock-load.service - Restore the current clock... + systemd[1]: kmod-static-nodes.service - Create List of Static Device Nodes was skipped because of an unmet condition check (ConditionFileNotEmpty=/lib/modules/6.1.0-271662-gfbd2b84ac912-dirty/modules.devname). + systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs... + Starting modprobe@configfs.service - Load Kernel Module configfs... + systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm... + Starting modprobe@drm.service - Load Kernel Module drm... + systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore... + Starting modprobe@efi_pstore.servi& - Load Kernel Module efi_pstore... + systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse... + Starting modprobe@fuse.service - Load Kernel Module fuse... + systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67). + systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. + systemd[1]: systemd-journald.service: (This warning is only shown for the first unit using IP firewalling.) + systemd[1]: Starting systemd-journald.service - Journal Service... + Starting systemd-journald.service - Journal Service... + systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules... + Starting systemd-modules-load.service - Load Kernel Modules... + systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki). + systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully... + Starting systemd-tmpfiles-setup-de& Device Nodes in /dev gracefully... + systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki). + systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials... + Starting systemd-udev-load-credent&Load udev Rules from Credentials... + systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices... + Starting systemd-udev-trigger.service - Coldplug All udev Devices... + systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock. + [ OK ] Mounted run-lock.mount - Legacy Locks Directory /run/lock. + systemd-journald[92]: Collecting audit messages is disabled. + systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System. + [ OK ] Mounted sys-kernel-debug.mount - Kernel Debug File System. + systemd[1]: Mounted tmp.mount - Temporary Directory /tmp. + [ OK ] Mounted tmp.mount - Temporary Directory /tmp. + systemd[1]: fake-hwclock-load.service: Deactivated successfully. + systemd[1]: Finished fake-hwclock-load.service - Restore the current clock. + [ OK ] Finished fake-hwclock-load.service - Restore the current clock. + systemd[1]: modprobe@configfs.service: Deactivated successfully. + systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs. + [ OK ] Finished modprobe@configfs.service - Load Kernel Module configfs. + systemd[1]: Started systemd-journald.service - Journal Service. + [ OK ] Started systemd-journald.service - Journal Service. + [ OK ] Finished modprobe@drm.service - Load Kernel Module drm. + [ OK ] Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. + [ OK ] Finished modprobe@fuse.service - Load Kernel Module fuse. + [ OK ] Finished systemd-modules-load.service - Load Kernel Modules. + [ OK ] Finished systemd-tmpfiles-setup-de&ic Device Nodes in /dev gracefully. + [ OK ] Finished systemd-udev-load-credent&- Load udev Rules from Credentials. + Mounting sys-fs-fuse-connections.mount - FUSE Control File System... + Mounting sys-kernel-config.mount - Kernel Configuration File System... + Starting systemd-remount-fs.servic&unt Root and Kernel File Systems... + Starting systemd-sysctl.service - Apply Kernel Variables... + [ OK ] Mounted sys-fs-fuse-connections.mount - FUSE Control File System. + [ OK ] Mounted sys-kernel-config.mount - Kernel Configuration File System. + [ OK ] Finished systemd-sysctl.service - Apply Kernel Variables. + [ OK ] Finished systemd-udev-trigger.service - Coldplug All udev Devices. + Starting ifupdown-pre.service - He&synchronize boot up for ifupdown... + Starting systemd-udev-settle.servi&o Complete Device Initialization... + [ OK ] Finished ifupdown-pre.service - He&o synchronize boot up for ifupdown. + [ OK ] Finished systemd-remount-fs.servic&mount Root and Kernel File Systems. + Starting systemd-journal-flush.ser&sh Journal to Persistent Storage... + Starting systemd-random-seed.service - Load/Save OS Random Seed... + Starting systemd-tmpfiles-setup-de&eate Static Device Nodes in /dev... + [ OK ] Finished systemd-tmpfiles-setup-de&Create Static Device Nodes in /dev. + [ OK ] Reached target local-fs-pre.target&Preparation for Local File Systems. + Starting systemd-udevd.service - R&ager for Device Events and Files... + [ OK ] Finished systemd-random-seed.service - Load/Save OS Random Seed. + [ OK ] Finished systemd-journal-flush.ser&lush Journal to Persistent Storage. + [ OK ] Started systemd-udevd.service - Ru&anager for Device Events and Files. + Starting plymouth-start.service - Show Plymouth Boot Screen... + failed to register cpuidle driver + ad4134_setup: 636: Failed to find ODR PWM + ad4134_setup: 645: Failed to find trigger PWM + debugfs: File 'Capture' in directory 'dapm' already present! + [ OK ] Started plymouth-start.service - Show Plymouth Boot Screen. + [ OK ] Found device dev-ttyPS0.device - /dev/ttyPS0. + [ OK ] Finished systemd-udev-settle.servi& To Complete Device Initialization. + [ OK ] Found device dev-disk-by\x2dpartuu& /dev/disk/by-partuuid/d29065e8-01. + [ OK ] Started systemd-ask-password-plymo&quests to Plymouth Directory Watch. + [ OK ] Reached target paths.target - Path Units. + [ OK ] Reached target sound.target - Sound Card. + Starting systemd-fsck@dev-disk-by\&dev/disk/by-partuuid/d29065e8-01... + [ OK ] Finished systemd-fsck@dev-disk-by\& /dev/disk/by-partuuid/d29065e8-01. + Mounting boot.mount - /boot... + [ OK ] Mounted boot.mount - /boot. + [ OK ] Reached target local-fs.target - Local File Systems. + [ OK ] Listening on systemd-sysext.socket& System Extension Image Management. + Starting networking.service - Raise network interfaces... + Starting plymouth-read-write.servi&ymouth To Write Out Runtime Data... + Starting systemd-tmpfiles-setup.se&ate System Files and Directories... + [ OK ] Finished plymouth-read-write.servi&Plymouth To Write Out Runtime Data. + [ OK ] Finished systemd-tmpfiles-setup.se&reate System Files and Directories. + [ OK ] Reached target sysinit.target - System Initialization. + [ OK ] Started apt-daily.timer - Daily apt download activities. + [ OK ] Started apt-daily-upgrade.timer - &y apt upgrade and clean activities. + [ OK ] Started dpkg-db-backup.timer - Daily dpkg database backup timer. + [ OK ] Started e2scrub_all.timer - Period&Metadata Check for All Filesystems. + [ OK ] Started fake-hwclock-save.timer - Periodically save current clock. + [ OK ] Started fstrim.timer - Discard unused filesystem blocks once a week. + [ OK ] Started logrotate.timer - Daily rotation of log files. + [ OK ] Started man-db.timer - Daily man-db regeneration. + [ OK ] Started ntpsec-rotate-stats.timer - Rotate ntpd stats daily. + [ OK ] Started systemd-tmpfiles-clean.tim&y Cleanup of Temporary Directories. + [ OK ] Reached target timers.target - Timer Units. + [ OK ] Listening on avahi-daemon.socket -&DNS/DNS-SD Stack Activation Socket. + [ OK ] Listening on dbus.socket - D-Bus System Message Bus Socket. + [ OK ] Listening on sshd-unix-local.socke&temd-ssh-generator, AF_UNIX Local). + [ OK ] Listening on systemd-hostnamed.socket - Hostname Service Socket. + [ OK ] Reached target sockets.target - Socket Units. + [ OK ] Reached target basic.target - Basic System. + Starting accounts-daemon.service - Accounts Service... + Starting adi-power.service - Analog Devices power up/down sequence... + Starting avahi-daemon.service - Avahi mDNS/DNS-SD Stack... + Starting blueman-mechanism.service - Bluetooth management mechanism... + [ OK ] Started cron.service - Regular background program processing daemon. + Starting dbus.service - D-Bus System Message Bus... + Starting e2scrub_reap.service - Re&ne ext4 Metadata Check Snapshots... + [ OK ] Started fan-control.service - fan-control. + Starting fix-display-port.service - Fix DP audio and X11... + Starting iiod_context_attr.service&ating IIOD Context Attributes...... + Starting systemd-logind.service - User Login Management... + Starting udisks2.service - Disk Manager... + Starting xserver.service - ADI X Server... + [ OK ] Started dbus.service - D-Bus System Message Bus. + Starting NetworkManager.service - Network Manager... + Starting wpa_supplicant.service - WPA supplicant... + [ OK ] Finished fix-display-port.service - Fix DP audio and X11. + [ OK ] Started avahi-daemon.service - Avahi mDNS/DNS-SD Stack. + Starting modprobe@drm.service - Load Kernel Module drm... + Starting polkit.service - Authorization Manager... + [ OK ] Finished adi-power.service - Analog Devices power up/down sequence. + [ OK ] Started wpa_supplicant.service - WPA supplicant. + [ OK ] Finished networking.service - Raise network interfaces. + [ OK ] Finished modprobe@drm.service - Load Kernel Module drm. + [ OK ] Started systemd-logind.service - User Login Management. + [ OK ] Created slice user-1000.slice - User Slice of UID 1000. + Starting systemd-hostnamed.service - Hostname Service... + Starting user-runtime-dir@1000.ser&Runtime Directory /run/user/1000... + [ OK ] Finished user-runtime-dir@1000.ser&r Runtime Directory /run/user/1000. + [ OK ] Finished iiod_context_attr.service&reating IIOD Context Attributes.... + [ OK ] Started polkit.service - Authorization Manager. + [ OK ] Started accounts-daemon.service - Accounts Service. + [ OK ] Finished e2scrub_reap.service - Re&line ext4 Metadata Check Snapshots. + [ OK ] Started systemd-hostnamed.service - Hostname Service. + Starting NetworkManager-dispatcher&anager Script Dispatcher Service... + [ OK ] Started udisks2.service - Disk Manager. + [ OK ] Started NetworkManager.service - Network Manager. + [ OK ] Reached target network.target - Network. + Starting htpdate.service - HTTP based time synchronization tool... + [ OK ] Started iiod.service - IIO Daemon. + Starting ntpsec.service - Network Time Service... + Starting ssh.service - OpenBSD Secure Shell server... + Starting systemd-user-sessions.service - Permit User Sessions... + [ OK ] Started udiskie.service - Udiskie &rvice for managing removable media. + [ OK ] Started NetworkManager-dispatcher.& Manager Script Dispatcher Service. + [ OK ] Started ntpsec.service - Network Time Service. + [ OK ] Finished systemd-user-sessions.service - Permit User Sessions. + Starting plymouth-quit-wait.servic&d until boot process finishes up... + Starting user@1000.service - User Manager for UID 1000... + [ OK ] Started htpdate.service - HTTP based time synchronization tool. + [ OK ] Started ssh.service - OpenBSD Secure Shell server. + [ OK ] Started blueman-mechanism.service - Bluetooth management mechanism. + [ OK ] Started user@1000.service - User Manager for UID 1000. + [ OK ] Started session-c1.scope - Session c1 of User analog. + Starting rtkit-daemon.service - Re&imeKit Scheduling Policy Service... + [ OK ] Finished xserver.service - ADI X Server. + Starting lightdm.service - Light Display Manager... + Starting x11vnc.service - VNC Server for X11... + [ OK ] Started rtkit-daemon.service - RealtimeKit Scheduling Policy Service. + + Debian GNU/Linux 13 analog ttyPS0 + + analog login: root (automatic login) + + Linux analog 6.1.0-271662-gfbd2b84ac912-dirty #33 SMP PREEMPT Thu May 16 11:51:07 EEST 2024 armv7l + + The programs included with the Debian GNU/Linux system are free software; + the exact distribution terms for each program are described in the + individual files in /usr/share/doc/*/copyright. + + Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent + permitted by applicable law. + + +Useful commands for the serial terminal +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +The below commands are to be run in the serial terminal connected to the FPGA. + +**Login Information** + +user: analog password: analog + +To find out the IP of the FPGA board, run the following command and take the IP +specified at "eth0 inet": + +.. shell:: + + $ifconfig + +To see the IIO devices detected, run: + +.. shell:: + + $iio_info | grep iio:device + iio:device0: adc_0 (buffer capable) + iio:device1: adc_1 + iio:device2: xadc + + +To power off the system, run the following command, and wait for the final +message to be printed, then power off the FPGA board from the switch as well. + +.. shell:: + + $poweroff + +To reboot the system, run: + +.. shell:: + + $reboot + +.. important:: + + Even though this is Linux, this is a persistent file system. Care should be + taken not to corrupt the file system -- please shut down things, don't just + turn off the power switch. Depending on your monitor, the standard power off + could be hiding. You can do this from the terminal as well with :code:`sudo + shutdown -h now` or the above-mentioned command for powering off. + +Scopy +~~~~~ + +.. important:: + Make sure to download/update to the latest version of + :external+scopy:doc:`Scopy `. + +:external+scopy:doc:`Scopy ` can be used as a signal generator to drive +the analog inputs of the evaluation board via jumper wires. + +Configure the Signal Generator plugin with the desired waveform and frequency: + + .. figure:: ../images/ad7134_scopy_ch1.jpg + :width: 700 + + Scopy signal generator - Channel 1 + + .. figure:: ../images/ad7134_scopy_ch2.jpg + :width: 700 + + Scopy signal generator - Channel 2 + + +IIO Oscilloscope +~~~~~~~~~~~~~~~~ + +.. important:: + Make sure to download/update to the latest version of + :git-iio-oscilloscope:`IIO Oscilloscope `. + +#. Once done with the installation or an update of the latest IIO Oscilloscope, + open the application. The user needs to supply a URI which will be used in + the context creation of the IIO Oscilloscope. +#. Press ``Refresh`` to display available IIO Devices and press ``Connect``. + + .. figure:: ../images/ad7134_iio_osc_connect.jpg + :width: 700 + + IIO Oscilloscope connection + +#. After the board is connected and a channel is enabled, hit the play button. + Then the data capture window can be seen like in the shown picture. + + .. figure:: ../images/ad7134_iio_osc_plot.jpg + :width: 700 + + IIO Oscilloscope data capture + + +Using no-OS as software +----------------------- + +Necessary files +~~~~~~~~~~~~~~~ + +The following files are needed for the system to boot: + +- HDL boot file: ``system_top.xsa`` +- no-OS project: :git-no-os:`No-OS AD7134 project ` + +Instructions on how to build the boot files from source can be found here: + +- :external+no-OS:doc:`No-OS AD7134 `. More no-OS + build details at :external+no-OS:doc:`build_guide`. +- :external+hdl:ref:`ad7134_fmc`. More HDL build details at + :external+hdl:ref:`build_hdl`. + +Required Software +~~~~~~~~~~~~~~~~~ + +- AMD Xilinx Vivado and Vitis (downloading Vitis from `here + `_ + will include Vivado as well) +- An UART terminal (Putty/Tera Term/Minicom, etc.), Baud rate 115200 (8N1) + +Required Hardware +~~~~~~~~~~~~~~~~~ + +- AMD Xilinx `ZedBoard + `__ FPGA + board and its power supply (12V) +- :adi:`EVAL-AD7134FMCZ` evaluation board +- 2x Micro-USB cables, one for UART and one for JTAG +- Signal generator + +More details as to why you need these can be found at :ref:`eval-ad7134-fmcz +prerequisites`. + +Testing +~~~~~~~ + +Creating the setup +^^^^^^^^^^^^^^^^^^ + +EVAL-AD7134FMCZ/ZED +"""""""""""""""""""" + +.. figure:: ../images/ad7134_hardware_setup_no_os.jpg + :width: 800 + + EVAL-AD7134FMCZ/ZED no-OS setup + +In the following example, we will prepare the evaluation setup by connecting the +:adi:`EVAL-AD7134FMCZ` board to the ZedBoard, configuring the board for JTAG +boot, and applying a test input signal. + +Follow the steps in this order, to avoid damaging the components: + +#. Get the `ZedBoard + `__ +#. Configure ZedBoard for JTAG boot: + + .. figure:: ../images/ad7134_zed_jtag_jumpers.jpg + :width: 800 + + ZedBoard JTAG boot jumper configuration + + The BOOT switches (JP7–JP11) and the MIO0 jumper (JP6) must be set for JTAG + boot mode. VADJ must be set to 1.8V, as specified in the HDL project's + README at :external+hdl:ref:`ad7134_fmc`. Optionally, to use USB peripheral + devices with the ZedBoard, install jumpers JP2 and JP3. + +#. Connect your signal generator to the analog inputs of the evaluation board + using the appropriate jumper wires or SMB connectors. +#. Plug the :adi:`EVAL-AD7134FMCZ` into the FMC LPC Connector (J1) +#. Plug the Power Supply into 12V Power input connector (J20) (DO NOT turn the + device on). +#. Connect the UART port of ZedBoard (J14) to a PC via MicroUSB +#. Connect the PROG port of ZedBoard (J17) to a PC via MicroUSB +#. Turn on the power switch on the FPGA board +#. Observe Kernel and serial console output messages on your terminal + +Console output +^^^^^^^^^^^^^^ + +The following is what is printed in the serial console, after you have connected +to the proper ttyUSB or COM port: + +.. collapsible:: Complete boot log + + :: + + ad7134_clkgen: MMCM-PLL locked (100000000 Hz) + Spi engine v1.5.3 succesfully initialized. + 0: CH0: 0x00000000 = +0.00000V CH1: 0x00000000 = +0.00000V CH2: 0x00000000 = +0.00000V CH3: 0x00000000 = +0.00000V CH4: 0x00000000 = +0.00000V CH5: 0x00000000 = +0.00000V CH6: 0x00000000 = +0.00000V CH7: 0x00000000 = +0.00000V + 1: CH0: 0x00000000 = +0.00000V CH1: 0x00000000 = +0.00000V CH2: 0x00000000 = +0.00000V CH3: 0x00000000 = +0.00000V CH4: 0x00000000 = +0.00000V CH5: 0x00000000 = +0.00000V CH6: 0x00000000 = +0.00000V CH7: 0x00000000 = +0.00000V + 2: CH0: 0x0001c4e1 = +0.05661V CH1: 0x0001c477 = +0.05656V CH2: 0x0001c482 = +0.05656V CH3: 0x0001c49b = +0.05658V CH4: 0x0001c493 = +0.05657V CH5: 0x0001c4d6 = +0.05660V CH6: 0x0001c48e = +0.05657V CH7: 0x0001c4db = +0.05661V + 3: CH0: 0x0081c4b9 = -4.03941V CH1: 0x0001c457 = +0.05654V CH2: 0x0081c45a = -4.03946V CH3: 0x0081c4a1 = -4.03942V CH4: 0x0001c4a1 = +0.05658V CH5: 0x0081c4ef = -4.03938V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4d0 = +0.05660V + 4: CH0: 0x0001c4ce = +0.05660V CH1: 0x0001c45f = +0.05655V CH2: 0x0081c472 = -4.03944V CH3: 0x0001c4a4 = +0.05658V CH4: 0x0001c49a = +0.05658V CH5: 0x0081c4cd = -4.03940V CH6: 0x0001c485 = +0.05656V CH7: 0x0001c4cb = +0.05660V + 5: CH0: 0x0081c4cd = -4.03940V CH1: 0x0081c44f = -4.03946V CH2: 0x0001c449 = +0.05654V CH3: 0x0001c48f = +0.05657V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0001c4c8 = +0.05660V CH6: 0x0001c48a = +0.05657V CH7: 0x0081c4df = -4.03939V + 6: CH0: 0x0001c4d2 = +0.05660V CH1: 0x0001c469 = +0.05655V CH2: 0x0081c465 = -4.03945V CH3: 0x0001c498 = +0.05657V CH4: 0x0001c47b = +0.05656V CH5: 0x0001c4c6 = +0.05660V CH6: 0x0001c484 = +0.05656V CH7: 0x0001c4c0 = +0.05659V + 7: CH0: 0x0081c4ed = -4.03938V CH1: 0x0081c488 = -4.03943V CH2: 0x0001c490 = +0.05657V CH3: 0x0001c4d4 = +0.05660V CH4: 0x0081c493 = -4.03943V CH5: 0x0001c4c1 = +0.05659V CH6: 0x0001c485 = +0.05656V CH7: 0x0081c4be = -4.03941V + 8: CH0: 0x0001c4fa = +0.05662V CH1: 0x0081c47f = -4.03944V CH2: 0x0081c48c = -4.03943V CH3: 0x0001c4cc = +0.05660V CH4: 0x0001c47c = +0.05656V CH5: 0x0081c4c4 = -4.03940V CH6: 0x0001c470 = +0.05655V CH7: 0x0081c4ac = -4.03942V + 9: CH0: 0x0001c4d1 = +0.05660V CH1: 0x0081c465 = -4.03945V CH2: 0x0081c46c = -4.03945V CH3: 0x0001c4a0 = +0.05658V CH4: 0x0001c479 = +0.05656V CH5: 0x0081c4c6 = -4.03940V CH6: 0x0081c480 = -4.03944V CH7: 0x0081c4b6 = -4.03941V + 10: CH0: 0x0001c4f2 = +0.05662V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c493 = -4.03943V CH3: 0x0001c4c7 = +0.05660V CH4: 0x0001c4bd = +0.05659V CH5: 0x0001c4f2 = +0.05662V CH6: 0x0001c4bd = +0.05659V CH7: 0x0001c4f0 = +0.05662V + 11: CH0: 0x0081c4e7 = -4.03939V CH1: 0x0081c460 = -4.03945V CH2: 0x0001c484 = +0.05656V CH3: 0x0001c4aa = +0.05658V CH4: 0x0001c493 = +0.05657V CH5: 0x0081c4da = -4.03939V CH6: 0x0001c474 = +0.05656V CH7: 0x0001c4cb = +0.05660V + 12: CH0: 0x0001c4ec = +0.05662V CH1: 0x0001c47d = +0.05656V CH2: 0x0001c489 = +0.05657V CH3: 0x0001c4ad = +0.05658V CH4: 0x0001c497 = +0.05657V CH5: 0x0001c4c7 = +0.05660V CH6: 0x0081c48a = -4.03943V CH7: 0x0081c4d8 = -4.03939V + 13: CH0: 0x0001c4c6 = +0.05660V CH1: 0x0001c45e = +0.05655V CH2: 0x0081c470 = -4.03944V CH3: 0x0081c492 = -4.03943V CH4: 0x0001c494 = +0.05657V CH5: 0x0001c4cd = +0.05660V CH6: 0x0001c495 = +0.05657V CH7: 0x0081c4cd = -4.03940V + 14: CH0: 0x0001c505 = +0.05663V CH1: 0x0081c481 = -4.03944V CH2: 0x0081c492 = -4.03943V CH3: 0x0001c4d2 = +0.05660V CH4: 0x0081c4c9 = -4.03940V CH5: 0x0001c4f4 = +0.05662V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0001c4e2 = +0.05661V + 15: CH0: 0x0001c50b = +0.05663V CH1: 0x0001c484 = +0.05656V CH2: 0x0001c49b = +0.05658V CH3: 0x0081c4d0 = -4.03940V CH4: 0x0001c498 = +0.05657V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0081c487 = -4.03943V CH7: 0x0001c4c4 = +0.05660V + 16: CH0: 0x0001c4d1 = +0.05660V CH1: 0x0001c448 = +0.05654V CH2: 0x0081c455 = -4.03946V CH3: 0x0001c48e = +0.05657V CH4: 0x0001c486 = +0.05657V CH5: 0x0001c4c8 = +0.05660V CH6: 0x0081c478 = -4.03944V CH7: 0x0081c4c9 = -4.03940V + 17: CH0: 0x0001c508 = +0.05663V CH1: 0x0081c488 = -4.03943V CH2: 0x0081c49e = -4.03942V CH3: 0x0001c4c4 = +0.05660V CH4: 0x0081c4cb = -4.03940V CH5: 0x0001c4f8 = +0.05662V CH6: 0x0001c4bc = +0.05659V CH7: 0x0001c4fb = +0.05662V + 18: CH0: 0x0081c498 = -4.03943V CH1: 0x0081c426 = -4.03948V CH2: 0x0081c435 = -4.03947V CH3: 0x0081c464 = -4.03945V CH4: 0x0081c461 = -4.03945V CH5: 0x0081c4ac = -4.03942V CH6: 0x0001c46e = +0.05655V CH7: 0x0001c4b5 = +0.05659V + 19: CH0: 0x0001c529 = +0.05665V CH1: 0x0001c4a5 = +0.05658V CH2: 0x0001c4b2 = +0.05659V CH3: 0x0001c4f1 = +0.05662V CH4: 0x0001c4c9 = +0.05660V CH5: 0x0081c503 = -4.03937V CH6: 0x0001c4ca = +0.05660V CH7: 0x0081c50b = -4.03937V + 20: CH0: 0x0081c44c = -4.03946V CH1: 0x0001c3d6 = +0.05648V CH2: 0x0001c3e0 = +0.05648V CH3: 0x0001c40a = +0.05650V CH4: 0x0001c42c = +0.05652V CH5: 0x0081c44f = -4.03946V CH6: 0x0081c414 = -4.03949V CH7: 0x0001c458 = +0.05654V + 21: CH0: 0x0081c552 = -4.03933V CH1: 0x0001c4ff = +0.05662V CH2: 0x0001c4f9 = +0.05662V CH3: 0x0081c52b = -4.03935V CH4: 0x0001c503 = +0.05663V CH5: 0x0001c543 = +0.05666V CH6: 0x0001c50c = +0.05663V CH7: 0x0001c53c = +0.05665V + 22: CH0: 0x0081c47d = -4.03944V CH1: 0x0001c3fb = +0.05650V CH2: 0x0081c40f = -4.03949V CH3: 0x0001c43e = +0.05653V CH4: 0x0081c3d4 = -4.03952V CH5: 0x0001c41b = +0.05651V CH6: 0x0081c3ce = -4.03952V CH7: 0x0001c3fd = +0.05650V + 23: CH0: 0x0001c540 = +0.05666V CH1: 0x0081c4b4 = -4.03941V CH2: 0x0081c4c8 = -4.03940V CH3: 0x0001c4fe = +0.05662V CH4: 0x0081c50d = -4.03937V CH5: 0x0001c554 = +0.05667V CH6: 0x0001c4f8 = +0.05662V CH7: 0x0001c547 = +0.05666V + 24: CH0: 0x0081c4b6 = -4.03941V CH1: 0x0081c438 = -4.03947V CH2: 0x0001c45d = +0.05655V CH3: 0x0001c47c = +0.05656V CH4: 0x0081c40f = -4.03949V CH5: 0x0001c458 = +0.05654V CH6: 0x0081c40f = -4.03949V CH7: 0x0001c44a = +0.05654V + 25: CH0: 0x0001c4a0 = +0.05658V CH1: 0x0081c426 = -4.03948V CH2: 0x0001c434 = +0.05653V CH3: 0x0001c457 = +0.05654V CH4: 0x0081c4e5 = -4.03939V CH5: 0x0001c507 = +0.05663V CH6: 0x0081c4e6 = -4.03939V CH7: 0x0001c519 = +0.05664V + 26: CH0: 0x0001c587 = +0.05669V CH1: 0x0001c529 = +0.05665V CH2: 0x0001c545 = +0.05666V CH3: 0x0001c579 = +0.05668V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0081c4ff = -4.03938V CH6: 0x0001c49c = +0.05658V CH7: 0x0001c4da = +0.05661V + 27: CH0: 0x0001c3a5 = +0.05646V CH1: 0x0081c335 = -4.03960V CH2: 0x0081c335 = -4.03960V CH3: 0x0081c377 = -4.03957V CH4: 0x0001c3ee = +0.05649V CH5: 0x0001c426 = +0.05652V CH6: 0x0001c3fd = +0.05650V CH7: 0x0001c427 = +0.05652V + 28: CH0: 0x0081c6a9 = -4.03917V CH1: 0x0081c64b = -4.03921V CH2: 0x0081c653 = -4.03921V CH3: 0x0081c693 = -4.03918V CH4: 0x0001c599 = +0.05670V CH5: 0x0001c5f1 = +0.05674V CH6: 0x0001c599 = +0.05670V CH7: 0x0001c5e3 = +0.05674V + 29: CH0: 0x0001c293 = +0.05632V CH1: 0x0081c22d = -4.03973V CH2: 0x0081c21e = -4.03973V CH3: 0x0081c25e = -4.03970V CH4: 0x0081c2ce = -4.03965V CH5: 0x0081c303 = -4.03962V CH6: 0x0081c2b9 = -4.03966V CH7: 0x0081c2de = -4.03964V + 30: CH0: 0x0001c7b4 = +0.05696V CH1: 0x0001c743 = +0.05691V CH2: 0x0001c752 = +0.05692V CH3: 0x0081c78c = -4.03906V CH4: 0x0081c72d = -4.03910V CH5: 0x0081c780 = -4.03906V CH6: 0x0001c727 = +0.05689V CH7: 0x0001c760 = +0.05692V + 31: CH0: 0x0081c1d5 = -4.03977V CH1: 0x0081c166 = -4.03982V CH2: 0x0001c18b = +0.05619V CH3: 0x0081c1b1 = -4.03979V CH4: 0x0001c142 = +0.05616V CH5: 0x0001c1a5 = +0.05621V CH6: 0x0001c130 = +0.05615V CH7: 0x0001c16a = +0.05618V + 32: CH0: 0x0001c7f8 = +0.05700V CH1: 0x0081c784 = -4.03906V CH2: 0x0001c799 = +0.05695V CH3: 0x0081c7d6 = -4.03902V CH4: 0x0081c88e = -4.03893V CH5: 0x0001c8a6 = +0.05708V CH6: 0x0001c881 = +0.05706V CH7: 0x0001c8af = +0.05709V + 33: CH0: 0x0081c23d = -4.03972V CH1: 0x0001c1ce = +0.05623V CH2: 0x0001c1ee = +0.05624V CH3: 0x0081c247 = -4.03971V CH4: 0x0001c03a = +0.05603V CH5: 0x0081c0ad = -4.03992V CH6: 0x0001c016 = +0.05601V CH7: 0x0001c076 = +0.05606V + 34: CH0: 0x0081c672 = -4.03919V CH1: 0x0081c610 = -4.03924V CH2: 0x0081c5f4 = -4.03926V CH3: 0x0081c638 = -4.03922V CH4: 0x0081c8e0 = -4.03889V CH5: 0x0001c8f3 = +0.05712V CH6: 0x0001c905 = +0.05713V CH7: 0x0081c907 = -4.03887V + 35: CH0: 0x0081c551 = -4.03934V CH1: 0x0081c4ea = -4.03939V CH2: 0x0081c538 = -4.03935V CH3: 0x0001c54b = +0.05666V CH4: 0x0081c163 = -4.03983V CH5: 0x0081c1e2 = -4.03976V CH6: 0x0001c12a = +0.05615V CH7: 0x0081c1a9 = -4.03979V + 36: CH0: 0x0001bff7 = +0.05600V CH1: 0x0081bf67 = -4.04007V CH2: 0x0001bf2b = +0.05590V CH3: 0x0081bf75 = -4.04007V CH4: 0x0081c460 = -4.03945V CH5: 0x0001c446 = +0.05653V CH6: 0x0081c4aa = -4.03942V CH7: 0x0081c484 = -4.03944V + 37: CH0: 0x0081d81b = -4.03699V CH1: 0x0081d7c6 = -4.03703V CH2: 0x0081d853 = -4.03696V CH3: 0x0081d865 = -4.03695V CH4: 0x0001d218 = +0.05826V CH5: 0x0081d2b6 = -4.03766V CH6: 0x0001d1c0 = +0.05822V CH7: 0x0001d25d = +0.05830V + 38: CH0: 0x00007e39 = +0.01578V CH1: 0x00007d95 = +0.01570V CH2: 0x00007d05 = +0.01563V CH3: 0x00007cec = +0.01562V CH4: 0x00808512 = -4.07937V CH5: 0x0000845a = +0.01654V CH6: 0x00808523 = -4.07936V CH7: 0x0000842a = +0.01652V + 39: CH0: 0x007facc8 = +4.08560V CH1: 0x007fac5d = +4.08555V CH2: 0x007fad36 = +4.08565V CH3: 0x007fac74 = +4.08556V CH4: 0x00ffa384 = -0.01156V CH5: 0x007fa330 = +4.08440V CH6: 0x007fa2db = +4.08436V CH7: 0x007fa216 = +4.08426V + 40: CH0: 0x00812703 = -4.05912V CH1: 0x0081271a = -4.05911V CH2: 0x00812adb = -4.05864V CH3: 0x000129ba = +0.03722V CH4: 0x0080ee10 = -4.06624V CH5: 0x0080f258 = -4.06571V CH6: 0x0000ea95 = +0.02932V CH7: 0x0080ee54 = -4.06621V + 41: CH0: 0x0001dd63 = +0.05967V CH1: 0x0001dce5 = +0.05961V CH2: 0x0081dd01 = -4.03637V CH3: 0x0001dd0f = +0.05963V CH4: 0x0001d98b = +0.05919V CH5: 0x0001da77 = +0.05931V CH6: 0x0001d92a = +0.05915V CH7: 0x0081da00 = -4.03675V + 42: CH0: 0x0081ba9b = -4.04067V CH1: 0x0001ba1c = +0.05526V CH2: 0x0081b9ff = -4.04075V CH3: 0x0081ba3e = -4.04072V CH4: 0x0081becd = -4.04015V CH5: 0x0081be9d = -4.04017V CH6: 0x0001bf24 = +0.05589V CH7: 0x0001beff = +0.05587V + 43: CH0: 0x0081ca79 = -4.03869V CH1: 0x0081ca0f = -4.03874V CH2: 0x0001ca53 = +0.05729V CH3: 0x0001ca77 = +0.05731V CH4: 0x0081c595 = -4.03930V CH5: 0x0081c65d = -4.03920V CH6: 0x0081c54a = -4.03934V CH7: 0x0081c5c6 = -4.03928V + 44: CH0: 0x0081c185 = -4.03981V CH1: 0x0001c10e = +0.05613V CH2: 0x0081c0f7 = -4.03988V CH3: 0x0081c123 = -4.03986V CH4: 0x0001c553 = +0.05667V CH5: 0x0081c55b = -4.03933V CH6: 0x0081c59c = -4.03930V CH7: 0x0081c58e = -4.03931V + 45: CH0: 0x0001c700 = +0.05688V CH1: 0x0081c68b = -4.03918V CH2: 0x0001c6da = +0.05686V CH3: 0x0001c6fb = +0.05687V CH4: 0x0081c30a = -4.03962V CH5: 0x0001c3a0 = +0.05645V CH6: 0x0081c2ca = -4.03965V CH7: 0x0081c351 = -4.03959V + 46: CH0: 0x0081c3e9 = -4.03951V CH1: 0x0081c36e = -4.03957V CH2: 0x0081c349 = -4.03959V CH3: 0x0081c36a = -4.03957V CH4: 0x0001c666 = +0.05680V CH5: 0x0081c672 = -4.03919V CH6: 0x0081c68b = -4.03918V CH7: 0x0001c680 = +0.05681V + 47: CH0: 0x0081c558 = -4.03933V CH1: 0x0081c4e4 = -4.03939V CH2: 0x0001c543 = +0.05666V CH3: 0x0081c549 = -4.03934V CH4: 0x0001c312 = +0.05638V CH5: 0x0081c35c = -4.03958V CH6: 0x0081c2d5 = -4.03965V CH7: 0x0081c33c = -4.03960V + 48: CH0: 0x0081c4d5 = -4.03940V CH1: 0x0081c463 = -4.03945V CH2: 0x0001c46a = +0.05655V CH3: 0x0001c4a2 = +0.05658V CH4: 0x0001c5f1 = +0.05674V CH5: 0x0081c617 = -4.03924V CH6: 0x0001c5ff = +0.05675V CH7: 0x0001c624 = +0.05677V + 49: CH0: 0x0001c466 = +0.05655V CH1: 0x0081c3fc = -4.03950V CH2: 0x0001c40c = +0.05651V CH3: 0x0081c451 = -4.03946V CH4: 0x0081c352 = -4.03958V CH5: 0x0001c3ae = +0.05646V CH6: 0x0081c35d = -4.03958V CH7: 0x0001c398 = +0.05645V + 50: CH0: 0x0081c590 = -4.03930V CH1: 0x0001c4ff = +0.05662V CH2: 0x0001c506 = +0.05663V CH3: 0x0081c53e = -4.03934V CH4: 0x0081c55d = -4.03933V CH5: 0x0081c5a7 = -4.03929V CH6: 0x0081c54c = -4.03934V CH7: 0x0081c592 = -4.03930V + 51: CH0: 0x0001c42f = +0.05652V CH1: 0x0001c3c9 = +0.05647V CH2: 0x0081c3d4 = -4.03952V CH3: 0x0081c3f8 = -4.03950V CH4: 0x0081c414 = -4.03949V CH5: 0x0001c457 = +0.05654V CH6: 0x0001c40b = +0.05651V CH7: 0x0081c45f = -4.03945V + 52: CH0: 0x0081c58a = -4.03931V CH1: 0x0081c532 = -4.03935V CH2: 0x0081c539 = -4.03935V CH3: 0x0001c56a = +0.05668V CH4: 0x0001c4e2 = +0.05661V CH5: 0x0001c519 = +0.05664V CH6: 0x0081c4d8 = -4.03939V CH7: 0x0081c51a = -4.03936V + 53: CH0: 0x0081c43f = -4.03947V CH1: 0x0001c3cb = +0.05647V CH2: 0x0001c3e2 = +0.05649V CH3: 0x0081c40a = -4.03949V CH4: 0x0001c489 = +0.05657V CH5: 0x0001c4ad = +0.05658V CH6: 0x0081c49d = -4.03942V CH7: 0x0081c4a4 = -4.03942V + 54: CH0: 0x0001c55e = +0.05667V CH1: 0x0001c4f6 = +0.05662V CH2: 0x0081c50d = -4.03937V CH3: 0x0081c530 = -4.03935V CH4: 0x0081c484 = -4.03944V CH5: 0x0081c4c7 = -4.03940V CH6: 0x0001c46a = +0.05655V CH7: 0x0001c4be = +0.05659V + 55: CH0: 0x0001c4ad = +0.05658V CH1: 0x0081c43e = -4.03947V CH2: 0x0081c434 = -4.03947V CH3: 0x0081c462 = -4.03945V CH4: 0x0001c4e4 = +0.05661V CH5: 0x0001c508 = +0.05663V CH6: 0x0001c4e3 = +0.05661V CH7: 0x0081c514 = -4.03936V + 56: CH0: 0x0081c510 = -4.03937V CH1: 0x0001c4a2 = +0.05658V CH2: 0x0001c4c9 = +0.05660V CH3: 0x0081c4ed = -4.03938V CH4: 0x0081c45d = -4.03945V CH5: 0x0081c4a1 = -4.03942V CH6: 0x0001c451 = +0.05654V CH7: 0x0081c487 = -4.03943V + 57: CH0: 0x0081c4e1 = -4.03939V CH1: 0x0081c465 = -4.03945V CH2: 0x0001c476 = +0.05656V CH3: 0x0001c4a1 = +0.05658V CH4: 0x0001c4d8 = +0.05661V CH5: 0x0001c526 = +0.05664V CH6: 0x0081c4d9 = -4.03939V CH7: 0x0081c50e = -4.03937V + 58: CH0: 0x0081c4e3 = -4.03939V CH1: 0x0001c466 = +0.05655V CH2: 0x0001c490 = +0.05657V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0081c46a = -4.03945V CH5: 0x0081c4b6 = -4.03941V CH6: 0x0081c474 = -4.03944V CH7: 0x0001c498 = +0.05657V + 59: CH0: 0x0001c4fa = +0.05662V CH1: 0x0081c485 = -4.03943V CH2: 0x0081c4a0 = -4.03942V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0001c4d1 = +0.05660V CH5: 0x0001c513 = +0.05663V CH6: 0x0081c4bd = -4.03941V CH7: 0x0001c518 = +0.05664V + 60: CH0: 0x0001c4c2 = +0.05659V CH1: 0x0001c45f = +0.05655V CH2: 0x0001c451 = +0.05654V CH3: 0x0001c48b = +0.05657V CH4: 0x0001c459 = +0.05654V CH5: 0x0001c4b4 = +0.05659V CH6: 0x0001c464 = +0.05655V CH7: 0x0001c4a8 = +0.05658V + 61: CH0: 0x0001c509 = +0.05663V CH1: 0x0081c4bf = -4.03941V CH2: 0x0081c4b5 = -4.03941V CH3: 0x0001c4f7 = +0.05662V CH4: 0x0001c4c9 = +0.05660V CH5: 0x0081c4fa = -4.03938V CH6: 0x0001c4ca = +0.05660V CH7: 0x0081c4fa = -4.03938V + 62: CH0: 0x0081c4f6 = -4.03938V CH1: 0x0081c48b = -4.03943V CH2: 0x0081c48c = -4.03943V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0081c496 = -4.03943V CH7: 0x0001c4d5 = +0.05660V + 63: CH0: 0x0081c530 = -4.03935V CH1: 0x0001c4a9 = +0.05658V CH2: 0x0081c4bf = -4.03941V CH3: 0x0081c4f4 = -4.03938V CH4: 0x0081c4d0 = -4.03940V CH5: 0x0001c50b = +0.05663V CH6: 0x0001c4c6 = +0.05660V CH7: 0x0001c4f1 = +0.05662V + 64: CH0: 0x0081c4dd = -4.03939V CH1: 0x0081c469 = -4.03945V CH2: 0x0081c47b = -4.03944V CH3: 0x0001c49f = +0.05658V CH4: 0x0001c4a7 = +0.05658V CH5: 0x0001c4dc = +0.05661V CH6: 0x0001c4ad = +0.05658V CH7: 0x0001c4e4 = +0.05661V + 65: CH0: 0x0081c4fd = -4.03938V CH1: 0x0081c4a1 = -4.03942V CH2: 0x0081c49d = -4.03942V CH3: 0x0081c4d9 = -4.03939V CH4: 0x0081c4af = -4.03941V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0081c496 = -4.03943V CH7: 0x0081c4d8 = -4.03939V + 66: CH0: 0x0081c4dd = -4.03939V CH1: 0x0001c482 = +0.05656V CH2: 0x0001c48c = +0.05657V CH3: 0x0081c4cc = -4.03940V CH4: 0x0001c4af = +0.05659V CH5: 0x0001c4f1 = +0.05662V CH6: 0x0001c4a7 = +0.05658V CH7: 0x0081c4e1 = -4.03939V + 67: CH0: 0x0081c4ed = -4.03938V CH1: 0x0081c46b = -4.03945V CH2: 0x0081c473 = -4.03944V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0001c481 = +0.05656V CH5: 0x0001c4d7 = +0.05660V CH6: 0x0081c48e = -4.03943V CH7: 0x0081c4c4 = -4.03940V + 68: CH0: 0x0001c50b = +0.05663V CH1: 0x0001c48e = +0.05657V CH2: 0x0001c488 = +0.05657V CH3: 0x0081c4e1 = -4.03939V CH4: 0x0001c4b0 = +0.05659V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0001c497 = +0.05657V CH7: 0x0081c4ea = -4.03939V + 69: CH0: 0x0001c4dc = +0.05661V CH1: 0x0001c478 = +0.05656V CH2: 0x0081c48d = -4.03943V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0081c493 = -4.03943V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0001c493 = +0.05657V CH7: 0x0081c4d5 = -4.03940V + 70: CH0: 0x0081c514 = -4.03936V CH1: 0x0001c4a9 = +0.05658V CH2: 0x0081c4a8 = -4.03942V CH3: 0x0081c4da = -4.03939V CH4: 0x0001c4c9 = +0.05660V CH5: 0x0081c503 = -4.03937V CH6: 0x0001c4d2 = +0.05660V CH7: 0x0001c4f5 = +0.05662V + 71: CH0: 0x0081c500 = -4.03937V CH1: 0x0081c491 = -4.03943V CH2: 0x0081c48e = -4.03943V CH3: 0x0001c4c0 = +0.05659V CH4: 0x0001c4bf = +0.05659V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0081c4c1 = -4.03941V CH7: 0x0001c4f5 = +0.05662V + 72: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0081c469 = -4.03945V CH2: 0x0001c48d = +0.05657V CH3: 0x0081c4ab = -4.03942V CH4: 0x0081c493 = -4.03943V CH5: 0x0001c4d5 = +0.05660V CH6: 0x0081c493 = -4.03943V CH7: 0x0001c4da = +0.05661V + 73: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0081c479 = -4.03944V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4b4 = +0.05659V CH4: 0x0001c496 = +0.05657V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4d6 = +0.05660V + 74: CH0: 0x0081c4cd = -4.03940V CH1: 0x0001c45e = +0.05655V CH2: 0x0001c45b = +0.05654V CH3: 0x0081c4a1 = -4.03942V CH4: 0x0001c484 = +0.05656V CH5: 0x0081c4d1 = -4.03940V CH6: 0x0001c48f = +0.05657V CH7: 0x0081c4c1 = -4.03941V + 75: CH0: 0x0001c4c9 = +0.05660V CH1: 0x0081c464 = -4.03945V CH2: 0x0081c465 = -4.03945V CH3: 0x0001c4ac = +0.05658V CH4: 0x0001c47d = +0.05656V CH5: 0x0001c4ab = +0.05658V CH6: 0x0001c488 = +0.05657V CH7: 0x0081c4af = -4.03941V + 76: CH0: 0x0001c4f2 = +0.05662V CH1: 0x0001c46e = +0.05655V CH2: 0x0001c478 = +0.05656V CH3: 0x0081c495 = -4.03943V CH4: 0x0001c48f = +0.05657V CH5: 0x0001c4b5 = +0.05659V CH6: 0x0081c47e = -4.03944V CH7: 0x0001c4c3 = +0.05660V + 77: CH0: 0x0081c4ed = -4.03938V CH1: 0x0001c474 = +0.05656V CH2: 0x0001c46b = +0.05655V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0081c4d9 = -4.03939V CH6: 0x0081c489 = -4.03943V CH7: 0x0001c4d3 = +0.05660V + 78: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0081c47a = -4.03944V CH2: 0x0001c478 = +0.05656V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0081c493 = -4.03943V CH5: 0x0081c4e0 = -4.03939V CH6: 0x0081c496 = -4.03943V CH7: 0x0081c4ce = -4.03940V + 79: CH0: 0x0081c4de = -4.03939V CH1: 0x0081c46c = -4.03945V CH2: 0x0001c480 = +0.05656V CH3: 0x0001c4a0 = +0.05658V CH4: 0x0001c490 = +0.05657V CH5: 0x0081c4e5 = -4.03939V CH6: 0x0001c484 = +0.05656V CH7: 0x0081c4c0 = -4.03941V + 80: CH0: 0x0001c4c5 = +0.05660V CH1: 0x0081c46a = -4.03945V CH2: 0x0001c481 = +0.05656V CH3: 0x0001c4ad = +0.05658V CH4: 0x0081c488 = -4.03943V CH5: 0x0081c4d1 = -4.03940V CH6: 0x0001c47f = +0.05656V CH7: 0x0081c4b1 = -4.03941V + 81: CH0: 0x0081c4eb = -4.03938V CH1: 0x0001c45b = +0.05654V CH2: 0x0001c48c = +0.05657V CH3: 0x0081c4a6 = -4.03942V CH4: 0x0081c489 = -4.03943V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4c8 = -4.03940V + 82: CH0: 0x0001c4de = +0.05661V CH1: 0x0001c465 = +0.05655V CH2: 0x0001c477 = +0.05656V CH3: 0x0001c4a1 = +0.05658V CH4: 0x0001c49c = +0.05658V CH5: 0x0001c4dd = +0.05661V CH6: 0x0001c491 = +0.05657V CH7: 0x0081c4c5 = -4.03940V + 83: CH0: 0x0081c4e1 = -4.03939V CH1: 0x0081c475 = -4.03944V CH2: 0x0081c476 = -4.03944V CH3: 0x0081c4bd = -4.03941V CH4: 0x0081c490 = -4.03943V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0001c48c = +0.05657V CH7: 0x0001c4c2 = +0.05659V + 84: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0001c46f = +0.05655V CH2: 0x0081c495 = -4.03943V CH3: 0x0081c4c1 = -4.03941V CH4: 0x0001c499 = +0.05657V CH5: 0x0001c4e0 = +0.05661V CH6: 0x0001c493 = +0.05657V CH7: 0x0081c4cf = -4.03940V + 85: CH0: 0x0081c4f1 = -4.03938V CH1: 0x0081c46e = -4.03945V CH2: 0x0001c492 = +0.05657V CH3: 0x0001c4aa = +0.05658V CH4: 0x0081c49d = -4.03942V CH5: 0x0001c4cc = +0.05660V CH6: 0x0081c498 = -4.03943V CH7: 0x0001c4d1 = +0.05660V + 86: CH0: 0x0081c4d5 = -4.03940V CH1: 0x0081c46a = -4.03945V CH2: 0x0081c46e = -4.03945V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0081c477 = -4.03944V CH5: 0x0081c4d0 = -4.03940V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4c4 = -4.03940V + 87: CH0: 0x0081c4d4 = -4.03940V CH1: 0x0081c470 = -4.03944V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4be = +0.05659V CH4: 0x0081c48f = -4.03943V CH5: 0x0081c4e1 = -4.03939V CH6: 0x0001c493 = +0.05657V CH7: 0x0001c4d5 = +0.05660V + 88: CH0: 0x0081c4ea = -4.03939V CH1: 0x0001c463 = +0.05655V CH2: 0x0081c486 = -4.03943V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0081c497 = -4.03943V CH5: 0x0001c4e6 = +0.05661V CH6: 0x0081c49e = -4.03942V CH7: 0x0081c4c2 = -4.03940V + 89: CH0: 0x0001c4e0 = +0.05661V CH1: 0x0001c47a = +0.05656V CH2: 0x0001c477 = +0.05656V CH3: 0x0001c4ca = +0.05660V CH4: 0x0081c496 = -4.03943V CH5: 0x0081c4df = -4.03939V CH6: 0x0001c496 = +0.05657V CH7: 0x0081c4b4 = -4.03941V + 90: CH0: 0x0001c501 = +0.05663V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c4b0 = -4.03941V CH3: 0x0001c4d1 = +0.05660V CH4: 0x0081c4b5 = -4.03941V CH5: 0x0081c4f5 = -4.03938V CH6: 0x0081c491 = -4.03943V CH7: 0x0001c4e9 = +0.05661V + 91: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0001c47f = +0.05656V CH2: 0x0001c496 = +0.05657V CH3: 0x0081c4b5 = -4.03941V CH4: 0x0001c49e = +0.05658V CH5: 0x0081c4e8 = -4.03939V CH6: 0x0001c49f = +0.05658V CH7: 0x0081c4d6 = -4.03940V + 92: CH0: 0x0081c501 = -4.03937V CH1: 0x0001c4ab = +0.05658V CH2: 0x0081c4b9 = -4.03941V CH3: 0x0001c4e2 = +0.05661V CH4: 0x0001c4c2 = +0.05659V CH5: 0x0081c4f7 = -4.03938V CH6: 0x0001c4ba = +0.05659V CH7: 0x0001c4eb = +0.05661V + 93: CH0: 0x0081c50d = -4.03937V CH1: 0x0081c488 = -4.03943V CH2: 0x0081c4b6 = -4.03941V CH3: 0x0081c4d1 = -4.03940V CH4: 0x0081c4c4 = -4.03940V CH5: 0x0001c501 = +0.05663V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4f3 = +0.05662V + 94: CH0: 0x0001c4d5 = +0.05660V CH1: 0x0001c47b = +0.05656V CH2: 0x0081c47d = -4.03944V CH3: 0x0081c4ab = -4.03942V CH4: 0x0001c49f = +0.05658V CH5: 0x0081c4e9 = -4.03939V CH6: 0x0081c486 = -4.03943V CH7: 0x0001c4d0 = +0.05660V + 95: CH0: 0x0081c4df = -4.03939V CH1: 0x0001c471 = +0.05656V CH2: 0x0081c48e = -4.03943V CH3: 0x0081c4a4 = -4.03942V CH4: 0x0001c492 = +0.05657V CH5: 0x0081c4d8 = -4.03939V CH6: 0x0001c487 = +0.05657V CH7: 0x0081c4dd = -4.03939V + 96: CH0: 0x0081c4ce = -4.03940V CH1: 0x0001c44c = +0.05654V CH2: 0x0081c468 = -4.03945V CH3: 0x0081c484 = -4.03944V CH4: 0x0081c481 = -4.03944V CH5: 0x0001c4b3 = +0.05659V CH6: 0x0001c493 = +0.05657V CH7: 0x0001c4c1 = +0.05659V + 97: CH0: 0x0001c4df = +0.05661V CH1: 0x0001c45c = +0.05654V CH2: 0x0001c470 = +0.05655V CH3: 0x0081c4a0 = -4.03942V CH4: 0x0081c492 = -4.03943V CH5: 0x0081c4c2 = -4.03940V CH6: 0x0081c47f = -4.03944V CH7: 0x0001c4a5 = +0.05658V + 98: CH0: 0x0081c4e3 = -4.03939V CH1: 0x0081c459 = -4.03946V CH2: 0x0001c476 = +0.05656V CH3: 0x0081c4a3 = -4.03942V CH4: 0x0081c490 = -4.03943V CH5: 0x0081c4c0 = -4.03941V CH6: 0x0001c46f = +0.05655V CH7: 0x0081c4bf = -4.03941V + 99: CH0: 0x0081c4b3 = -4.03941V CH1: 0x0081c44e = -4.03946V CH2: 0x0081c466 = -4.03945V CH3: 0x0001c47e = +0.05656V CH4: 0x0001c479 = +0.05656V CH5: 0x0001c4c2 = +0.05659V CH6: 0x0081c467 = -4.03945V CH7: 0x0001c4b4 = +0.05659V + 100: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0081c46d = -4.03945V CH2: 0x0001c47f = +0.05656V CH3: 0x0001c497 = +0.05657V CH4: 0x0081c48b = -4.03943V CH5: 0x0081c4d2 = -4.03940V CH6: 0x0001c480 = +0.05656V CH7: 0x0001c4b4 = +0.05659V + 101: CH0: 0x0001c4ff = +0.05662V CH1: 0x0001c47f = +0.05656V CH2: 0x0001c479 = +0.05656V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0081c49e = -4.03942V CH5: 0x0001c4d5 = +0.05660V CH6: 0x0081c4a1 = -4.03942V CH7: 0x0001c4de = +0.05661V + 102: CH0: 0x0081c4f1 = -4.03938V CH1: 0x0001c479 = +0.05656V CH2: 0x0081c46f = -4.03945V CH3: 0x0081c4c0 = -4.03941V CH4: 0x0001c497 = +0.05657V CH5: 0x0081c4dd = -4.03939V CH6: 0x0081c48a = -4.03943V CH7: 0x0081c4dc = -4.03939V + 103: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0081c482 = -4.03944V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4b1 = +0.05659V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0001c4cc = +0.05660V CH6: 0x0081c482 = -4.03944V CH7: 0x0001c4c9 = +0.05660V + 104: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0001c476 = +0.05656V CH2: 0x0081c48d = -4.03943V CH3: 0x0001c4ac = +0.05658V CH4: 0x0081c48f = -4.03943V CH5: 0x0081c4f1 = -4.03938V CH6: 0x0001c476 = +0.05656V CH7: 0x0081c4ce = -4.03940V + 105: CH0: 0x0081c4ee = -4.03938V CH1: 0x0081c476 = -4.03944V CH2: 0x0001c47f = +0.05656V CH3: 0x0001c4ae = +0.05658V CH4: 0x0081c493 = -4.03943V CH5: 0x0081c4f6 = -4.03938V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4cf = +0.05660V + 106: CH0: 0x0001c4d3 = +0.05660V CH1: 0x0081c461 = -4.03945V CH2: 0x0001c46e = +0.05655V CH3: 0x0081c498 = -4.03943V CH4: 0x0081c492 = -4.03943V CH5: 0x0001c4cb = +0.05660V CH6: 0x0081c473 = -4.03944V CH7: 0x0001c494 = +0.05657V + 107: CH0: 0x0001c4de = +0.05661V CH1: 0x0081c45e = -4.03945V CH2: 0x0081c46e = -4.03945V CH3: 0x0081c4ad = -4.03942V CH4: 0x0081c490 = -4.03943V CH5: 0x0001c4d6 = +0.05660V CH6: 0x0081c477 = -4.03944V CH7: 0x0001c4b5 = +0.05659V + 108: CH0: 0x0081c4e1 = -4.03939V CH1: 0x0001c469 = +0.05655V CH2: 0x0081c499 = -4.03942V CH3: 0x0001c4bd = +0.05659V CH4: 0x0001c49a = +0.05658V CH5: 0x0001c4db = +0.05661V CH6: 0x0081c48b = -4.03943V CH7: 0x0001c4d4 = +0.05660V + 109: CH0: 0x0001c4d0 = +0.05660V CH1: 0x0001c45e = +0.05655V CH2: 0x0081c495 = -4.03943V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0001c48b = +0.05657V CH5: 0x0081c4df = -4.03939V CH6: 0x0081c465 = -4.03945V CH7: 0x0081c4ac = -4.03942V + 110: CH0: 0x0081c4ca = -4.03940V CH1: 0x0001c474 = +0.05656V CH2: 0x0001c478 = +0.05656V CH3: 0x0001c4ad = +0.05658V CH4: 0x0081c48d = -4.03943V CH5: 0x0081c4c1 = -4.03941V CH6: 0x0081c491 = -4.03943V CH7: 0x0001c4be = +0.05659V + 111: CH0: 0x0001c4d0 = +0.05660V CH1: 0x0001c478 = +0.05656V CH2: 0x0081c486 = -4.03943V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0001c48a = +0.05657V CH5: 0x0001c4c7 = +0.05660V CH6: 0x0001c494 = +0.05657V CH7: 0x0001c4cb = +0.05660V + 112: CH0: 0x0081c4d5 = -4.03940V CH1: 0x0081c473 = -4.03944V CH2: 0x0001c48a = +0.05657V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0081c4a1 = -4.03942V CH5: 0x0081c4ea = -4.03939V CH6: 0x0001c488 = +0.05657V CH7: 0x0001c4ca = +0.05660V + 113: CH0: 0x0081c4e2 = -4.03939V CH1: 0x0081c480 = -4.03944V CH2: 0x0081c482 = -4.03944V CH3: 0x0001c4ad = +0.05658V CH4: 0x0081c490 = -4.03943V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0001c497 = +0.05657V CH7: 0x0001c4d3 = +0.05660V + 114: CH0: 0x0081c4ee = -4.03938V CH1: 0x0081c47b = -4.03944V CH2: 0x0001c491 = +0.05657V CH3: 0x0001c4be = +0.05659V CH4: 0x0001c49b = +0.05658V CH5: 0x0001c4ed = +0.05662V CH6: 0x0081c49d = -4.03942V CH7: 0x0001c4f6 = +0.05662V + 115: CH0: 0x0001c4d3 = +0.05660V CH1: 0x0001c474 = +0.05656V CH2: 0x0001c482 = +0.05656V CH3: 0x0001c4ac = +0.05658V CH4: 0x0001c4b8 = +0.05659V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4d4 = +0.05660V + 116: CH0: 0x0001c4f2 = +0.05662V CH1: 0x0001c488 = +0.05657V CH2: 0x0001c491 = +0.05657V CH3: 0x0001c4cc = +0.05660V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0001c4ed = +0.05662V CH6: 0x0081c4ae = -4.03941V CH7: 0x0081c4d7 = -4.03939V + 117: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0001c46f = +0.05655V CH2: 0x0001c488 = +0.05657V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0081c4ad = -4.03942V CH5: 0x0081c4dd = -4.03939V CH6: 0x0081c48b = -4.03943V CH7: 0x0001c4da = +0.05661V + 118: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0081c467 = -4.03945V CH2: 0x0001c46f = +0.05655V CH3: 0x0081c4a2 = -4.03942V CH4: 0x0001c48f = +0.05657V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0081c470 = -4.03944V CH7: 0x0081c4c1 = -4.03941V + 119: CH0: 0x0001c50c = +0.05663V CH1: 0x0001c48e = +0.05657V CH2: 0x0081c4b3 = -4.03941V CH3: 0x0001c4d3 = +0.05660V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0001c505 = +0.05663V CH6: 0x0001c4c0 = +0.05659V CH7: 0x0001c4e6 = +0.05661V + 120: CH0: 0x0001c4e2 = +0.05661V CH1: 0x0081c474 = -4.03944V CH2: 0x0081c4a5 = -4.03942V CH3: 0x0001c4a7 = +0.05658V CH4: 0x0081c4b3 = -4.03941V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0081c4c3 = -4.03940V + 121: CH0: 0x0081c4ea = -4.03939V CH1: 0x0001c469 = +0.05655V CH2: 0x0081c484 = -4.03944V CH3: 0x0001c4aa = +0.05658V CH4: 0x0081c48d = -4.03943V CH5: 0x0001c4cc = +0.05660V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4ce = -4.03940V + 122: CH0: 0x0001c4ea = +0.05661V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c49d = -4.03942V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0001c493 = +0.05657V CH5: 0x0081c4de = -4.03939V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4e0 = +0.05661V + 123: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0001c48a = +0.05657V CH2: 0x0081c48d = -4.03943V CH3: 0x0081c4ba = -4.03941V CH4: 0x0081c49f = -4.03942V CH5: 0x0081c4e6 = -4.03939V CH6: 0x0081c494 = -4.03943V CH7: 0x0001c4cf = +0.05660V + 124: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0081c48a = -4.03943V CH2: 0x0001c48e = +0.05657V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0001c4a5 = +0.05658V CH5: 0x0081c4ec = -4.03938V CH6: 0x0001c490 = +0.05657V CH7: 0x0001c4d7 = +0.05660V + 125: CH0: 0x0081c4df = -4.03939V CH1: 0x0081c46e = -4.03945V CH2: 0x0081c46a = -4.03945V CH3: 0x0081c4ae = -4.03941V CH4: 0x0081c498 = -4.03943V CH5: 0x0081c4cd = -4.03940V CH6: 0x0001c493 = +0.05657V CH7: 0x0001c4ba = +0.05659V + 126: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0081c463 = -4.03945V CH2: 0x0081c45f = -4.03945V CH3: 0x0081c4a1 = -4.03942V CH4: 0x0081c486 = -4.03943V CH5: 0x0081c4cc = -4.03940V CH6: 0x0081c47f = -4.03944V CH7: 0x0001c4b3 = +0.05659V + 127: CH0: 0x0001c4de = +0.05661V CH1: 0x0001c474 = +0.05656V CH2: 0x0001c484 = +0.05656V CH3: 0x0081c4c1 = -4.03941V CH4: 0x0001c488 = +0.05657V CH5: 0x0081c4d7 = -4.03939V CH6: 0x0001c488 = +0.05657V CH7: 0x0081c4ab = -4.03942V + 128: CH0: 0x0081c4ea = -4.03939V CH1: 0x0001c474 = +0.05656V CH2: 0x0081c490 = -4.03943V CH3: 0x0001c4c0 = +0.05659V CH4: 0x0001c493 = +0.05657V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0001c489 = +0.05657V CH7: 0x0081c4cb = -4.03940V + 129: CH0: 0x0001c4fb = +0.05662V CH1: 0x0001c482 = +0.05656V CH2: 0x0001c49c = +0.05658V CH3: 0x0001c4d2 = +0.05660V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0001c4ef = +0.05662V CH6: 0x0001c485 = +0.05656V CH7: 0x0001c4e6 = +0.05661V + 130: CH0: 0x0081c4f9 = -4.03938V CH1: 0x0001c49e = +0.05658V CH2: 0x0081c47c = -4.03944V CH3: 0x0001c4c3 = +0.05660V CH4: 0x0001c4aa = +0.05658V CH5: 0x0001c4df = +0.05661V CH6: 0x0081c4aa = -4.03942V CH7: 0x0081c4dc = -4.03939V + 131: CH0: 0x0001c4e2 = +0.05661V CH1: 0x0001c47b = +0.05656V CH2: 0x0081c483 = -4.03944V CH3: 0x0081c49c = -4.03942V CH4: 0x0081c49a = -4.03942V CH5: 0x0081c4dd = -4.03939V CH6: 0x0081c47e = -4.03944V CH7: 0x0001c4e2 = +0.05661V + 132: CH0: 0x0081c516 = -4.03936V CH1: 0x0001c48b = +0.05657V CH2: 0x0001c4b2 = +0.05659V CH3: 0x0081c4cf = -4.03940V CH4: 0x0001c4c6 = +0.05660V CH5: 0x0001c502 = +0.05663V CH6: 0x0001c48d = +0.05657V CH7: 0x0081c4dd = -4.03939V + 133: CH0: 0x0081c51a = -4.03936V CH1: 0x0081c49e = -4.03942V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0001c4d6 = +0.05660V CH4: 0x0081c4bf = -4.03941V CH5: 0x0001c4fc = +0.05662V CH6: 0x0001c4b1 = +0.05659V CH7: 0x0001c4f6 = +0.05662V + 134: CH0: 0x0001c4d3 = +0.05660V CH1: 0x0001c469 = +0.05655V CH2: 0x0081c46a = -4.03945V CH3: 0x0001c4ac = +0.05658V CH4: 0x0001c47b = +0.05656V CH5: 0x0001c4dc = +0.05661V CH6: 0x0001c489 = +0.05657V CH7: 0x0001c4cf = +0.05660V + 135: CH0: 0x0001c4c0 = +0.05659V CH1: 0x0001c45b = +0.05654V CH2: 0x0081c46e = -4.03945V CH3: 0x0001c4a6 = +0.05658V CH4: 0x0001c484 = +0.05656V CH5: 0x0001c4cb = +0.05660V CH6: 0x0001c47a = +0.05656V CH7: 0x0001c49b = +0.05658V + 136: CH0: 0x0001c4c0 = +0.05659V CH1: 0x0001c43f = +0.05653V CH2: 0x0081c460 = -4.03945V CH3: 0x0001c498 = +0.05657V CH4: 0x0081c490 = -4.03943V CH5: 0x0001c4bd = +0.05659V CH6: 0x0001c469 = +0.05655V CH7: 0x0001c4ac = +0.05658V + 137: CH0: 0x0001c4c2 = +0.05659V CH1: 0x0081c450 = -4.03946V CH2: 0x0081c45b = -4.03946V CH3: 0x0081c490 = -4.03943V CH4: 0x0001c485 = +0.05656V CH5: 0x0081c4bb = -4.03941V CH6: 0x0001c473 = +0.05656V CH7: 0x0001c4b3 = +0.05659V + 138: CH0: 0x0081c4e1 = -4.03939V CH1: 0x0001c470 = +0.05655V CH2: 0x0001c485 = +0.05656V CH3: 0x0001c4b3 = +0.05659V CH4: 0x0081c47e = -4.03944V CH5: 0x0001c4ca = +0.05660V CH6: 0x0081c486 = -4.03943V CH7: 0x0081c4d9 = -4.03939V + 139: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0001c473 = +0.05656V CH2: 0x0081c47a = -4.03944V CH3: 0x0081c4be = -4.03941V CH4: 0x0001c485 = +0.05656V CH5: 0x0001c4d0 = +0.05660V CH6: 0x0001c493 = +0.05657V CH7: 0x0001c4f4 = +0.05662V + 140: CH0: 0x0081c4dc = -4.03939V CH1: 0x0081c46f = -4.03945V CH2: 0x0001c486 = +0.05657V CH3: 0x0001c4a6 = +0.05658V CH4: 0x0081c485 = -4.03943V CH5: 0x0081c4c4 = -4.03940V CH6: 0x0081c489 = -4.03943V CH7: 0x0081c4b8 = -4.03941V + 141: CH0: 0x0001c4d6 = +0.05660V CH1: 0x0081c46c = -4.03945V CH2: 0x0001c479 = +0.05656V CH3: 0x0001c4b3 = +0.05659V CH4: 0x0081c482 = -4.03944V CH5: 0x0001c4d3 = +0.05660V CH6: 0x0001c481 = +0.05656V CH7: 0x0081c4c2 = -4.03940V + 142: CH0: 0x0001c4cb = +0.05660V CH1: 0x0001c46e = +0.05655V CH2: 0x0081c461 = -4.03945V CH3: 0x0081c4ae = -4.03941V CH4: 0x0001c48f = +0.05657V CH5: 0x0001c4c1 = +0.05659V CH6: 0x0081c48f = -4.03943V CH7: 0x0081c4cc = -4.03940V + 143: CH0: 0x0001c4eb = +0.05661V CH1: 0x0081c462 = -4.03945V CH2: 0x0081c46c = -4.03945V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0081c493 = -4.03943V CH5: 0x0001c4d2 = +0.05660V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4bc = -4.03941V + 144: CH0: 0x0001c500 = +0.05663V CH1: 0x0001c473 = +0.05656V CH2: 0x0001c48d = +0.05657V CH3: 0x0081c4c4 = -4.03940V CH4: 0x0081c49d = -4.03942V CH5: 0x0001c4f3 = +0.05662V CH6: 0x0001c4a0 = +0.05658V CH7: 0x0081c4e8 = -4.03939V + 145: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0081c474 = -4.03944V CH2: 0x0001c493 = +0.05657V CH3: 0x0001c4bd = +0.05659V CH4: 0x0081c4af = -4.03941V CH5: 0x0001c4df = +0.05661V CH6: 0x0081c493 = -4.03943V CH7: 0x0081c4da = -4.03939V + 146: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0001c479 = +0.05656V CH2: 0x0081c485 = -4.03943V CH3: 0x0081c4bb = -4.03941V CH4: 0x0081c499 = -4.03942V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0081c488 = -4.03943V CH7: 0x0081c4c9 = -4.03940V + 147: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0081c463 = -4.03945V CH2: 0x0081c47a = -4.03944V CH3: 0x0001c4a1 = +0.05658V CH4: 0x0081c482 = -4.03944V CH5: 0x0001c4b9 = +0.05659V CH6: 0x0001c497 = +0.05657V CH7: 0x0081c4b5 = -4.03941V + 148: CH0: 0x0001c4d9 = +0.05661V CH1: 0x0001c461 = +0.05655V CH2: 0x0001c46c = +0.05655V CH3: 0x0081c4a2 = -4.03942V CH4: 0x0001c48d = +0.05657V CH5: 0x0081c4c6 = -4.03940V CH6: 0x0081c46f = -4.03945V CH7: 0x0001c4be = +0.05659V + 149: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0081c496 = -4.03943V CH2: 0x0001c490 = +0.05657V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0001c489 = +0.05657V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0081c489 = -4.03943V CH7: 0x0001c4d5 = +0.05660V + 150: CH0: 0x0001c4fd = +0.05662V CH1: 0x0081c486 = -4.03943V CH2: 0x0001c49c = +0.05658V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0001c4a9 = +0.05658V CH5: 0x0001c4ec = +0.05662V CH6: 0x0001c49f = +0.05658V CH7: 0x0081c4e6 = -4.03939V + 151: CH0: 0x0001c4df = +0.05661V CH1: 0x0001c467 = +0.05655V CH2: 0x0081c47e = -4.03944V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0001c49a = +0.05658V CH5: 0x0081c4d7 = -4.03939V CH6: 0x0001c47f = +0.05656V CH7: 0x0081c4d9 = -4.03939V + 152: CH0: 0x0081c4df = -4.03939V CH1: 0x0001c481 = +0.05656V CH2: 0x0001c467 = +0.05655V CH3: 0x0081c4b4 = -4.03941V CH4: 0x0001c49e = +0.05658V CH5: 0x0001c4cf = +0.05660V CH6: 0x0001c49a = +0.05658V CH7: 0x0001c4cd = +0.05660V + 153: CH0: 0x0081c4ed = -4.03938V CH1: 0x0081c474 = -4.03944V CH2: 0x0001c484 = +0.05656V CH3: 0x0001c4ca = +0.05660V CH4: 0x0001c4ba = +0.05659V CH5: 0x0001c4db = +0.05661V CH6: 0x0001c4a5 = +0.05658V CH7: 0x0081c4e1 = -4.03939V + 154: CH0: 0x0081c4df = -4.03939V CH1: 0x0001c463 = +0.05655V CH2: 0x0081c490 = -4.03943V CH3: 0x0001c4bd = +0.05659V CH4: 0x0001c495 = +0.05657V CH5: 0x0081c4ea = -4.03939V CH6: 0x0081c497 = -4.03943V CH7: 0x0001c4cb = +0.05660V + 155: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0001c476 = +0.05656V CH2: 0x0001c47c = +0.05656V CH3: 0x0081c4a9 = -4.03942V CH4: 0x0001c49b = +0.05658V CH5: 0x0001c4c9 = +0.05660V CH6: 0x0081c481 = -4.03944V CH7: 0x0001c4ca = +0.05660V + 156: CH0: 0x0001c4c5 = +0.05660V CH1: 0x0081c439 = -4.03947V CH2: 0x0081c462 = -4.03945V CH3: 0x0001c488 = +0.05657V CH4: 0x0001c475 = +0.05656V CH5: 0x0081c493 = -4.03943V CH6: 0x0081c469 = -4.03945V CH7: 0x0001c4bc = +0.05659V + 157: CH0: 0x0001c4ce = +0.05660V CH1: 0x0001c445 = +0.05653V CH2: 0x0001c460 = +0.05655V CH3: 0x0001c486 = +0.05657V CH4: 0x0001c477 = +0.05656V CH5: 0x0081c4c2 = -4.03940V CH6: 0x0001c47b = +0.05656V CH7: 0x0081c4b3 = -4.03941V + 158: CH0: 0x0001c4df = +0.05661V CH1: 0x0081c477 = -4.03944V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0081c49d = -4.03942V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0001c495 = +0.05657V CH7: 0x0081c4b2 = -4.03941V + 159: CH0: 0x0081c4dc = -4.03939V CH1: 0x0081c45b = -4.03946V CH2: 0x0081c46b = -4.03945V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0081c484 = -4.03944V CH5: 0x0081c4d8 = -4.03939V CH6: 0x0001c484 = +0.05656V CH7: 0x0081c4c1 = -4.03941V + 160: CH0: 0x0001c4dd = +0.05661V CH1: 0x0001c47c = +0.05656V CH2: 0x0081c46e = -4.03945V CH3: 0x0001c4ab = +0.05658V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0081c48d = -4.03943V CH7: 0x0001c4d1 = +0.05660V + 161: CH0: 0x0001c4dc = +0.05661V CH1: 0x0081c484 = -4.03944V CH2: 0x0081c480 = -4.03944V CH3: 0x0081c4af = -4.03941V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4ee = +0.05662V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4cf = -4.03940V + 162: CH0: 0x0001c4ed = +0.05662V CH1: 0x0081c4a6 = -4.03942V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0081c48f = -4.03943V CH5: 0x0001c4f3 = +0.05662V CH6: 0x0001c493 = +0.05657V CH7: 0x0001c4dc = +0.05661V + 163: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0001c49c = +0.05658V CH2: 0x0001c497 = +0.05657V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0081c4bd = -4.03941V CH5: 0x0001c4dc = +0.05661V CH6: 0x0081c4ad = -4.03942V CH7: 0x0001c4cb = +0.05660V + 164: CH0: 0x0001c4c2 = +0.05659V CH1: 0x0081c465 = -4.03945V CH2: 0x0081c460 = -4.03945V CH3: 0x0081c49e = -4.03942V CH4: 0x0081c498 = -4.03943V CH5: 0x0001c4be = +0.05659V CH6: 0x0001c481 = +0.05656V CH7: 0x0001c4bc = +0.05659V + 165: CH0: 0x0081c4ce = -4.03940V CH1: 0x0081c48a = -4.03943V CH2: 0x0081c47d = -4.03944V CH3: 0x0001c4bc = +0.05659V CH4: 0x0081c488 = -4.03943V CH5: 0x0001c4cc = +0.05660V CH6: 0x0081c48c = -4.03943V CH7: 0x0081c4c5 = -4.03940V + 166: CH0: 0x0001c4db = +0.05661V CH1: 0x0081c45b = -4.03946V CH2: 0x0081c470 = -4.03944V CH3: 0x0081c489 = -4.03943V CH4: 0x0001c488 = +0.05657V CH5: 0x0081c4c6 = -4.03940V CH6: 0x0001c480 = +0.05656V CH7: 0x0001c4be = +0.05659V + 167: CH0: 0x0081c4dd = -4.03939V CH1: 0x0001c469 = +0.05655V CH2: 0x0001c473 = +0.05656V CH3: 0x0001c496 = +0.05657V CH4: 0x0001c490 = +0.05657V CH5: 0x0081c4d0 = -4.03940V CH6: 0x0081c477 = -4.03944V CH7: 0x0001c4c4 = +0.05660V + 168: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0001c49a = +0.05658V CH2: 0x0081c49f = -4.03942V CH3: 0x0081c4bd = -4.03941V CH4: 0x0001c4a9 = +0.05658V CH5: 0x0081c4da = -4.03939V CH6: 0x0081c49a = -4.03942V CH7: 0x0001c4ce = +0.05660V + 169: CH0: 0x0081c4f3 = -4.03938V CH1: 0x0001c46a = +0.05655V CH2: 0x0001c469 = +0.05655V CH3: 0x0081c48b = -4.03943V CH4: 0x0001c49d = +0.05658V CH5: 0x0081c4c6 = -4.03940V CH6: 0x0001c484 = +0.05656V CH7: 0x0001c4c2 = +0.05659V + 170: CH0: 0x0001c4e9 = +0.05661V CH1: 0x0081c485 = -4.03943V CH2: 0x0001c491 = +0.05657V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0081c4d1 = -4.03940V + 171: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0081c48d = -4.03943V CH2: 0x0001c48c = +0.05657V CH3: 0x0081c4ad = -4.03942V CH4: 0x0001c4a4 = +0.05658V CH5: 0x0081c4ec = -4.03938V CH6: 0x0001c48e = +0.05657V CH7: 0x0081c4d6 = -4.03940V + 172: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0001c482 = +0.05656V CH2: 0x0001c47e = +0.05656V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0081c497 = -4.03943V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0081c488 = -4.03943V CH7: 0x0001c4d7 = +0.05660V + 173: CH0: 0x0081c4f7 = -4.03938V CH1: 0x0001c4a0 = +0.05658V CH2: 0x0001c4a4 = +0.05658V CH3: 0x0001c4f0 = +0.05662V CH4: 0x0081c4ae = -4.03941V CH5: 0x0001c4f5 = +0.05662V CH6: 0x0001c4aa = +0.05658V CH7: 0x0001c4f3 = +0.05662V + 174: CH0: 0x0001c4ea = +0.05661V CH1: 0x0081c467 = -4.03945V CH2: 0x0081c48b = -4.03943V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0081c4ac = -4.03942V CH5: 0x0081c4f2 = -4.03938V CH6: 0x0081c48c = -4.03943V CH7: 0x0001c4e2 = +0.05661V + 175: CH0: 0x0001c4ec = +0.05662V CH1: 0x0001c470 = +0.05655V CH2: 0x0081c483 = -4.03944V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0001c4e8 = +0.05661V CH6: 0x0001c4a1 = +0.05658V CH7: 0x0081c4d3 = -4.03940V + 176: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0001c48a = +0.05657V CH2: 0x0001c47b = +0.05656V CH3: 0x0081c4c0 = -4.03941V CH4: 0x0001c4b0 = +0.05659V CH5: 0x0081c4df = -4.03939V CH6: 0x0081c49f = -4.03942V CH7: 0x0001c4d0 = +0.05660V + 177: CH0: 0x0081c4e5 = -4.03939V CH1: 0x0081c472 = -4.03944V CH2: 0x0001c49a = +0.05658V CH3: 0x0001c4bf = +0.05659V CH4: 0x0001c4ab = +0.05658V CH5: 0x0081c4e3 = -4.03939V CH6: 0x0001c4a6 = +0.05658V CH7: 0x0081c4dc = -4.03939V + 178: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0081c47f = -4.03944V CH2: 0x0001c48a = +0.05657V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0081c499 = -4.03942V CH5: 0x0081c4eb = -4.03938V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4ee = +0.05662V + 179: CH0: 0x0001c4da = +0.05661V CH1: 0x0001c456 = +0.05654V CH2: 0x0081c481 = -4.03944V CH3: 0x0081c4a7 = -4.03942V CH4: 0x0081c483 = -4.03944V CH5: 0x0001c4dd = +0.05661V CH6: 0x0081c47e = -4.03944V CH7: 0x0001c4bb = +0.05659V + 180: CH0: 0x0081c4e1 = -4.03939V CH1: 0x0081c467 = -4.03945V CH2: 0x0081c48e = -4.03943V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0001c495 = +0.05657V CH5: 0x0001c4dd = +0.05661V CH6: 0x0001c48e = +0.05657V CH7: 0x0001c4cd = +0.05660V + 181: CH0: 0x0001c4fa = +0.05662V CH1: 0x0001c490 = +0.05657V CH2: 0x0081c471 = -4.03944V CH3: 0x0081c4be = -4.03941V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0081c485 = -4.03943V CH7: 0x0081c4e6 = -4.03939V + 182: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0001c47a = +0.05656V CH2: 0x0001c478 = +0.05656V CH3: 0x0001c4b9 = +0.05659V CH4: 0x0081c497 = -4.03943V CH5: 0x0001c4ea = +0.05661V CH6: 0x0081c494 = -4.03943V CH7: 0x0081c4cf = -4.03940V + 183: CH0: 0x0081c4e5 = -4.03939V CH1: 0x0001c47a = +0.05656V CH2: 0x0081c470 = -4.03944V CH3: 0x0081c4aa = -4.03942V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0001c4dc = +0.05661V CH6: 0x0001c488 = +0.05657V CH7: 0x0001c4e3 = +0.05661V + 184: CH0: 0x0001c4e9 = +0.05661V CH1: 0x0001c485 = +0.05656V CH2: 0x0001c481 = +0.05656V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0081c49f = -4.03942V CH5: 0x0001c4ca = +0.05660V CH6: 0x0001c49b = +0.05658V CH7: 0x0081c4c7 = -4.03940V + 185: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0081c483 = -4.03944V CH2: 0x0081c47c = -4.03944V CH3: 0x0001c4bb = +0.05659V CH4: 0x0001c49a = +0.05658V CH5: 0x0001c4df = +0.05661V CH6: 0x0001c49a = +0.05658V CH7: 0x0081c4c8 = -4.03940V + 186: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c47b = +0.05656V CH2: 0x0081c48d = -4.03943V CH3: 0x0001c4cc = +0.05660V CH4: 0x0001c4a6 = +0.05658V CH5: 0x0081c4fd = -4.03938V CH6: 0x0001c49b = +0.05658V CH7: 0x0081c4ea = -4.03939V + 187: CH0: 0x0001c4f6 = +0.05662V CH1: 0x0001c479 = +0.05656V CH2: 0x0001c49b = +0.05658V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0001c49d = +0.05658V CH5: 0x0001c4f0 = +0.05662V CH6: 0x0001c49a = +0.05658V CH7: 0x0001c4cf = +0.05660V + 188: CH0: 0x0001c4ec = +0.05662V CH1: 0x0081c47d = -4.03944V CH2: 0x0001c47d = +0.05656V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0081c49a = -4.03942V CH5: 0x0081c4db = -4.03939V CH6: 0x0001c490 = +0.05657V CH7: 0x0001c4dc = +0.05661V + 189: CH0: 0x0081c4f5 = -4.03938V CH1: 0x0081c486 = -4.03943V CH2: 0x0081c490 = -4.03943V CH3: 0x0081c4be = -4.03941V CH4: 0x0001c49f = +0.05658V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4dc = +0.05661V + 190: CH0: 0x0081c4f8 = -4.03938V CH1: 0x0001c4af = +0.05659V CH2: 0x0001c49d = +0.05658V CH3: 0x0001c4d0 = +0.05660V CH4: 0x0001c4b5 = +0.05659V CH5: 0x0001c4f1 = +0.05662V CH6: 0x0081c496 = -4.03943V CH7: 0x0001c4d8 = +0.05661V + 191: CH0: 0x0001c506 = +0.05663V CH1: 0x0081c4a9 = -4.03942V CH2: 0x0081c4aa = -4.03942V CH3: 0x0081c4ec = -4.03938V CH4: 0x0001c4c1 = +0.05659V CH5: 0x0081c50e = -4.03937V CH6: 0x0081c4d2 = -4.03940V CH7: 0x0001c503 = +0.05663V + 192: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0001c496 = +0.05657V CH2: 0x0081c4a6 = -4.03942V CH3: 0x0081c4c1 = -4.03941V CH4: 0x0001c4aa = +0.05658V CH5: 0x0081c4f7 = -4.03938V CH6: 0x0001c4bc = +0.05659V CH7: 0x0001c4e3 = +0.05661V + 193: CH0: 0x0081c50c = -4.03937V CH1: 0x0081c499 = -4.03942V CH2: 0x0001c4a3 = +0.05658V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0081c4af = -4.03941V CH5: 0x0001c4fa = +0.05662V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0081c4d2 = -4.03940V + 194: CH0: 0x0001c4f6 = +0.05662V CH1: 0x0081c48f = -4.03943V CH2: 0x0001c49a = +0.05658V CH3: 0x0081c4d0 = -4.03940V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0081c4f5 = -4.03938V CH6: 0x0001c4aa = +0.05658V CH7: 0x0001c4ec = +0.05662V + 195: CH0: 0x0001c4c4 = +0.05660V CH1: 0x0081c47b = -4.03944V CH2: 0x0001c482 = +0.05656V CH3: 0x0081c498 = -4.03943V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0081c4db = -4.03939V CH6: 0x0081c49c = -4.03942V CH7: 0x0081c4cf = -4.03940V + 196: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0001c459 = +0.05654V CH2: 0x0001c472 = +0.05656V CH3: 0x0081c49f = -4.03942V CH4: 0x0001c492 = +0.05657V CH5: 0x0081c4d4 = -4.03940V CH6: 0x0081c490 = -4.03943V CH7: 0x0001c4bb = +0.05659V + 197: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c479 = -4.03944V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0081c49f = -4.03942V CH5: 0x0081c4d0 = -4.03940V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0001c4cd = +0.05660V + 198: CH0: 0x0081c4e1 = -4.03939V CH1: 0x0001c470 = +0.05655V CH2: 0x0081c47d = -4.03944V CH3: 0x0081c4b5 = -4.03941V CH4: 0x0001c499 = +0.05657V CH5: 0x0081c4da = -4.03939V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0081c4cf = -4.03940V + 199: CH0: 0x0001c4dc = +0.05661V CH1: 0x0001c474 = +0.05656V CH2: 0x0081c475 = -4.03944V CH3: 0x0001c4a9 = +0.05658V CH4: 0x0081c485 = -4.03943V CH5: 0x0081c4d2 = -4.03940V CH6: 0x0081c48b = -4.03943V CH7: 0x0001c4bf = +0.05659V + 200: CH0: 0x0001c4d0 = +0.05660V CH1: 0x0001c47b = +0.05656V CH2: 0x0001c480 = +0.05656V CH3: 0x0001c4bc = +0.05659V CH4: 0x0081c49f = -4.03942V CH5: 0x0001c4d7 = +0.05660V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0001c4c6 = +0.05660V + 201: CH0: 0x0081c4df = -4.03939V CH1: 0x0001c449 = +0.05654V CH2: 0x0081c46d = -4.03945V CH3: 0x0081c4aa = -4.03942V CH4: 0x0001c470 = +0.05655V CH5: 0x0001c4ce = +0.05660V CH6: 0x0001c481 = +0.05656V CH7: 0x0081c4c5 = -4.03940V + 202: CH0: 0x0081c4ec = -4.03938V CH1: 0x0001c47f = +0.05656V CH2: 0x0001c474 = +0.05656V CH3: 0x0081c49f = -4.03942V CH4: 0x0001c49b = +0.05658V CH5: 0x0001c4d9 = +0.05661V CH6: 0x0081c48c = -4.03943V CH7: 0x0001c4bf = +0.05659V + 203: CH0: 0x0081c4de = -4.03939V CH1: 0x0001c46c = +0.05655V CH2: 0x0001c475 = +0.05656V CH3: 0x0001c4af = +0.05659V CH4: 0x0001c499 = +0.05657V CH5: 0x0001c4e0 = +0.05661V CH6: 0x0001c484 = +0.05656V CH7: 0x0001c4cb = +0.05660V + 204: CH0: 0x0081c4d5 = -4.03940V CH1: 0x0001c45f = +0.05655V CH2: 0x0001c474 = +0.05656V CH3: 0x0081c49a = -4.03942V CH4: 0x0081c47e = -4.03944V CH5: 0x0001c4b0 = +0.05659V CH6: 0x0081c472 = -4.03944V CH7: 0x0001c4c9 = +0.05660V + 205: CH0: 0x0081c4d0 = -4.03940V CH1: 0x0001c46c = +0.05655V CH2: 0x0001c472 = +0.05656V CH3: 0x0001c4ab = +0.05658V CH4: 0x0001c48d = +0.05657V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4c7 = -4.03940V + 206: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c46d = +0.05655V CH2: 0x0081c474 = -4.03944V CH3: 0x0081c4b3 = -4.03941V CH4: 0x0001c490 = +0.05657V CH5: 0x0001c4e6 = +0.05661V CH6: 0x0001c481 = +0.05656V CH7: 0x0081c4d2 = -4.03940V + 207: CH0: 0x0001c4fd = +0.05662V CH1: 0x0001c483 = +0.05656V CH2: 0x0001c493 = +0.05657V CH3: 0x0081c4b2 = -4.03941V CH4: 0x0001c4bc = +0.05659V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0081c4ad = -4.03942V CH7: 0x0001c4dd = +0.05661V + 208: CH0: 0x0001c4d4 = +0.05660V CH1: 0x0001c46d = +0.05655V CH2: 0x0081c48e = -4.03943V CH3: 0x0081c4bb = -4.03941V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0081c4e3 = -4.03939V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0001c4ce = +0.05660V + 209: CH0: 0x0081c504 = -4.03937V CH1: 0x0001c489 = +0.05657V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0001c4d2 = +0.05660V CH4: 0x0001c4b1 = +0.05659V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0001c494 = +0.05657V CH7: 0x0001c4d0 = +0.05660V + 210: CH0: 0x0081c511 = -4.03937V CH1: 0x0001c48d = +0.05657V CH2: 0x0081c4a5 = -4.03942V CH3: 0x0001c4d6 = +0.05660V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0081c506 = -4.03937V CH6: 0x0001c49f = +0.05658V CH7: 0x0081c4e1 = -4.03939V + 211: CH0: 0x0001c4ef = +0.05662V CH1: 0x0001c46f = +0.05655V CH2: 0x0081c496 = -4.03943V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0001c48b = +0.05657V CH5: 0x0001c4d3 = +0.05660V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4c9 = +0.05660V + 212: CH0: 0x0001c50c = +0.05663V CH1: 0x0081c487 = -4.03943V CH2: 0x0081c49f = -4.03942V CH3: 0x0001c4cc = +0.05660V CH4: 0x0081c49c = -4.03942V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0081c4a4 = -4.03942V CH7: 0x0081c4d9 = -4.03939V + 213: CH0: 0x0001c4fc = +0.05662V CH1: 0x0001c483 = +0.05656V CH2: 0x0001c486 = +0.05657V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0081c49b = -4.03942V CH7: 0x0001c4d9 = +0.05661V + 214: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0001c47f = +0.05656V CH2: 0x0001c48e = +0.05657V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0001c496 = +0.05657V CH5: 0x0081c4da = -4.03939V CH6: 0x0001c485 = +0.05656V CH7: 0x0001c4d1 = +0.05660V + 215: CH0: 0x0081c4e7 = -4.03939V CH1: 0x0001c490 = +0.05657V CH2: 0x0081c49d = -4.03942V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c496 = -4.03943V CH5: 0x0081c4f8 = -4.03938V CH6: 0x0081c48c = -4.03943V CH7: 0x0081c4e2 = -4.03939V + 216: CH0: 0x0081c4cc = -4.03940V CH1: 0x0001c471 = +0.05656V CH2: 0x0081c478 = -4.03944V CH3: 0x0081c4a0 = -4.03942V CH4: 0x0081c48c = -4.03943V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0001c499 = +0.05657V CH7: 0x0081c4c3 = -4.03940V + 217: CH0: 0x0081c4d4 = -4.03940V CH1: 0x0001c46b = +0.05655V CH2: 0x0081c46e = -4.03945V CH3: 0x0081c4ad = -4.03942V CH4: 0x0001c478 = +0.05656V CH5: 0x0081c4c8 = -4.03940V CH6: 0x0081c492 = -4.03943V CH7: 0x0081c4b9 = -4.03941V + 218: CH0: 0x0081c4dd = -4.03939V CH1: 0x0081c468 = -4.03945V CH2: 0x0081c475 = -4.03944V CH3: 0x0001c49d = +0.05658V CH4: 0x0081c489 = -4.03943V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4bb = -4.03941V + 219: CH0: 0x0001c4ef = +0.05662V CH1: 0x0001c489 = +0.05657V CH2: 0x0001c482 = +0.05656V CH3: 0x0081c4bf = -4.03941V CH4: 0x0001c49e = +0.05658V CH5: 0x0001c4ff = +0.05662V CH6: 0x0001c4ae = +0.05658V CH7: 0x0001c4e1 = +0.05661V + 220: CH0: 0x0001c4e2 = +0.05661V CH1: 0x0001c470 = +0.05655V CH2: 0x0001c468 = +0.05655V CH3: 0x0001c4aa = +0.05658V CH4: 0x0001c498 = +0.05657V CH5: 0x0081c4df = -4.03939V CH6: 0x0081c497 = -4.03943V CH7: 0x0001c4c7 = +0.05660V + 221: CH0: 0x0081c4e3 = -4.03939V CH1: 0x0001c44a = +0.05654V CH2: 0x0001c474 = +0.05656V CH3: 0x0081c494 = -4.03943V CH4: 0x0081c488 = -4.03943V CH5: 0x0081c4af = -4.03941V CH6: 0x0081c476 = -4.03944V CH7: 0x0081c4a7 = -4.03942V + 222: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0081c46c = -4.03945V CH2: 0x0001c479 = +0.05656V CH3: 0x0001c4c3 = +0.05660V CH4: 0x0001c49b = +0.05658V CH5: 0x0081c4d7 = -4.03939V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4c6 = +0.05660V + 223: CH0: 0x0081c4eb = -4.03938V CH1: 0x0001c47d = +0.05656V CH2: 0x0081c49c = -4.03942V CH3: 0x0081c4c4 = -4.03940V CH4: 0x0001c4ac = +0.05658V CH5: 0x0001c4ed = +0.05662V CH6: 0x0081c490 = -4.03943V CH7: 0x0081c4d7 = -4.03939V + 224: CH0: 0x0001c516 = +0.05664V CH1: 0x0081c4af = -4.03941V CH2: 0x0081c4c6 = -4.03940V CH3: 0x0001c4e6 = +0.05661V CH4: 0x0001c4be = +0.05659V CH5: 0x0081c50d = -4.03937V CH6: 0x0001c4b0 = +0.05659V CH7: 0x0001c50e = +0.05663V + 225: CH0: 0x0081c50a = -4.03937V CH1: 0x0081c499 = -4.03942V CH2: 0x0081c49a = -4.03942V CH3: 0x0081c4e6 = -4.03939V CH4: 0x0001c4c3 = +0.05660V CH5: 0x0001c50c = +0.05663V CH6: 0x0001c4b2 = +0.05659V CH7: 0x0081c4f7 = -4.03938V + 226: CH0: 0x0081c4ff = -4.03938V CH1: 0x0081c48b = -4.03943V CH2: 0x0001c4ae = +0.05658V CH3: 0x0081c4d1 = -4.03940V CH4: 0x0081c4b4 = -4.03941V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0081c49f = -4.03942V CH7: 0x0001c4e6 = +0.05661V + 227: CH0: 0x0081c4f3 = -4.03938V CH1: 0x0081c46c = -4.03945V CH2: 0x0081c48e = -4.03943V CH3: 0x0081c4a8 = -4.03942V CH4: 0x0001c494 = +0.05657V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0001c49b = +0.05658V CH7: 0x0081c4d8 = -4.03939V + 228: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c484 = +0.05656V CH2: 0x0081c497 = -4.03943V CH3: 0x0001c4c0 = +0.05659V CH4: 0x0001c4ac = +0.05658V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c49f = +0.05658V CH7: 0x0001c4e1 = +0.05661V + 229: CH0: 0x0001c4fc = +0.05662V CH1: 0x0081c4a1 = -4.03942V CH2: 0x0081c492 = -4.03943V CH3: 0x0001c4d7 = +0.05660V CH4: 0x0001c4bb = +0.05659V CH5: 0x0081c4f3 = -4.03938V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0001c505 = +0.05663V + 230: CH0: 0x0001c4d4 = +0.05660V CH1: 0x0081c44e = -4.03946V CH2: 0x0081c463 = -4.03945V CH3: 0x0001c497 = +0.05657V CH4: 0x0001c48f = +0.05657V CH5: 0x0001c4d3 = +0.05660V CH6: 0x0001c48b = +0.05657V CH7: 0x0081c4ce = -4.03940V + 231: CH0: 0x0081c4db = -4.03939V CH1: 0x0081c47b = -4.03944V CH2: 0x0001c487 = +0.05657V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0081c49e = -4.03942V CH5: 0x0001c4ce = +0.05660V CH6: 0x0081c485 = -4.03943V CH7: 0x0001c4d6 = +0.05660V + 232: CH0: 0x0081c4f5 = -4.03938V CH1: 0x0001c488 = +0.05657V CH2: 0x0001c491 = +0.05657V CH3: 0x0081c4bb = -4.03941V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0001c4df = +0.05661V CH6: 0x0081c48e = -4.03943V CH7: 0x0001c4e0 = +0.05661V + 233: CH0: 0x0081c4c7 = -4.03940V CH1: 0x0001c467 = +0.05655V CH2: 0x0001c471 = +0.05656V CH3: 0x0001c489 = +0.05657V CH4: 0x0081c48c = -4.03943V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0081c476 = -4.03944V CH7: 0x0001c4b2 = +0.05659V + 234: CH0: 0x0081c4bf = -4.03941V CH1: 0x0001c46b = +0.05655V CH2: 0x0001c44a = +0.05654V CH3: 0x0001c499 = +0.05657V CH4: 0x0001c487 = +0.05657V CH5: 0x0001c4bf = +0.05659V CH6: 0x0081c466 = -4.03945V CH7: 0x0081c4b7 = -4.03941V + 235: CH0: 0x0001c4df = +0.05661V CH1: 0x0081c466 = -4.03945V CH2: 0x0081c478 = -4.03944V CH3: 0x0081c4a6 = -4.03942V CH4: 0x0001c48a = +0.05657V CH5: 0x0001c4c6 = +0.05660V CH6: 0x0001c476 = +0.05656V CH7: 0x0081c4c5 = -4.03940V + 236: CH0: 0x0081c4d4 = -4.03940V CH1: 0x0001c469 = +0.05655V CH2: 0x0081c474 = -4.03944V CH3: 0x0001c4a0 = +0.05658V CH4: 0x0081c47a = -4.03944V CH5: 0x0081c4c0 = -4.03941V CH6: 0x0081c465 = -4.03945V CH7: 0x0001c4bc = +0.05659V + 237: CH0: 0x0081c4e7 = -4.03939V CH1: 0x0001c453 = +0.05654V CH2: 0x0001c479 = +0.05656V CH3: 0x0081c4a0 = -4.03942V CH4: 0x0001c48b = +0.05657V CH5: 0x0001c4c3 = +0.05660V CH6: 0x0081c482 = -4.03944V CH7: 0x0081c4c2 = -4.03940V + 238: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0081c475 = -4.03944V CH2: 0x0081c48f = -4.03943V CH3: 0x0081c4aa = -4.03942V CH4: 0x0081c49a = -4.03942V CH5: 0x0081c4e0 = -4.03939V CH6: 0x0001c4a9 = +0.05658V CH7: 0x0081c4d5 = -4.03940V + 239: CH0: 0x0081c4ec = -4.03938V CH1: 0x0001c498 = +0.05657V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0001c4aa = +0.05658V CH5: 0x0001c4e0 = +0.05661V CH6: 0x0001c495 = +0.05657V CH7: 0x0081c4d5 = -4.03940V + 240: CH0: 0x0081c4df = -4.03939V CH1: 0x0081c479 = -4.03944V CH2: 0x0001c484 = +0.05656V CH3: 0x0081c4ae = -4.03941V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0001c4d9 = +0.05661V CH6: 0x0001c48a = +0.05657V CH7: 0x0081c4c0 = -4.03941V + 241: CH0: 0x0081c4c9 = -4.03940V CH1: 0x0081c46d = -4.03945V CH2: 0x0081c463 = -4.03945V CH3: 0x0081c48e = -4.03943V CH4: 0x0081c46b = -4.03945V CH5: 0x0001c4bf = +0.05659V CH6: 0x0081c479 = -4.03944V CH7: 0x0001c4c4 = +0.05660V + 242: CH0: 0x0081c4de = -4.03939V CH1: 0x0001c46f = +0.05655V CH2: 0x0001c484 = +0.05656V CH3: 0x0081c486 = -4.03943V CH4: 0x0081c492 = -4.03943V CH5: 0x0001c4c4 = +0.05660V CH6: 0x0081c47e = -4.03944V CH7: 0x0001c4c8 = +0.05660V + 243: CH0: 0x0081c4dc = -4.03939V CH1: 0x0081c468 = -4.03945V CH2: 0x0081c488 = -4.03943V CH3: 0x0001c4a8 = +0.05658V CH4: 0x0081c49f = -4.03942V CH5: 0x0001c4ea = +0.05661V CH6: 0x0001c498 = +0.05657V CH7: 0x0081c4b9 = -4.03941V + 244: CH0: 0x0001c4e0 = +0.05661V CH1: 0x0001c46d = +0.05655V CH2: 0x0001c48b = +0.05657V CH3: 0x0001c4c0 = +0.05659V CH4: 0x0001c498 = +0.05657V CH5: 0x0001c4e8 = +0.05661V CH6: 0x0081c490 = -4.03943V CH7: 0x0081c4cb = -4.03940V + 245: CH0: 0x0001c4e0 = +0.05661V CH1: 0x0001c452 = +0.05654V CH2: 0x0081c462 = -4.03945V CH3: 0x0001c492 = +0.05657V CH4: 0x0081c47e = -4.03944V CH5: 0x0081c4c7 = -4.03940V CH6: 0x0001c47f = +0.05656V CH7: 0x0001c4b9 = +0.05659V + 246: CH0: 0x0001c4cb = +0.05660V CH1: 0x0081c45c = -4.03945V CH2: 0x0001c45d = +0.05655V CH3: 0x0081c485 = -4.03943V CH4: 0x0001c460 = +0.05655V CH5: 0x0081c4b3 = -4.03941V CH6: 0x0001c475 = +0.05656V CH7: 0x0081c4aa = -4.03942V + 247: CH0: 0x0001c4d0 = +0.05660V CH1: 0x0081c463 = -4.03945V CH2: 0x0081c485 = -4.03943V CH3: 0x0081c497 = -4.03943V CH4: 0x0081c48a = -4.03943V CH5: 0x0081c4c4 = -4.03940V CH6: 0x0001c469 = +0.05655V CH7: 0x0081c4a8 = -4.03942V + 248: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0001c447 = +0.05653V CH2: 0x0081c45b = -4.03946V CH3: 0x0081c487 = -4.03943V CH4: 0x0081c47e = -4.03944V CH5: 0x0001c4ce = +0.05660V CH6: 0x0001c47a = +0.05656V CH7: 0x0001c4aa = +0.05658V + 249: CH0: 0x0001c4be = +0.05659V CH1: 0x0001c45c = +0.05654V CH2: 0x0001c45d = +0.05655V CH3: 0x0001c497 = +0.05657V CH4: 0x0001c474 = +0.05656V CH5: 0x0001c4be = +0.05659V CH6: 0x0001c472 = +0.05656V CH7: 0x0081c4a6 = -4.03942V + 250: CH0: 0x0001c4df = +0.05661V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c48b = -4.03943V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0001c48e = +0.05657V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0081c489 = -4.03943V CH7: 0x0001c4bc = +0.05659V + 251: CH0: 0x0081c4df = -4.03939V CH1: 0x0001c45f = +0.05655V CH2: 0x0081c476 = -4.03944V CH3: 0x0001c4a7 = +0.05658V CH4: 0x0081c483 = -4.03944V CH5: 0x0001c4cd = +0.05660V CH6: 0x0001c485 = +0.05656V CH7: 0x0081c4c2 = -4.03940V + 252: CH0: 0x0081c4dd = -4.03939V CH1: 0x0001c467 = +0.05655V CH2: 0x0081c473 = -4.03944V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0001c497 = +0.05657V CH5: 0x0081c4ce = -4.03940V CH6: 0x0081c482 = -4.03944V CH7: 0x0081c4c9 = -4.03940V + 253: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c487 = +0.05657V CH2: 0x0081c48e = -4.03943V CH3: 0x0081c4bd = -4.03941V CH4: 0x0081c49c = -4.03942V CH5: 0x0001c4fb = +0.05662V CH6: 0x0001c4ad = +0.05658V CH7: 0x0081c4f1 = -4.03938V + 254: CH0: 0x0001c4c5 = +0.05660V CH1: 0x0001c45d = +0.05655V CH2: 0x0081c460 = -4.03945V CH3: 0x0081c4a6 = -4.03942V CH4: 0x0081c492 = -4.03943V CH5: 0x0081c4cc = -4.03940V CH6: 0x0001c493 = +0.05657V CH7: 0x0081c4c2 = -4.03940V + 255: CH0: 0x0001c4ea = +0.05661V CH1: 0x0081c488 = -4.03943V CH2: 0x0081c49f = -4.03942V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0081c4ea = -4.03939V CH6: 0x0081c49f = -4.03942V CH7: 0x0081c4d2 = -4.03940V + 256: CH0: 0x0001c4ec = +0.05662V CH1: 0x0001c473 = +0.05656V CH2: 0x0001c4ac = +0.05658V CH3: 0x0081c4be = -4.03941V CH4: 0x0081c4ad = -4.03942V CH5: 0x0001c4f4 = +0.05662V CH6: 0x0001c48c = +0.05657V CH7: 0x0001c4cf = +0.05660V + 257: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0081c468 = -4.03945V CH2: 0x0001c48d = +0.05657V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0001c4ae = +0.05658V CH5: 0x0081c4e5 = -4.03939V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4d8 = +0.05661V + 258: CH0: 0x0081c518 = -4.03936V CH1: 0x0001c493 = +0.05657V CH2: 0x0001c490 = +0.05657V CH3: 0x0081c4ca = -4.03940V CH4: 0x0081c49f = -4.03942V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0081c4b6 = -4.03941V CH7: 0x0001c4db = +0.05661V + 259: CH0: 0x0081c506 = -4.03937V CH1: 0x0081c492 = -4.03943V CH2: 0x0001c48f = +0.05657V CH3: 0x0001c4d0 = +0.05660V CH4: 0x0001c4bc = +0.05659V CH5: 0x0001c4e6 = +0.05661V CH6: 0x0081c4a3 = -4.03942V CH7: 0x0081c4e3 = -4.03939V + 260: CH0: 0x0001c505 = +0.05663V CH1: 0x0081c495 = -4.03943V CH2: 0x0081c4b1 = -4.03941V CH3: 0x0081c4df = -4.03939V CH4: 0x0081c4b8 = -4.03941V CH5: 0x0081c502 = -4.03937V CH6: 0x0001c4a8 = +0.05658V CH7: 0x0081c4eb = -4.03938V + 261: CH0: 0x0081c500 = -4.03937V CH1: 0x0001c46b = +0.05655V CH2: 0x0001c48a = +0.05657V CH3: 0x0081c4ca = -4.03940V CH4: 0x0081c4a1 = -4.03942V CH5: 0x0001c4d6 = +0.05660V CH6: 0x0001c49c = +0.05658V CH7: 0x0001c4cd = +0.05660V + 262: CH0: 0x0081c4ee = -4.03938V CH1: 0x0081c47c = -4.03944V CH2: 0x0081c47b = -4.03944V CH3: 0x0001c4a9 = +0.05658V CH4: 0x0081c4bb = -4.03941V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0081c4ae = -4.03941V CH7: 0x0081c4da = -4.03939V + 263: CH0: 0x0001c4fd = +0.05662V CH1: 0x0081c4a0 = -4.03942V CH2: 0x0001c49e = +0.05658V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0001c4ae = +0.05658V CH5: 0x0001c4f0 = +0.05662V CH6: 0x0081c4a5 = -4.03942V CH7: 0x0081c4cf = -4.03940V + 264: CH0: 0x0001c50c = +0.05663V CH1: 0x0081c4a1 = -4.03942V CH2: 0x0001c4a9 = +0.05658V CH3: 0x0001c4da = +0.05661V CH4: 0x0081c4bc = -4.03941V CH5: 0x0081c514 = -4.03936V CH6: 0x0081c4c0 = -4.03941V CH7: 0x0001c4fa = +0.05662V + 265: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0081c48a = -4.03943V CH2: 0x0001c489 = +0.05657V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4f5 = +0.05662V CH6: 0x0001c4b1 = +0.05659V CH7: 0x0081c4d4 = -4.03940V + 266: CH0: 0x0081c4fd = -4.03938V CH1: 0x0081c489 = -4.03943V CH2: 0x0001c497 = +0.05657V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0081c4b1 = -4.03941V CH5: 0x0081c4e6 = -4.03939V CH6: 0x0001c49d = +0.05658V CH7: 0x0081c4d8 = -4.03939V + 267: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0001c48b = +0.05657V CH2: 0x0081c490 = -4.03943V CH3: 0x0081c4c2 = -4.03940V CH4: 0x0001c499 = +0.05657V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0081c492 = -4.03943V CH7: 0x0001c4ee = +0.05662V + 268: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0081c475 = -4.03944V CH2: 0x0001c491 = +0.05657V CH3: 0x0081c4b4 = -4.03941V CH4: 0x0081c49f = -4.03942V CH5: 0x0081c4db = -4.03939V CH6: 0x0081c48d = -4.03943V CH7: 0x0001c4db = +0.05661V + 269: CH0: 0x0081c4ec = -4.03938V CH1: 0x0001c45e = +0.05655V CH2: 0x0001c47f = +0.05656V CH3: 0x0001c4aa = +0.05658V CH4: 0x0001c48d = +0.05657V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0001c48a = +0.05657V CH7: 0x0081c4cc = -4.03940V + 270: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0001c466 = +0.05655V CH2: 0x0001c46d = +0.05655V CH3: 0x0081c4a0 = -4.03942V CH4: 0x0001c486 = +0.05657V CH5: 0x0081c4cf = -4.03940V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4b4 = -4.03941V + 271: CH0: 0x0001c508 = +0.05663V CH1: 0x0001c485 = +0.05656V CH2: 0x0001c4a8 = +0.05658V CH3: 0x0081c4d3 = -4.03940V CH4: 0x0001c4cf = +0.05660V CH5: 0x0001c4fd = +0.05662V CH6: 0x0001c4ae = +0.05658V CH7: 0x0001c4e4 = +0.05661V + 272: CH0: 0x0001c4eb = +0.05661V CH1: 0x0081c480 = -4.03944V CH2: 0x0001c477 = +0.05656V CH3: 0x0001c4a6 = +0.05658V CH4: 0x0001c498 = +0.05657V CH5: 0x0001c4d1 = +0.05660V CH6: 0x0081c49f = -4.03942V CH7: 0x0001c4ce = +0.05660V + 273: CH0: 0x0001c4e1 = +0.05661V CH1: 0x0081c476 = -4.03944V CH2: 0x0081c46c = -4.03945V CH3: 0x0001c4a1 = +0.05658V CH4: 0x0081c497 = -4.03943V CH5: 0x0081c4c8 = -4.03940V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4c5 = +0.05660V + 274: CH0: 0x0001c4ef = +0.05662V CH1: 0x0081c462 = -4.03945V CH2: 0x0001c47c = +0.05656V CH3: 0x0081c4a3 = -4.03942V CH4: 0x0081c49f = -4.03942V CH5: 0x0081c4d8 = -4.03939V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4bf = +0.05659V + 275: CH0: 0x0001c4d5 = +0.05660V CH1: 0x0001c46b = +0.05655V CH2: 0x0081c486 = -4.03943V CH3: 0x0001c4a4 = +0.05658V CH4: 0x0001c494 = +0.05657V CH5: 0x0001c4da = +0.05661V CH6: 0x0081c49e = -4.03942V CH7: 0x0001c4c8 = +0.05660V + 276: CH0: 0x0081c4cf = -4.03940V CH1: 0x0081c455 = -4.03946V CH2: 0x0001c47a = +0.05656V CH3: 0x0081c4a7 = -4.03942V CH4: 0x0001c497 = +0.05657V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0001c489 = +0.05657V CH7: 0x0081c4c0 = -4.03941V + 277: CH0: 0x0001c4c6 = +0.05660V CH1: 0x0001c465 = +0.05655V CH2: 0x0001c451 = +0.05654V CH3: 0x0001c484 = +0.05656V CH4: 0x0081c474 = -4.03944V CH5: 0x0001c4b2 = +0.05659V CH6: 0x0001c473 = +0.05656V CH7: 0x0001c49c = +0.05658V + 278: CH0: 0x0081c4ef = -4.03938V CH1: 0x0081c48d = -4.03943V CH2: 0x0001c48e = +0.05657V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0001c493 = +0.05657V CH5: 0x0081c4e9 = -4.03939V CH6: 0x0081c499 = -4.03942V CH7: 0x0081c4dc = -4.03939V + 279: CH0: 0x0001c4df = +0.05661V CH1: 0x0001c468 = +0.05655V CH2: 0x0081c475 = -4.03944V CH3: 0x0001c4b1 = +0.05659V CH4: 0x0081c49c = -4.03942V CH5: 0x0081c4dd = -4.03939V CH6: 0x0081c485 = -4.03943V CH7: 0x0001c4d7 = +0.05660V + 280: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0001c460 = +0.05655V CH2: 0x0001c45e = +0.05655V CH3: 0x0001c4a3 = +0.05658V CH4: 0x0081c47b = -4.03944V CH5: 0x0001c4d1 = +0.05660V CH6: 0x0081c488 = -4.03943V CH7: 0x0001c4be = +0.05659V + 281: CH0: 0x0001c4db = +0.05661V CH1: 0x0081c45d = -4.03945V CH2: 0x0001c47f = +0.05656V CH3: 0x0001c4b9 = +0.05659V CH4: 0x0001c485 = +0.05656V CH5: 0x0081c4cb = -4.03940V CH6: 0x0001c48f = +0.05657V CH7: 0x0001c4cc = +0.05660V + 282: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0081c472 = -4.03944V CH2: 0x0001c489 = +0.05657V CH3: 0x0081c4cb = -4.03940V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0081c4dc = -4.03939V + 283: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0081c45e = -4.03945V CH2: 0x0001c47f = +0.05656V CH3: 0x0001c4a1 = +0.05658V CH4: 0x0081c48e = -4.03943V CH5: 0x0081c4da = -4.03939V CH6: 0x0001c49f = +0.05658V CH7: 0x0001c4d4 = +0.05660V + 284: CH0: 0x0081c4c9 = -4.03940V CH1: 0x0001c459 = +0.05654V CH2: 0x0001c473 = +0.05656V CH3: 0x0081c48e = -4.03943V CH4: 0x0081c476 = -4.03944V CH5: 0x0081c4c2 = -4.03940V CH6: 0x0001c483 = +0.05656V CH7: 0x0081c4b9 = -4.03941V + 285: CH0: 0x0081c4f3 = -4.03938V CH1: 0x0081c47d = -4.03944V CH2: 0x0081c491 = -4.03943V CH3: 0x0081c4cc = -4.03940V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0001c4a0 = +0.05658V CH7: 0x0081c4dc = -4.03939V + 286: CH0: 0x0001c4d8 = +0.05661V CH1: 0x0081c466 = -4.03945V CH2: 0x0001c481 = +0.05656V CH3: 0x0081c4be = -4.03941V CH4: 0x0001c4a5 = +0.05658V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0081c498 = -4.03943V CH7: 0x0001c4cf = +0.05660V + 287: CH0: 0x0001c4e4 = +0.05661V CH1: 0x0001c480 = +0.05656V CH2: 0x0081c487 = -4.03943V CH3: 0x0001c4b7 = +0.05659V CH4: 0x0081c493 = -4.03943V CH5: 0x0081c4ee = -4.03938V CH6: 0x0081c49c = -4.03942V CH7: 0x0001c4cd = +0.05660V + 288: CH0: 0x0001c50c = +0.05663V CH1: 0x0081c484 = -4.03944V CH2: 0x0001c493 = +0.05657V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0081c4ac = -4.03942V CH5: 0x0001c4de = +0.05661V CH6: 0x0081c49d = -4.03942V CH7: 0x0081c4da = -4.03939V + 289: CH0: 0x0001c4e1 = +0.05661V CH1: 0x0081c479 = -4.03944V CH2: 0x0081c473 = -4.03944V CH3: 0x0081c499 = -4.03942V CH4: 0x0001c48e = +0.05657V CH5: 0x0081c4de = -4.03939V CH6: 0x0081c49d = -4.03942V CH7: 0x0081c4c2 = -4.03940V + 290: CH0: 0x0001c4b9 = +0.05659V CH1: 0x0081c453 = -4.03946V CH2: 0x0081c451 = -4.03946V CH3: 0x0081c492 = -4.03943V CH4: 0x0081c45e = -4.03945V CH5: 0x0081c4b3 = -4.03941V CH6: 0x0081c46d = -4.03945V CH7: 0x0081c4ad = -4.03942V + 291: CH0: 0x0081c4d9 = -4.03939V CH1: 0x0081c44b = -4.03946V CH2: 0x0001c471 = +0.05656V CH3: 0x0081c4ad = -4.03942V CH4: 0x0001c474 = +0.05656V CH5: 0x0081c4b5 = -4.03941V CH6: 0x0001c480 = +0.05656V CH7: 0x0001c4b0 = +0.05659V + 292: CH0: 0x0001c50d = +0.05663V CH1: 0x0081c48f = -4.03943V CH2: 0x0001c4ad = +0.05658V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0001c4a9 = +0.05658V CH5: 0x0001c4e8 = +0.05661V CH6: 0x0081c4ba = -4.03941V CH7: 0x0001c4de = +0.05661V + 293: CH0: 0x0001c4d4 = +0.05660V CH1: 0x0081c46b = -4.03945V CH2: 0x0001c488 = +0.05657V CH3: 0x0081c4a8 = -4.03942V CH4: 0x0001c498 = +0.05657V CH5: 0x0081c4dc = -4.03939V CH6: 0x0001c48e = +0.05657V CH7: 0x0081c4d6 = -4.03940V + 294: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0081c467 = -4.03945V CH2: 0x0001c46c = +0.05655V CH3: 0x0001c49e = +0.05658V CH4: 0x0081c47a = -4.03944V CH5: 0x0001c4cf = +0.05660V CH6: 0x0081c47f = -4.03944V CH7: 0x0001c4b1 = +0.05659V + 295: CH0: 0x0001c505 = +0.05663V CH1: 0x0001c487 = +0.05657V CH2: 0x0001c48a = +0.05657V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0001c4a2 = +0.05658V CH5: 0x0001c4f3 = +0.05662V CH6: 0x0001c497 = +0.05657V CH7: 0x0001c4e3 = +0.05661V + 296: CH0: 0x0081c4e2 = -4.03939V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c48a = -4.03943V CH3: 0x0081c4ad = -4.03942V CH4: 0x0001c491 = +0.05657V CH5: 0x0001c4ee = +0.05662V CH6: 0x0081c48f = -4.03943V CH7: 0x0081c4d7 = -4.03939V + 297: CH0: 0x0081c4eb = -4.03938V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c48a = -4.03943V CH3: 0x0001c4aa = +0.05658V CH4: 0x0001c499 = +0.05657V CH5: 0x0001c4ce = +0.05660V CH6: 0x0081c497 = -4.03943V CH7: 0x0001c4c2 = +0.05659V + 298: CH0: 0x0001c4e9 = +0.05661V CH1: 0x0001c469 = +0.05655V CH2: 0x0081c489 = -4.03943V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0081c4af = -4.03941V CH5: 0x0001c4f4 = +0.05662V CH6: 0x0081c4aa = -4.03942V CH7: 0x0081c4f1 = -4.03938V + 299: CH0: 0x0081c4d6 = -4.03940V CH1: 0x0001c46b = +0.05655V CH2: 0x0001c475 = +0.05656V CH3: 0x0081c4af = -4.03941V CH4: 0x0081c48b = -4.03943V CH5: 0x0081c4c6 = -4.03940V CH6: 0x0081c481 = -4.03944V CH7: 0x0081c4ba = -4.03941V + 300: CH0: 0x0001c505 = +0.05663V CH1: 0x0081c475 = -4.03944V CH2: 0x0001c49e = +0.05658V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0081c4ad = -4.03942V CH5: 0x0081c4df = -4.03939V CH6: 0x0081c4b7 = -4.03941V CH7: 0x0001c4ca = +0.05660V + 301: CH0: 0x0081c4ee = -4.03938V CH1: 0x0001c473 = +0.05656V CH2: 0x0001c4a9 = +0.05658V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0001c497 = +0.05657V CH5: 0x0081c4f2 = -4.03938V CH6: 0x0081c4a3 = -4.03942V CH7: 0x0001c4d4 = +0.05660V + 302: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0081c485 = -4.03943V CH2: 0x0001c487 = +0.05657V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4ef = +0.05662V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4cf = -4.03940V + 303: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0081c483 = -4.03944V CH2: 0x0001c466 = +0.05655V CH3: 0x0081c4a4 = -4.03942V CH4: 0x0081c4a3 = -4.03942V CH5: 0x0001c4f5 = +0.05662V CH6: 0x0001c4a8 = +0.05658V CH7: 0x0001c4cf = +0.05660V + 304: CH0: 0x0081c4d6 = -4.03940V CH1: 0x0001c484 = +0.05656V CH2: 0x0001c47a = +0.05656V CH3: 0x0081c49f = -4.03942V CH4: 0x0001c47e = +0.05656V CH5: 0x0081c4c9 = -4.03940V CH6: 0x0001c46e = +0.05655V CH7: 0x0001c4b4 = +0.05659V + 305: CH0: 0x0001c509 = +0.05663V CH1: 0x0081c483 = -4.03944V CH2: 0x0001c49f = +0.05658V CH3: 0x0001c4d5 = +0.05660V CH4: 0x0001c4ae = +0.05658V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0081c49d = -4.03942V CH7: 0x0001c4f1 = +0.05662V + 306: CH0: 0x0001c4de = +0.05661V CH1: 0x0001c46d = +0.05655V CH2: 0x0001c47d = +0.05656V CH3: 0x0081c4ab = -4.03942V CH4: 0x0081c49c = -4.03942V CH5: 0x0001c4c5 = +0.05660V CH6: 0x0081c47f = -4.03944V CH7: 0x0081c4cd = -4.03940V + 307: CH0: 0x0081c4dd = -4.03939V CH1: 0x0001c466 = +0.05655V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4bd = -4.03941V CH4: 0x0081c4aa = -4.03942V CH5: 0x0001c4d3 = +0.05660V CH6: 0x0001c482 = +0.05656V CH7: 0x0081c4c5 = -4.03940V + 308: CH0: 0x0001c4e5 = +0.05661V CH1: 0x0001c469 = +0.05655V CH2: 0x0001c48b = +0.05657V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c49c = -4.03942V CH5: 0x0001c4d3 = +0.05660V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4d3 = +0.05660V + 309: CH0: 0x0001c4c9 = +0.05660V CH1: 0x0001c480 = +0.05656V CH2: 0x0081c486 = -4.03943V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0081c498 = -4.03943V CH5: 0x0001c4e0 = +0.05661V CH6: 0x0001c47c = +0.05656V CH7: 0x0001c4c1 = +0.05659V + 310: CH0: 0x0081c4db = -4.03939V CH1: 0x0081c474 = -4.03944V CH2: 0x0001c480 = +0.05656V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0001c4ef = +0.05662V CH6: 0x0081c496 = -4.03943V CH7: 0x0001c4d0 = +0.05660V + 311: CH0: 0x0081c4d6 = -4.03940V CH1: 0x0001c466 = +0.05655V CH2: 0x0081c476 = -4.03944V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0001c47e = +0.05656V CH5: 0x0001c4cc = +0.05660V CH6: 0x0081c474 = -4.03944V CH7: 0x0081c4c8 = -4.03940V + 312: CH0: 0x0001c4e9 = +0.05661V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c479 = -4.03944V CH3: 0x0081c4d8 = -4.03939V CH4: 0x0001c497 = +0.05657V CH5: 0x0081c50d = -4.03937V CH6: 0x0001c4a0 = +0.05658V CH7: 0x0081c4e3 = -4.03939V + 313: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0001c487 = +0.05657V CH2: 0x0081c483 = -4.03944V CH3: 0x0001c4b2 = +0.05659V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0081c4a1 = -4.03942V CH7: 0x0081c4d4 = -4.03940V + 314: CH0: 0x0081c50d = -4.03937V CH1: 0x0001c491 = +0.05657V CH2: 0x0001c4aa = +0.05658V CH3: 0x0081c4c0 = -4.03941V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0001c4ed = +0.05662V CH6: 0x0081c4a4 = -4.03942V CH7: 0x0081c4d8 = -4.03939V + 315: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0001c478 = +0.05656V CH2: 0x0081c48c = -4.03943V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0001c4a4 = +0.05658V CH5: 0x0081c4f6 = -4.03938V CH6: 0x0081c4ac = -4.03942V CH7: 0x0001c4d3 = +0.05660V + 316: CH0: 0x0081c4ca = -4.03940V CH1: 0x0081c454 = -4.03946V CH2: 0x0001c473 = +0.05656V CH3: 0x0081c497 = -4.03943V CH4: 0x0081c49d = -4.03942V CH5: 0x0001c4bf = +0.05659V CH6: 0x0001c488 = +0.05657V CH7: 0x0001c4b4 = +0.05659V + 317: CH0: 0x0001c4fa = +0.05662V CH1: 0x0001c46e = +0.05655V CH2: 0x0081c484 = -4.03944V CH3: 0x0081c4b3 = -4.03941V CH4: 0x0081c4b0 = -4.03941V CH5: 0x0001c4e3 = +0.05661V CH6: 0x0001c49b = +0.05658V CH7: 0x0001c4cc = +0.05660V + 318: CH0: 0x0081c4dc = -4.03939V CH1: 0x0081c46f = -4.03945V CH2: 0x0081c480 = -4.03944V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0001c496 = +0.05657V CH5: 0x0081c4e0 = -4.03939V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4d2 = -4.03940V + 319: CH0: 0x0001c4ee = +0.05662V CH1: 0x0081c46f = -4.03945V CH2: 0x0081c472 = -4.03944V CH3: 0x0081c4cb = -4.03940V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4cd = +0.05660V CH6: 0x0001c488 = +0.05657V CH7: 0x0001c4dd = +0.05661V + 320: CH0: 0x0001c4ec = +0.05662V CH1: 0x0081c469 = -4.03945V CH2: 0x0081c481 = -4.03944V CH3: 0x0001c4cc = +0.05660V CH4: 0x0001c4b0 = +0.05659V CH5: 0x0081c4e3 = -4.03939V CH6: 0x0001c493 = +0.05657V CH7: 0x0001c4d6 = +0.05660V + 321: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0001c46a = +0.05655V CH2: 0x0081c49a = -4.03942V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0001c49d = +0.05658V CH5: 0x0081c4e1 = -4.03939V CH6: 0x0081c4a5 = -4.03942V CH7: 0x0001c4bd = +0.05659V + 322: CH0: 0x0001c4fa = +0.05662V CH1: 0x0081c48b = -4.03943V CH2: 0x0001c496 = +0.05657V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0081c498 = -4.03943V CH7: 0x0081c4d2 = -4.03940V + 323: CH0: 0x0081c4d2 = -4.03940V CH1: 0x0081c459 = -4.03946V CH2: 0x0081c466 = -4.03945V CH3: 0x0081c49a = -4.03942V CH4: 0x0081c48d = -4.03943V CH5: 0x0001c4c1 = +0.05659V CH6: 0x0081c471 = -4.03944V CH7: 0x0001c4c4 = +0.05660V + 324: CH0: 0x0001c4d8 = +0.05661V CH1: 0x0081c457 = -4.03946V CH2: 0x0001c477 = +0.05656V CH3: 0x0001c498 = +0.05657V CH4: 0x0001c488 = +0.05657V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0001c478 = +0.05656V CH7: 0x0001c4b1 = +0.05659V + 325: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0081c484 = -4.03944V CH2: 0x0081c490 = -4.03943V CH3: 0x0081c4bd = -4.03941V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0081c4f6 = -4.03938V CH6: 0x0081c497 = -4.03943V CH7: 0x0001c4cd = +0.05660V + 326: CH0: 0x0081c4e7 = -4.03939V CH1: 0x0081c46f = -4.03945V CH2: 0x0001c467 = +0.05655V CH3: 0x0081c494 = -4.03943V CH4: 0x0001c48e = +0.05657V CH5: 0x0001c4bf = +0.05659V CH6: 0x0081c48e = -4.03943V CH7: 0x0081c4c5 = -4.03940V + 327: CH0: 0x0081c4ed = -4.03938V CH1: 0x0081c479 = -4.03944V CH2: 0x0001c48a = +0.05657V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0081c481 = -4.03944V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0081c49c = -4.03942V CH7: 0x0001c4da = +0.05661V + 328: CH0: 0x0081c4d2 = -4.03940V CH1: 0x0081c475 = -4.03944V CH2: 0x0081c46c = -4.03945V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0081c487 = -4.03943V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0081c491 = -4.03943V CH7: 0x0081c4ba = -4.03941V + 329: CH0: 0x0001c4ff = +0.05662V CH1: 0x0001c47d = +0.05656V CH2: 0x0001c48f = +0.05657V CH3: 0x0081c4b3 = -4.03941V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0001c4df = +0.05661V CH6: 0x0001c490 = +0.05657V CH7: 0x0001c4de = +0.05661V + 330: CH0: 0x0081c508 = -4.03937V CH1: 0x0081c481 = -4.03944V CH2: 0x0081c4a6 = -4.03942V CH3: 0x0081c4c9 = -4.03940V CH4: 0x0081c4ad = -4.03942V CH5: 0x0081c514 = -4.03936V CH6: 0x0001c4ac = +0.05658V CH7: 0x0081c50f = -4.03937V + 331: CH0: 0x0001c4e2 = +0.05661V CH1: 0x0081c488 = -4.03943V CH2: 0x0001c471 = +0.05656V CH3: 0x0081c49c = -4.03942V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0001c4d5 = +0.05660V CH6: 0x0001c48e = +0.05657V CH7: 0x0081c4d4 = -4.03940V + 332: CH0: 0x0081c50e = -4.03937V CH1: 0x0001c495 = +0.05657V CH2: 0x0001c4b2 = +0.05659V CH3: 0x0081c4c4 = -4.03940V CH4: 0x0081c4c1 = -4.03941V CH5: 0x0081c4ec = -4.03938V CH6: 0x0081c4a6 = -4.03942V CH7: 0x0081c4f3 = -4.03938V + 333: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c474 = +0.05656V CH2: 0x0081c496 = -4.03943V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0001c4ac = +0.05658V CH5: 0x0081c4df = -4.03939V CH6: 0x0001c490 = +0.05657V CH7: 0x0001c4bf = +0.05659V + 334: CH0: 0x0001c4de = +0.05661V CH1: 0x0001c48b = +0.05657V CH2: 0x0081c479 = -4.03944V CH3: 0x0081c4ae = -4.03941V CH4: 0x0001c48e = +0.05657V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0001c495 = +0.05657V CH7: 0x0001c4bf = +0.05659V + 335: CH0: 0x0081c504 = -4.03937V CH1: 0x0081c483 = -4.03944V CH2: 0x0081c47e = -4.03944V CH3: 0x0081c4d1 = -4.03940V CH4: 0x0081c4a1 = -4.03942V CH5: 0x0001c4ee = +0.05662V CH6: 0x0001c4bd = +0.05659V CH7: 0x0001c4ee = +0.05662V + 336: CH0: 0x0081c4ef = -4.03938V CH1: 0x0001c47c = +0.05656V CH2: 0x0001c480 = +0.05656V CH3: 0x0081c4b2 = -4.03941V CH4: 0x0081c490 = -4.03943V CH5: 0x0001c4e3 = +0.05661V CH6: 0x0081c490 = -4.03943V CH7: 0x0001c4cd = +0.05660V + 337: CH0: 0x0001c4ed = +0.05662V CH1: 0x0081c481 = -4.03944V CH2: 0x0081c48d = -4.03943V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0001c494 = +0.05657V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0001c48e = +0.05657V CH7: 0x0081c4e8 = -4.03939V + 338: CH0: 0x0081c4fe = -4.03938V CH1: 0x0081c46b = -4.03945V CH2: 0x0001c48e = +0.05657V CH3: 0x0081c4bf = -4.03941V CH4: 0x0001c4ad = +0.05658V CH5: 0x0081c4d9 = -4.03939V CH6: 0x0081c4a3 = -4.03942V CH7: 0x0081c4ed = -4.03938V + 339: CH0: 0x0081c509 = -4.03937V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c495 = -4.03943V CH3: 0x0001c4ce = +0.05660V CH4: 0x0001c4a4 = +0.05658V CH5: 0x0001c503 = +0.05663V CH6: 0x0001c4ad = +0.05658V CH7: 0x0081c4e4 = -4.03939V + 340: CH0: 0x0001c4f5 = +0.05662V CH1: 0x0001c472 = +0.05656V CH2: 0x0001c47d = +0.05656V CH3: 0x0001c4ce = +0.05660V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0001c4df = +0.05661V CH6: 0x0001c498 = +0.05657V CH7: 0x0001c4e8 = +0.05661V + 341: CH0: 0x0081c501 = -4.03937V CH1: 0x0081c47c = -4.03944V CH2: 0x0081c496 = -4.03943V CH3: 0x0001c4cc = +0.05660V CH4: 0x0081c4aa = -4.03942V CH5: 0x0081c4f2 = -4.03938V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0081c4ea = -4.03939V + 342: CH0: 0x0081c4fe = -4.03938V CH1: 0x0081c47b = -4.03944V CH2: 0x0081c494 = -4.03943V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0001c4f7 = +0.05662V CH6: 0x0001c4ad = +0.05658V CH7: 0x0001c4e0 = +0.05661V + 343: CH0: 0x0081c4d2 = -4.03940V CH1: 0x0001c45c = +0.05654V CH2: 0x0001c46a = +0.05655V CH3: 0x0081c4a0 = -4.03942V CH4: 0x0081c48f = -4.03943V CH5: 0x0001c4be = +0.05659V CH6: 0x0001c482 = +0.05656V CH7: 0x0001c4bb = +0.05659V + 344: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0081c479 = -4.03944V CH2: 0x0081c479 = -4.03944V CH3: 0x0081c4aa = -4.03942V CH4: 0x0081c48f = -4.03943V CH5: 0x0001c4ca = +0.05660V CH6: 0x0001c49b = +0.05658V CH7: 0x0001c4c3 = +0.05660V + 345: CH0: 0x0081c4da = -4.03939V CH1: 0x0081c46b = -4.03945V CH2: 0x0081c47a = -4.03944V CH3: 0x0081c4a0 = -4.03942V CH4: 0x0081c49b = -4.03942V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0001c498 = +0.05657V CH7: 0x0081c4c7 = -4.03940V + 346: CH0: 0x0081c4d3 = -4.03940V CH1: 0x0081c46a = -4.03945V CH2: 0x0001c467 = +0.05655V CH3: 0x0081c4a1 = -4.03942V CH4: 0x0001c480 = +0.05656V CH5: 0x0081c4d9 = -4.03939V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4c3 = -4.03940V + 347: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0081c480 = -4.03944V CH2: 0x0001c47a = +0.05656V CH3: 0x0081c4b2 = -4.03941V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0001c4df = +0.05661V CH6: 0x0001c4a0 = +0.05658V CH7: 0x0081c4e6 = -4.03939V + 348: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0081c454 = -4.03946V CH2: 0x0001c46d = +0.05655V CH3: 0x0081c49d = -4.03942V CH4: 0x0081c496 = -4.03943V CH5: 0x0081c4dd = -4.03939V CH6: 0x0081c47d = -4.03944V CH7: 0x0081c4c0 = -4.03941V + 349: CH0: 0x0081c4cf = -4.03940V CH1: 0x0001c462 = +0.05655V CH2: 0x0001c46b = +0.05655V CH3: 0x0081c4a5 = -4.03942V CH4: 0x0081c48b = -4.03943V CH5: 0x0001c4c4 = +0.05660V CH6: 0x0081c48a = -4.03943V CH7: 0x0001c4bd = +0.05659V + 350: CH0: 0x0001c4c8 = +0.05660V CH1: 0x0001c464 = +0.05655V CH2: 0x0081c483 = -4.03944V CH3: 0x0081c499 = -4.03942V CH4: 0x0081c486 = -4.03943V CH5: 0x0001c4c2 = +0.05659V CH6: 0x0081c47a = -4.03944V CH7: 0x0081c4ba = -4.03941V + 351: CH0: 0x0081c4f9 = -4.03938V CH1: 0x0081c480 = -4.03944V CH2: 0x0001c47f = +0.05656V CH3: 0x0081c4b5 = -4.03941V CH4: 0x0001c495 = +0.05657V CH5: 0x0081c4e9 = -4.03939V CH6: 0x0001c489 = +0.05657V CH7: 0x0001c4c8 = +0.05660V + 352: CH0: 0x0001c507 = +0.05663V CH1: 0x0081c491 = -4.03943V CH2: 0x0001c48d = +0.05657V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0081c4f6 = -4.03938V CH6: 0x0001c4a6 = +0.05658V CH7: 0x0081c4ef = -4.03938V + 353: CH0: 0x0001c4e0 = +0.05661V CH1: 0x0001c45c = +0.05654V CH2: 0x0001c471 = +0.05656V CH3: 0x0081c4a8 = -4.03942V CH4: 0x0001c496 = +0.05657V CH5: 0x0001c4cc = +0.05660V CH6: 0x0001c476 = +0.05656V CH7: 0x0001c4c1 = +0.05659V + 354: CH0: 0x0001c4dd = +0.05661V CH1: 0x0081c478 = -4.03944V CH2: 0x0001c475 = +0.05656V CH3: 0x0001c4b3 = +0.05659V CH4: 0x0081c4a1 = -4.03942V CH5: 0x0081c4db = -4.03939V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4d4 = +0.05660V + 355: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0081c485 = -4.03943V CH2: 0x0001c494 = +0.05657V CH3: 0x0081c4b5 = -4.03941V CH4: 0x0081c497 = -4.03943V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0001c495 = +0.05657V CH7: 0x0081c4d6 = -4.03940V + 356: CH0: 0x0081c513 = -4.03937V CH1: 0x0081c483 = -4.03944V CH2: 0x0001c48d = +0.05657V CH3: 0x0001c4bc = +0.05659V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0001c4e0 = +0.05661V CH6: 0x0001c49d = +0.05658V CH7: 0x0001c4d2 = +0.05660V + 357: CH0: 0x0081c510 = -4.03937V CH1: 0x0001c485 = +0.05656V CH2: 0x0001c49b = +0.05658V CH3: 0x0081c4c9 = -4.03940V CH4: 0x0081c4b9 = -4.03941V CH5: 0x0001c503 = +0.05663V CH6: 0x0081c4b1 = -4.03941V CH7: 0x0001c4ea = +0.05661V + 358: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0081c47d = -4.03944V CH2: 0x0001c488 = +0.05657V CH3: 0x0081c4aa = -4.03942V CH4: 0x0081c4a9 = -4.03942V CH5: 0x0001c4df = +0.05661V CH6: 0x0001c49f = +0.05658V CH7: 0x0001c4d7 = +0.05660V + 359: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0081c468 = -4.03945V CH2: 0x0001c47b = +0.05656V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c4b6 = +0.05659V CH5: 0x0081c4db = -4.03939V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4dc = +0.05661V + 360: CH0: 0x0001c4ee = +0.05662V CH1: 0x0001c473 = +0.05656V CH2: 0x0001c487 = +0.05657V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0081c498 = -4.03943V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4e0 = +0.05661V + 361: CH0: 0x0001c4ee = +0.05662V CH1: 0x0081c485 = -4.03943V CH2: 0x0001c48a = +0.05657V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0081c498 = -4.03943V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0081c49a = -4.03942V CH7: 0x0001c4c6 = +0.05660V + 362: CH0: 0x0001c508 = +0.05663V CH1: 0x0081c490 = -4.03943V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4ca = -4.03940V CH4: 0x0081c4b3 = -4.03941V CH5: 0x0001c4ed = +0.05662V CH6: 0x0001c4b5 = +0.05659V CH7: 0x0081c4d0 = -4.03940V + 363: CH0: 0x0001c508 = +0.05663V CH1: 0x0001c493 = +0.05657V CH2: 0x0001c483 = +0.05656V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0081c4cf = -4.03940V CH6: 0x0001c494 = +0.05657V CH7: 0x0081c4e0 = -4.03939V + 364: CH0: 0x0001c4e0 = +0.05661V CH1: 0x0081c480 = -4.03944V CH2: 0x0001c496 = +0.05657V CH3: 0x0081c4be = -4.03941V CH4: 0x0081c499 = -4.03942V CH5: 0x0001c4e6 = +0.05661V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4d5 = +0.05660V + 365: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0081c48a = -4.03943V CH2: 0x0081c485 = -4.03943V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0081c499 = -4.03942V CH5: 0x0081c4df = -4.03939V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0081c4f1 = -4.03938V + 366: CH0: 0x0001c4da = +0.05661V CH1: 0x0081c471 = -4.03944V CH2: 0x0081c476 = -4.03944V CH3: 0x0081c49d = -4.03942V CH4: 0x0081c487 = -4.03943V CH5: 0x0081c4b6 = -4.03941V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4d1 = -4.03940V + 367: CH0: 0x0081c4cb = -4.03940V CH1: 0x0001c474 = +0.05656V CH2: 0x0081c484 = -4.03944V CH3: 0x0081c4a2 = -4.03942V CH4: 0x0001c496 = +0.05657V CH5: 0x0081c4cc = -4.03940V CH6: 0x0001c471 = +0.05656V CH7: 0x0081c4b0 = -4.03941V + 368: CH0: 0x0001c4f6 = +0.05662V CH1: 0x0001c49a = +0.05658V CH2: 0x0081c493 = -4.03943V CH3: 0x0001c4ba = +0.05659V CH4: 0x0081c4be = -4.03941V CH5: 0x0081c4ef = -4.03938V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0001c4e7 = +0.05661V + 369: CH0: 0x0001c507 = +0.05663V CH1: 0x0001c492 = +0.05657V CH2: 0x0081c497 = -4.03943V CH3: 0x0001c4d0 = +0.05660V CH4: 0x0001c4b0 = +0.05659V CH5: 0x0001c4fb = +0.05662V CH6: 0x0001c4b8 = +0.05659V CH7: 0x0081c4eb = -4.03938V + 370: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0081c479 = -4.03944V CH2: 0x0081c48e = -4.03943V CH3: 0x0081c4ad = -4.03942V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0081c4e3 = -4.03939V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4dc = +0.05661V + 371: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c488 = -4.03943V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0081c4cf = -4.03940V CH6: 0x0081c48e = -4.03943V CH7: 0x0001c4df = +0.05661V + 372: CH0: 0x0081c4ff = -4.03938V CH1: 0x0001c479 = +0.05656V CH2: 0x0001c48c = +0.05657V CH3: 0x0001c4a2 = +0.05658V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0081c49c = -4.03942V CH7: 0x0081c4e0 = -4.03939V + 373: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0081c456 = -4.03946V CH2: 0x0001c484 = +0.05656V CH3: 0x0001c4a5 = +0.05658V CH4: 0x0001c496 = +0.05657V CH5: 0x0081c4b9 = -4.03941V CH6: 0x0081c483 = -4.03944V CH7: 0x0001c4d9 = +0.05661V + 374: CH0: 0x0001c4e9 = +0.05661V CH1: 0x0081c468 = -4.03945V CH2: 0x0081c481 = -4.03944V CH3: 0x0081c4bf = -4.03941V CH4: 0x0081c48c = -4.03943V CH5: 0x0081c4c5 = -4.03940V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4d0 = +0.05660V + 375: CH0: 0x0081c4dc = -4.03939V CH1: 0x0001c459 = +0.05654V CH2: 0x0081c489 = -4.03943V CH3: 0x0001c4a5 = +0.05658V CH4: 0x0001c496 = +0.05657V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0081c493 = -4.03943V CH7: 0x0081c4bd = -4.03941V + 376: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0081c459 = -4.03946V CH2: 0x0001c488 = +0.05657V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0081c48f = -4.03943V CH5: 0x0001c4d7 = +0.05660V CH6: 0x0081c46f = -4.03945V CH7: 0x0081c4c1 = -4.03941V + 377: CH0: 0x0081c504 = -4.03937V CH1: 0x0081c482 = -4.03944V CH2: 0x0001c48f = +0.05657V CH3: 0x0081c4ba = -4.03941V CH4: 0x0081c4ae = -4.03941V CH5: 0x0001c4ef = +0.05662V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0001c4ef = +0.05662V + 378: CH0: 0x0081c4d8 = -4.03939V CH1: 0x0001c45d = +0.05655V CH2: 0x0081c47c = -4.03944V CH3: 0x0001c4a3 = +0.05658V CH4: 0x0081c493 = -4.03943V CH5: 0x0001c4e7 = +0.05661V CH6: 0x0001c487 = +0.05657V CH7: 0x0001c4c3 = +0.05660V + 379: CH0: 0x0001c4d6 = +0.05660V CH1: 0x0081c463 = -4.03945V CH2: 0x0081c476 = -4.03944V CH3: 0x0001c4a2 = +0.05658V CH4: 0x0081c487 = -4.03943V CH5: 0x0081c4d8 = -4.03939V CH6: 0x0001c486 = +0.05657V CH7: 0x0081c4a8 = -4.03942V + 380: CH0: 0x0001c4c3 = +0.05660V CH1: 0x0001c45e = +0.05655V CH2: 0x0081c473 = -4.03944V CH3: 0x0001c491 = +0.05657V CH4: 0x0001c472 = +0.05656V CH5: 0x0001c4c6 = +0.05660V CH6: 0x0001c470 = +0.05655V CH7: 0x0001c4c8 = +0.05660V + 381: CH0: 0x0081c4df = -4.03939V CH1: 0x0001c478 = +0.05656V CH2: 0x0081c471 = -4.03944V CH3: 0x0001c4a7 = +0.05658V CH4: 0x0081c478 = -4.03944V CH5: 0x0081c4c0 = -4.03941V CH6: 0x0001c479 = +0.05656V CH7: 0x0081c4d1 = -4.03940V + 382: CH0: 0x0081c4f9 = -4.03938V CH1: 0x0081c493 = -4.03943V CH2: 0x0001c475 = +0.05656V CH3: 0x0001c4b9 = +0.05659V CH4: 0x0081c4a9 = -4.03942V CH5: 0x0001c4da = +0.05661V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0081c4cb = -4.03940V + 383: CH0: 0x0001c4e6 = +0.05661V CH1: 0x0081c46d = -4.03945V CH2: 0x0001c47c = +0.05656V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0001c493 = +0.05657V CH5: 0x0081c4e1 = -4.03939V CH6: 0x0081c48a = -4.03943V CH7: 0x0001c4cb = +0.05660V + 384: CH0: 0x0081c507 = -4.03937V CH1: 0x0001c490 = +0.05657V CH2: 0x0081c49c = -4.03942V CH3: 0x0081c4bf = -4.03941V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4f0 = +0.05662V CH6: 0x0081c49e = -4.03942V CH7: 0x0001c4e8 = +0.05661V + 385: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0001c4c7 = +0.05660V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0081c4f1 = -4.03938V CH6: 0x0001c497 = +0.05657V CH7: 0x0081c4e3 = -4.03939V + 386: CH0: 0x0001c4fb = +0.05662V CH1: 0x0001c47c = +0.05656V CH2: 0x0081c496 = -4.03943V CH3: 0x0081c4cb = -4.03940V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0081c4a1 = -4.03942V CH7: 0x0081c4d9 = -4.03939V + 387: CH0: 0x0081c51a = -4.03936V CH1: 0x0081c499 = -4.03942V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0001c4cb = +0.05660V CH4: 0x0081c4c2 = -4.03940V CH5: 0x0081c504 = -4.03937V CH6: 0x0081c4b5 = -4.03941V CH7: 0x0001c4ea = +0.05661V + 388: CH0: 0x0001c515 = +0.05664V CH1: 0x0081c49a = -4.03942V CH2: 0x0081c4b4 = -4.03941V CH3: 0x0001c4df = +0.05661V CH4: 0x0081c4a8 = -4.03942V CH5: 0x0081c50b = -4.03937V CH6: 0x0001c4b3 = +0.05659V CH7: 0x0001c4f8 = +0.05662V + 389: CH0: 0x0001c4d5 = +0.05660V CH1: 0x0001c489 = +0.05657V CH2: 0x0001c478 = +0.05656V CH3: 0x0081c4bd = -4.03941V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0081c480 = -4.03944V CH7: 0x0001c4cb = +0.05660V + 390: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c491 = +0.05657V CH2: 0x0081c489 = -4.03943V CH3: 0x0081c4bd = -4.03941V CH4: 0x0001c4b6 = +0.05659V CH5: 0x0001c4de = +0.05661V CH6: 0x0081c4a8 = -4.03942V CH7: 0x0001c4e0 = +0.05661V + 391: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0001c48d = +0.05657V CH2: 0x0001c4a4 = +0.05658V CH3: 0x0081c4ca = -4.03940V CH4: 0x0081c4b3 = -4.03941V CH5: 0x0081c4db = -4.03939V CH6: 0x0001c4b2 = +0.05659V CH7: 0x0001c4ee = +0.05662V + 392: CH0: 0x0001c4c3 = +0.05660V CH1: 0x0001c463 = +0.05655V CH2: 0x0081c479 = -4.03944V CH3: 0x0001c49c = +0.05658V CH4: 0x0081c496 = -4.03943V CH5: 0x0081c4ca = -4.03940V CH6: 0x0081c477 = -4.03944V CH7: 0x0001c4be = +0.05659V + 393: CH0: 0x0081c50f = -4.03937V CH1: 0x0001c489 = +0.05657V CH2: 0x0081c4af = -4.03941V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0081c4b9 = -4.03941V CH5: 0x0001c504 = +0.05663V CH6: 0x0081c4ab = -4.03942V CH7: 0x0001c4f4 = +0.05662V + 394: CH0: 0x0081c517 = -4.03936V CH1: 0x0001c49e = +0.05658V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0081c4d5 = -4.03940V CH4: 0x0081c4cb = -4.03940V CH5: 0x0081c50c = -4.03937V CH6: 0x0081c4a5 = -4.03942V CH7: 0x0081c4f7 = -4.03938V + 395: CH0: 0x0081c4fd = -4.03938V CH1: 0x0001c48f = +0.05657V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4bf = -4.03941V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0001c50b = +0.05663V CH6: 0x0081c4a1 = -4.03942V CH7: 0x0001c4e7 = +0.05661V + 396: CH0: 0x0001c503 = +0.05663V CH1: 0x0081c488 = -4.03943V CH2: 0x0001c48a = +0.05657V CH3: 0x0001c4b4 = +0.05659V CH4: 0x0001c4a1 = +0.05658V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0081c49b = -4.03942V CH7: 0x0081c4e3 = -4.03939V + 397: CH0: 0x0001c4fe = +0.05662V CH1: 0x0001c483 = +0.05656V CH2: 0x0081c473 = -4.03944V CH3: 0x0001c4c1 = +0.05659V CH4: 0x0081c495 = -4.03943V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0001c4ad = +0.05658V CH7: 0x0081c4d7 = -4.03939V + 398: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c46f = +0.05655V CH2: 0x0081c487 = -4.03943V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0001c496 = +0.05657V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0001c4a5 = +0.05658V CH7: 0x0001c4db = +0.05661V + 399: CH0: 0x0001c500 = +0.05663V CH1: 0x0081c487 = -4.03943V CH2: 0x0001c49a = +0.05658V CH3: 0x0001c4ac = +0.05658V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4f2 = +0.05662V CH6: 0x0081c488 = -4.03943V CH7: 0x0081c4f0 = -4.03938V + 400: CH0: 0x0081c505 = -4.03937V CH1: 0x0001c4a7 = +0.05658V CH2: 0x0001c4a8 = +0.05658V CH3: 0x0001c4bb = +0.05659V CH4: 0x0001c4c4 = +0.05660V CH5: 0x0001c500 = +0.05663V CH6: 0x0001c4b6 = +0.05659V CH7: 0x0081c4f8 = -4.03938V + 401: CH0: 0x0081c4e1 = -4.03939V CH1: 0x0001c46a = +0.05655V CH2: 0x0001c482 = +0.05656V CH3: 0x0001c4a3 = +0.05658V CH4: 0x0001c4b3 = +0.05659V CH5: 0x0081c4ce = -4.03940V CH6: 0x0081c494 = -4.03943V CH7: 0x0001c4ba = +0.05659V + 402: CH0: 0x0001c4ea = +0.05661V CH1: 0x0081c47e = -4.03944V CH2: 0x0001c47c = +0.05656V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0081c4a8 = -4.03942V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4d5 = +0.05660V + 403: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0001c490 = +0.05657V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0081c4e2 = -4.03939V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0001c504 = +0.05663V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0081c4df = -4.03939V + 404: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0001c470 = +0.05655V CH2: 0x0081c49b = -4.03942V CH3: 0x0081c4c3 = -4.03940V CH4: 0x0001c49a = +0.05658V CH5: 0x0081c4e8 = -4.03939V CH6: 0x0001c49d = +0.05658V CH7: 0x0081c4e5 = -4.03939V + 405: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0001c488 = +0.05657V CH2: 0x0001c489 = +0.05657V CH3: 0x0081c4b2 = -4.03941V CH4: 0x0001c4b3 = +0.05659V CH5: 0x0081c4ef = -4.03938V CH6: 0x0081c493 = -4.03943V CH7: 0x0001c4ea = +0.05661V + 406: CH0: 0x0001c4fa = +0.05662V CH1: 0x0001c484 = +0.05656V CH2: 0x0001c487 = +0.05657V CH3: 0x0081c4d5 = -4.03940V CH4: 0x0081c4ac = -4.03942V CH5: 0x0001c4f8 = +0.05662V CH6: 0x0081c49d = -4.03942V CH7: 0x0001c4d1 = +0.05660V + 407: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0081c46c = -4.03945V CH2: 0x0001c468 = +0.05655V CH3: 0x0081c4b4 = -4.03941V CH4: 0x0001c484 = +0.05656V CH5: 0x0001c4db = +0.05661V CH6: 0x0081c499 = -4.03942V CH7: 0x0081c4d0 = -4.03940V + 408: CH0: 0x0001c4da = +0.05661V CH1: 0x0001c462 = +0.05655V CH2: 0x0001c47f = +0.05656V CH3: 0x0001c4a9 = +0.05658V CH4: 0x0081c48a = -4.03943V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0081c48f = -4.03943V CH7: 0x0081c4c5 = -4.03940V + 409: CH0: 0x0081c516 = -4.03936V CH1: 0x0001c46f = +0.05655V CH2: 0x0001c4b1 = +0.05659V CH3: 0x0001c4de = +0.05661V CH4: 0x0081c4ad = -4.03942V CH5: 0x0081c4f9 = -4.03938V CH6: 0x0081c4b4 = -4.03941V CH7: 0x0001c4e1 = +0.05661V + 410: CH0: 0x0081c4f1 = -4.03938V CH1: 0x0081c47d = -4.03944V CH2: 0x0001c492 = +0.05657V CH3: 0x0081c4cb = -4.03940V CH4: 0x0001c49e = +0.05658V CH5: 0x0001c4dc = +0.05661V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0001c4cc = +0.05660V + 411: CH0: 0x0081c4cf = -4.03940V CH1: 0x0081c46f = -4.03945V CH2: 0x0081c499 = -4.03942V CH3: 0x0001c4b2 = +0.05659V CH4: 0x0001c482 = +0.05656V CH5: 0x0001c4c9 = +0.05660V CH6: 0x0001c489 = +0.05657V CH7: 0x0081c4db = -4.03939V + 412: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0081c46d = -4.03945V CH2: 0x0081c47f = -4.03944V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0001c49d = +0.05658V CH5: 0x0081c4d8 = -4.03939V CH6: 0x0001c482 = +0.05656V CH7: 0x0081c4d3 = -4.03940V + 413: CH0: 0x0081c4fc = -4.03938V CH1: 0x0001c46f = +0.05655V CH2: 0x0001c485 = +0.05656V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0081c4a8 = -4.03942V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0001c493 = +0.05657V CH7: 0x0001c4b5 = +0.05659V + 414: CH0: 0x0001c4e6 = +0.05661V CH1: 0x0081c46d = -4.03945V CH2: 0x0081c484 = -4.03944V CH3: 0x0081c4b4 = -4.03941V CH4: 0x0001c499 = +0.05657V CH5: 0x0001c4dc = +0.05661V CH6: 0x0081c491 = -4.03943V CH7: 0x0001c4c4 = +0.05660V + 415: CH0: 0x0081c4d3 = -4.03940V CH1: 0x0001c474 = +0.05656V CH2: 0x0081c46c = -4.03945V CH3: 0x0001c4a5 = +0.05658V CH4: 0x0081c497 = -4.03943V CH5: 0x0001c4d3 = +0.05660V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4b3 = +0.05659V + 416: CH0: 0x0001c4dd = +0.05661V CH1: 0x0001c46a = +0.05655V CH2: 0x0001c49b = +0.05658V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0081c49f = -4.03942V CH5: 0x0001c4d7 = +0.05660V CH6: 0x0001c4a5 = +0.05658V CH7: 0x0081c4d6 = -4.03940V + 417: CH0: 0x0001c4df = +0.05661V CH1: 0x0081c45c = -4.03945V CH2: 0x0001c460 = +0.05655V CH3: 0x0081c49b = -4.03942V CH4: 0x0001c497 = +0.05657V CH5: 0x0001c4d2 = +0.05660V CH6: 0x0081c47d = -4.03944V CH7: 0x0001c4b5 = +0.05659V + 418: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0081c462 = -4.03945V CH2: 0x0081c46b = -4.03945V CH3: 0x0001c4a3 = +0.05658V CH4: 0x0081c48a = -4.03943V CH5: 0x0001c4be = +0.05659V CH6: 0x0081c469 = -4.03945V CH7: 0x0001c4ac = +0.05658V + 419: CH0: 0x0001c4f3 = +0.05662V CH1: 0x0001c47f = +0.05656V CH2: 0x0081c498 = -4.03943V CH3: 0x0001c4d1 = +0.05660V CH4: 0x0081c4ad = -4.03942V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0001c48f = +0.05657V CH7: 0x0001c4e8 = +0.05661V + 420: CH0: 0x0001c4fd = +0.05662V CH1: 0x0001c4a3 = +0.05658V CH2: 0x0081c4a6 = -4.03942V CH3: 0x0081c4cb = -4.03940V CH4: 0x0001c4bd = +0.05659V CH5: 0x0001c4f8 = +0.05662V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0081c4dd = -4.03939V + 421: CH0: 0x0001c51b = +0.05664V CH1: 0x0001c4a0 = +0.05658V CH2: 0x0001c4b5 = +0.05659V CH3: 0x0001c4e0 = +0.05661V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0001c4fd = +0.05662V CH6: 0x0001c4a7 = +0.05658V CH7: 0x0001c4fa = +0.05662V + 422: CH0: 0x0001c4fe = +0.05662V CH1: 0x0081c483 = -4.03944V CH2: 0x0001c484 = +0.05656V CH3: 0x0001c4cf = +0.05660V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c4a7 = +0.05658V CH7: 0x0081c4e1 = -4.03939V + 423: CH0: 0x0081c4d1 = -4.03940V CH1: 0x0001c489 = +0.05657V CH2: 0x0081c491 = -4.03943V CH3: 0x0001c4be = +0.05659V CH4: 0x0001c49f = +0.05658V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4bf = +0.05659V + 424: CH0: 0x0081c4f4 = -4.03938V CH1: 0x0001c469 = +0.05655V CH2: 0x0001c485 = +0.05656V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0001c488 = +0.05657V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0001c48b = +0.05657V CH7: 0x0001c4ea = +0.05661V + 425: CH0: 0x0081c505 = -4.03937V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c4a0 = -4.03942V CH3: 0x0001c4a3 = +0.05658V CH4: 0x0001c487 = +0.05657V CH5: 0x0001c4e7 = +0.05661V CH6: 0x0081c4a4 = -4.03942V CH7: 0x0001c4ea = +0.05661V + 426: CH0: 0x0081c4f9 = -4.03938V CH1: 0x0001c49a = +0.05658V CH2: 0x0081c4ab = -4.03942V CH3: 0x0001c4c7 = +0.05660V CH4: 0x0001c4ad = +0.05658V CH5: 0x0081c4f8 = -4.03938V CH6: 0x0081c4aa = -4.03942V CH7: 0x0001c4e2 = +0.05661V + 427: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0001c468 = +0.05655V CH2: 0x0081c48f = -4.03943V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0001c4a9 = +0.05658V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0081c495 = -4.03943V CH7: 0x0081c4d3 = -4.03940V + 428: CH0: 0x0081c4c8 = -4.03940V CH1: 0x0001c46f = +0.05655V CH2: 0x0081c48a = -4.03943V CH3: 0x0081c4aa = -4.03942V CH4: 0x0001c497 = +0.05657V CH5: 0x0001c4d7 = +0.05660V CH6: 0x0001c477 = +0.05656V CH7: 0x0001c4c0 = +0.05659V + 429: CH0: 0x0081c4eb = -4.03938V CH1: 0x0081c479 = -4.03944V CH2: 0x0081c494 = -4.03943V CH3: 0x0081c4c5 = -4.03940V CH4: 0x0081c4aa = -4.03942V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0081c49e = -4.03942V CH7: 0x0001c4dc = +0.05661V + 430: CH0: 0x0001c50a = +0.05663V CH1: 0x0081c4a7 = -4.03942V CH2: 0x0001c4c9 = +0.05660V CH3: 0x0001c4d1 = +0.05660V CH4: 0x0081c4d6 = -4.03940V CH5: 0x0001c4fb = +0.05662V CH6: 0x0001c4c0 = +0.05659V CH7: 0x0001c4ef = +0.05662V + 431: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c489 = +0.05657V CH2: 0x0081c4a0 = -4.03942V CH3: 0x0081c4af = -4.03941V CH4: 0x0001c4b1 = +0.05659V CH5: 0x0081c4f3 = -4.03938V CH6: 0x0001c4aa = +0.05658V CH7: 0x0001c4d3 = +0.05660V + 432: CH0: 0x0001c4e0 = +0.05661V CH1: 0x0001c46c = +0.05655V CH2: 0x0081c47d = -4.03944V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0001c489 = +0.05657V CH5: 0x0001c4d6 = +0.05660V CH6: 0x0081c492 = -4.03943V CH7: 0x0001c4dc = +0.05661V + 433: CH0: 0x0001c4ca = +0.05660V CH1: 0x0001c465 = +0.05655V CH2: 0x0081c469 = -4.03945V CH3: 0x0081c4ab = -4.03942V CH4: 0x0001c482 = +0.05656V CH5: 0x0001c4c1 = +0.05659V CH6: 0x0081c48a = -4.03943V CH7: 0x0001c4d0 = +0.05660V + 434: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0081c460 = -4.03945V CH2: 0x0001c478 = +0.05656V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0001c492 = +0.05657V CH5: 0x0001c4df = +0.05661V CH6: 0x0081c49b = -4.03942V CH7: 0x0081c4ba = -4.03941V + 435: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0081c466 = -4.03945V CH2: 0x0081c478 = -4.03944V CH3: 0x0001c4aa = +0.05658V CH4: 0x0081c48b = -4.03943V CH5: 0x0081c4e8 = -4.03939V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4ae = +0.05658V + 436: CH0: 0x0081c4e3 = -4.03939V CH1: 0x0001c464 = +0.05655V CH2: 0x0081c482 = -4.03944V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0081c48c = -4.03943V CH5: 0x0081c4e5 = -4.03939V CH6: 0x0001c49a = +0.05658V CH7: 0x0081c4c8 = -4.03940V + 437: CH0: 0x0081c4ff = -4.03938V CH1: 0x0081c49a = -4.03942V CH2: 0x0001c4a0 = +0.05658V CH3: 0x0081c4c2 = -4.03940V CH4: 0x0001c4ad = +0.05658V CH5: 0x0001c4f0 = +0.05662V CH6: 0x0001c494 = +0.05657V CH7: 0x0081c4e7 = -4.03939V + 438: CH0: 0x0081c4de = -4.03939V CH1: 0x0001c46e = +0.05655V CH2: 0x0081c467 = -4.03945V CH3: 0x0081c4a5 = -4.03942V CH4: 0x0001c493 = +0.05657V CH5: 0x0081c4bc = -4.03941V CH6: 0x0001c45c = +0.05654V CH7: 0x0081c4ad = -4.03942V + 439: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0081c472 = -4.03944V CH2: 0x0001c47d = +0.05656V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c4a8 = -4.03942V CH5: 0x0081c4f1 = -4.03938V CH6: 0x0081c480 = -4.03944V CH7: 0x0001c4d3 = +0.05660V + 440: CH0: 0x0001c4fc = +0.05662V CH1: 0x0081c484 = -4.03944V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4ba = -4.03941V CH4: 0x0001c494 = +0.05657V CH5: 0x0081c4f7 = -4.03938V CH6: 0x0081c497 = -4.03943V CH7: 0x0001c4ed = +0.05662V + 441: CH0: 0x0001c4f6 = +0.05662V CH1: 0x0081c482 = -4.03944V CH2: 0x0001c489 = +0.05657V CH3: 0x0001c4ba = +0.05659V CH4: 0x0001c4aa = +0.05658V CH5: 0x0001c4db = +0.05661V CH6: 0x0081c48f = -4.03943V CH7: 0x0081c4d9 = -4.03939V + 442: CH0: 0x0001c4cd = +0.05660V CH1: 0x0001c473 = +0.05656V CH2: 0x0001c45d = +0.05655V CH3: 0x0001c4a2 = +0.05658V CH4: 0x0081c49c = -4.03942V CH5: 0x0081c4e1 = -4.03939V CH6: 0x0081c47c = -4.03944V CH7: 0x0001c4ca = +0.05660V + 443: CH0: 0x0081c4de = -4.03939V CH1: 0x0081c453 = -4.03946V CH2: 0x0081c453 = -4.03946V CH3: 0x0001c494 = +0.05657V CH4: 0x0081c479 = -4.03944V CH5: 0x0001c4c3 = +0.05660V CH6: 0x0081c47a = -4.03944V CH7: 0x0001c4bd = +0.05659V + 444: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0081c47c = -4.03944V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4b7 = +0.05659V CH4: 0x0081c4aa = -4.03942V CH5: 0x0081c4dd = -4.03939V CH6: 0x0001c48c = +0.05657V CH7: 0x0081c4d8 = -4.03939V + 445: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0081c473 = -4.03944V CH2: 0x0081c46b = -4.03945V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0081c492 = -4.03943V CH5: 0x0001c4cd = +0.05660V CH6: 0x0001c487 = +0.05657V CH7: 0x0001c4cc = +0.05660V + 446: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0081c480 = -4.03944V CH2: 0x0081c474 = -4.03944V CH3: 0x0081c4a1 = -4.03942V CH4: 0x0081c48d = -4.03943V CH5: 0x0081c4d4 = -4.03940V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4c4 = -4.03940V + 447: CH0: 0x0081c4bd = -4.03941V CH1: 0x0081c471 = -4.03944V CH2: 0x0001c471 = +0.05656V CH3: 0x0081c488 = -4.03943V CH4: 0x0001c479 = +0.05656V CH5: 0x0081c4c6 = -4.03940V CH6: 0x0001c477 = +0.05656V CH7: 0x0001c4a9 = +0.05658V + 448: CH0: 0x0081c4ea = -4.03939V CH1: 0x0001c472 = +0.05656V CH2: 0x0001c486 = +0.05657V CH3: 0x0001c4ab = +0.05658V CH4: 0x0081c497 = -4.03943V CH5: 0x0081c4d1 = -4.03940V CH6: 0x0081c48e = -4.03943V CH7: 0x0001c4c5 = +0.05660V + 449: CH0: 0x0001c4cc = +0.05660V CH1: 0x0081c472 = -4.03944V CH2: 0x0001c47a = +0.05656V CH3: 0x0081c4a8 = -4.03942V CH4: 0x0081c498 = -4.03943V CH5: 0x0081c4d4 = -4.03940V CH6: 0x0081c486 = -4.03943V CH7: 0x0001c4cd = +0.05660V + 450: CH0: 0x0081c4af = -4.03941V CH1: 0x0081c449 = -4.03946V CH2: 0x0001c453 = +0.05654V CH3: 0x0001c487 = +0.05657V CH4: 0x0081c46f = -4.03945V CH5: 0x0081c4a9 = -4.03942V CH6: 0x0001c45a = +0.05654V CH7: 0x0081c4a3 = -4.03942V + 451: CH0: 0x0081c4ca = -4.03940V CH1: 0x0001c463 = +0.05655V CH2: 0x0081c461 = -4.03945V CH3: 0x0001c48f = +0.05657V CH4: 0x0081c486 = -4.03943V CH5: 0x0001c4b2 = +0.05659V CH6: 0x0001c47a = +0.05656V CH7: 0x0001c4ae = +0.05658V + 452: CH0: 0x0001c4db = +0.05661V CH1: 0x0001c464 = +0.05655V CH2: 0x0081c460 = -4.03945V CH3: 0x0081c4ad = -4.03942V CH4: 0x0001c486 = +0.05657V CH5: 0x0081c4c1 = -4.03941V CH6: 0x0001c481 = +0.05656V CH7: 0x0081c4b0 = -4.03941V + 453: CH0: 0x0081c4d4 = -4.03940V CH1: 0x0081c465 = -4.03945V CH2: 0x0081c46f = -4.03945V CH3: 0x0001c4ac = +0.05658V CH4: 0x0001c478 = +0.05656V CH5: 0x0001c4e8 = +0.05661V CH6: 0x0081c48e = -4.03943V CH7: 0x0001c4ce = +0.05660V + 454: CH0: 0x0081c4c3 = -4.03940V CH1: 0x0081c46e = -4.03945V CH2: 0x0081c47c = -4.03944V CH3: 0x0001c4ac = +0.05658V CH4: 0x0081c486 = -4.03943V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0001c4c9 = +0.05660V + 455: CH0: 0x0081c4f9 = -4.03938V CH1: 0x0081c477 = -4.03944V CH2: 0x0081c48a = -4.03943V CH3: 0x0001c4bf = +0.05659V CH4: 0x0001c4a6 = +0.05658V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0001c49f = +0.05658V CH7: 0x0081c4d0 = -4.03940V + 456: CH0: 0x0001c4fe = +0.05662V CH1: 0x0081c48e = -4.03943V CH2: 0x0081c49d = -4.03942V CH3: 0x0001c4d1 = +0.05660V CH4: 0x0001c4aa = +0.05658V CH5: 0x0001c4e7 = +0.05661V CH6: 0x0001c4aa = +0.05658V CH7: 0x0081c4ee = -4.03938V + 457: CH0: 0x0081c50e = -4.03937V CH1: 0x0081c48d = -4.03943V CH2: 0x0081c49c = -4.03942V CH3: 0x0081c4bb = -4.03941V CH4: 0x0081c4b0 = -4.03941V CH5: 0x0081c4e1 = -4.03939V CH6: 0x0081c4a4 = -4.03942V CH7: 0x0001c4d7 = +0.05660V + 458: CH0: 0x0081c4f1 = -4.03938V CH1: 0x0001c486 = +0.05657V CH2: 0x0081c47f = -4.03944V CH3: 0x0001c4aa = +0.05658V CH4: 0x0001c498 = +0.05657V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0081c498 = -4.03943V CH7: 0x0001c4c7 = +0.05660V + 459: CH0: 0x0081c502 = -4.03937V CH1: 0x0001c48c = +0.05657V CH2: 0x0001c497 = +0.05657V CH3: 0x0081c4d9 = -4.03939V CH4: 0x0081c4b9 = -4.03941V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0081c4bc = -4.03941V CH7: 0x0081c4e0 = -4.03939V + 460: CH0: 0x0001c50f = +0.05663V CH1: 0x0001c490 = +0.05657V CH2: 0x0081c4a9 = -4.03942V CH3: 0x0001c4b9 = +0.05659V CH4: 0x0081c4b9 = -4.03941V CH5: 0x0001c4e6 = +0.05661V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0001c4e5 = +0.05661V + 461: CH0: 0x0081c4f7 = -4.03938V CH1: 0x0001c49c = +0.05658V CH2: 0x0001c4ab = +0.05658V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0081c4ec = -4.03938V CH6: 0x0081c491 = -4.03943V CH7: 0x0001c4e9 = +0.05661V + 462: CH0: 0x0001c50b = +0.05663V CH1: 0x0081c48e = -4.03943V CH2: 0x0081c4b5 = -4.03941V CH3: 0x0081c4dc = -4.03939V CH4: 0x0081c4cb = -4.03940V CH5: 0x0081c4f4 = -4.03938V CH6: 0x0001c4c2 = +0.05659V CH7: 0x0081c4f7 = -4.03938V + 463: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0081c478 = -4.03944V CH2: 0x0001c488 = +0.05657V CH3: 0x0001c4a8 = +0.05658V CH4: 0x0001c482 = +0.05656V CH5: 0x0081c4d7 = -4.03939V CH6: 0x0081c48a = -4.03943V CH7: 0x0001c4c6 = +0.05660V + 464: CH0: 0x0001c4e2 = +0.05661V CH1: 0x0081c480 = -4.03944V CH2: 0x0001c485 = +0.05656V CH3: 0x0001c4be = +0.05659V CH4: 0x0001c48b = +0.05657V CH5: 0x0001c4dd = +0.05661V CH6: 0x0081c48e = -4.03943V CH7: 0x0081c4cb = -4.03940V + 465: CH0: 0x0081c4fa = -4.03938V CH1: 0x0081c474 = -4.03944V CH2: 0x0081c48f = -4.03943V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0081c4b1 = -4.03941V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0081c4b9 = -4.03941V CH7: 0x0001c4de = +0.05661V + 466: CH0: 0x0081c4ed = -4.03938V CH1: 0x0001c45e = +0.05655V CH2: 0x0081c47b = -4.03944V CH3: 0x0081c4a5 = -4.03942V CH4: 0x0001c4a4 = +0.05658V CH5: 0x0001c4c5 = +0.05660V CH6: 0x0081c491 = -4.03943V CH7: 0x0081c4c6 = -4.03940V + 467: CH0: 0x0081c4d8 = -4.03939V CH1: 0x0001c46e = +0.05655V CH2: 0x0001c484 = +0.05656V CH3: 0x0081c4a8 = -4.03942V CH4: 0x0081c496 = -4.03943V CH5: 0x0001c4c0 = +0.05659V CH6: 0x0001c487 = +0.05657V CH7: 0x0081c4c8 = -4.03940V + 468: CH0: 0x0001c4fb = +0.05662V CH1: 0x0081c48a = -4.03943V CH2: 0x0081c49b = -4.03942V CH3: 0x0001c4bf = +0.05659V CH4: 0x0081c49d = -4.03942V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0001c496 = +0.05657V CH7: 0x0081c4e3 = -4.03939V + 469: CH0: 0x0081c501 = -4.03937V CH1: 0x0081c48c = -4.03943V CH2: 0x0001c4a0 = +0.05658V CH3: 0x0001c4be = +0.05659V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0001c507 = +0.05663V CH6: 0x0081c4ab = -4.03942V CH7: 0x0081c4ea = -4.03939V + 470: CH0: 0x0081c4fc = -4.03938V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c4ab = -4.03942V CH3: 0x0001c4c0 = +0.05659V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0001c4e8 = +0.05661V CH6: 0x0081c4a3 = -4.03942V CH7: 0x0001c4e3 = +0.05661V + 471: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0001c46f = +0.05655V CH2: 0x0081c493 = -4.03943V CH3: 0x0001c4c5 = +0.05660V CH4: 0x0081c49d = -4.03942V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0001c491 = +0.05657V CH7: 0x0081c4c8 = -4.03940V + 472: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0081c47d = -4.03944V CH2: 0x0081c48c = -4.03943V CH3: 0x0001c4bb = +0.05659V CH4: 0x0081c4ab = -4.03942V CH5: 0x0081c4fc = -4.03938V CH6: 0x0001c4ab = +0.05658V CH7: 0x0081c4d2 = -4.03940V + 473: CH0: 0x0081c503 = -4.03937V CH1: 0x0081c499 = -4.03942V CH2: 0x0001c4a7 = +0.05658V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0081c4b0 = -4.03941V CH5: 0x0001c4ee = +0.05662V CH6: 0x0081c4b1 = -4.03941V CH7: 0x0001c4ec = +0.05662V + 474: CH0: 0x0001c4db = +0.05661V CH1: 0x0081c47c = -4.03944V CH2: 0x0001c483 = +0.05656V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0001c498 = +0.05657V CH5: 0x0001c4e6 = +0.05661V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4d0 = -4.03940V + 475: CH0: 0x0081c4fc = -4.03938V CH1: 0x0081c46c = -4.03945V CH2: 0x0001c481 = +0.05656V CH3: 0x0081c4ba = -4.03941V CH4: 0x0081c497 = -4.03943V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4da = -4.03939V + 476: CH0: 0x0001c505 = +0.05663V CH1: 0x0001c481 = +0.05656V CH2: 0x0081c49d = -4.03942V CH3: 0x0001c4ce = +0.05660V CH4: 0x0081c496 = -4.03943V CH5: 0x0081c4ec = -4.03938V CH6: 0x0001c4aa = +0.05658V CH7: 0x0081c4c4 = -4.03940V + 477: CH0: 0x0081c506 = -4.03937V CH1: 0x0081c486 = -4.03943V CH2: 0x0081c4a8 = -4.03942V CH3: 0x0001c4cf = +0.05660V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0081c4fd = -4.03938V CH6: 0x0081c4b5 = -4.03941V CH7: 0x0001c4d8 = +0.05661V + 478: CH0: 0x0001c507 = +0.05663V CH1: 0x0001c485 = +0.05656V CH2: 0x0001c490 = +0.05657V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0081c4ae = -4.03941V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0001c4af = +0.05659V CH7: 0x0001c4f2 = +0.05662V + 479: CH0: 0x0001c4fb = +0.05662V CH1: 0x0081c497 = -4.03943V CH2: 0x0001c494 = +0.05657V CH3: 0x0081c4db = -4.03939V CH4: 0x0081c4b4 = -4.03941V CH5: 0x0001c50a = +0.05663V CH6: 0x0081c4ac = -4.03942V CH7: 0x0001c4e8 = +0.05661V + 480: CH0: 0x0081c4fa = -4.03938V CH1: 0x0081c48b = -4.03943V CH2: 0x0001c4ab = +0.05658V CH3: 0x0081c4ce = -4.03940V CH4: 0x0001c4cf = +0.05660V CH5: 0x0081c4ff = -4.03938V CH6: 0x0001c4ae = +0.05658V CH7: 0x0081c4f1 = -4.03938V + 481: CH0: 0x0081c507 = -4.03937V CH1: 0x0081c48a = -4.03943V CH2: 0x0081c4ac = -4.03942V CH3: 0x0001c4e3 = +0.05661V CH4: 0x0001c4c1 = +0.05659V CH5: 0x0081c4fe = -4.03938V CH6: 0x0081c4b5 = -4.03941V CH7: 0x0081c4fe = -4.03938V + 482: CH0: 0x0001c4fa = +0.05662V CH1: 0x0081c495 = -4.03943V CH2: 0x0001c4a6 = +0.05658V CH3: 0x0081c4d4 = -4.03940V CH4: 0x0001c4b7 = +0.05659V CH5: 0x0081c501 = -4.03937V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0081c4f9 = -4.03938V + 483: CH0: 0x0081c4d9 = -4.03939V CH1: 0x0001c468 = +0.05655V CH2: 0x0001c47b = +0.05656V CH3: 0x0081c49e = -4.03942V CH4: 0x0081c487 = -4.03943V CH5: 0x0081c4d1 = -4.03940V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4c0 = +0.05659V + 484: CH0: 0x0001c4ed = +0.05662V CH1: 0x0001c476 = +0.05656V CH2: 0x0001c48b = +0.05657V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0001c483 = +0.05656V CH5: 0x0081c4dd = -4.03939V CH6: 0x0081c4ae = -4.03941V CH7: 0x0001c4ce = +0.05660V + 485: CH0: 0x0081c4f3 = -4.03938V CH1: 0x0081c48c = -4.03943V CH2: 0x0081c48d = -4.03943V CH3: 0x0081c4be = -4.03941V CH4: 0x0001c4ad = +0.05658V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0081c4b3 = -4.03941V CH7: 0x0001c4d8 = +0.05661V + 486: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c465 = +0.05655V CH2: 0x0001c46a = +0.05655V CH3: 0x0001c4ac = +0.05658V CH4: 0x0001c4a1 = +0.05658V CH5: 0x0001c4df = +0.05661V CH6: 0x0081c494 = -4.03943V CH7: 0x0001c4c6 = +0.05660V + 487: CH0: 0x0001c4e0 = +0.05661V CH1: 0x0081c471 = -4.03944V CH2: 0x0081c46c = -4.03945V CH3: 0x0001c4a3 = +0.05658V CH4: 0x0081c485 = -4.03943V CH5: 0x0081c4dc = -4.03939V CH6: 0x0001c482 = +0.05656V CH7: 0x0081c4be = -4.03941V + 488: CH0: 0x0001c4fd = +0.05662V CH1: 0x0001c484 = +0.05656V CH2: 0x0001c49e = +0.05658V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4e0 = +0.05661V + 489: CH0: 0x0001c507 = +0.05663V CH1: 0x0081c484 = -4.03944V CH2: 0x0001c4aa = +0.05658V CH3: 0x0001c4cd = +0.05660V CH4: 0x0081c4a9 = -4.03942V CH5: 0x0081c4fb = -4.03938V CH6: 0x0081c4b0 = -4.03941V CH7: 0x0001c4f3 = +0.05662V + 490: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0081c491 = -4.03943V CH2: 0x0081c478 = -4.03944V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0001c497 = +0.05657V CH5: 0x0081c4f4 = -4.03938V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4cf = +0.05660V + 491: CH0: 0x0081c4f4 = -4.03938V CH1: 0x0001c474 = +0.05656V CH2: 0x0081c489 = -4.03943V CH3: 0x0081c4ab = -4.03942V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0081c4ee = -4.03938V CH6: 0x0081c496 = -4.03943V CH7: 0x0001c4d7 = +0.05660V + 492: CH0: 0x0081c4cc = -4.03940V CH1: 0x0001c465 = +0.05655V CH2: 0x0001c47a = +0.05656V CH3: 0x0081c4bb = -4.03941V CH4: 0x0081c493 = -4.03943V CH5: 0x0001c4e3 = +0.05661V CH6: 0x0081c48a = -4.03943V CH7: 0x0001c4cd = +0.05660V + 493: CH0: 0x0081c4e3 = -4.03939V CH1: 0x0081c471 = -4.03944V CH2: 0x0001c478 = +0.05656V CH3: 0x0001c4a5 = +0.05658V CH4: 0x0081c49c = -4.03942V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0081c48f = -4.03943V CH7: 0x0081c4d8 = -4.03939V + 494: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0001c47e = +0.05656V CH2: 0x0081c493 = -4.03943V CH3: 0x0081c4b3 = -4.03941V CH4: 0x0081c49a = -4.03942V CH5: 0x0081c4f1 = -4.03938V CH6: 0x0081c491 = -4.03943V CH7: 0x0001c4dc = +0.05661V + 495: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0001c49d = +0.05658V CH2: 0x0081c47b = -4.03944V CH3: 0x0081c4c0 = -4.03941V CH4: 0x0001c4a4 = +0.05658V CH5: 0x0081c4f8 = -4.03938V CH6: 0x0001c49d = +0.05658V CH7: 0x0001c4da = +0.05661V + 496: CH0: 0x0001c502 = +0.05663V CH1: 0x0081c493 = -4.03943V CH2: 0x0001c49c = +0.05658V CH3: 0x0001c4ce = +0.05660V CH4: 0x0081c4af = -4.03941V CH5: 0x0001c503 = +0.05663V CH6: 0x0081c4b5 = -4.03941V CH7: 0x0081c4e7 = -4.03939V + 497: CH0: 0x0001c509 = +0.05663V CH1: 0x0081c4a4 = -4.03942V CH2: 0x0081c4b7 = -4.03941V CH3: 0x0001c4e0 = +0.05661V CH4: 0x0081c4c8 = -4.03940V CH5: 0x0001c509 = +0.05663V CH6: 0x0001c4b7 = +0.05659V CH7: 0x0081c4f2 = -4.03938V + 498: CH0: 0x0001c501 = +0.05663V CH1: 0x0081c48e = -4.03943V CH2: 0x0081c4a6 = -4.03942V CH3: 0x0001c4ca = +0.05660V CH4: 0x0081c4ba = -4.03941V CH5: 0x0001c510 = +0.05663V CH6: 0x0081c4b5 = -4.03941V CH7: 0x0001c4f3 = +0.05662V + 499: CH0: 0x0081c4eb = -4.03938V CH1: 0x0081c46e = -4.03945V CH2: 0x0001c490 = +0.05657V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0001c488 = +0.05657V CH5: 0x0001c4f1 = +0.05662V CH6: 0x0001c493 = +0.05657V CH7: 0x0001c4c8 = +0.05660V + 500: CH0: 0x0001c4d9 = +0.05661V CH1: 0x0081c47a = -4.03944V CH2: 0x0001c488 = +0.05657V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c49d = +0.05658V CH5: 0x0081c4bd = -4.03941V CH6: 0x0081c477 = -4.03944V CH7: 0x0081c4be = -4.03941V + 501: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0001c471 = +0.05656V CH2: 0x0001c49d = +0.05658V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0081c4ae = -4.03941V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4c2 = +0.05659V + 502: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c493 = +0.05657V CH2: 0x0081c4a5 = -4.03942V CH3: 0x0081c4c3 = -4.03940V CH4: 0x0081c4b3 = -4.03941V CH5: 0x0001c4ef = +0.05662V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0081c4e8 = -4.03939V + 503: CH0: 0x0001c4e4 = +0.05661V CH1: 0x0081c474 = -4.03944V CH2: 0x0081c48e = -4.03943V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0081c49b = -4.03942V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c498 = +0.05657V CH7: 0x0081c4cf = -4.03940V + 504: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c469 = +0.05655V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4bf = +0.05659V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0081c49f = -4.03942V CH7: 0x0001c4d1 = +0.05660V + 505: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c47b = -4.03944V CH3: 0x0001c4b3 = +0.05659V CH4: 0x0001c49e = +0.05658V CH5: 0x0081c4d5 = -4.03940V CH6: 0x0001c49e = +0.05658V CH7: 0x0081c4dd = -4.03939V + 506: CH0: 0x0081c4f5 = -4.03938V CH1: 0x0001c47c = +0.05656V CH2: 0x0001c486 = +0.05657V CH3: 0x0081c4ba = -4.03941V CH4: 0x0001c4ac = +0.05658V CH5: 0x0081c4e6 = -4.03939V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0001c4c2 = +0.05659V + 507: CH0: 0x0081c503 = -4.03937V CH1: 0x0081c48e = -4.03943V CH2: 0x0001c495 = +0.05657V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0001c4bf = +0.05659V CH5: 0x0081c4fb = -4.03938V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0081c4f4 = -4.03938V + 508: CH0: 0x0001c4e5 = +0.05661V CH1: 0x0081c477 = -4.03944V CH2: 0x0001c483 = +0.05656V CH3: 0x0081c497 = -4.03943V CH4: 0x0001c49d = +0.05658V CH5: 0x0081c4fa = -4.03938V CH6: 0x0001c48e = +0.05657V CH7: 0x0081c4dd = -4.03939V + 509: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0081c475 = -4.03944V CH2: 0x0001c494 = +0.05657V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0081c49a = -4.03942V CH5: 0x0081c4e8 = -4.03939V CH6: 0x0081c496 = -4.03943V CH7: 0x0001c4d0 = +0.05660V + 510: CH0: 0x0081c4d4 = -4.03940V CH1: 0x0001c460 = +0.05655V CH2: 0x0001c46d = +0.05655V CH3: 0x0081c4b2 = -4.03941V CH4: 0x0001c487 = +0.05657V CH5: 0x0081c4cf = -4.03940V CH6: 0x0081c48f = -4.03943V CH7: 0x0081c4c1 = -4.03941V + 511: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0081c459 = -4.03946V CH2: 0x0001c46e = +0.05655V CH3: 0x0081c4a9 = -4.03942V CH4: 0x0001c4a2 = +0.05658V CH5: 0x0001c4d1 = +0.05660V CH6: 0x0081c488 = -4.03943V CH7: 0x0001c4c9 = +0.05660V + 512: CH0: 0x0001c501 = +0.05663V CH1: 0x0081c4ad = -4.03942V CH2: 0x0081c49c = -4.03942V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0001c4a6 = +0.05658V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0081c4dc = -4.03939V + 513: CH0: 0x0081c500 = -4.03937V CH1: 0x0001c49a = +0.05658V CH2: 0x0081c493 = -4.03943V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0001c4aa = +0.05658V CH5: 0x0081c4fe = -4.03938V CH6: 0x0001c4a7 = +0.05658V CH7: 0x0001c4ce = +0.05660V + 514: CH0: 0x0081c4fd = -4.03938V CH1: 0x0001c483 = +0.05656V CH2: 0x0081c4a7 = -4.03942V CH3: 0x0081c4db = -4.03939V CH4: 0x0081c4c1 = -4.03941V CH5: 0x0081c4ec = -4.03938V CH6: 0x0001c49d = +0.05658V CH7: 0x0001c4f0 = +0.05662V + 515: CH0: 0x0001c514 = +0.05663V CH1: 0x0001c49f = +0.05658V CH2: 0x0001c4b2 = +0.05659V CH3: 0x0081c4ea = -4.03939V CH4: 0x0001c4c6 = +0.05660V CH5: 0x0081c503 = -4.03937V CH6: 0x0081c4b7 = -4.03941V CH7: 0x0081c505 = -4.03937V + 516: CH0: 0x0001c509 = +0.05663V CH1: 0x0001c47f = +0.05656V CH2: 0x0081c497 = -4.03943V CH3: 0x0001c4d3 = +0.05660V CH4: 0x0081c4bd = -4.03941V CH5: 0x0001c4f0 = +0.05662V CH6: 0x0081c4bc = -4.03941V CH7: 0x0081c500 = -4.03937V + 517: CH0: 0x0001c4f6 = +0.05662V CH1: 0x0001c491 = +0.05657V CH2: 0x0081c49f = -4.03942V CH3: 0x0001c4ce = +0.05660V CH4: 0x0081c4ba = -4.03941V CH5: 0x0081c4e3 = -4.03939V CH6: 0x0081c4bc = -4.03941V CH7: 0x0081c4f3 = -4.03938V + 518: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0001c475 = +0.05656V CH2: 0x0001c49a = +0.05658V CH3: 0x0001c4bd = +0.05659V CH4: 0x0001c4ab = +0.05658V CH5: 0x0081c4d7 = -4.03939V CH6: 0x0081c49a = -4.03942V CH7: 0x0001c4dd = +0.05661V + 519: CH0: 0x0081c4f4 = -4.03938V CH1: 0x0001c477 = +0.05656V CH2: 0x0001c49a = +0.05658V CH3: 0x0081c4d4 = -4.03940V CH4: 0x0081c491 = -4.03943V CH5: 0x0001c4ee = +0.05662V CH6: 0x0001c48f = +0.05657V CH7: 0x0001c4eb = +0.05661V + 520: CH0: 0x0081c4f3 = -4.03938V CH1: 0x0081c48f = -4.03943V CH2: 0x0001c49b = +0.05658V CH3: 0x0081c4d4 = -4.03940V CH4: 0x0001c49e = +0.05658V CH5: 0x0001c4fc = +0.05662V CH6: 0x0081c4b9 = -4.03941V CH7: 0x0001c4e3 = +0.05661V + 521: CH0: 0x0001c4ed = +0.05662V CH1: 0x0081c46d = -4.03945V CH2: 0x0001c496 = +0.05657V CH3: 0x0081c4bd = -4.03941V CH4: 0x0001c49b = +0.05658V CH5: 0x0001c4b6 = +0.05659V CH6: 0x0081c4b5 = -4.03941V CH7: 0x0081c4bf = -4.03941V + 522: CH0: 0x0081c506 = -4.03937V CH1: 0x0001c47c = +0.05656V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0001c4a1 = +0.05658V CH5: 0x0081c4ef = -4.03938V CH6: 0x0001c499 = +0.05657V CH7: 0x0001c4d7 = +0.05660V + 523: CH0: 0x0001c4ea = +0.05661V CH1: 0x0081c487 = -4.03943V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0081c4bd = -4.03941V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4ed = +0.05662V CH6: 0x0081c491 = -4.03943V CH7: 0x0001c4ce = +0.05660V + 524: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0001c4a1 = +0.05658V CH2: 0x0081c4ae = -4.03941V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0001c4b6 = +0.05659V CH5: 0x0081c4e1 = -4.03939V CH6: 0x0001c4a5 = +0.05658V CH7: 0x0001c4ea = +0.05661V + 525: CH0: 0x0081c4f4 = -4.03938V CH1: 0x0081c475 = -4.03944V CH2: 0x0081c489 = -4.03943V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0001c4f4 = +0.05662V CH6: 0x0081c48e = -4.03943V CH7: 0x0001c4e3 = +0.05661V + 526: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0001c465 = +0.05655V CH2: 0x0001c47a = +0.05656V CH3: 0x0081c4b2 = -4.03941V CH4: 0x0001c4a4 = +0.05658V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0081c48e = -4.03943V CH7: 0x0081c4c2 = -4.03940V + 527: CH0: 0x0081c4f9 = -4.03938V CH1: 0x0081c486 = -4.03943V CH2: 0x0001c48a = +0.05657V CH3: 0x0081c4bd = -4.03941V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0001c4d9 = +0.05661V CH6: 0x0081c499 = -4.03942V CH7: 0x0081c4e1 = -4.03939V + 528: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0001c473 = +0.05656V CH2: 0x0081c486 = -4.03943V CH3: 0x0081c499 = -4.03942V CH4: 0x0081c47f = -4.03944V CH5: 0x0001c4c5 = +0.05660V CH6: 0x0081c491 = -4.03943V CH7: 0x0001c4ca = +0.05660V + 529: CH0: 0x0081c4eb = -4.03938V CH1: 0x0081c46a = -4.03945V CH2: 0x0001c491 = +0.05657V CH3: 0x0081c4a3 = -4.03942V CH4: 0x0001c48d = +0.05657V CH5: 0x0001c4db = +0.05661V CH6: 0x0001c48e = +0.05657V CH7: 0x0001c4cf = +0.05660V + 530: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0081c463 = -4.03945V CH2: 0x0001c489 = +0.05657V CH3: 0x0001c4c0 = +0.05659V CH4: 0x0001c493 = +0.05657V CH5: 0x0081c4eb = -4.03938V CH6: 0x0081c49b = -4.03942V CH7: 0x0001c4c6 = +0.05660V + 531: CH0: 0x0081c4f6 = -4.03938V CH1: 0x0001c476 = +0.05656V CH2: 0x0001c484 = +0.05656V CH3: 0x0001c4bd = +0.05659V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0001c4dd = +0.05661V CH6: 0x0001c4b7 = +0.05659V CH7: 0x0081c4c6 = -4.03940V + 532: CH0: 0x0001c4d3 = +0.05660V CH1: 0x0081c472 = -4.03944V CH2: 0x0081c475 = -4.03944V CH3: 0x0081c494 = -4.03943V CH4: 0x0001c47b = +0.05656V CH5: 0x0001c4cb = +0.05660V CH6: 0x0081c492 = -4.03943V CH7: 0x0081c4ce = -4.03940V + 533: CH0: 0x0001c4ef = +0.05662V CH1: 0x0081c489 = -4.03943V CH2: 0x0001c4a1 = +0.05658V CH3: 0x0001c4ad = +0.05658V CH4: 0x0001c48c = +0.05657V CH5: 0x0001c4dd = +0.05661V CH6: 0x0081c4a6 = -4.03942V CH7: 0x0001c4d7 = +0.05660V + 534: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0001c48d = +0.05657V CH2: 0x0081c48e = -4.03943V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0001c4a7 = +0.05658V CH5: 0x0001c4f7 = +0.05662V CH6: 0x0001c4a1 = +0.05658V CH7: 0x0001c4ea = +0.05661V + 535: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0001c472 = +0.05656V CH2: 0x0081c46c = -4.03945V CH3: 0x0081c4c3 = -4.03940V CH4: 0x0001c496 = +0.05657V CH5: 0x0001c4db = +0.05661V CH6: 0x0081c481 = -4.03944V CH7: 0x0001c4ce = +0.05660V + 536: CH0: 0x0081c505 = -4.03937V CH1: 0x0081c485 = -4.03943V CH2: 0x0001c499 = +0.05657V CH3: 0x0081c4d0 = -4.03940V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0081c4e3 = -4.03939V CH6: 0x0081c4a6 = -4.03942V CH7: 0x0001c4ef = +0.05662V + 537: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0081c466 = -4.03945V CH2: 0x0081c477 = -4.03944V CH3: 0x0081c4a6 = -4.03942V CH4: 0x0001c488 = +0.05657V CH5: 0x0081c4e6 = -4.03939V CH6: 0x0001c491 = +0.05657V CH7: 0x0001c4d9 = +0.05661V + 538: CH0: 0x0081c4e3 = -4.03939V CH1: 0x0001c45e = +0.05655V CH2: 0x0081c489 = -4.03943V CH3: 0x0001c4ba = +0.05659V CH4: 0x0001c49a = +0.05658V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0001c489 = +0.05657V CH7: 0x0001c4c4 = +0.05660V + 539: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0001c480 = +0.05656V CH2: 0x0001c4a8 = +0.05658V CH3: 0x0001c4af = +0.05659V CH4: 0x0001c4a1 = +0.05658V CH5: 0x0001c4d7 = +0.05660V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4d6 = +0.05660V + 540: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0081c494 = -4.03943V CH2: 0x0001c495 = +0.05657V CH3: 0x0081c4bb = -4.03941V CH4: 0x0081c4ac = -4.03942V CH5: 0x0001c4e8 = +0.05661V CH6: 0x0081c494 = -4.03943V CH7: 0x0001c4dc = +0.05661V + 541: CH0: 0x0001c4fe = +0.05662V CH1: 0x0001c48b = +0.05657V CH2: 0x0001c494 = +0.05657V CH3: 0x0001c4d9 = +0.05661V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0081c4f9 = -4.03938V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0001c4e3 = +0.05661V + 542: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0081c46d = -4.03945V CH2: 0x0001c47e = +0.05656V CH3: 0x0001c49e = +0.05658V CH4: 0x0001c494 = +0.05657V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0001c493 = +0.05657V CH7: 0x0081c4c4 = -4.03940V + 543: CH0: 0x0081c4dd = -4.03939V CH1: 0x0001c46f = +0.05655V CH2: 0x0001c480 = +0.05656V CH3: 0x0001c49a = +0.05658V CH4: 0x0001c4a7 = +0.05658V CH5: 0x0001c4da = +0.05661V CH6: 0x0081c474 = -4.03944V CH7: 0x0001c4dc = +0.05661V + 544: CH0: 0x0001c4eb = +0.05661V CH1: 0x0081c47c = -4.03944V CH2: 0x0081c486 = -4.03943V CH3: 0x0001c4bc = +0.05659V CH4: 0x0001c4a2 = +0.05658V CH5: 0x0081c4dd = -4.03939V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4e0 = +0.05661V + 545: CH0: 0x0001c4fe = +0.05662V CH1: 0x0081c47a = -4.03944V CH2: 0x0001c486 = +0.05657V CH3: 0x0081c4cd = -4.03940V CH4: 0x0001c4ac = +0.05658V CH5: 0x0001c4df = +0.05661V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4d6 = +0.05660V + 546: CH0: 0x0081c4e5 = -4.03939V CH1: 0x0001c475 = +0.05656V CH2: 0x0001c480 = +0.05656V CH3: 0x0081c4ba = -4.03941V CH4: 0x0001c497 = +0.05657V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0001c48a = +0.05657V CH7: 0x0001c4d3 = +0.05660V + 547: CH0: 0x0001c4d8 = +0.05661V CH1: 0x0001c46c = +0.05655V CH2: 0x0081c46c = -4.03945V CH3: 0x0001c4af = +0.05659V CH4: 0x0081c48d = -4.03943V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0081c4a5 = -4.03942V CH7: 0x0001c4b4 = +0.05659V + 548: CH0: 0x0001c4d6 = +0.05660V CH1: 0x0001c468 = +0.05655V CH2: 0x0001c47f = +0.05656V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0001c49e = +0.05658V CH5: 0x0081c4eb = -4.03938V CH6: 0x0081c497 = -4.03943V CH7: 0x0001c4c6 = +0.05660V + 549: CH0: 0x0001c4d4 = +0.05660V CH1: 0x0001c471 = +0.05656V CH2: 0x0001c477 = +0.05656V CH3: 0x0081c4a8 = -4.03942V CH4: 0x0001c485 = +0.05656V CH5: 0x0001c4cf = +0.05660V CH6: 0x0081c47d = -4.03944V CH7: 0x0081c4cc = -4.03940V + 550: CH0: 0x0081c4f1 = -4.03938V CH1: 0x0001c48f = +0.05657V CH2: 0x0081c49a = -4.03942V CH3: 0x0001c4ba = +0.05659V CH4: 0x0081c498 = -4.03943V CH5: 0x0001c4dd = +0.05661V CH6: 0x0081c4a9 = -4.03942V CH7: 0x0081c4d1 = -4.03940V + 551: CH0: 0x0081c52a = -4.03935V CH1: 0x0081c4b6 = -4.03941V CH2: 0x0001c4c8 = +0.05660V CH3: 0x0001c4e9 = +0.05661V CH4: 0x0081c4bf = -4.03941V CH5: 0x0001c50d = +0.05663V CH6: 0x0001c4c5 = +0.05660V CH7: 0x0081c4fa = -4.03938V + 552: CH0: 0x0081c502 = -4.03937V CH1: 0x0081c485 = -4.03943V CH2: 0x0081c49c = -4.03942V CH3: 0x0081c4cb = -4.03940V CH4: 0x0001c4bb = +0.05659V CH5: 0x0001c4f2 = +0.05662V CH6: 0x0001c49a = +0.05658V CH7: 0x0081c4f1 = -4.03938V + 553: CH0: 0x0001c4ff = +0.05662V CH1: 0x0081c489 = -4.03943V CH2: 0x0081c4a5 = -4.03942V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0001c4be = +0.05659V CH5: 0x0001c50d = +0.05663V CH6: 0x0001c4ae = +0.05658V CH7: 0x0081c4f3 = -4.03938V + 554: CH0: 0x0081c4e2 = -4.03939V CH1: 0x0001c470 = +0.05655V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4a2 = -4.03942V CH4: 0x0001c49a = +0.05658V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4c4 = +0.05660V + 555: CH0: 0x0081c4de = -4.03939V CH1: 0x0001c459 = +0.05654V CH2: 0x0001c493 = +0.05657V CH3: 0x0001c4ba = +0.05659V CH4: 0x0001c49e = +0.05658V CH5: 0x0081c4c1 = -4.03941V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0001c4d4 = +0.05660V + 556: CH0: 0x0081c503 = -4.03937V CH1: 0x0081c49a = -4.03942V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0001c4cd = +0.05660V CH4: 0x0001c4ac = +0.05658V CH5: 0x0001c503 = +0.05663V CH6: 0x0001c4b4 = +0.05659V CH7: 0x0081c4fa = -4.03938V + 557: CH0: 0x0001c4da = +0.05661V CH1: 0x0001c47a = +0.05656V CH2: 0x0081c479 = -4.03944V CH3: 0x0081c4a9 = -4.03942V CH4: 0x0001c49d = +0.05658V CH5: 0x0001c4de = +0.05661V CH6: 0x0001c484 = +0.05656V CH7: 0x0081c4bf = -4.03941V + 558: CH0: 0x0081c515 = -4.03936V CH1: 0x0001c483 = +0.05656V CH2: 0x0081c493 = -4.03943V CH3: 0x0001c4c7 = +0.05660V CH4: 0x0081c4b7 = -4.03941V CH5: 0x0081c4fd = -4.03938V CH6: 0x0081c4ae = -4.03941V CH7: 0x0001c4e8 = +0.05661V + 559: CH0: 0x0001c4fa = +0.05662V CH1: 0x0001c47b = +0.05656V CH2: 0x0081c490 = -4.03943V CH3: 0x0081c4bb = -4.03941V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0081c4ad = -4.03942V CH7: 0x0081c4e7 = -4.03939V + 560: CH0: 0x0081c4d4 = -4.03940V CH1: 0x0001c487 = +0.05657V CH2: 0x0001c48c = +0.05657V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0001c4ab = +0.05658V CH5: 0x0081c4e6 = -4.03939V CH6: 0x0001c494 = +0.05657V CH7: 0x0081c4e0 = -4.03939V + 561: CH0: 0x0081c4e1 = -4.03939V CH1: 0x0001c480 = +0.05656V CH2: 0x0001c489 = +0.05657V CH3: 0x0081c4b2 = -4.03941V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0081c4f1 = -4.03938V CH6: 0x0001c481 = +0.05656V CH7: 0x0001c4cb = +0.05660V + 562: CH0: 0x0001c4eb = +0.05661V CH1: 0x0081c47c = -4.03944V CH2: 0x0001c488 = +0.05657V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0001c49e = +0.05658V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4c2 = +0.05659V + 563: CH0: 0x0001c4e1 = +0.05661V CH1: 0x0081c46d = -4.03945V CH2: 0x0001c470 = +0.05655V CH3: 0x0081c4bd = -4.03941V CH4: 0x0001c49b = +0.05658V CH5: 0x0001c4d1 = +0.05660V CH6: 0x0081c488 = -4.03943V CH7: 0x0081c4cb = -4.03940V + 564: CH0: 0x0001c4c6 = +0.05660V CH1: 0x0001c44a = +0.05654V CH2: 0x0001c472 = +0.05656V CH3: 0x0081c4aa = -4.03942V CH4: 0x0001c47c = +0.05656V CH5: 0x0081c4b0 = -4.03941V CH6: 0x0001c470 = +0.05655V CH7: 0x0001c4a5 = +0.05658V + 565: CH0: 0x0081c501 = -4.03937V CH1: 0x0081c491 = -4.03943V CH2: 0x0081c49b = -4.03942V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c499 = +0.05657V CH7: 0x0081c4d5 = -4.03940V + 566: CH0: 0x0081c501 = -4.03937V CH1: 0x0001c483 = +0.05656V CH2: 0x0001c49e = +0.05658V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0081c4e0 = -4.03939V CH6: 0x0081c4aa = -4.03942V CH7: 0x0081c4dc = -4.03939V + 567: CH0: 0x0081c4f1 = -4.03938V CH1: 0x0001c46c = +0.05655V CH2: 0x0001c49d = +0.05658V CH3: 0x0081c4c1 = -4.03941V CH4: 0x0001c4a5 = +0.05658V CH5: 0x0001c4d6 = +0.05660V CH6: 0x0081c49e = -4.03942V CH7: 0x0001c4dd = +0.05661V + 568: CH0: 0x0081c4e2 = -4.03939V CH1: 0x0001c457 = +0.05654V CH2: 0x0081c47c = -4.03944V CH3: 0x0001c4ab = +0.05658V CH4: 0x0081c489 = -4.03943V CH5: 0x0001c4ce = +0.05660V CH6: 0x0001c46f = +0.05655V CH7: 0x0001c4c4 = +0.05660V + 569: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0081c474 = -4.03944V CH2: 0x0081c47a = -4.03944V CH3: 0x0081c4ba = -4.03941V CH4: 0x0001c497 = +0.05657V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0081c496 = -4.03943V CH7: 0x0001c4bc = +0.05659V + 570: CH0: 0x0001c4e6 = +0.05661V CH1: 0x0001c46b = +0.05655V CH2: 0x0001c478 = +0.05656V CH3: 0x0001c4b1 = +0.05659V CH4: 0x0081c49a = -4.03942V CH5: 0x0081c4dc = -4.03939V CH6: 0x0081c4aa = -4.03942V CH7: 0x0081c4c5 = -4.03940V + 571: CH0: 0x0081c4c7 = -4.03940V CH1: 0x0081c443 = -4.03947V CH2: 0x0081c45e = -4.03945V CH3: 0x0001c490 = +0.05657V CH4: 0x0001c47c = +0.05656V CH5: 0x0001c4b2 = +0.05659V CH6: 0x0081c45f = -4.03945V CH7: 0x0001c4a0 = +0.05658V + 572: CH0: 0x0081c4d0 = -4.03940V CH1: 0x0001c47e = +0.05656V CH2: 0x0001c48c = +0.05657V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0081c49f = -4.03942V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0001c484 = +0.05656V CH7: 0x0081c4ce = -4.03940V + 573: CH0: 0x0081c503 = -4.03937V CH1: 0x0001c494 = +0.05657V CH2: 0x0001c4a0 = +0.05658V CH3: 0x0001c4c1 = +0.05659V CH4: 0x0001c4ae = +0.05658V CH5: 0x0081c4e9 = -4.03939V CH6: 0x0081c4b6 = -4.03941V CH7: 0x0001c4e3 = +0.05661V + 574: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0001c47f = +0.05656V CH2: 0x0081c47c = -4.03944V CH3: 0x0001c4bd = +0.05659V CH4: 0x0081c49b = -4.03942V CH5: 0x0081c4ec = -4.03938V CH6: 0x0081c4a1 = -4.03942V CH7: 0x0081c4dd = -4.03939V + 575: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0001c46f = +0.05655V CH2: 0x0081c492 = -4.03943V CH3: 0x0081c4b5 = -4.03941V CH4: 0x0001c498 = +0.05657V CH5: 0x0081c4f3 = -4.03938V CH6: 0x0081c48a = -4.03943V CH7: 0x0001c4e1 = +0.05661V + 576: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0081c46e = -4.03945V CH2: 0x0081c482 = -4.03944V CH3: 0x0001c4ae = +0.05658V CH4: 0x0081c49d = -4.03942V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0081c49f = -4.03942V CH7: 0x0001c4d1 = +0.05660V + 577: CH0: 0x0081c504 = -4.03937V CH1: 0x0081c480 = -4.03944V CH2: 0x0001c482 = +0.05656V CH3: 0x0081c4c5 = -4.03940V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0001c4b0 = +0.05659V CH7: 0x0081c4ce = -4.03940V + 578: CH0: 0x0081c512 = -4.03937V CH1: 0x0081c49c = -4.03942V CH2: 0x0001c4a6 = +0.05658V CH3: 0x0001c4dd = +0.05661V CH4: 0x0081c4ae = -4.03941V CH5: 0x0081c4e5 = -4.03939V CH6: 0x0001c4ac = +0.05658V CH7: 0x0001c4cd = +0.05660V + 579: CH0: 0x0081c509 = -4.03937V CH1: 0x0081c487 = -4.03943V CH2: 0x0001c484 = +0.05656V CH3: 0x0001c4de = +0.05661V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0001c4eb = +0.05661V CH6: 0x0001c4bb = +0.05659V CH7: 0x0081c4ff = -4.03938V + 580: CH0: 0x0001c520 = +0.05664V CH1: 0x0001c4a8 = +0.05658V CH2: 0x0081c4b5 = -4.03941V CH3: 0x0081c4e5 = -4.03939V CH4: 0x0081c4c5 = -4.03940V CH5: 0x0001c510 = +0.05663V CH6: 0x0001c4c8 = +0.05660V CH7: 0x0081c4ff = -4.03938V + 581: CH0: 0x0081c4eb = -4.03938V CH1: 0x0001c490 = +0.05657V CH2: 0x0001c4aa = +0.05658V CH3: 0x0001c4ba = +0.05659V CH4: 0x0001c4a7 = +0.05658V CH5: 0x0001c4fb = +0.05662V CH6: 0x0081c49f = -4.03942V CH7: 0x0081c4bc = -4.03941V + 582: CH0: 0x0001c4d4 = +0.05660V CH1: 0x0001c461 = +0.05655V CH2: 0x0081c488 = -4.03943V CH3: 0x0001c4ad = +0.05658V CH4: 0x0001c497 = +0.05657V CH5: 0x0081c4c5 = -4.03940V CH6: 0x0001c48c = +0.05657V CH7: 0x0081c4c7 = -4.03940V + 583: CH0: 0x0081c4e3 = -4.03939V CH1: 0x0081c474 = -4.03944V CH2: 0x0001c494 = +0.05657V CH3: 0x0001c4a6 = +0.05658V CH4: 0x0081c492 = -4.03943V CH5: 0x0001c4da = +0.05661V CH6: 0x0001c49a = +0.05658V CH7: 0x0081c4c0 = -4.03941V + 584: CH0: 0x0081c4f7 = -4.03938V CH1: 0x0001c494 = +0.05657V CH2: 0x0001c499 = +0.05657V CH3: 0x0001c4bb = +0.05659V CH4: 0x0081c4ab = -4.03942V CH5: 0x0081c4f5 = -4.03938V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4e9 = +0.05661V + 585: CH0: 0x0001c4fb = +0.05662V CH1: 0x0001c493 = +0.05657V CH2: 0x0081c4a5 = -4.03942V CH3: 0x0001c4ea = +0.05661V CH4: 0x0081c4c0 = -4.03941V CH5: 0x0081c500 = -4.03937V CH6: 0x0081c4ad = -4.03942V CH7: 0x0081c4ed = -4.03938V + 586: CH0: 0x0081c509 = -4.03937V CH1: 0x0081c46d = -4.03945V CH2: 0x0081c48e = -4.03943V CH3: 0x0001c4d5 = +0.05660V CH4: 0x0001c4ab = +0.05658V CH5: 0x0081c4ec = -4.03938V CH6: 0x0001c49b = +0.05658V CH7: 0x0081c4cb = -4.03940V + 587: CH0: 0x0001c51e = +0.05664V CH1: 0x0001c4a5 = +0.05658V CH2: 0x0081c49d = -4.03942V CH3: 0x0081c4d5 = -4.03940V CH4: 0x0081c4be = -4.03941V CH5: 0x0081c500 = -4.03937V CH6: 0x0001c4ad = +0.05658V CH7: 0x0001c500 = +0.05663V + 588: CH0: 0x0001c4de = +0.05661V CH1: 0x0081c483 = -4.03944V CH2: 0x0081c48c = -4.03943V CH3: 0x0081c4c0 = -4.03941V CH4: 0x0001c4ae = +0.05658V CH5: 0x0081c4ea = -4.03939V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0081c4e3 = -4.03939V + 589: CH0: 0x0081c510 = -4.03937V CH1: 0x0001c482 = +0.05656V CH2: 0x0001c49a = +0.05658V CH3: 0x0001c4cd = +0.05660V CH4: 0x0081c4c8 = -4.03940V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0001c4ad = +0.05658V CH7: 0x0081c4f5 = -4.03938V + 590: CH0: 0x0001c50a = +0.05663V CH1: 0x0001c492 = +0.05657V CH2: 0x0001c4a8 = +0.05658V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0081c4b1 = -4.03941V CH5: 0x0001c4fc = +0.05662V CH6: 0x0001c4b7 = +0.05659V CH7: 0x0081c501 = -4.03937V + 591: CH0: 0x0081c4f1 = -4.03938V CH1: 0x0081c473 = -4.03944V CH2: 0x0001c493 = +0.05657V CH3: 0x0081c4bc = -4.03941V CH4: 0x0001c49f = +0.05658V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0081c4e3 = -4.03939V + 592: CH0: 0x0081c4fa = -4.03938V CH1: 0x0081c481 = -4.03944V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4ca = -4.03940V CH4: 0x0001c4b6 = +0.05659V CH5: 0x0001c4e7 = +0.05661V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0081c4de = -4.03939V + 593: CH0: 0x0081c4da = -4.03939V CH1: 0x0081c477 = -4.03944V CH2: 0x0001c495 = +0.05657V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0081c49d = -4.03942V CH5: 0x0081c4f3 = -4.03938V CH6: 0x0081c4a8 = -4.03942V CH7: 0x0081c4de = -4.03939V + 594: CH0: 0x0081c505 = -4.03937V CH1: 0x0081c48f = -4.03943V CH2: 0x0001c48f = +0.05657V CH3: 0x0001c4c7 = +0.05660V CH4: 0x0081c4ad = -4.03942V CH5: 0x0001c4ef = +0.05662V CH6: 0x0001c4af = +0.05659V CH7: 0x0081c4ee = -4.03938V + 595: CH0: 0x0081c4f5 = -4.03938V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c488 = -4.03943V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0001c4a2 = +0.05658V CH5: 0x0001c4de = +0.05661V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0001c4d8 = +0.05661V + 596: CH0: 0x0081c4e3 = -4.03939V CH1: 0x0001c475 = +0.05656V CH2: 0x0001c48f = +0.05657V CH3: 0x0081c4bb = -4.03941V CH4: 0x0001c4a6 = +0.05658V CH5: 0x0081c4ed = -4.03938V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4d6 = +0.05660V + 597: CH0: 0x0081c508 = -4.03937V CH1: 0x0001c47d = +0.05656V CH2: 0x0081c47a = -4.03944V CH3: 0x0001c4cb = +0.05660V CH4: 0x0001c4ab = +0.05658V CH5: 0x0081c4fb = -4.03938V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4de = +0.05661V + 598: CH0: 0x0001c4ef = +0.05662V CH1: 0x0081c481 = -4.03944V CH2: 0x0001c48f = +0.05657V CH3: 0x0001c4c0 = +0.05659V CH4: 0x0081c494 = -4.03943V CH5: 0x0081c4df = -4.03939V CH6: 0x0001c492 = +0.05657V CH7: 0x0081c4de = -4.03939V + 599: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0081c488 = -4.03943V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4ba = +0.05659V CH4: 0x0001c49d = +0.05658V CH5: 0x0081c4df = -4.03939V CH6: 0x0081c497 = -4.03943V CH7: 0x0081c4e2 = -4.03939V + 600: CH0: 0x0081c516 = -4.03936V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c4aa = -4.03942V CH3: 0x0001c4cc = +0.05660V CH4: 0x0081c4b3 = -4.03941V CH5: 0x0081c508 = -4.03937V CH6: 0x0081c496 = -4.03943V CH7: 0x0081c4e6 = -4.03939V + 601: CH0: 0x0081c50d = -4.03937V CH1: 0x0001c4aa = +0.05658V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0081c4e2 = -4.03939V CH4: 0x0081c4ac = -4.03942V CH5: 0x0001c4fe = +0.05662V CH6: 0x0081c4a8 = -4.03942V CH7: 0x0081c4ec = -4.03938V + 602: CH0: 0x0001c50c = +0.05663V CH1: 0x0081c4a8 = -4.03942V CH2: 0x0081c49a = -4.03942V CH3: 0x0081c4d8 = -4.03939V CH4: 0x0001c4c8 = +0.05660V CH5: 0x0081c4e6 = -4.03939V CH6: 0x0001c4a1 = +0.05658V CH7: 0x0081c4f0 = -4.03938V + 603: CH0: 0x0001c500 = +0.05663V CH1: 0x0001c47a = +0.05656V CH2: 0x0001c49d = +0.05658V CH3: 0x0001c4b7 = +0.05659V CH4: 0x0081c49f = -4.03942V CH5: 0x0081c4da = -4.03939V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4cb = -4.03940V + 604: CH0: 0x0081c517 = -4.03936V CH1: 0x0001c493 = +0.05657V CH2: 0x0081c498 = -4.03943V CH3: 0x0081c4d2 = -4.03940V CH4: 0x0001c49a = +0.05658V CH5: 0x0081c4ea = -4.03939V CH6: 0x0001c4b3 = +0.05659V CH7: 0x0001c4d5 = +0.05660V + 605: CH0: 0x0081c502 = -4.03937V CH1: 0x0081c47f = -4.03944V CH2: 0x0081c495 = -4.03943V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0001c4b9 = +0.05659V CH5: 0x0001c4eb = +0.05661V CH6: 0x0081c49a = -4.03942V CH7: 0x0081c4e3 = -4.03939V + 606: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0001c467 = +0.05655V CH2: 0x0001c478 = +0.05656V CH3: 0x0081c4ba = -4.03941V CH4: 0x0081c481 = -4.03944V CH5: 0x0001c4d6 = +0.05660V CH6: 0x0001c485 = +0.05656V CH7: 0x0081c4cd = -4.03940V + 607: CH0: 0x0081c4ee = -4.03938V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c499 = -4.03942V CH3: 0x0001c4c1 = +0.05659V CH4: 0x0081c4b1 = -4.03941V CH5: 0x0001c4ee = +0.05662V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0081c4dc = -4.03939V + 608: CH0: 0x0001c4dd = +0.05661V CH1: 0x0001c47a = +0.05656V CH2: 0x0081c482 = -4.03944V CH3: 0x0001c4a4 = +0.05658V CH4: 0x0001c49d = +0.05658V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0001c498 = +0.05657V CH7: 0x0001c4cd = +0.05660V + 609: CH0: 0x0001c4e1 = +0.05661V CH1: 0x0001c471 = +0.05656V CH2: 0x0001c487 = +0.05657V CH3: 0x0081c4bd = -4.03941V CH4: 0x0081c48d = -4.03943V CH5: 0x0001c4dc = +0.05661V CH6: 0x0081c4a9 = -4.03942V CH7: 0x0081c4cd = -4.03940V + 610: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c476 = +0.05656V CH2: 0x0001c4a6 = +0.05658V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c4a9 = +0.05658V CH5: 0x0001c4dd = +0.05661V CH6: 0x0001c49e = +0.05658V CH7: 0x0081c4d4 = -4.03940V + 611: CH0: 0x0001c513 = +0.05663V CH1: 0x0081c494 = -4.03943V CH2: 0x0001c4b1 = +0.05659V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0001c4af = +0.05659V CH5: 0x0001c4f3 = +0.05662V CH6: 0x0001c4b0 = +0.05659V CH7: 0x0081c504 = -4.03937V + 612: CH0: 0x0081c4f5 = -4.03938V CH1: 0x0001c491 = +0.05657V CH2: 0x0001c4b1 = +0.05659V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0081c4c5 = -4.03940V CH5: 0x0001c4f9 = +0.05662V CH6: 0x0001c4b4 = +0.05659V CH7: 0x0081c507 = -4.03937V + 613: CH0: 0x0081c50b = -4.03937V CH1: 0x0001c4a0 = +0.05658V CH2: 0x0001c4af = +0.05659V CH3: 0x0081c4d7 = -4.03939V CH4: 0x0001c4c3 = +0.05660V CH5: 0x0001c500 = +0.05663V CH6: 0x0001c4b2 = +0.05659V CH7: 0x0001c4ed = +0.05662V + 614: CH0: 0x0081c507 = -4.03937V CH1: 0x0081c47f = -4.03944V CH2: 0x0081c4a9 = -4.03942V CH3: 0x0001c4cc = +0.05660V CH4: 0x0081c4ba = -4.03941V CH5: 0x0081c4f9 = -4.03938V CH6: 0x0081c4a6 = -4.03942V CH7: 0x0081c4e6 = -4.03939V + 615: CH0: 0x0001c506 = +0.05663V CH1: 0x0001c492 = +0.05657V CH2: 0x0001c4a8 = +0.05658V CH3: 0x0081c4d7 = -4.03939V CH4: 0x0001c4a7 = +0.05658V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0081c4de = -4.03939V + 616: CH0: 0x0001c518 = +0.05664V CH1: 0x0081c4cc = -4.03940V CH2: 0x0001c4c9 = +0.05660V CH3: 0x0001c4ed = +0.05662V CH4: 0x0001c4d5 = +0.05660V CH5: 0x0081c50c = -4.03937V CH6: 0x0001c4d1 = +0.05660V CH7: 0x0081c4ff = -4.03938V + 617: CH0: 0x0081c509 = -4.03937V CH1: 0x0081c49f = -4.03942V CH2: 0x0081c4ac = -4.03942V CH3: 0x0081c4c4 = -4.03940V CH4: 0x0081c4d0 = -4.03940V CH5: 0x0001c509 = +0.05663V CH6: 0x0081c4b3 = -4.03941V CH7: 0x0081c4e7 = -4.03939V + 618: CH0: 0x0001c51e = +0.05664V CH1: 0x0001c497 = +0.05657V CH2: 0x0001c4a9 = +0.05658V CH3: 0x0001c4da = +0.05661V CH4: 0x0081c4ae = -4.03941V CH5: 0x0001c50d = +0.05663V CH6: 0x0081c4b6 = -4.03941V CH7: 0x0081c4f7 = -4.03938V + 619: CH0: 0x0001c4fc = +0.05662V CH1: 0x0081c476 = -4.03944V CH2: 0x0001c4a2 = +0.05658V CH3: 0x0081c4e0 = -4.03939V CH4: 0x0081c4b5 = -4.03941V CH5: 0x0001c4ec = +0.05662V CH6: 0x0081c4b9 = -4.03941V CH7: 0x0001c4f2 = +0.05662V + 620: CH0: 0x0001c51e = +0.05664V CH1: 0x0081c4a7 = -4.03942V CH2: 0x0001c4ba = +0.05659V CH3: 0x0001c4f0 = +0.05662V CH4: 0x0001c4d0 = +0.05660V CH5: 0x0081c509 = -4.03937V CH6: 0x0081c4d6 = -4.03940V CH7: 0x0001c4ea = +0.05661V + 621: CH0: 0x0001c514 = +0.05663V CH1: 0x0001c4a8 = +0.05658V CH2: 0x0001c4b9 = +0.05659V CH3: 0x0081c4df = -4.03939V CH4: 0x0081c4c5 = -4.03940V CH5: 0x0001c50e = +0.05663V CH6: 0x0001c4d5 = +0.05660V CH7: 0x0001c501 = +0.05663V + 622: CH0: 0x0001c514 = +0.05663V CH1: 0x0001c484 = +0.05656V CH2: 0x0081c4a5 = -4.03942V CH3: 0x0081c4cb = -4.03940V CH4: 0x0001c4c3 = +0.05660V CH5: 0x0081c504 = -4.03937V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0081c4f1 = -4.03938V + 623: CH0: 0x0001c50f = +0.05663V CH1: 0x0081c491 = -4.03943V CH2: 0x0081c4ad = -4.03942V CH3: 0x0001c4cc = +0.05660V CH4: 0x0081c4c4 = -4.03940V CH5: 0x0081c50d = -4.03937V CH6: 0x0001c4b0 = +0.05659V CH7: 0x0081c4fc = -4.03938V + 624: CH0: 0x0081c4e2 = -4.03939V CH1: 0x0001c474 = +0.05656V CH2: 0x0001c47f = +0.05656V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0001c49a = +0.05658V CH5: 0x0001c4c0 = +0.05659V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4da = +0.05661V + 625: CH0: 0x0081c50b = -4.03937V CH1: 0x0001c4a0 = +0.05658V CH2: 0x0001c4b5 = +0.05659V CH3: 0x0081c4d5 = -4.03940V CH4: 0x0001c4be = +0.05659V CH5: 0x0001c4ff = +0.05662V CH6: 0x0001c4bb = +0.05659V CH7: 0x0081c4e0 = -4.03939V + 626: CH0: 0x0081c50d = -4.03937V CH1: 0x0081c496 = -4.03943V CH2: 0x0001c4ab = +0.05658V CH3: 0x0081c4cf = -4.03940V CH4: 0x0001c4b9 = +0.05659V CH5: 0x0081c50b = -4.03937V CH6: 0x0001c4c4 = +0.05660V CH7: 0x0001c4fe = +0.05662V + 627: CH0: 0x0001c523 = +0.05664V CH1: 0x0081c487 = -4.03943V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0001c4d9 = +0.05661V CH4: 0x0081c4c5 = -4.03940V CH5: 0x0081c4f9 = -4.03938V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0081c4f7 = -4.03938V + 628: CH0: 0x0001c4f6 = +0.05662V CH1: 0x0001c48c = +0.05657V CH2: 0x0081c4b1 = -4.03941V CH3: 0x0001c4ce = +0.05660V CH4: 0x0001c4b0 = +0.05659V CH5: 0x0001c50b = +0.05663V CH6: 0x0081c4a9 = -4.03942V CH7: 0x0001c4e7 = +0.05661V + 629: CH0: 0x0001c50a = +0.05663V CH1: 0x0001c49b = +0.05658V CH2: 0x0001c4ad = +0.05658V CH3: 0x0001c4cf = +0.05660V CH4: 0x0001c4ab = +0.05658V CH5: 0x0081c512 = -4.03937V CH6: 0x0001c4b5 = +0.05659V CH7: 0x0081c4f8 = -4.03938V + 630: CH0: 0x0081c515 = -4.03936V CH1: 0x0001c49b = +0.05658V CH2: 0x0001c4ad = +0.05658V CH3: 0x0001c4d3 = +0.05660V CH4: 0x0081c4bf = -4.03941V CH5: 0x0081c506 = -4.03937V CH6: 0x0001c4c1 = +0.05659V CH7: 0x0001c4f6 = +0.05662V + 631: CH0: 0x0001c4d0 = +0.05660V CH1: 0x0001c46e = +0.05655V CH2: 0x0001c47f = +0.05656V CH3: 0x0001c4ae = +0.05658V CH4: 0x0001c488 = +0.05657V CH5: 0x0001c4c9 = +0.05660V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4cb = +0.05660V + 632: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0081c47f = -4.03944V CH2: 0x0001c490 = +0.05657V CH3: 0x0081c4c5 = -4.03940V CH4: 0x0001c4b9 = +0.05659V CH5: 0x0081c4fa = -4.03938V CH6: 0x0081c49c = -4.03942V CH7: 0x0001c4d9 = +0.05661V + 633: CH0: 0x0081c4ef = -4.03938V CH1: 0x0001c482 = +0.05656V CH2: 0x0001c46e = +0.05655V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0081c4ac = -4.03942V CH5: 0x0081c4f7 = -4.03938V CH6: 0x0081c499 = -4.03942V CH7: 0x0001c4de = +0.05661V + 634: CH0: 0x0001c4ff = +0.05662V CH1: 0x0001c49e = +0.05658V CH2: 0x0081c49e = -4.03942V CH3: 0x0081c4c1 = -4.03941V CH4: 0x0001c4b9 = +0.05659V CH5: 0x0001c4fd = +0.05662V CH6: 0x0081c4aa = -4.03942V CH7: 0x0081c4ef = -4.03938V + 635: CH0: 0x0081c4ea = -4.03939V CH1: 0x0001c4a8 = +0.05658V CH2: 0x0001c4aa = +0.05658V CH3: 0x0001c4c3 = +0.05660V CH4: 0x0081c4bd = -4.03941V CH5: 0x0001c50e = +0.05663V CH6: 0x0081c4ae = -4.03941V CH7: 0x0001c4e8 = +0.05661V + 636: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c498 = +0.05657V CH2: 0x0081c485 = -4.03943V CH3: 0x0081c4ce = -4.03940V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0081c4e3 = -4.03939V CH6: 0x0081c495 = -4.03943V CH7: 0x0081c4e6 = -4.03939V + 637: CH0: 0x0001c502 = +0.05663V CH1: 0x0081c48b = -4.03943V CH2: 0x0081c4a8 = -4.03942V CH3: 0x0001c4cf = +0.05660V CH4: 0x0081c4c0 = -4.03941V CH5: 0x0081c4ef = -4.03938V CH6: 0x0001c496 = +0.05657V CH7: 0x0081c4eb = -4.03938V + 638: CH0: 0x0001c502 = +0.05663V CH1: 0x0081c47d = -4.03944V CH2: 0x0001c492 = +0.05657V CH3: 0x0001c4cf = +0.05660V CH4: 0x0001c4a6 = +0.05658V CH5: 0x0001c508 = +0.05663V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0001c4e2 = +0.05661V + 639: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0081c485 = -4.03943V CH2: 0x0081c489 = -4.03943V CH3: 0x0001c4b2 = +0.05659V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0001c4e3 = +0.05661V CH6: 0x0001c498 = +0.05657V CH7: 0x0081c4dc = -4.03939V + 640: CH0: 0x0001c4d3 = +0.05660V CH1: 0x0081c468 = -4.03945V CH2: 0x0001c480 = +0.05656V CH3: 0x0081c48e = -4.03943V CH4: 0x0001c48c = +0.05657V CH5: 0x0081c4c7 = -4.03940V CH6: 0x0081c47f = -4.03944V CH7: 0x0001c4c7 = +0.05660V + 641: CH0: 0x0001c4d6 = +0.05660V CH1: 0x0001c45c = +0.05654V CH2: 0x0081c479 = -4.03944V CH3: 0x0081c4a1 = -4.03942V CH4: 0x0001c475 = +0.05656V CH5: 0x0081c4cd = -4.03940V CH6: 0x0001c499 = +0.05657V CH7: 0x0081c4c2 = -4.03940V + 642: CH0: 0x0001c4e0 = +0.05661V CH1: 0x0081c480 = -4.03944V CH2: 0x0081c479 = -4.03944V CH3: 0x0081c4a8 = -4.03942V CH4: 0x0001c4a4 = +0.05658V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0081c497 = -4.03943V CH7: 0x0081c4ca = -4.03940V + 643: CH0: 0x0001c50e = +0.05663V CH1: 0x0081c49b = -4.03942V CH2: 0x0081c499 = -4.03942V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0081c4af = -4.03941V CH5: 0x0081c50a = -4.03937V CH6: 0x0081c4b4 = -4.03941V CH7: 0x0001c4fe = +0.05662V + 644: CH0: 0x0081c4fd = -4.03938V CH1: 0x0001c484 = +0.05656V CH2: 0x0081c49a = -4.03942V CH3: 0x0081c4be = -4.03941V CH4: 0x0081c49c = -4.03942V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0001c49f = +0.05658V CH7: 0x0081c4da = -4.03939V + 645: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0081c488 = -4.03943V CH2: 0x0001c49c = +0.05658V CH3: 0x0001c4ce = +0.05660V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0081c4f6 = -4.03938V CH6: 0x0001c499 = +0.05657V CH7: 0x0081c4d9 = -4.03939V + 646: CH0: 0x0001c508 = +0.05663V CH1: 0x0001c47c = +0.05656V CH2: 0x0081c4aa = -4.03942V CH3: 0x0001c4d1 = +0.05660V CH4: 0x0081c4a1 = -4.03942V CH5: 0x0001c4fe = +0.05662V CH6: 0x0081c4c1 = -4.03941V CH7: 0x0001c4e9 = +0.05661V + 647: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0081c46f = -4.03945V CH2: 0x0081c486 = -4.03943V CH3: 0x0081c4b5 = -4.03941V CH4: 0x0081c4b0 = -4.03941V CH5: 0x0081c4ec = -4.03938V CH6: 0x0001c4af = +0.05659V CH7: 0x0081c4cb = -4.03940V + 648: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0081c47d = -4.03944V CH2: 0x0001c487 = +0.05657V CH3: 0x0001c4be = +0.05659V CH4: 0x0001c4a5 = +0.05658V CH5: 0x0081c4f2 = -4.03938V CH6: 0x0081c4a1 = -4.03942V CH7: 0x0001c4e4 = +0.05661V + 649: CH0: 0x0081c500 = -4.03937V CH1: 0x0081c478 = -4.03944V CH2: 0x0001c48f = +0.05657V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0081c48e = -4.03943V CH5: 0x0001c4cc = +0.05660V CH6: 0x0081c49d = -4.03942V CH7: 0x0001c4e0 = +0.05661V + 650: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0081c473 = -4.03944V CH2: 0x0081c487 = -4.03943V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0081c4ad = -4.03942V CH5: 0x0081c4dc = -4.03939V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4e4 = +0.05661V + 651: CH0: 0x0001c4f5 = +0.05662V CH1: 0x0081c490 = -4.03943V CH2: 0x0001c4a0 = +0.05658V CH3: 0x0081c4c1 = -4.03941V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0001c4eb = +0.05661V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0001c4df = +0.05661V + 652: CH0: 0x0081c50f = -4.03937V CH1: 0x0001c49f = +0.05658V CH2: 0x0081c4a5 = -4.03942V CH3: 0x0001c4e6 = +0.05661V CH4: 0x0001c4c8 = +0.05660V CH5: 0x0001c4fe = +0.05662V CH6: 0x0001c4a8 = +0.05658V CH7: 0x0081c4ec = -4.03938V + 653: CH0: 0x0081c4df = -4.03939V CH1: 0x0001c464 = +0.05655V CH2: 0x0081c485 = -4.03943V CH3: 0x0081c4c3 = -4.03940V CH4: 0x0081c4a3 = -4.03942V CH5: 0x0081c4e5 = -4.03939V CH6: 0x0001c49b = +0.05658V CH7: 0x0081c4d9 = -4.03939V + 654: CH0: 0x0081c4f8 = -4.03938V CH1: 0x0081c476 = -4.03944V CH2: 0x0081c490 = -4.03943V CH3: 0x0081c4ae = -4.03941V CH4: 0x0001c48f = +0.05657V CH5: 0x0001c4c4 = +0.05660V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4bb = +0.05659V + 655: CH0: 0x0001c506 = +0.05663V CH1: 0x0081c48b = -4.03943V CH2: 0x0001c4a7 = +0.05658V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c4b0 = -4.03941V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4e0 = +0.05661V + 656: CH0: 0x0001c4f6 = +0.05662V CH1: 0x0081c479 = -4.03944V CH2: 0x0001c489 = +0.05657V CH3: 0x0081c4ad = -4.03942V CH4: 0x0001c4ab = +0.05658V CH5: 0x0001c4ec = +0.05662V CH6: 0x0001c49b = +0.05658V CH7: 0x0001c4dd = +0.05661V + 657: CH0: 0x0001c4e9 = +0.05661V CH1: 0x0081c470 = -4.03944V CH2: 0x0001c462 = +0.05655V CH3: 0x0001c4aa = +0.05658V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0081c4d4 = -4.03940V CH6: 0x0001c47b = +0.05656V CH7: 0x0001c4d4 = +0.05660V + 658: CH0: 0x0081c4d3 = -4.03940V CH1: 0x0001c470 = +0.05655V CH2: 0x0001c475 = +0.05656V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0001c487 = +0.05657V CH5: 0x0081c4d7 = -4.03939V CH6: 0x0001c498 = +0.05657V CH7: 0x0081c4df = -4.03939V + 659: CH0: 0x0001c4f3 = +0.05662V CH1: 0x0001c48a = +0.05657V CH2: 0x0001c48f = +0.05657V CH3: 0x0081c4bf = -4.03941V CH4: 0x0001c4a7 = +0.05658V CH5: 0x0001c4ee = +0.05662V CH6: 0x0081c4af = -4.03941V CH7: 0x0081c4dc = -4.03939V + 660: CH0: 0x0001c4fe = +0.05662V CH1: 0x0081c49e = -4.03942V CH2: 0x0081c4a6 = -4.03942V CH3: 0x0001c4d4 = +0.05660V CH4: 0x0001c4b5 = +0.05659V CH5: 0x0001c4f8 = +0.05662V CH6: 0x0081c4b3 = -4.03941V CH7: 0x0001c4f6 = +0.05662V + 661: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0001c4a3 = +0.05658V CH2: 0x0001c49f = +0.05658V CH3: 0x0081c4d1 = -4.03940V CH4: 0x0001c4ba = +0.05659V CH5: 0x0001c506 = +0.05663V CH6: 0x0081c4b7 = -4.03941V CH7: 0x0001c4f4 = +0.05662V + 662: CH0: 0x0081c4fe = -4.03938V CH1: 0x0001c484 = +0.05656V CH2: 0x0001c48d = +0.05657V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0001c4b6 = +0.05659V CH5: 0x0001c4f9 = +0.05662V CH6: 0x0081c4a6 = -4.03942V CH7: 0x0081c4de = -4.03939V + 663: CH0: 0x0081c50c = -4.03937V CH1: 0x0081c49e = -4.03942V CH2: 0x0001c4b5 = +0.05659V CH3: 0x0081c4d9 = -4.03939V CH4: 0x0081c4c9 = -4.03940V CH5: 0x0001c4f7 = +0.05662V CH6: 0x0001c4ba = +0.05659V CH7: 0x0081c4e8 = -4.03939V + 664: CH0: 0x0001c511 = +0.05663V CH1: 0x0001c489 = +0.05657V CH2: 0x0001c49d = +0.05658V CH3: 0x0001c4bc = +0.05659V CH4: 0x0081c4c6 = -4.03940V CH5: 0x0001c4ed = +0.05662V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0081c4cf = -4.03940V + 665: CH0: 0x0001c512 = +0.05663V CH1: 0x0001c483 = +0.05656V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0081c4c9 = -4.03940V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0081c4f1 = -4.03938V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0001c4d2 = +0.05660V + 666: CH0: 0x0081c503 = -4.03937V CH1: 0x0001c4c8 = +0.05660V CH2: 0x0001c4be = +0.05659V CH3: 0x0081c4ea = -4.03939V CH4: 0x0081c4c7 = -4.03940V CH5: 0x0081c51f = -4.03936V CH6: 0x0001c4c4 = +0.05660V CH7: 0x0001c4fa = +0.05662V + 667: CH0: 0x0001c4ed = +0.05662V CH1: 0x0081c494 = -4.03943V CH2: 0x0001c489 = +0.05657V CH3: 0x0001c4c1 = +0.05659V CH4: 0x0081c4a9 = -4.03942V CH5: 0x0001c4f7 = +0.05662V CH6: 0x0001c4c1 = +0.05659V CH7: 0x0081c4dc = -4.03939V + 668: CH0: 0x0081c4eb = -4.03938V CH1: 0x0001c478 = +0.05656V CH2: 0x0001c48c = +0.05657V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0001c49d = +0.05658V CH5: 0x0001c4dc = +0.05661V CH6: 0x0001c4a8 = +0.05658V CH7: 0x0001c4d6 = +0.05660V + 669: CH0: 0x0001c50c = +0.05663V CH1: 0x0081c4a3 = -4.03942V CH2: 0x0001c4b0 = +0.05659V CH3: 0x0081c4d3 = -4.03940V CH4: 0x0081c4ce = -4.03940V CH5: 0x0001c50e = +0.05663V CH6: 0x0001c4c1 = +0.05659V CH7: 0x0001c501 = +0.05663V + 670: CH0: 0x0001c50b = +0.05663V CH1: 0x0001c4a5 = +0.05658V CH2: 0x0001c4aa = +0.05658V CH3: 0x0001c4df = +0.05661V CH4: 0x0001c4b5 = +0.05659V CH5: 0x0081c511 = -4.03937V CH6: 0x0001c4bf = +0.05659V CH7: 0x0081c4ed = -4.03938V + 671: CH0: 0x0081c50b = -4.03937V CH1: 0x0081c48e = -4.03943V CH2: 0x0081c496 = -4.03943V CH3: 0x0081c4cd = -4.03940V CH4: 0x0001c4a4 = +0.05658V CH5: 0x0001c4ee = +0.05662V CH6: 0x0001c4a1 = +0.05658V CH7: 0x0081c4ed = -4.03938V + 672: CH0: 0x0081c50b = -4.03937V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c49a = -4.03942V CH3: 0x0081c4be = -4.03941V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0081c4b1 = -4.03941V CH7: 0x0081c4fd = -4.03938V + 673: CH0: 0x0081c4e7 = -4.03939V CH1: 0x0001c480 = +0.05656V CH2: 0x0001c47d = +0.05656V CH3: 0x0001c4c1 = +0.05659V CH4: 0x0081c49f = -4.03942V CH5: 0x0001c4d7 = +0.05660V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4cd = +0.05660V + 674: CH0: 0x0081c4fc = -4.03938V CH1: 0x0081c48c = -4.03943V CH2: 0x0081c49a = -4.03942V CH3: 0x0001c4d5 = +0.05660V CH4: 0x0001c4b6 = +0.05659V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0081c4ae = -4.03941V CH7: 0x0081c4eb = -4.03938V + 675: CH0: 0x0001c500 = +0.05663V CH1: 0x0001c47f = +0.05656V CH2: 0x0001c49c = +0.05658V CH3: 0x0081c4d4 = -4.03940V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0001c4ef = +0.05662V CH6: 0x0081c4b2 = -4.03941V CH7: 0x0001c4f4 = +0.05662V + 676: CH0: 0x0081c4f4 = -4.03938V CH1: 0x0001c488 = +0.05657V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c49c = -4.03942V CH5: 0x0001c4d9 = +0.05661V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0081c4cf = -4.03940V + 677: CH0: 0x0081c4ff = -4.03938V CH1: 0x0001c47f = +0.05656V CH2: 0x0001c48e = +0.05657V CH3: 0x0081c4bd = -4.03941V CH4: 0x0081c4a1 = -4.03942V CH5: 0x0001c4e7 = +0.05661V CH6: 0x0001c4ae = +0.05658V CH7: 0x0001c4e5 = +0.05661V + 678: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0001c45c = +0.05654V CH2: 0x0081c468 = -4.03945V CH3: 0x0081c49f = -4.03942V CH4: 0x0081c48e = -4.03943V CH5: 0x0081c4c7 = -4.03940V CH6: 0x0081c482 = -4.03944V CH7: 0x0001c4c6 = +0.05660V + 679: CH0: 0x0081c4f8 = -4.03938V CH1: 0x0081c48a = -4.03943V CH2: 0x0001c49f = +0.05658V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0081c4ca = -4.03940V CH5: 0x0081c4f7 = -4.03938V CH6: 0x0001c48f = +0.05657V CH7: 0x0081c4da = -4.03939V + 680: CH0: 0x0001c4f2 = +0.05662V CH1: 0x0081c474 = -4.03944V CH2: 0x0001c489 = +0.05657V CH3: 0x0081c4c5 = -4.03940V CH4: 0x0001c499 = +0.05657V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0081c495 = -4.03943V CH7: 0x0081c4d7 = -4.03939V + 681: CH0: 0x0001c4fe = +0.05662V CH1: 0x0001c475 = +0.05656V CH2: 0x0001c492 = +0.05657V CH3: 0x0001c4c5 = +0.05660V CH4: 0x0081c497 = -4.03943V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c4b9 = +0.05659V CH7: 0x0001c4c8 = +0.05660V + 682: CH0: 0x0081c503 = -4.03937V CH1: 0x0001c499 = +0.05657V CH2: 0x0081c4c2 = -4.03940V CH3: 0x0001c4d6 = +0.05660V CH4: 0x0081c4c3 = -4.03940V CH5: 0x0081c50e = -4.03937V CH6: 0x0081c4ba = -4.03941V CH7: 0x0081c4f1 = -4.03938V + 683: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0081c486 = -4.03943V CH2: 0x0081c49f = -4.03942V CH3: 0x0001c4c0 = +0.05659V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0081c4cd = -4.03940V CH6: 0x0001c493 = +0.05657V CH7: 0x0081c4d9 = -4.03939V + 684: CH0: 0x0001c511 = +0.05663V CH1: 0x0001c493 = +0.05657V CH2: 0x0001c4aa = +0.05658V CH3: 0x0001c4d4 = +0.05660V CH4: 0x0081c4af = -4.03941V CH5: 0x0081c503 = -4.03937V CH6: 0x0081c4bb = -4.03941V CH7: 0x0001c4f5 = +0.05662V + 685: CH0: 0x0001c4e6 = +0.05661V CH1: 0x0081c47f = -4.03944V CH2: 0x0081c49f = -4.03942V CH3: 0x0081c4ad = -4.03942V CH4: 0x0081c498 = -4.03943V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0001c47b = +0.05656V CH7: 0x0081c4e1 = -4.03939V + 686: CH0: 0x0081c4f8 = -4.03938V CH1: 0x0001c481 = +0.05656V CH2: 0x0001c495 = +0.05657V CH3: 0x0001c4c4 = +0.05660V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4fd = +0.05662V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4e2 = +0.05661V + 687: CH0: 0x0001c518 = +0.05664V CH1: 0x0081c487 = -4.03943V CH2: 0x0001c498 = +0.05657V CH3: 0x0001c4dd = +0.05661V CH4: 0x0081c4cb = -4.03940V CH5: 0x0001c510 = +0.05663V CH6: 0x0001c4c0 = +0.05659V CH7: 0x0081c4fa = -4.03938V + 688: CH0: 0x0081c4f4 = -4.03938V CH1: 0x0001c488 = +0.05657V CH2: 0x0081c4b4 = -4.03941V CH3: 0x0001c4c3 = +0.05660V CH4: 0x0001c4b9 = +0.05659V CH5: 0x0001c4f8 = +0.05662V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0081c4ed = -4.03938V + 689: CH0: 0x0081c4f8 = -4.03938V CH1: 0x0001c485 = +0.05656V CH2: 0x0001c485 = +0.05656V CH3: 0x0081c4c3 = -4.03940V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0001c4f0 = +0.05662V CH6: 0x0001c4a1 = +0.05658V CH7: 0x0081c4e2 = -4.03939V + 690: CH0: 0x0001c50f = +0.05663V CH1: 0x0081c497 = -4.03943V CH2: 0x0081c48b = -4.03943V CH3: 0x0081c4d0 = -4.03940V CH4: 0x0081c4ac = -4.03942V CH5: 0x0081c4eb = -4.03938V CH6: 0x0081c4a4 = -4.03942V CH7: 0x0081c4de = -4.03939V + 691: CH0: 0x0081c4ed = -4.03938V CH1: 0x0081c480 = -4.03944V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0081c4cd = -4.03940V CH4: 0x0001c4ab = +0.05658V CH5: 0x0001c504 = +0.05663V CH6: 0x0081c4a1 = -4.03942V CH7: 0x0081c4fa = -4.03938V + 692: CH0: 0x0081c4d4 = -4.03940V CH1: 0x0081c45d = -4.03945V CH2: 0x0001c472 = +0.05656V CH3: 0x0081c4aa = -4.03942V CH4: 0x0081c498 = -4.03943V CH5: 0x0081c4d0 = -4.03940V CH6: 0x0081c47e = -4.03944V CH7: 0x0081c4ae = -4.03941V + 693: CH0: 0x0081c4f8 = -4.03938V CH1: 0x0081c489 = -4.03943V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0081c4ba = -4.03941V CH4: 0x0081c4b5 = -4.03941V CH5: 0x0081c4dd = -4.03939V CH6: 0x0001c4a5 = +0.05658V CH7: 0x0081c4d7 = -4.03939V + 694: CH0: 0x0001c4ea = +0.05661V CH1: 0x0001c476 = +0.05656V CH2: 0x0081c485 = -4.03943V CH3: 0x0001c4a7 = +0.05658V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0001c4fe = +0.05662V CH6: 0x0081c489 = -4.03943V CH7: 0x0001c4e4 = +0.05661V + 695: CH0: 0x0001c507 = +0.05663V CH1: 0x0081c493 = -4.03943V CH2: 0x0081c498 = -4.03943V CH3: 0x0001c4d9 = +0.05661V CH4: 0x0001c4b6 = +0.05659V CH5: 0x0081c4f8 = -4.03938V CH6: 0x0001c49c = +0.05658V CH7: 0x0001c4cc = +0.05660V + 696: CH0: 0x0001c523 = +0.05664V CH1: 0x0081c4a2 = -4.03942V CH2: 0x0081c4c1 = -4.03941V CH3: 0x0001c4f9 = +0.05662V CH4: 0x0081c4d7 = -4.03939V CH5: 0x0001c501 = +0.05663V CH6: 0x0081c4c4 = -4.03940V CH7: 0x0081c4fb = -4.03938V + 697: CH0: 0x0001c508 = +0.05663V CH1: 0x0001c4a0 = +0.05658V CH2: 0x0001c49c = +0.05658V CH3: 0x0001c4d2 = +0.05660V CH4: 0x0001c4af = +0.05659V CH5: 0x0081c504 = -4.03937V CH6: 0x0001c4a0 = +0.05658V CH7: 0x0081c4e3 = -4.03939V + 698: CH0: 0x0001c506 = +0.05663V CH1: 0x0081c479 = -4.03944V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4bc = +0.05659V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0081c4ab = -4.03942V CH7: 0x0081c4f6 = -4.03938V + 699: CH0: 0x0001c4e2 = +0.05661V CH1: 0x0081c46d = -4.03945V CH2: 0x0081c47e = -4.03944V CH3: 0x0081c4ad = -4.03942V CH4: 0x0081c4a5 = -4.03942V CH5: 0x0081c4d0 = -4.03940V CH6: 0x0081c48a = -4.03943V CH7: 0x0001c4cd = +0.05660V + 700: CH0: 0x0081c520 = -4.03936V CH1: 0x0001c4c3 = +0.05660V CH2: 0x0001c4bf = +0.05659V CH3: 0x0001c4ef = +0.05662V CH4: 0x0081c4d6 = -4.03940V CH5: 0x0081c519 = -4.03936V CH6: 0x0081c4c1 = -4.03941V CH7: 0x0081c4fd = -4.03938V + 701: CH0: 0x0081c50e = -4.03937V CH1: 0x0081c48e = -4.03943V CH2: 0x0001c49d = +0.05658V CH3: 0x0001c4d3 = +0.05660V CH4: 0x0001c4c9 = +0.05660V CH5: 0x0081c505 = -4.03937V CH6: 0x0001c4bc = +0.05659V CH7: 0x0001c502 = +0.05663V + 702: CH0: 0x0081c4c6 = -4.03940V CH1: 0x0081c471 = -4.03944V CH2: 0x0081c47b = -4.03944V CH3: 0x0001c4b1 = +0.05659V CH4: 0x0081c498 = -4.03943V CH5: 0x0081c4d0 = -4.03940V CH6: 0x0081c489 = -4.03943V CH7: 0x0001c4ae = +0.05658V + 703: CH0: 0x0081c515 = -4.03936V CH1: 0x0001c49d = +0.05658V CH2: 0x0001c4b0 = +0.05659V CH3: 0x0001c4d7 = +0.05660V CH4: 0x0081c4bf = -4.03941V CH5: 0x0081c51a = -4.03936V CH6: 0x0001c4af = +0.05659V CH7: 0x0081c4f0 = -4.03938V + 704: CH0: 0x0001c4ee = +0.05662V CH1: 0x0081c48d = -4.03943V CH2: 0x0001c495 = +0.05657V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0001c4b3 = +0.05659V CH5: 0x0001c4ee = +0.05662V CH6: 0x0081c495 = -4.03943V CH7: 0x0081c4dc = -4.03939V + 705: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0001c48e = +0.05657V CH2: 0x0001c4a7 = +0.05658V CH3: 0x0081c4ce = -4.03940V CH4: 0x0081c49b = -4.03942V CH5: 0x0001c4e0 = +0.05661V CH6: 0x0001c4b6 = +0.05659V CH7: 0x0001c4e8 = +0.05661V + 706: CH0: 0x0081c50a = -4.03937V CH1: 0x0081c4ae = -4.03941V CH2: 0x0001c4b9 = +0.05659V CH3: 0x0001c4e5 = +0.05661V CH4: 0x0001c4cd = +0.05660V CH5: 0x0001c51b = +0.05664V CH6: 0x0081c4d3 = -4.03940V CH7: 0x0081c514 = -4.03936V + 707: CH0: 0x0081c4eb = -4.03938V CH1: 0x0081c4a0 = -4.03942V CH2: 0x0081c4a0 = -4.03942V CH3: 0x0001c4cb = +0.05660V CH4: 0x0081c4ca = -4.03940V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0001c4ab = +0.05658V CH7: 0x0001c4e3 = +0.05661V + 708: CH0: 0x0001c50f = +0.05663V CH1: 0x0081c49a = -4.03942V CH2: 0x0081c4b1 = -4.03941V CH3: 0x0001c4de = +0.05661V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0001c4fd = +0.05662V CH6: 0x0081c4c4 = -4.03940V CH7: 0x0081c508 = -4.03937V + 709: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c49e = +0.05658V CH2: 0x0001c496 = +0.05657V CH3: 0x0081c4d1 = -4.03940V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0001c4f7 = +0.05662V CH6: 0x0001c4b7 = +0.05659V CH7: 0x0001c4f4 = +0.05662V + 710: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0001c485 = +0.05656V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4bb = -4.03941V CH4: 0x0001c4b0 = +0.05659V CH5: 0x0001c4f5 = +0.05662V CH6: 0x0081c4a1 = -4.03942V CH7: 0x0081c4d5 = -4.03940V + 711: CH0: 0x0001c4d1 = +0.05660V CH1: 0x0081c467 = -4.03945V CH2: 0x0001c474 = +0.05656V CH3: 0x0001c48c = +0.05657V CH4: 0x0001c488 = +0.05657V CH5: 0x0081c4e5 = -4.03939V CH6: 0x0081c48d = -4.03943V CH7: 0x0081c4be = -4.03941V + 712: CH0: 0x0081c4da = -4.03939V CH1: 0x0001c47c = +0.05656V CH2: 0x0001c46a = +0.05655V CH3: 0x0001c4ad = +0.05658V CH4: 0x0001c47a = +0.05656V CH5: 0x0001c4cd = +0.05660V CH6: 0x0001c478 = +0.05656V CH7: 0x0001c4b8 = +0.05659V + 713: CH0: 0x0081c516 = -4.03936V CH1: 0x0081c49d = -4.03942V CH2: 0x0081c4aa = -4.03942V CH3: 0x0001c4e2 = +0.05661V CH4: 0x0001c4c7 = +0.05660V CH5: 0x0081c4fc = -4.03938V CH6: 0x0081c4b2 = -4.03941V CH7: 0x0081c4f7 = -4.03938V + 714: CH0: 0x0081c4fe = -4.03938V CH1: 0x0081c4a1 = -4.03942V CH2: 0x0081c4ab = -4.03942V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c4bb = -4.03941V CH5: 0x0001c4ef = +0.05662V CH6: 0x0081c4c8 = -4.03940V CH7: 0x0001c4e8 = +0.05661V + 715: CH0: 0x0081c503 = -4.03937V CH1: 0x0081c495 = -4.03943V CH2: 0x0081c490 = -4.03943V CH3: 0x0081c4e8 = -4.03939V CH4: 0x0001c4b3 = +0.05659V CH5: 0x0001c4e7 = +0.05661V CH6: 0x0081c4ae = -4.03941V CH7: 0x0081c4dc = -4.03939V + 716: CH0: 0x0001c4ea = +0.05661V CH1: 0x0001c473 = +0.05656V CH2: 0x0001c483 = +0.05656V CH3: 0x0081c4ce = -4.03940V CH4: 0x0081c4a1 = -4.03942V CH5: 0x0081c4de = -4.03939V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4e2 = +0.05661V + 717: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0081c482 = -4.03944V CH2: 0x0001c486 = +0.05657V CH3: 0x0001c4bb = +0.05659V CH4: 0x0081c48e = -4.03943V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0001c497 = +0.05657V CH7: 0x0081c4f3 = -4.03938V + 718: CH0: 0x0001c50e = +0.05663V CH1: 0x0001c493 = +0.05657V CH2: 0x0001c49a = +0.05658V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0081c4b8 = -4.03941V CH5: 0x0001c4f8 = +0.05662V CH6: 0x0081c4ae = -4.03941V CH7: 0x0001c4dc = +0.05661V + 719: CH0: 0x0081c503 = -4.03937V CH1: 0x0081c498 = -4.03943V CH2: 0x0001c4a6 = +0.05658V CH3: 0x0081c4d2 = -4.03940V CH4: 0x0081c4ae = -4.03941V CH5: 0x0001c4f7 = +0.05662V CH6: 0x0081c4be = -4.03941V CH7: 0x0001c4ee = +0.05662V + 720: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0081c492 = -4.03943V CH2: 0x0001c49c = +0.05658V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0081c4b7 = -4.03941V CH5: 0x0001c4ef = +0.05662V CH6: 0x0001c4aa = +0.05658V CH7: 0x0001c4ea = +0.05661V + 721: CH0: 0x0001c4ec = +0.05662V CH1: 0x0081c48c = -4.03943V CH2: 0x0081c496 = -4.03943V CH3: 0x0081c4cd = -4.03940V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0081c4a1 = -4.03942V CH7: 0x0001c4d9 = +0.05661V + 722: CH0: 0x0081c513 = -4.03937V CH1: 0x0001c49d = +0.05658V CH2: 0x0081c4a7 = -4.03942V CH3: 0x0081c4e7 = -4.03939V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0001c505 = +0.05663V CH6: 0x0081c4c5 = -4.03940V CH7: 0x0001c4fc = +0.05662V + 723: CH0: 0x0081c508 = -4.03937V CH1: 0x0081c48b = -4.03943V CH2: 0x0001c49d = +0.05658V CH3: 0x0081c4c3 = -4.03940V CH4: 0x0081c4a9 = -4.03942V CH5: 0x0081c500 = -4.03937V CH6: 0x0001c4ba = +0.05659V CH7: 0x0001c4d4 = +0.05660V + 724: CH0: 0x0001c510 = +0.05663V CH1: 0x0081c47b = -4.03944V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0081c4c4 = -4.03940V CH4: 0x0001c4ac = +0.05658V CH5: 0x0081c4f7 = -4.03938V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0081c4ed = -4.03938V + 725: CH0: 0x0001c51d = +0.05664V CH1: 0x0001c493 = +0.05657V CH2: 0x0081c4b8 = -4.03941V CH3: 0x0001c4e2 = +0.05661V CH4: 0x0001c4ce = +0.05660V CH5: 0x0001c50a = +0.05663V CH6: 0x0001c4ad = +0.05658V CH7: 0x0081c4ef = -4.03938V + 726: CH0: 0x0081c4fb = -4.03938V CH1: 0x0081c492 = -4.03943V CH2: 0x0081c4b1 = -4.03941V CH3: 0x0081c4e5 = -4.03939V CH4: 0x0001c4bd = +0.05659V CH5: 0x0081c4f8 = -4.03938V CH6: 0x0001c4ad = +0.05658V CH7: 0x0001c4eb = +0.05661V + 727: CH0: 0x0081c4fb = -4.03938V CH1: 0x0081c48f = -4.03943V CH2: 0x0001c497 = +0.05657V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4f7 = +0.05662V CH6: 0x0001c4a6 = +0.05658V CH7: 0x0001c4e0 = +0.05661V + 728: CH0: 0x0081c4ed = -4.03938V CH1: 0x0081c478 = -4.03944V CH2: 0x0081c47c = -4.03944V CH3: 0x0081c4c3 = -4.03940V CH4: 0x0001c4b5 = +0.05659V CH5: 0x0001c4f0 = +0.05662V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4ba = +0.05659V + 729: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0081c479 = -4.03944V CH2: 0x0081c481 = -4.03944V CH3: 0x0081c4af = -4.03941V CH4: 0x0001c4aa = +0.05658V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0081c480 = -4.03944V CH7: 0x0001c4cd = +0.05660V + 730: CH0: 0x0081c504 = -4.03937V CH1: 0x0081c494 = -4.03943V CH2: 0x0081c498 = -4.03943V CH3: 0x0081c4c0 = -4.03941V CH4: 0x0081c498 = -4.03943V CH5: 0x0001c4f9 = +0.05662V CH6: 0x0081c49a = -4.03942V CH7: 0x0081c4db = -4.03939V + 731: CH0: 0x0081c513 = -4.03937V CH1: 0x0001c489 = +0.05657V CH2: 0x0081c4ba = -4.03941V CH3: 0x0001c4dd = +0.05661V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0001c50a = +0.05663V CH6: 0x0001c4b9 = +0.05659V CH7: 0x0081c4fd = -4.03938V + 732: CH0: 0x0081c510 = -4.03937V CH1: 0x0001c4a2 = +0.05658V CH2: 0x0001c4aa = +0.05658V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0081c4c0 = -4.03941V CH5: 0x0081c4fe = -4.03938V CH6: 0x0081c4c7 = -4.03940V CH7: 0x0001c4f9 = +0.05662V + 733: CH0: 0x0001c4fe = +0.05662V CH1: 0x0001c481 = +0.05656V CH2: 0x0081c496 = -4.03943V CH3: 0x0081c4c9 = -4.03940V CH4: 0x0001c4b7 = +0.05659V CH5: 0x0081c50c = -4.03937V CH6: 0x0081c4cd = -4.03940V CH7: 0x0001c4ea = +0.05661V + 734: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0081c483 = -4.03944V CH2: 0x0081c48d = -4.03943V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c4b4 = -4.03941V CH5: 0x0001c4f1 = +0.05662V CH6: 0x0081c4ab = -4.03942V CH7: 0x0001c4de = +0.05661V + 735: CH0: 0x0081c50a = -4.03937V CH1: 0x0001c4ad = +0.05658V CH2: 0x0001c48e = +0.05657V CH3: 0x0081c4d0 = -4.03940V CH4: 0x0001c4b0 = +0.05659V CH5: 0x0081c4fc = -4.03938V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0081c4ec = -4.03938V + 736: CH0: 0x0081c512 = -4.03937V CH1: 0x0001c476 = +0.05656V CH2: 0x0081c4a5 = -4.03942V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0001c4b8 = +0.05659V CH5: 0x0001c502 = +0.05663V CH6: 0x0081c4b3 = -4.03941V CH7: 0x0081c4f7 = -4.03938V + 737: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0081c45b = -4.03946V CH2: 0x0081c478 = -4.03944V CH3: 0x0081c4a3 = -4.03942V CH4: 0x0081c4b9 = -4.03941V CH5: 0x0001c4d1 = +0.05660V CH6: 0x0081c492 = -4.03943V CH7: 0x0001c4c3 = +0.05660V + 738: CH0: 0x0081c504 = -4.03937V CH1: 0x0001c48e = +0.05657V CH2: 0x0081c48c = -4.03943V CH3: 0x0001c4c7 = +0.05660V CH4: 0x0081c4be = -4.03941V CH5: 0x0081c4f6 = -4.03938V CH6: 0x0081c498 = -4.03943V CH7: 0x0081c4e2 = -4.03939V + 739: CH0: 0x0081c4fd = -4.03938V CH1: 0x0081c488 = -4.03943V CH2: 0x0001c481 = +0.05656V CH3: 0x0081c4c5 = -4.03940V CH4: 0x0001c4bb = +0.05659V CH5: 0x0001c4f1 = +0.05662V CH6: 0x0081c4a8 = -4.03942V CH7: 0x0081c4e2 = -4.03939V + 740: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0001c474 = +0.05656V CH2: 0x0081c481 = -4.03944V CH3: 0x0001c4bc = +0.05659V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0081c4e8 = -4.03939V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0081c4d4 = -4.03940V + 741: CH0: 0x0081c514 = -4.03936V CH1: 0x0001c48a = +0.05657V CH2: 0x0081c498 = -4.03943V CH3: 0x0081c4d0 = -4.03940V CH4: 0x0001c4d0 = +0.05660V CH5: 0x0081c50d = -4.03937V CH6: 0x0001c4b9 = +0.05659V CH7: 0x0081c4e6 = -4.03939V + 742: CH0: 0x0001c504 = +0.05663V CH1: 0x0081c47a = -4.03944V CH2: 0x0081c477 = -4.03944V CH3: 0x0081c4ac = -4.03942V CH4: 0x0081c4ae = -4.03941V CH5: 0x0001c4ea = +0.05661V CH6: 0x0081c491 = -4.03943V CH7: 0x0081c4ca = -4.03940V + 743: CH0: 0x0081c509 = -4.03937V CH1: 0x0001c495 = +0.05657V CH2: 0x0081c49c = -4.03942V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0081c4a9 = -4.03942V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0001c4a8 = +0.05658V CH7: 0x0001c4fa = +0.05662V + 744: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0001c490 = +0.05657V CH2: 0x0081c48a = -4.03943V CH3: 0x0081c4d4 = -4.03940V CH4: 0x0001c4d3 = +0.05660V CH5: 0x0001c4fa = +0.05662V CH6: 0x0001c4aa = +0.05658V CH7: 0x0081c4f0 = -4.03938V + 745: CH0: 0x0081c501 = -4.03937V CH1: 0x0001c49f = +0.05658V CH2: 0x0081c4a3 = -4.03942V CH3: 0x0081c4d7 = -4.03939V CH4: 0x0001c4b2 = +0.05659V CH5: 0x0081c503 = -4.03937V CH6: 0x0081c4a5 = -4.03942V CH7: 0x0081c4db = -4.03939V + 746: CH0: 0x0081c522 = -4.03936V CH1: 0x0001c4a9 = +0.05658V CH2: 0x0001c4aa = +0.05658V CH3: 0x0001c4da = +0.05661V CH4: 0x0081c4b6 = -4.03941V CH5: 0x0001c4f3 = +0.05662V CH6: 0x0081c4bb = -4.03941V CH7: 0x0081c4e6 = -4.03939V + 747: CH0: 0x0001c4fd = +0.05662V CH1: 0x0001c493 = +0.05657V CH2: 0x0081c49b = -4.03942V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0081c4ad = -4.03942V CH5: 0x0001c4ce = +0.05660V CH6: 0x0001c497 = +0.05657V CH7: 0x0081c4d8 = -4.03939V + 748: CH0: 0x0001c51d = +0.05664V CH1: 0x0081c4ac = -4.03942V CH2: 0x0001c4b2 = +0.05659V CH3: 0x0081c4d5 = -4.03940V CH4: 0x0001c4cb = +0.05660V CH5: 0x0001c503 = +0.05663V CH6: 0x0081c4c6 = -4.03940V CH7: 0x0001c501 = +0.05663V + 749: CH0: 0x0081c51a = -4.03936V CH1: 0x0001c493 = +0.05657V CH2: 0x0081c496 = -4.03943V CH3: 0x0081c4df = -4.03939V CH4: 0x0001c4c7 = +0.05660V CH5: 0x0001c508 = +0.05663V CH6: 0x0081c4c3 = -4.03940V CH7: 0x0081c4ee = -4.03938V + 750: CH0: 0x0001c50d = +0.05663V CH1: 0x0081c4a0 = -4.03942V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0081c4ca = -4.03940V CH4: 0x0081c4ba = -4.03941V CH5: 0x0001c4ff = +0.05662V CH6: 0x0081c4ad = -4.03942V CH7: 0x0001c4f6 = +0.05662V + 751: CH0: 0x0001c4fe = +0.05662V CH1: 0x0081c486 = -4.03943V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0001c4b9 = +0.05659V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0001c4ae = +0.05658V CH7: 0x0001c4db = +0.05661V + 752: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0001c473 = +0.05656V CH2: 0x0001c496 = +0.05657V CH3: 0x0081c4c2 = -4.03940V CH4: 0x0081c496 = -4.03943V CH5: 0x0081c4e0 = -4.03939V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0081c4d2 = -4.03940V + 753: CH0: 0x0001c4ef = +0.05662V CH1: 0x0081c480 = -4.03944V CH2: 0x0081c498 = -4.03943V CH3: 0x0081c4bf = -4.03941V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0081c49e = -4.03942V CH7: 0x0001c4e2 = +0.05661V + 754: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0081c48a = -4.03943V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0001c4cd = +0.05660V CH4: 0x0081c4bc = -4.03941V CH5: 0x0001c4f4 = +0.05662V CH6: 0x0001c4a0 = +0.05658V CH7: 0x0081c4c4 = -4.03940V + 755: CH0: 0x0001c514 = +0.05663V CH1: 0x0081c4b8 = -4.03941V CH2: 0x0001c4ae = +0.05658V CH3: 0x0081c4e3 = -4.03939V CH4: 0x0081c4d4 = -4.03940V CH5: 0x0081c509 = -4.03937V CH6: 0x0081c4ba = -4.03941V CH7: 0x0001c510 = +0.05663V + 756: CH0: 0x0001c4f2 = +0.05662V CH1: 0x0081c464 = -4.03945V CH2: 0x0081c47a = -4.03944V CH3: 0x0081c4aa = -4.03942V CH4: 0x0081c498 = -4.03943V CH5: 0x0001c4ce = +0.05660V CH6: 0x0001c485 = +0.05656V CH7: 0x0001c4c3 = +0.05660V + 757: CH0: 0x0001c4e1 = +0.05661V CH1: 0x0081c467 = -4.03945V CH2: 0x0001c485 = +0.05656V CH3: 0x0081c49f = -4.03942V CH4: 0x0081c48c = -4.03943V CH5: 0x0001c4bf = +0.05659V CH6: 0x0081c494 = -4.03943V CH7: 0x0081c4c0 = -4.03941V + 758: CH0: 0x0001c512 = +0.05663V CH1: 0x0001c4a9 = +0.05658V CH2: 0x0081c4af = -4.03941V CH3: 0x0001c4d8 = +0.05661V CH4: 0x0001c4c8 = +0.05660V CH5: 0x0001c50b = +0.05663V CH6: 0x0001c4af = +0.05659V CH7: 0x0001c507 = +0.05663V + 759: CH0: 0x0081c4de = -4.03939V CH1: 0x0001c46e = +0.05655V CH2: 0x0081c478 = -4.03944V CH3: 0x0001c4a3 = +0.05658V CH4: 0x0081c492 = -4.03943V CH5: 0x0081c4d5 = -4.03940V CH6: 0x0081c476 = -4.03944V CH7: 0x0001c4c6 = +0.05660V + 760: CH0: 0x0081c4d5 = -4.03940V CH1: 0x0081c474 = -4.03944V CH2: 0x0081c477 = -4.03944V CH3: 0x0001c4a4 = +0.05658V CH4: 0x0081c482 = -4.03944V CH5: 0x0081c4cf = -4.03940V CH6: 0x0081c47d = -4.03944V CH7: 0x0081c4d5 = -4.03940V + 761: CH0: 0x0081c503 = -4.03937V CH1: 0x0001c481 = +0.05656V CH2: 0x0081c495 = -4.03943V CH3: 0x0081c4d3 = -4.03940V CH4: 0x0001c4af = +0.05659V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0081c4a6 = -4.03942V CH7: 0x0081c4d5 = -4.03940V + 762: CH0: 0x0001c4f2 = +0.05662V CH1: 0x0081c487 = -4.03943V CH2: 0x0001c4a8 = +0.05658V CH3: 0x0001c4ce = +0.05660V CH4: 0x0081c4be = -4.03941V CH5: 0x0001c4fa = +0.05662V CH6: 0x0001c4bf = +0.05659V CH7: 0x0081c4e7 = -4.03939V + 763: CH0: 0x0001c4fe = +0.05662V CH1: 0x0001c486 = +0.05657V CH2: 0x0001c4b8 = +0.05659V CH3: 0x0001c4ce = +0.05660V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0081c506 = -4.03937V CH6: 0x0001c4aa = +0.05658V CH7: 0x0081c4ef = -4.03938V + 764: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0001c481 = +0.05656V CH2: 0x0081c487 = -4.03943V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0001c49f = +0.05658V CH5: 0x0001c4dd = +0.05661V CH6: 0x0081c496 = -4.03943V CH7: 0x0001c4d0 = +0.05660V + 765: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0081c48f = -4.03943V CH2: 0x0001c48b = +0.05657V CH3: 0x0001c4b4 = +0.05659V CH4: 0x0001c4ab = +0.05658V CH5: 0x0001c4e6 = +0.05661V CH6: 0x0081c4a3 = -4.03942V CH7: 0x0081c4d3 = -4.03940V + 766: CH0: 0x0001c4f3 = +0.05662V CH1: 0x0081c496 = -4.03943V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0001c4ca = +0.05660V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0081c4ed = -4.03938V CH6: 0x0001c4ab = +0.05658V CH7: 0x0001c4f6 = +0.05662V + 767: CH0: 0x0001c508 = +0.05663V CH1: 0x0081c497 = -4.03943V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0001c4cc = +0.05660V CH4: 0x0081c4d1 = -4.03940V CH5: 0x0081c511 = -4.03937V CH6: 0x0081c4bb = -4.03941V CH7: 0x0001c50e = +0.05663V + 768: CH0: 0x0001c505 = +0.05663V CH1: 0x0081c48c = -4.03943V CH2: 0x0081c4ba = -4.03941V CH3: 0x0081c4dc = -4.03939V CH4: 0x0081c4ce = -4.03940V CH5: 0x0001c50c = +0.05663V CH6: 0x0001c4bb = +0.05659V CH7: 0x0081c4f6 = -4.03938V + 769: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0001c49e = +0.05658V CH2: 0x0001c4a1 = +0.05658V CH3: 0x0001c4de = +0.05661V CH4: 0x0001c4bf = +0.05659V CH5: 0x0001c4f1 = +0.05662V CH6: 0x0001c4ab = +0.05658V CH7: 0x0001c4f3 = +0.05662V + 770: CH0: 0x0081c4f6 = -4.03938V CH1: 0x0001c48f = +0.05657V CH2: 0x0081c49f = -4.03942V CH3: 0x0081c4d1 = -4.03940V CH4: 0x0001c4ba = +0.05659V CH5: 0x0081c4f2 = -4.03938V CH6: 0x0081c49d = -4.03942V CH7: 0x0001c4f8 = +0.05662V + 771: CH0: 0x0001c4fb = +0.05662V CH1: 0x0081c49c = -4.03942V CH2: 0x0001c4a4 = +0.05658V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0001c49d = +0.05658V CH5: 0x0001c502 = +0.05663V CH6: 0x0081c498 = -4.03943V CH7: 0x0001c4f4 = +0.05662V + 772: CH0: 0x0081c500 = -4.03937V CH1: 0x0081c47d = -4.03944V CH2: 0x0081c481 = -4.03944V CH3: 0x0081c4ba = -4.03941V CH4: 0x0081c4b1 = -4.03941V CH5: 0x0001c4f5 = +0.05662V CH6: 0x0081c4a4 = -4.03942V CH7: 0x0081c4d5 = -4.03940V + 773: CH0: 0x0081c4ee = -4.03938V CH1: 0x0081c466 = -4.03945V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4ae = +0.05658V CH4: 0x0001c494 = +0.05657V CH5: 0x0081c4d8 = -4.03939V CH6: 0x0081c491 = -4.03943V CH7: 0x0081c4c8 = -4.03940V + 774: CH0: 0x0001c503 = +0.05663V CH1: 0x0001c4a5 = +0.05658V CH2: 0x0081c493 = -4.03943V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0001c4a4 = +0.05658V CH5: 0x0001c4fe = +0.05662V CH6: 0x0001c4aa = +0.05658V CH7: 0x0081c4e6 = -4.03939V + 775: CH0: 0x0001c506 = +0.05663V CH1: 0x0081c492 = -4.03943V CH2: 0x0081c498 = -4.03943V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c4b5 = -4.03941V CH5: 0x0081c4ef = -4.03938V CH6: 0x0081c4ba = -4.03941V CH7: 0x0081c4e5 = -4.03939V + 776: CH0: 0x0001c501 = +0.05663V CH1: 0x0081c482 = -4.03944V CH2: 0x0081c496 = -4.03943V CH3: 0x0081c4be = -4.03941V CH4: 0x0001c49c = +0.05658V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4e4 = +0.05661V + 777: CH0: 0x0081c4fd = -4.03938V CH1: 0x0001c47d = +0.05656V CH2: 0x0081c47e = -4.03944V CH3: 0x0001c4b7 = +0.05659V CH4: 0x0081c4ae = -4.03941V CH5: 0x0081c4df = -4.03939V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0001c4d2 = +0.05660V + 778: CH0: 0x0001c4ec = +0.05662V CH1: 0x0081c46d = -4.03945V CH2: 0x0001c483 = +0.05656V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0081c49f = -4.03942V CH5: 0x0081c4d1 = -4.03940V CH6: 0x0081c485 = -4.03943V CH7: 0x0001c4be = +0.05659V + 779: CH0: 0x0081c50a = -4.03937V CH1: 0x0001c493 = +0.05657V CH2: 0x0001c48c = +0.05657V CH3: 0x0081c4d2 = -4.03940V CH4: 0x0001c4a2 = +0.05658V CH5: 0x0081c4f1 = -4.03938V CH6: 0x0081c4b5 = -4.03941V CH7: 0x0001c4ea = +0.05661V + 780: CH0: 0x0081c4f5 = -4.03938V CH1: 0x0081c493 = -4.03943V CH2: 0x0001c491 = +0.05657V CH3: 0x0001c4af = +0.05659V CH4: 0x0001c49e = +0.05658V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0001c49e = +0.05658V CH7: 0x0001c4d7 = +0.05660V + 781: CH0: 0x0081c4f4 = -4.03938V CH1: 0x0081c475 = -4.03944V CH2: 0x0001c491 = +0.05657V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0001c496 = +0.05657V CH5: 0x0081c4e6 = -4.03939V CH6: 0x0001c495 = +0.05657V CH7: 0x0001c4c6 = +0.05660V + 782: CH0: 0x0081c506 = -4.03937V CH1: 0x0001c488 = +0.05657V CH2: 0x0001c491 = +0.05657V CH3: 0x0081c4cc = -4.03940V CH4: 0x0081c49d = -4.03942V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0001c4b0 = +0.05659V CH7: 0x0081c4da = -4.03939V + 783: CH0: 0x0001c4fe = +0.05662V CH1: 0x0001c485 = +0.05656V CH2: 0x0001c49d = +0.05658V CH3: 0x0081c4b4 = -4.03941V CH4: 0x0081c4ae = -4.03941V CH5: 0x0081c4ef = -4.03938V CH6: 0x0001c488 = +0.05657V CH7: 0x0081c4d6 = -4.03940V + 784: CH0: 0x0081c509 = -4.03937V CH1: 0x0081c488 = -4.03943V CH2: 0x0081c49c = -4.03942V CH3: 0x0001c4c4 = +0.05660V CH4: 0x0081c4bf = -4.03941V CH5: 0x0001c4ea = +0.05661V CH6: 0x0001c4af = +0.05659V CH7: 0x0001c4e2 = +0.05661V + 785: CH0: 0x0001c50c = +0.05663V CH1: 0x0001c4a1 = +0.05658V CH2: 0x0081c4a5 = -4.03942V CH3: 0x0001c4c1 = +0.05659V CH4: 0x0001c4b6 = +0.05659V CH5: 0x0001c509 = +0.05663V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0081c4ee = -4.03938V + 786: CH0: 0x0001c4dd = +0.05661V CH1: 0x0081c478 = -4.03944V CH2: 0x0081c49d = -4.03942V CH3: 0x0001c4af = +0.05659V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c502 = +0.05663V CH6: 0x0081c49a = -4.03942V CH7: 0x0001c4d9 = +0.05661V + 787: CH0: 0x0001c4c0 = +0.05659V CH1: 0x0081c46a = -4.03945V CH2: 0x0081c473 = -4.03944V CH3: 0x0081c4a7 = -4.03942V CH4: 0x0081c49c = -4.03942V CH5: 0x0001c4ce = +0.05660V CH6: 0x0001c48c = +0.05657V CH7: 0x0001c4c0 = +0.05659V + 788: CH0: 0x0001c4fc = +0.05662V CH1: 0x0081c48a = -4.03943V CH2: 0x0081c484 = -4.03944V CH3: 0x0001c4be = +0.05659V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0001c4f0 = +0.05662V CH6: 0x0001c494 = +0.05657V CH7: 0x0001c4dd = +0.05661V + 789: CH0: 0x0001c50a = +0.05663V CH1: 0x0081c47a = -4.03944V CH2: 0x0081c49e = -4.03942V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0001c4bb = +0.05659V CH5: 0x0081c4f3 = -4.03938V CH6: 0x0001c4b5 = +0.05659V CH7: 0x0001c4db = +0.05661V + 790: CH0: 0x0081c500 = -4.03937V CH1: 0x0001c48c = +0.05657V CH2: 0x0001c4a3 = +0.05658V CH3: 0x0081c4ce = -4.03940V CH4: 0x0001c4b8 = +0.05659V CH5: 0x0001c4eb = +0.05661V CH6: 0x0001c4a1 = +0.05658V CH7: 0x0081c4ec = -4.03938V + 791: CH0: 0x0081c501 = -4.03937V CH1: 0x0001c48d = +0.05657V CH2: 0x0001c499 = +0.05657V CH3: 0x0001c4cb = +0.05660V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0001c4f5 = +0.05662V CH6: 0x0081c4ad = -4.03942V CH7: 0x0081c4e8 = -4.03939V + 792: CH0: 0x0081c4e5 = -4.03939V CH1: 0x0001c476 = +0.05656V CH2: 0x0081c481 = -4.03944V CH3: 0x0001c4b1 = +0.05659V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0081c4dd = -4.03939V CH6: 0x0001c491 = +0.05657V CH7: 0x0081c4d2 = -4.03940V + 793: CH0: 0x0001c4ee = +0.05662V CH1: 0x0081c48d = -4.03943V CH2: 0x0081c490 = -4.03943V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4e4 = +0.05661V + 794: CH0: 0x0001c4e4 = +0.05661V CH1: 0x0001c489 = +0.05657V CH2: 0x0001c48a = +0.05657V CH3: 0x0081c4af = -4.03941V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4c7 = +0.05660V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0001c4c6 = +0.05660V + 795: CH0: 0x0001c4ec = +0.05662V CH1: 0x0001c47f = +0.05656V CH2: 0x0081c488 = -4.03943V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0001c4a2 = +0.05658V CH5: 0x0081c4da = -4.03939V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0081c4d5 = -4.03940V + 796: CH0: 0x0081c506 = -4.03937V CH1: 0x0001c48a = +0.05657V CH2: 0x0001c4a3 = +0.05658V CH3: 0x0081c4cc = -4.03940V CH4: 0x0001c4a2 = +0.05658V CH5: 0x0081c4ee = -4.03938V CH6: 0x0001c49e = +0.05658V CH7: 0x0081c4e8 = -4.03939V + 797: CH0: 0x0001c50a = +0.05663V CH1: 0x0081c493 = -4.03943V CH2: 0x0001c498 = +0.05657V CH3: 0x0081c4c9 = -4.03940V CH4: 0x0001c4b7 = +0.05659V CH5: 0x0001c4f2 = +0.05662V CH6: 0x0001c48c = +0.05657V CH7: 0x0081c4e0 = -4.03939V + 798: CH0: 0x0081c4fd = -4.03938V CH1: 0x0081c476 = -4.03944V CH2: 0x0081c488 = -4.03943V CH3: 0x0081c4bf = -4.03941V CH4: 0x0081c4aa = -4.03942V CH5: 0x0001c4ec = +0.05662V CH6: 0x0001c4a0 = +0.05658V CH7: 0x0001c4dc = +0.05661V + 799: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0081c478 = -4.03944V CH2: 0x0001c48b = +0.05657V CH3: 0x0001c4bc = +0.05659V CH4: 0x0081c48a = -4.03943V CH5: 0x0081c4d9 = -4.03939V CH6: 0x0081c48d = -4.03943V CH7: 0x0001c4c5 = +0.05660V + 800: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0081c463 = -4.03945V CH2: 0x0081c46f = -4.03945V CH3: 0x0081c4cb = -4.03940V CH4: 0x0081c481 = -4.03944V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0001c495 = +0.05657V CH7: 0x0001c4bb = +0.05659V + 801: CH0: 0x0001c4de = +0.05661V CH1: 0x0001c452 = +0.05654V CH2: 0x0081c480 = -4.03944V CH3: 0x0001c4b2 = +0.05659V CH4: 0x0081c484 = -4.03944V CH5: 0x0001c4c7 = +0.05660V CH6: 0x0001c48b = +0.05657V CH7: 0x0001c4ca = +0.05660V + 802: CH0: 0x0081c4de = -4.03939V CH1: 0x0081c47a = -4.03944V CH2: 0x0081c48c = -4.03943V CH3: 0x0081c4af = -4.03941V CH4: 0x0081c490 = -4.03943V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0081c489 = -4.03943V CH7: 0x0001c4ce = +0.05660V + 803: CH0: 0x0081c4ef = -4.03938V CH1: 0x0001c476 = +0.05656V CH2: 0x0001c479 = +0.05656V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0001c49b = +0.05658V CH5: 0x0001c4df = +0.05661V CH6: 0x0001c492 = +0.05657V CH7: 0x0001c4d2 = +0.05660V + 804: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0081c46b = -4.03945V CH2: 0x0081c46f = -4.03945V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0001c49e = +0.05658V CH5: 0x0081c4cc = -4.03940V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4d1 = +0.05660V + 805: CH0: 0x0081c4da = -4.03939V CH1: 0x0081c46a = -4.03945V CH2: 0x0081c472 = -4.03944V CH3: 0x0001c4ac = +0.05658V CH4: 0x0001c498 = +0.05657V CH5: 0x0081c4c1 = -4.03941V CH6: 0x0081c487 = -4.03943V CH7: 0x0081c4cf = -4.03940V + 806: CH0: 0x0081c4f7 = -4.03938V CH1: 0x0081c46e = -4.03945V CH2: 0x0081c49e = -4.03942V CH3: 0x0001c4a9 = +0.05658V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0001c4dc = +0.05661V CH6: 0x0001c487 = +0.05657V CH7: 0x0001c4e3 = +0.05661V + 807: CH0: 0x0001c4fc = +0.05662V CH1: 0x0081c485 = -4.03943V CH2: 0x0001c495 = +0.05657V CH3: 0x0001c4b9 = +0.05659V CH4: 0x0001c496 = +0.05657V CH5: 0x0001c4e0 = +0.05661V CH6: 0x0001c492 = +0.05657V CH7: 0x0081c4d9 = -4.03939V + 808: CH0: 0x0001c509 = +0.05663V CH1: 0x0081c48e = -4.03943V CH2: 0x0001c499 = +0.05657V CH3: 0x0081c4bc = -4.03941V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4f4 = +0.05662V CH6: 0x0081c4b3 = -4.03941V CH7: 0x0001c4dc = +0.05661V + 809: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0081c486 = -4.03943V CH2: 0x0081c488 = -4.03943V CH3: 0x0081c4b2 = -4.03941V CH4: 0x0001c49e = +0.05658V CH5: 0x0081c4ea = -4.03939V CH6: 0x0081c4a5 = -4.03942V CH7: 0x0001c4d2 = +0.05660V + 810: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0001c48f = +0.05657V CH2: 0x0001c490 = +0.05657V CH3: 0x0081c4c2 = -4.03940V CH4: 0x0001c488 = +0.05657V CH5: 0x0001c4d6 = +0.05660V CH6: 0x0081c499 = -4.03942V CH7: 0x0001c4d5 = +0.05660V + 811: CH0: 0x0081c524 = -4.03936V CH1: 0x0081c4a8 = -4.03942V CH2: 0x0001c4b2 = +0.05659V CH3: 0x0081c4e1 = -4.03939V CH4: 0x0001c4b8 = +0.05659V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0081c4c1 = -4.03941V CH7: 0x0081c4ff = -4.03938V + 812: CH0: 0x0081c51c = -4.03936V CH1: 0x0001c4bc = +0.05659V CH2: 0x0081c4d3 = -4.03940V CH3: 0x0001c4fb = +0.05662V CH4: 0x0081c4b7 = -4.03941V CH5: 0x0001c50b = +0.05663V CH6: 0x0001c4c4 = +0.05660V CH7: 0x0081c508 = -4.03937V + 813: CH0: 0x0081c507 = -4.03937V CH1: 0x0081c4a0 = -4.03942V CH2: 0x0001c4c3 = +0.05660V CH3: 0x0081c4ea = -4.03939V CH4: 0x0081c4be = -4.03941V CH5: 0x0081c51c = -4.03936V CH6: 0x0001c4c4 = +0.05660V CH7: 0x0001c4f2 = +0.05662V + 814: CH0: 0x0001c4ef = +0.05662V CH1: 0x0081c47d = -4.03944V CH2: 0x0081c478 = -4.03944V CH3: 0x0001c4be = +0.05659V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0081c4e8 = -4.03939V CH6: 0x0001c49c = +0.05658V CH7: 0x0001c4d7 = +0.05660V + 815: CH0: 0x0001c506 = +0.05663V CH1: 0x0081c494 = -4.03943V CH2: 0x0081c4b6 = -4.03941V CH3: 0x0001c4d3 = +0.05660V CH4: 0x0001c4a9 = +0.05658V CH5: 0x0081c4eb = -4.03938V CH6: 0x0081c4ae = -4.03941V CH7: 0x0001c4f4 = +0.05662V + 816: CH0: 0x0001c51e = +0.05664V CH1: 0x0001c49a = +0.05658V CH2: 0x0081c4ba = -4.03941V CH3: 0x0001c4ce = +0.05660V CH4: 0x0001c4d8 = +0.05661V CH5: 0x0001c507 = +0.05663V CH6: 0x0081c4b9 = -4.03941V CH7: 0x0081c50c = -4.03937V + 817: CH0: 0x0001c4d8 = +0.05661V CH1: 0x0001c466 = +0.05655V CH2: 0x0001c483 = +0.05656V CH3: 0x0001c4a2 = +0.05658V CH4: 0x0001c489 = +0.05657V CH5: 0x0001c4d5 = +0.05660V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4cb = +0.05660V + 818: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c495 = +0.05657V CH2: 0x0001c4a0 = +0.05658V CH3: 0x0001c4d6 = +0.05660V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0081c4ea = -4.03939V CH6: 0x0001c4a8 = +0.05658V CH7: 0x0001c4ca = +0.05660V + 819: CH0: 0x0001c502 = +0.05663V CH1: 0x0001c49b = +0.05658V CH2: 0x0081c48f = -4.03943V CH3: 0x0001c4d4 = +0.05660V CH4: 0x0001c4c5 = +0.05660V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c4b0 = +0.05659V CH7: 0x0001c4f9 = +0.05662V + 820: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0001c46d = +0.05655V CH2: 0x0081c482 = -4.03944V CH3: 0x0081c4a9 = -4.03942V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0001c4a0 = +0.05658V CH7: 0x0001c4dc = +0.05661V + 821: CH0: 0x0001c4ee = +0.05662V CH1: 0x0001c49b = +0.05658V CH2: 0x0001c49a = +0.05658V CH3: 0x0001c4be = +0.05659V CH4: 0x0081c4b7 = -4.03941V CH5: 0x0001c4f2 = +0.05662V CH6: 0x0081c4a9 = -4.03942V CH7: 0x0001c4ee = +0.05662V + 822: CH0: 0x0001c4e0 = +0.05661V CH1: 0x0001c486 = +0.05657V CH2: 0x0001c48e = +0.05657V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0081c49a = -4.03942V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0001c4e6 = +0.05661V + 823: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0001c470 = +0.05655V CH2: 0x0081c48e = -4.03943V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0001c4ab = +0.05658V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0001c496 = +0.05657V CH7: 0x0081c4ce = -4.03940V + 824: CH0: 0x0081c4da = -4.03939V CH1: 0x0001c468 = +0.05655V CH2: 0x0081c478 = -4.03944V CH3: 0x0081c4a2 = -4.03942V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4eb = +0.05661V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4d3 = +0.05660V + 825: CH0: 0x0081c50d = -4.03937V CH1: 0x0001c484 = +0.05656V CH2: 0x0081c48d = -4.03943V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0001c4ab = +0.05658V CH5: 0x0001c4f8 = +0.05662V CH6: 0x0001c498 = +0.05657V CH7: 0x0001c4e2 = +0.05661V + 826: CH0: 0x0001c52f = +0.05665V CH1: 0x0081c4ab = -4.03942V CH2: 0x0001c4c7 = +0.05660V CH3: 0x0081c4fd = -4.03938V CH4: 0x0081c4d1 = -4.03940V CH5: 0x0001c511 = +0.05663V CH6: 0x0081c4c3 = -4.03940V CH7: 0x0081c500 = -4.03937V + 827: CH0: 0x0081c4e5 = -4.03939V CH1: 0x0081c47a = -4.03944V CH2: 0x0081c496 = -4.03943V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0081c4ad = -4.03942V CH5: 0x0001c4f2 = +0.05662V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0081c4d1 = -4.03940V + 828: CH0: 0x0001c4d6 = +0.05660V CH1: 0x0001c460 = +0.05655V CH2: 0x0081c476 = -4.03944V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0001c486 = +0.05657V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0081c483 = -4.03944V CH7: 0x0081c4c0 = -4.03941V + 829: CH0: 0x0001c514 = +0.05663V CH1: 0x0081c47f = -4.03944V CH2: 0x0081c48c = -4.03943V CH3: 0x0001c4cf = +0.05660V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0001c4bb = +0.05659V CH7: 0x0001c4ce = +0.05660V + 830: CH0: 0x0001c510 = +0.05663V CH1: 0x0001c4a3 = +0.05658V CH2: 0x0001c4a6 = +0.05658V CH3: 0x0001c4db = +0.05661V CH4: 0x0001c4b8 = +0.05659V CH5: 0x0001c507 = +0.05663V CH6: 0x0001c4c1 = +0.05659V CH7: 0x0001c4e3 = +0.05661V + 831: CH0: 0x0001c504 = +0.05663V CH1: 0x0001c48f = +0.05657V CH2: 0x0001c4a9 = +0.05658V CH3: 0x0081c4be = -4.03941V CH4: 0x0081c48b = -4.03943V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c492 = +0.05657V CH7: 0x0081c4e9 = -4.03939V + 832: CH0: 0x0081c50a = -4.03937V CH1: 0x0081c487 = -4.03943V CH2: 0x0001c49c = +0.05658V CH3: 0x0001c4c3 = +0.05660V CH4: 0x0081c4b4 = -4.03941V CH5: 0x0081c4ee = -4.03938V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0081c4e5 = -4.03939V + 833: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0001c481 = +0.05656V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0081c4c1 = -4.03941V CH4: 0x0001c4bb = +0.05659V CH5: 0x0001c500 = +0.05663V CH6: 0x0001c4b4 = +0.05659V CH7: 0x0001c4f0 = +0.05662V + 834: CH0: 0x0081c4de = -4.03939V CH1: 0x0081c45c = -4.03945V CH2: 0x0001c47d = +0.05656V CH3: 0x0001c4a8 = +0.05658V CH4: 0x0001c48f = +0.05657V CH5: 0x0081c4c9 = -4.03940V CH6: 0x0001c47f = +0.05656V CH7: 0x0081c4be = -4.03941V + 835: CH0: 0x0081c4f3 = -4.03938V CH1: 0x0081c481 = -4.03944V CH2: 0x0081c484 = -4.03944V CH3: 0x0001c4ba = +0.05659V CH4: 0x0081c49b = -4.03942V CH5: 0x0081c4e8 = -4.03939V CH6: 0x0001c493 = +0.05657V CH7: 0x0001c4cc = +0.05660V + 836: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0081c493 = -4.03943V CH2: 0x0081c49c = -4.03942V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0001c494 = +0.05657V CH5: 0x0081c505 = -4.03937V CH6: 0x0081c4a8 = -4.03942V CH7: 0x0081c4ed = -4.03938V + 837: CH0: 0x0001c4f3 = +0.05662V CH1: 0x0081c48c = -4.03943V CH2: 0x0081c486 = -4.03943V CH3: 0x0081c4b5 = -4.03941V CH4: 0x0001c48f = +0.05657V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0001c497 = +0.05657V CH7: 0x0081c4d6 = -4.03940V + 838: CH0: 0x0001c506 = +0.05663V CH1: 0x0001c499 = +0.05657V CH2: 0x0001c4a7 = +0.05658V CH3: 0x0001c4be = +0.05659V CH4: 0x0081c4a8 = -4.03942V CH5: 0x0081c4f6 = -4.03938V CH6: 0x0081c49d = -4.03942V CH7: 0x0001c4e3 = +0.05661V + 839: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0081c468 = -4.03945V CH2: 0x0001c485 = +0.05656V CH3: 0x0001c4ba = +0.05659V CH4: 0x0001c4ab = +0.05658V CH5: 0x0001c4ed = +0.05662V CH6: 0x0081c498 = -4.03943V CH7: 0x0081c4c8 = -4.03940V + 840: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c47a = +0.05656V CH2: 0x0081c481 = -4.03944V CH3: 0x0001c4a9 = +0.05658V CH4: 0x0081c496 = -4.03943V CH5: 0x0081c4ec = -4.03938V CH6: 0x0081c492 = -4.03943V CH7: 0x0081c4c8 = -4.03940V + 841: CH0: 0x0001c50d = +0.05663V CH1: 0x0001c489 = +0.05657V CH2: 0x0081c49a = -4.03942V CH3: 0x0001c4c1 = +0.05659V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0081c504 = -4.03937V CH6: 0x0081c4a5 = -4.03942V CH7: 0x0081c4e3 = -4.03939V + 842: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0001c47c = +0.05656V CH2: 0x0001c488 = +0.05657V CH3: 0x0001c4c4 = +0.05660V CH4: 0x0001c4ae = +0.05658V CH5: 0x0081c4ed = -4.03938V CH6: 0x0081c4a9 = -4.03942V CH7: 0x0081c4dd = -4.03939V + 843: CH0: 0x0081c4f4 = -4.03938V CH1: 0x0081c48a = -4.03943V CH2: 0x0001c494 = +0.05657V CH3: 0x0001c4b4 = +0.05659V CH4: 0x0081c49d = -4.03942V CH5: 0x0081c4dd = -4.03939V CH6: 0x0001c491 = +0.05657V CH7: 0x0001c4d8 = +0.05661V + 844: CH0: 0x0081c4f7 = -4.03938V CH1: 0x0081c463 = -4.03945V CH2: 0x0001c473 = +0.05656V CH3: 0x0001c4b7 = +0.05659V CH4: 0x0081c495 = -4.03943V CH5: 0x0001c4d5 = +0.05660V CH6: 0x0001c49a = +0.05658V CH7: 0x0001c4be = +0.05659V + 845: CH0: 0x0001c4fe = +0.05662V CH1: 0x0001c487 = +0.05657V CH2: 0x0081c4af = -4.03941V CH3: 0x0081c4cb = -4.03940V CH4: 0x0001c4be = +0.05659V CH5: 0x0081c4f2 = -4.03938V CH6: 0x0001c4b8 = +0.05659V CH7: 0x0001c4f1 = +0.05662V + 846: CH0: 0x0081c4fb = -4.03938V CH1: 0x0001c48b = +0.05657V CH2: 0x0081c4a0 = -4.03942V CH3: 0x0001c4c1 = +0.05659V CH4: 0x0001c4b1 = +0.05659V CH5: 0x0001c501 = +0.05663V CH6: 0x0081c4b9 = -4.03941V CH7: 0x0081c501 = -4.03937V + 847: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0081c46b = -4.03945V CH2: 0x0081c463 = -4.03945V CH3: 0x0001c4bf = +0.05659V CH4: 0x0001c481 = +0.05656V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0081c48c = -4.03943V CH7: 0x0081c4da = -4.03939V + 848: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0081c479 = -4.03944V CH2: 0x0001c48f = +0.05657V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0081c49e = -4.03942V CH5: 0x0001c4c8 = +0.05660V CH6: 0x0001c47c = +0.05656V CH7: 0x0081c4bc = -4.03941V + 849: CH0: 0x0001c4fb = +0.05662V CH1: 0x0081c482 = -4.03944V CH2: 0x0081c487 = -4.03943V CH3: 0x0001c4a4 = +0.05658V CH4: 0x0001c49f = +0.05658V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0081c4ae = -4.03941V CH7: 0x0081c4cc = -4.03940V + 850: CH0: 0x0081c4fd = -4.03938V CH1: 0x0001c491 = +0.05657V CH2: 0x0001c497 = +0.05657V CH3: 0x0081c4b3 = -4.03941V CH4: 0x0001c48e = +0.05657V CH5: 0x0001c4e6 = +0.05661V CH6: 0x0081c4a8 = -4.03942V CH7: 0x0081c4db = -4.03939V + 851: CH0: 0x0001c4ee = +0.05662V CH1: 0x0001c494 = +0.05657V CH2: 0x0081c499 = -4.03942V CH3: 0x0081c4ca = -4.03940V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0081c4e5 = -4.03939V CH6: 0x0001c49c = +0.05658V CH7: 0x0081c4d0 = -4.03940V + 852: CH0: 0x0001c50d = +0.05663V CH1: 0x0001c4b6 = +0.05659V CH2: 0x0081c4be = -4.03941V CH3: 0x0001c4e2 = +0.05661V CH4: 0x0001c4c7 = +0.05660V CH5: 0x0001c500 = +0.05663V CH6: 0x0081c4be = -4.03941V CH7: 0x0081c50a = -4.03937V + 853: CH0: 0x0001c511 = +0.05663V CH1: 0x0081c494 = -4.03943V CH2: 0x0001c4bb = +0.05659V CH3: 0x0081c4d3 = -4.03940V CH4: 0x0081c4c7 = -4.03940V CH5: 0x0081c4fa = -4.03938V CH6: 0x0001c4b9 = +0.05659V CH7: 0x0081c4eb = -4.03938V + 854: CH0: 0x0001c4f5 = +0.05662V CH1: 0x0001c486 = +0.05657V CH2: 0x0001c483 = +0.05656V CH3: 0x0001c4b9 = +0.05659V CH4: 0x0081c4ae = -4.03941V CH5: 0x0081c4ec = -4.03938V CH6: 0x0081c4b3 = -4.03941V CH7: 0x0001c4d6 = +0.05660V + 855: CH0: 0x0081c4d7 = -4.03939V CH1: 0x0001c48b = +0.05657V CH2: 0x0001c480 = +0.05656V CH3: 0x0081c4a9 = -4.03942V CH4: 0x0081c49d = -4.03942V CH5: 0x0081c4da = -4.03939V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0001c4da = +0.05661V + 856: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0081c47c = -4.03944V CH2: 0x0081c48c = -4.03943V CH3: 0x0001c4d7 = +0.05660V CH4: 0x0081c49c = -4.03942V CH5: 0x0081c4e1 = -4.03939V CH6: 0x0001c4af = +0.05659V CH7: 0x0081c4e5 = -4.03939V + 857: CH0: 0x0081c500 = -4.03937V CH1: 0x0081c487 = -4.03943V CH2: 0x0001c49b = +0.05658V CH3: 0x0001c4dd = +0.05661V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4f1 = +0.05662V CH6: 0x0081c4a7 = -4.03942V CH7: 0x0001c4f1 = +0.05662V + 858: CH0: 0x0081c4d2 = -4.03940V CH1: 0x0001c468 = +0.05655V CH2: 0x0001c47e = +0.05656V CH3: 0x0001c4ab = +0.05658V CH4: 0x0081c49b = -4.03942V CH5: 0x0081c4d5 = -4.03940V CH6: 0x0001c477 = +0.05656V CH7: 0x0081c4ce = -4.03940V + 859: CH0: 0x0001c4f3 = +0.05662V CH1: 0x0001c477 = +0.05656V CH2: 0x0001c497 = +0.05657V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0001c4a9 = +0.05658V CH5: 0x0081c4d7 = -4.03939V CH6: 0x0081c49d = -4.03942V CH7: 0x0001c4ed = +0.05662V + 860: CH0: 0x0001c511 = +0.05663V CH1: 0x0081c48f = -4.03943V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0081c4bd = -4.03941V CH4: 0x0001c4cf = +0.05660V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0081c4f2 = -4.03938V + 861: CH0: 0x0001c4ff = +0.05662V CH1: 0x0081c482 = -4.03944V CH2: 0x0001c48d = +0.05657V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0001c4a6 = +0.05658V CH5: 0x0001c4ef = +0.05662V CH6: 0x0081c48f = -4.03943V CH7: 0x0001c4d3 = +0.05660V + 862: CH0: 0x0081c4f9 = -4.03938V CH1: 0x0001c490 = +0.05657V CH2: 0x0001c4b2 = +0.05659V CH3: 0x0081c4db = -4.03939V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0001c4f3 = +0.05662V CH6: 0x0081c4ba = -4.03941V CH7: 0x0001c4e3 = +0.05661V + 863: CH0: 0x0001c4ee = +0.05662V CH1: 0x0001c494 = +0.05657V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0081c4c5 = -4.03940V CH4: 0x0081c4ba = -4.03941V CH5: 0x0001c4fd = +0.05662V CH6: 0x0001c4ad = +0.05658V CH7: 0x0081c4df = -4.03939V + 864: CH0: 0x0001c4ed = +0.05662V CH1: 0x0001c481 = +0.05656V CH2: 0x0081c47f = -4.03944V CH3: 0x0001c4b5 = +0.05659V CH4: 0x0001c494 = +0.05657V CH5: 0x0001c4dc = +0.05661V CH6: 0x0001c4a3 = +0.05658V CH7: 0x0081c4df = -4.03939V + 865: CH0: 0x0081c4ec = -4.03938V CH1: 0x0081c47e = -4.03944V CH2: 0x0001c490 = +0.05657V CH3: 0x0001c4c7 = +0.05660V CH4: 0x0001c4aa = +0.05658V CH5: 0x0001c4eb = +0.05661V CH6: 0x0001c498 = +0.05657V CH7: 0x0081c4dd = -4.03939V + 866: CH0: 0x0081c4f4 = -4.03938V CH1: 0x0001c473 = +0.05656V CH2: 0x0001c48d = +0.05657V CH3: 0x0081c4bc = -4.03941V CH4: 0x0081c4af = -4.03941V CH5: 0x0001c4ec = +0.05662V CH6: 0x0081c47e = -4.03944V CH7: 0x0001c4c8 = +0.05660V + 867: CH0: 0x0081c4ef = -4.03938V CH1: 0x0081c47b = -4.03944V CH2: 0x0001c489 = +0.05657V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0081c498 = -4.03943V CH5: 0x0081c4f6 = -4.03938V CH6: 0x0001c49c = +0.05658V CH7: 0x0081c4e4 = -4.03939V + 868: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0001c470 = +0.05655V CH2: 0x0001c486 = +0.05657V CH3: 0x0001c4a6 = +0.05658V CH4: 0x0081c495 = -4.03943V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0081c47d = -4.03944V CH7: 0x0001c4d1 = +0.05660V + 869: CH0: 0x0081c511 = -4.03937V CH1: 0x0001c478 = +0.05656V CH2: 0x0001c49a = +0.05658V CH3: 0x0001c4bb = +0.05659V CH4: 0x0001c49c = +0.05658V CH5: 0x0081c4d9 = -4.03939V CH6: 0x0081c489 = -4.03943V CH7: 0x0081c4d2 = -4.03940V + 870: CH0: 0x0001c503 = +0.05663V CH1: 0x0081c47b = -4.03944V CH2: 0x0001c4a2 = +0.05658V CH3: 0x0001c4be = +0.05659V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0001c4f4 = +0.05662V CH6: 0x0001c4a5 = +0.05658V CH7: 0x0001c4d9 = +0.05661V + 871: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0001c454 = +0.05654V CH2: 0x0001c47f = +0.05656V CH3: 0x0001c4a1 = +0.05658V CH4: 0x0001c490 = +0.05657V CH5: 0x0081c4e3 = -4.03939V CH6: 0x0081c474 = -4.03944V CH7: 0x0001c4dd = +0.05661V + 872: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0001c468 = +0.05655V CH2: 0x0001c47a = +0.05656V CH3: 0x0081c4a9 = -4.03942V CH4: 0x0001c497 = +0.05657V CH5: 0x0081c4dc = -4.03939V CH6: 0x0001c478 = +0.05656V CH7: 0x0001c4cb = +0.05660V + 873: CH0: 0x0081c4d8 = -4.03939V CH1: 0x0001c468 = +0.05655V CH2: 0x0001c464 = +0.05655V CH3: 0x0001c4ad = +0.05658V CH4: 0x0081c485 = -4.03943V CH5: 0x0001c4c3 = +0.05660V CH6: 0x0081c47a = -4.03944V CH7: 0x0001c4a2 = +0.05658V + 874: CH0: 0x0001c4e4 = +0.05661V CH1: 0x0001c46c = +0.05655V CH2: 0x0081c483 = -4.03944V CH3: 0x0001c4b1 = +0.05659V CH4: 0x0081c471 = -4.03944V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0001c474 = +0.05656V CH7: 0x0001c4d0 = +0.05660V + 875: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0001c483 = +0.05656V CH2: 0x0001c486 = +0.05657V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0001c496 = +0.05657V CH5: 0x0001c4db = +0.05661V CH6: 0x0001c48e = +0.05657V CH7: 0x0081c4de = -4.03939V + 876: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c47f = +0.05656V CH2: 0x0001c475 = +0.05656V CH3: 0x0081c4ae = -4.03941V CH4: 0x0081c49b = -4.03942V CH5: 0x0081c4c8 = -4.03940V CH6: 0x0081c493 = -4.03943V CH7: 0x0081c4d4 = -4.03940V + 877: CH0: 0x0001c4ef = +0.05662V CH1: 0x0001c47a = +0.05656V CH2: 0x0001c4a7 = +0.05658V CH3: 0x0081c4a5 = -4.03942V CH4: 0x0001c498 = +0.05657V CH5: 0x0081c4d8 = -4.03939V CH6: 0x0081c4a9 = -4.03942V CH7: 0x0081c4ca = -4.03940V + 878: CH0: 0x0001c4dd = +0.05661V CH1: 0x0001c477 = +0.05656V CH2: 0x0001c487 = +0.05657V CH3: 0x0081c4bc = -4.03941V CH4: 0x0081c4ad = -4.03942V CH5: 0x0001c4ea = +0.05661V CH6: 0x0001c4b0 = +0.05659V CH7: 0x0001c4c3 = +0.05660V + 879: CH0: 0x0001c4ec = +0.05662V CH1: 0x0081c472 = -4.03944V CH2: 0x0001c480 = +0.05656V CH3: 0x0081c4a7 = -4.03942V CH4: 0x0001c48d = +0.05657V CH5: 0x0001c4e8 = +0.05661V CH6: 0x0001c483 = +0.05656V CH7: 0x0081c4bd = -4.03941V + 880: CH0: 0x0081c4f0 = -4.03938V CH1: 0x0081c471 = -4.03944V CH2: 0x0081c47b = -4.03944V CH3: 0x0001c498 = +0.05657V CH4: 0x0001c48e = +0.05657V CH5: 0x0081c4ca = -4.03940V CH6: 0x0001c48a = +0.05657V CH7: 0x0081c4c1 = -4.03941V + 881: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0001c46e = +0.05655V CH2: 0x0001c47f = +0.05656V CH3: 0x0081c4af = -4.03941V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4e3 = +0.05661V CH6: 0x0081c496 = -4.03943V CH7: 0x0001c4da = +0.05661V + 882: CH0: 0x0001c4fd = +0.05662V CH1: 0x0081c476 = -4.03944V CH2: 0x0001c489 = +0.05657V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0001c498 = +0.05657V CH5: 0x0081c4e5 = -4.03939V CH6: 0x0081c4a5 = -4.03942V CH7: 0x0081c4d4 = -4.03940V + 883: CH0: 0x0001c4ef = +0.05662V CH1: 0x0081c482 = -4.03944V CH2: 0x0001c485 = +0.05656V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0001c4e6 = +0.05661V CH6: 0x0081c497 = -4.03943V CH7: 0x0081c4e5 = -4.03939V + 884: CH0: 0x0001c4de = +0.05661V CH1: 0x0001c468 = +0.05655V CH2: 0x0081c490 = -4.03943V CH3: 0x0081c4b6 = -4.03941V CH4: 0x0001c49b = +0.05658V CH5: 0x0081c4dc = -4.03939V CH6: 0x0081c47a = -4.03944V CH7: 0x0001c4db = +0.05661V + 885: CH0: 0x0081c4f7 = -4.03938V CH1: 0x0001c473 = +0.05656V CH2: 0x0001c477 = +0.05656V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0001c4d5 = +0.05660V CH6: 0x0001c49e = +0.05658V CH7: 0x0081c4c7 = -4.03940V + 886: CH0: 0x0001c4ea = +0.05661V CH1: 0x0081c46d = -4.03945V CH2: 0x0081c491 = -4.03943V CH3: 0x0001c4c3 = +0.05660V CH4: 0x0081c4a9 = -4.03942V CH5: 0x0081c4ed = -4.03938V CH6: 0x0001c498 = +0.05657V CH7: 0x0081c4dd = -4.03939V + 887: CH0: 0x0001c4e5 = +0.05661V CH1: 0x0001c471 = +0.05656V CH2: 0x0001c47c = +0.05656V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c49f = +0.05658V CH5: 0x0081c4d3 = -4.03940V CH6: 0x0081c49a = -4.03942V CH7: 0x0001c4da = +0.05661V + 888: CH0: 0x0001c4fa = +0.05662V CH1: 0x0001c48b = +0.05657V CH2: 0x0081c482 = -4.03944V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0001c4a6 = +0.05658V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0001c4a7 = +0.05658V CH7: 0x0081c4d6 = -4.03940V + 889: CH0: 0x0081c4eb = -4.03938V CH1: 0x0081c474 = -4.03944V CH2: 0x0001c494 = +0.05657V CH3: 0x0001c4c4 = +0.05660V CH4: 0x0001c493 = +0.05657V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0001c48f = +0.05657V CH7: 0x0001c4dc = +0.05661V + 890: CH0: 0x0001c4e9 = +0.05661V CH1: 0x0001c490 = +0.05657V CH2: 0x0001c47d = +0.05656V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4e1 = +0.05661V CH6: 0x0081c498 = -4.03943V CH7: 0x0001c4e4 = +0.05661V + 891: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0001c483 = +0.05656V CH2: 0x0081c489 = -4.03943V CH3: 0x0081c4c0 = -4.03941V CH4: 0x0081c4ad = -4.03942V CH5: 0x0001c4ee = +0.05662V CH6: 0x0081c492 = -4.03943V CH7: 0x0001c4df = +0.05661V + 892: CH0: 0x0081c503 = -4.03937V CH1: 0x0001c480 = +0.05656V CH2: 0x0001c492 = +0.05657V CH3: 0x0001c4cb = +0.05660V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0001c4ef = +0.05662V CH6: 0x0081c493 = -4.03943V CH7: 0x0081c4dd = -4.03939V + 893: CH0: 0x0001c517 = +0.05664V CH1: 0x0081c494 = -4.03943V CH2: 0x0081c4ac = -4.03942V CH3: 0x0001c4c4 = +0.05660V CH4: 0x0081c4b4 = -4.03941V CH5: 0x0001c4fb = +0.05662V CH6: 0x0081c4b0 = -4.03941V CH7: 0x0001c4e4 = +0.05661V + 894: CH0: 0x0081c4e9 = -4.03939V CH1: 0x0001c471 = +0.05656V CH2: 0x0001c488 = +0.05657V CH3: 0x0001c4b7 = +0.05659V CH4: 0x0001c4a6 = +0.05658V CH5: 0x0081c4ec = -4.03938V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4b8 = +0.05659V + 895: CH0: 0x0081c4f3 = -4.03938V CH1: 0x0001c474 = +0.05656V CH2: 0x0001c485 = +0.05656V CH3: 0x0081c4ca = -4.03940V CH4: 0x0001c4a6 = +0.05658V CH5: 0x0081c4f7 = -4.03938V CH6: 0x0001c496 = +0.05657V CH7: 0x0081c4d4 = -4.03940V + 896: CH0: 0x0001c509 = +0.05663V CH1: 0x0001c48e = +0.05657V CH2: 0x0081c496 = -4.03943V CH3: 0x0001c4cb = +0.05660V CH4: 0x0001c499 = +0.05657V CH5: 0x0001c4fa = +0.05662V CH6: 0x0081c4b0 = -4.03941V CH7: 0x0081c4ed = -4.03938V + 897: CH0: 0x0001c4d6 = +0.05660V CH1: 0x0081c47c = -4.03944V CH2: 0x0081c47c = -4.03944V CH3: 0x0001c4b3 = +0.05659V CH4: 0x0081c499 = -4.03942V CH5: 0x0081c4ea = -4.03939V CH6: 0x0001c480 = +0.05656V CH7: 0x0081c4bd = -4.03941V + 898: CH0: 0x0001c4f5 = +0.05662V CH1: 0x0081c48c = -4.03943V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0081c4d9 = -4.03939V CH4: 0x0081c4ac = -4.03942V CH5: 0x0001c4fd = +0.05662V CH6: 0x0081c494 = -4.03943V CH7: 0x0081c4d8 = -4.03939V + 899: CH0: 0x0081c501 = -4.03937V CH1: 0x0001c4a8 = +0.05658V CH2: 0x0081c4b9 = -4.03941V CH3: 0x0001c4dc = +0.05661V CH4: 0x0001c4b9 = +0.05659V CH5: 0x0001c4fd = +0.05662V CH6: 0x0001c4ac = +0.05658V CH7: 0x0001c4e0 = +0.05661V + 900: CH0: 0x0081c4d3 = -4.03940V CH1: 0x0001c470 = +0.05655V CH2: 0x0081c498 = -4.03943V CH3: 0x0001c4ac = +0.05658V CH4: 0x0081c4aa = -4.03942V CH5: 0x0001c4de = +0.05661V CH6: 0x0001c494 = +0.05657V CH7: 0x0001c4d8 = +0.05661V + 901: CH0: 0x0001c50a = +0.05663V CH1: 0x0001c48f = +0.05657V CH2: 0x0081c4a1 = -4.03942V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0081c503 = -4.03937V CH6: 0x0001c4aa = +0.05658V CH7: 0x0001c4e7 = +0.05661V + 902: CH0: 0x0081c4ed = -4.03938V CH1: 0x0081c487 = -4.03943V CH2: 0x0081c490 = -4.03943V CH3: 0x0081c4c9 = -4.03940V CH4: 0x0081c493 = -4.03943V CH5: 0x0001c4ed = +0.05662V CH6: 0x0081c4a5 = -4.03942V CH7: 0x0081c4cd = -4.03940V + 903: CH0: 0x0081c4fc = -4.03938V CH1: 0x0001c487 = +0.05657V CH2: 0x0001c49e = +0.05658V CH3: 0x0081c4de = -4.03939V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0081c4e8 = -4.03939V CH6: 0x0081c4b0 = -4.03941V CH7: 0x0081c4eb = -4.03938V + 904: CH0: 0x0001c525 = +0.05664V CH1: 0x0001c4b1 = +0.05659V CH2: 0x0001c4c0 = +0.05659V CH3: 0x0081c4f7 = -4.03938V CH4: 0x0001c4d7 = +0.05660V CH5: 0x0081c51e = -4.03936V CH6: 0x0001c4dc = +0.05661V CH7: 0x0001c507 = +0.05663V + 905: CH0: 0x0081c50c = -4.03937V CH1: 0x0001c499 = +0.05657V CH2: 0x0001c4a8 = +0.05658V CH3: 0x0001c4cd = +0.05660V CH4: 0x0001c4b5 = +0.05659V CH5: 0x0001c4ff = +0.05662V CH6: 0x0001c4bf = +0.05659V CH7: 0x0001c4ef = +0.05662V + 906: CH0: 0x0001c510 = +0.05663V CH1: 0x0081c49f = -4.03942V CH2: 0x0001c4a6 = +0.05658V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c4bf = +0.05659V CH5: 0x0081c4f3 = -4.03938V CH6: 0x0001c4bb = +0.05659V CH7: 0x0001c4ea = +0.05661V + 907: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0001c47c = +0.05656V CH2: 0x0001c493 = +0.05657V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0001c4e7 = +0.05661V CH6: 0x0001c4a9 = +0.05658V CH7: 0x0001c4df = +0.05661V + 908: CH0: 0x0081c4fd = -4.03938V CH1: 0x0081c484 = -4.03944V CH2: 0x0081c49f = -4.03942V CH3: 0x0081c4db = -4.03939V CH4: 0x0001c4a9 = +0.05658V CH5: 0x0081c503 = -4.03937V CH6: 0x0001c4a7 = +0.05658V CH7: 0x0081c4f4 = -4.03938V + 909: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0081c46c = -4.03945V CH2: 0x0001c492 = +0.05657V CH3: 0x0081c4ba = -4.03941V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0001c4ee = +0.05662V CH6: 0x0001c498 = +0.05657V CH7: 0x0081c4d9 = -4.03939V + 910: CH0: 0x0001c4f6 = +0.05662V CH1: 0x0001c47d = +0.05656V CH2: 0x0081c498 = -4.03943V CH3: 0x0001c4b4 = +0.05659V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0001c4dd = +0.05661V CH6: 0x0081c47d = -4.03944V CH7: 0x0001c4e5 = +0.05661V + 911: CH0: 0x0001c4e7 = +0.05661V CH1: 0x0081c486 = -4.03943V CH2: 0x0081c488 = -4.03943V CH3: 0x0001c4b4 = +0.05659V CH4: 0x0001c4bc = +0.05659V CH5: 0x0001c4ea = +0.05661V CH6: 0x0081c49a = -4.03942V CH7: 0x0001c4f5 = +0.05662V + 912: CH0: 0x0081c4f6 = -4.03938V CH1: 0x0001c474 = +0.05656V CH2: 0x0001c492 = +0.05657V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0081c4ab = -4.03942V CH5: 0x0001c4eb = +0.05661V CH6: 0x0001c491 = +0.05657V CH7: 0x0081c4cc = -4.03940V + 913: CH0: 0x0001c513 = +0.05663V CH1: 0x0001c495 = +0.05657V CH2: 0x0081c4ab = -4.03942V CH3: 0x0081c4da = -4.03939V CH4: 0x0081c4cb = -4.03940V CH5: 0x0001c4fe = +0.05662V CH6: 0x0001c4b2 = +0.05659V CH7: 0x0081c4f3 = -4.03938V + 914: CH0: 0x0081c4f8 = -4.03938V CH1: 0x0001c478 = +0.05656V CH2: 0x0081c475 = -4.03944V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c4a1 = +0.05658V CH5: 0x0081c4da = -4.03939V CH6: 0x0081c4a3 = -4.03942V CH7: 0x0001c4dd = +0.05661V + 915: CH0: 0x0001c51e = +0.05664V CH1: 0x0081c49a = -4.03942V CH2: 0x0001c4a5 = +0.05658V CH3: 0x0081c4d9 = -4.03939V CH4: 0x0081c4c0 = -4.03941V CH5: 0x0081c50a = -4.03937V CH6: 0x0001c4b2 = +0.05659V CH7: 0x0001c4ed = +0.05662V + 916: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0001c478 = +0.05656V CH2: 0x0081c482 = -4.03944V CH3: 0x0001c4ba = +0.05659V CH4: 0x0001c4aa = +0.05658V CH5: 0x0081c4ec = -4.03938V CH6: 0x0081c4ad = -4.03942V CH7: 0x0081c4df = -4.03939V + 917: CH0: 0x0001c4f5 = +0.05662V CH1: 0x0081c47e = -4.03944V CH2: 0x0001c47f = +0.05656V CH3: 0x0001c4c4 = +0.05660V CH4: 0x0081c488 = -4.03943V CH5: 0x0081c4de = -4.03939V CH6: 0x0001c488 = +0.05657V CH7: 0x0081c4d3 = -4.03940V + 918: CH0: 0x0081c4ef = -4.03938V CH1: 0x0001c497 = +0.05657V CH2: 0x0001c48a = +0.05657V CH3: 0x0001c4ac = +0.05658V CH4: 0x0001c4bd = +0.05659V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0001c4ae = +0.05658V CH7: 0x0001c4da = +0.05661V + 919: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c48b = -4.03943V CH3: 0x0001c4b7 = +0.05659V CH4: 0x0081c4bb = -4.03941V CH5: 0x0081c4dc = -4.03939V CH6: 0x0081c491 = -4.03943V CH7: 0x0081c4be = -4.03941V + 920: CH0: 0x0081c508 = -4.03937V CH1: 0x0001c48e = +0.05657V CH2: 0x0081c4b0 = -4.03941V CH3: 0x0081c4e3 = -4.03939V CH4: 0x0001c4c0 = +0.05659V CH5: 0x0001c505 = +0.05663V CH6: 0x0001c4aa = +0.05658V CH7: 0x0001c4f6 = +0.05662V + 921: CH0: 0x0001c4e2 = +0.05661V CH1: 0x0081c459 = -4.03946V CH2: 0x0001c45f = +0.05655V CH3: 0x0081c4b2 = -4.03941V CH4: 0x0001c489 = +0.05657V CH5: 0x0081c4d0 = -4.03940V CH6: 0x0081c496 = -4.03943V CH7: 0x0001c4cb = +0.05660V + 922: CH0: 0x0081c4da = -4.03939V CH1: 0x0081c458 = -4.03946V CH2: 0x0001c478 = +0.05656V CH3: 0x0081c4ad = -4.03942V CH4: 0x0001c48c = +0.05657V CH5: 0x0081c4db = -4.03939V CH6: 0x0081c470 = -4.03944V CH7: 0x0001c4b2 = +0.05659V + 923: CH0: 0x0081c4fb = -4.03938V CH1: 0x0081c47a = -4.03944V CH2: 0x0081c499 = -4.03942V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0001c499 = +0.05657V CH5: 0x0081c4e3 = -4.03939V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4db = -4.03939V + 924: CH0: 0x0081c50f = -4.03937V CH1: 0x0001c484 = +0.05656V CH2: 0x0081c4a0 = -4.03942V CH3: 0x0081c4df = -4.03939V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0081c4ff = -4.03938V CH6: 0x0001c4a8 = +0.05658V CH7: 0x0081c4e4 = -4.03939V + 925: CH0: 0x0081c4ec = -4.03938V CH1: 0x0081c46b = -4.03945V CH2: 0x0081c49e = -4.03942V CH3: 0x0081c4be = -4.03941V CH4: 0x0081c49e = -4.03942V CH5: 0x0081c4f7 = -4.03938V CH6: 0x0001c4af = +0.05659V CH7: 0x0001c4c5 = +0.05660V + 926: CH0: 0x0081c4e7 = -4.03939V CH1: 0x0081c46f = -4.03945V CH2: 0x0001c47b = +0.05656V CH3: 0x0001c4c0 = +0.05659V CH4: 0x0001c495 = +0.05657V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0081c497 = -4.03943V CH7: 0x0001c4c4 = +0.05660V + 927: CH0: 0x0081c4e4 = -4.03939V CH1: 0x0081c476 = -4.03944V CH2: 0x0001c494 = +0.05657V CH3: 0x0001c4c2 = +0.05659V CH4: 0x0001c4b1 = +0.05659V CH5: 0x0081c4fd = -4.03938V CH6: 0x0081c4a9 = -4.03942V CH7: 0x0001c4ec = +0.05662V + 928: CH0: 0x0001c4ca = +0.05660V CH1: 0x0081c454 = -4.03946V CH2: 0x0001c46e = +0.05655V CH3: 0x0081c48d = -4.03943V CH4: 0x0001c47c = +0.05656V CH5: 0x0001c4c2 = +0.05659V CH6: 0x0001c48b = +0.05657V CH7: 0x0081c4b0 = -4.03941V + 929: CH0: 0x0001c4f5 = +0.05662V CH1: 0x0001c496 = +0.05657V CH2: 0x0081c48c = -4.03943V CH3: 0x0001c4b9 = +0.05659V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0081c4fc = -4.03938V CH6: 0x0081c497 = -4.03943V CH7: 0x0001c4cd = +0.05660V + 930: CH0: 0x0081c4fc = -4.03938V CH1: 0x0081c489 = -4.03943V CH2: 0x0001c498 = +0.05657V CH3: 0x0081c4b9 = -4.03941V CH4: 0x0081c4b3 = -4.03941V CH5: 0x0001c4fc = +0.05662V CH6: 0x0081c4ab = -4.03942V CH7: 0x0081c4ea = -4.03939V + 931: CH0: 0x0001c4ef = +0.05662V CH1: 0x0001c480 = +0.05656V CH2: 0x0081c47e = -4.03944V CH3: 0x0081c4cb = -4.03940V CH4: 0x0081c49f = -4.03942V CH5: 0x0001c4e4 = +0.05661V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4dc = +0.05661V + 932: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0081c495 = -4.03943V CH2: 0x0001c49b = +0.05658V CH3: 0x0001c4ba = +0.05659V CH4: 0x0001c4b0 = +0.05659V CH5: 0x0001c500 = +0.05663V CH6: 0x0001c49d = +0.05658V CH7: 0x0001c4f2 = +0.05662V + 933: CH0: 0x0081c4d6 = -4.03940V CH1: 0x0001c457 = +0.05654V CH2: 0x0001c479 = +0.05656V CH3: 0x0001c49c = +0.05658V CH4: 0x0001c499 = +0.05657V CH5: 0x0081c4bf = -4.03941V CH6: 0x0081c47c = -4.03944V CH7: 0x0001c4b9 = +0.05659V + 934: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0081c498 = -4.03943V CH2: 0x0081c492 = -4.03943V CH3: 0x0081c4e1 = -4.03939V CH4: 0x0081c4a8 = -4.03942V CH5: 0x0001c4fa = +0.05662V CH6: 0x0081c4a3 = -4.03942V CH7: 0x0081c4e8 = -4.03939V + 935: CH0: 0x0081c4d6 = -4.03940V CH1: 0x0081c488 = -4.03943V CH2: 0x0081c47c = -4.03944V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0001c495 = +0.05657V CH5: 0x0081c4ee = -4.03938V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4e0 = -4.03939V + 936: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0001c462 = +0.05655V CH2: 0x0081c46c = -4.03945V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0001c4d5 = +0.05660V CH6: 0x0001c47d = +0.05656V CH7: 0x0001c4c2 = +0.05659V + 937: CH0: 0x0081c4ec = -4.03938V CH1: 0x0001c46a = +0.05655V CH2: 0x0001c46b = +0.05655V CH3: 0x0081c4c4 = -4.03940V CH4: 0x0001c49a = +0.05658V CH5: 0x0081c4e5 = -4.03939V CH6: 0x0081c48b = -4.03943V CH7: 0x0081c4cc = -4.03940V + 938: CH0: 0x0081c4d2 = -4.03940V CH1: 0x0081c465 = -4.03945V CH2: 0x0081c47a = -4.03944V CH3: 0x0001c4ae = +0.05658V CH4: 0x0001c485 = +0.05656V CH5: 0x0001c4cc = +0.05660V CH6: 0x0081c47d = -4.03944V CH7: 0x0081c4b3 = -4.03941V + 939: CH0: 0x0001c51e = +0.05664V CH1: 0x0081c4a6 = -4.03942V CH2: 0x0001c4aa = +0.05658V CH3: 0x0081c4e3 = -4.03939V CH4: 0x0081c4d0 = -4.03940V CH5: 0x0081c50d = -4.03937V CH6: 0x0081c4b9 = -4.03941V CH7: 0x0081c4fc = -4.03938V + 940: CH0: 0x0001c504 = +0.05663V CH1: 0x0001c472 = +0.05656V CH2: 0x0081c487 = -4.03943V CH3: 0x0081c4bf = -4.03941V CH4: 0x0081c4b5 = -4.03941V CH5: 0x0001c4eb = +0.05661V CH6: 0x0081c49c = -4.03942V CH7: 0x0001c4e5 = +0.05661V + 941: CH0: 0x0081c4fa = -4.03938V CH1: 0x0081c48c = -4.03943V CH2: 0x0001c4a3 = +0.05658V CH3: 0x0001c4c8 = +0.05660V CH4: 0x0001c4a8 = +0.05658V CH5: 0x0001c4f1 = +0.05662V CH6: 0x0081c4ad = -4.03942V CH7: 0x0001c4e4 = +0.05661V + 942: CH0: 0x0081c505 = -4.03937V CH1: 0x0001c4ac = +0.05658V CH2: 0x0001c496 = +0.05657V CH3: 0x0081c4d6 = -4.03940V CH4: 0x0001c4b8 = +0.05659V CH5: 0x0081c504 = -4.03937V CH6: 0x0001c4bf = +0.05659V CH7: 0x0001c4eb = +0.05661V + 943: CH0: 0x0081c4df = -4.03939V CH1: 0x0001c46f = +0.05655V CH2: 0x0081c496 = -4.03943V CH3: 0x0001c4bd = +0.05659V CH4: 0x0081c49e = -4.03942V CH5: 0x0081c4d2 = -4.03940V CH6: 0x0001c48f = +0.05657V CH7: 0x0001c4c7 = +0.05660V + 944: CH0: 0x0081c4fe = -4.03938V CH1: 0x0081c488 = -4.03943V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0081c4c9 = -4.03940V CH4: 0x0001c4bc = +0.05659V CH5: 0x0001c4ed = +0.05662V CH6: 0x0081c4a9 = -4.03942V CH7: 0x0081c4ef = -4.03938V + 945: CH0: 0x0081c4f7 = -4.03938V CH1: 0x0001c470 = +0.05655V CH2: 0x0001c479 = +0.05656V CH3: 0x0081c49e = -4.03942V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0081c4e0 = -4.03939V CH6: 0x0001c48c = +0.05657V CH7: 0x0001c4d9 = +0.05661V + 946: CH0: 0x0001c4db = +0.05661V CH1: 0x0001c469 = +0.05655V CH2: 0x0081c472 = -4.03944V CH3: 0x0001c494 = +0.05657V CH4: 0x0001c484 = +0.05656V CH5: 0x0001c4d3 = +0.05660V CH6: 0x0001c47d = +0.05656V CH7: 0x0001c4bd = +0.05659V + 947: CH0: 0x0081c4dd = -4.03939V CH1: 0x0001c465 = +0.05655V CH2: 0x0081c46e = -4.03945V CH3: 0x0001c4a4 = +0.05658V CH4: 0x0081c480 = -4.03944V CH5: 0x0001c4d1 = +0.05660V CH6: 0x0081c48d = -4.03943V CH7: 0x0081c4c9 = -4.03940V + 948: CH0: 0x0001c4f0 = +0.05662V CH1: 0x0081c474 = -4.03944V CH2: 0x0081c499 = -4.03942V CH3: 0x0081c4af = -4.03941V CH4: 0x0081c48b = -4.03943V CH5: 0x0081c4e9 = -4.03939V CH6: 0x0001c486 = +0.05657V CH7: 0x0081c4dc = -4.03939V + 949: CH0: 0x0081c4eb = -4.03938V CH1: 0x0001c482 = +0.05656V CH2: 0x0081c485 = -4.03943V CH3: 0x0081c4bf = -4.03941V CH4: 0x0081c4b1 = -4.03941V CH5: 0x0081c4e9 = -4.03939V CH6: 0x0001c48e = +0.05657V CH7: 0x0001c4b9 = +0.05659V + 950: CH0: 0x0001c4d1 = +0.05660V CH1: 0x0001c453 = +0.05654V CH2: 0x0081c478 = -4.03944V CH3: 0x0001c4a3 = +0.05658V CH4: 0x0001c483 = +0.05656V CH5: 0x0081c4ca = -4.03940V CH6: 0x0081c484 = -4.03944V CH7: 0x0081c4ac = -4.03942V + 951: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0081c476 = -4.03944V CH2: 0x0081c47f = -4.03944V CH3: 0x0001c4ac = +0.05658V CH4: 0x0001c496 = +0.05657V CH5: 0x0001c4df = +0.05661V CH6: 0x0081c490 = -4.03943V CH7: 0x0001c4d8 = +0.05661V + 952: CH0: 0x0081c4ef = -4.03938V CH1: 0x0081c47c = -4.03944V CH2: 0x0001c473 = +0.05656V CH3: 0x0001c4ba = +0.05659V CH4: 0x0081c49c = -4.03942V CH5: 0x0081c4d5 = -4.03940V CH6: 0x0001c4aa = +0.05658V CH7: 0x0001c4e1 = +0.05661V + 953: CH0: 0x0001c4f8 = +0.05662V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c491 = -4.03943V CH3: 0x0001c4ad = +0.05658V CH4: 0x0081c484 = -4.03944V CH5: 0x0081c4dd = -4.03939V CH6: 0x0081c499 = -4.03942V CH7: 0x0001c4de = +0.05661V + 954: CH0: 0x0001c501 = +0.05663V CH1: 0x0001c489 = +0.05657V CH2: 0x0001c48d = +0.05657V CH3: 0x0001c4bc = +0.05659V CH4: 0x0081c4ae = -4.03941V CH5: 0x0001c4e5 = +0.05661V CH6: 0x0081c495 = -4.03943V CH7: 0x0081c4c8 = -4.03940V + 955: CH0: 0x0081c4ea = -4.03939V CH1: 0x0001c475 = +0.05656V CH2: 0x0001c48e = +0.05657V CH3: 0x0081c4a7 = -4.03942V CH4: 0x0081c490 = -4.03943V CH5: 0x0001c4e8 = +0.05661V CH6: 0x0001c49a = +0.05658V CH7: 0x0081c4c7 = -4.03940V + 956: CH0: 0x0001c4e6 = +0.05661V CH1: 0x0001c47f = +0.05656V CH2: 0x0081c489 = -4.03943V CH3: 0x0001c4a5 = +0.05658V CH4: 0x0001c48f = +0.05657V CH5: 0x0081c4e0 = -4.03939V CH6: 0x0001c492 = +0.05657V CH7: 0x0081c4e1 = -4.03939V + 957: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0001c477 = +0.05656V CH2: 0x0001c478 = +0.05656V CH3: 0x0081c4d0 = -4.03940V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0001c4db = +0.05661V CH6: 0x0081c48d = -4.03943V CH7: 0x0001c4d5 = +0.05660V + 958: CH0: 0x0081c4e0 = -4.03939V CH1: 0x0081c45f = -4.03945V CH2: 0x0081c476 = -4.03944V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0081c48d = -4.03943V CH5: 0x0081c4d8 = -4.03939V CH6: 0x0001c481 = +0.05656V CH7: 0x0081c4c7 = -4.03940V + 959: CH0: 0x0001c4d8 = +0.05661V CH1: 0x0001c45d = +0.05655V CH2: 0x0081c480 = -4.03944V CH3: 0x0001c49e = +0.05658V CH4: 0x0001c489 = +0.05657V CH5: 0x0001c4cd = +0.05660V CH6: 0x0081c48c = -4.03943V CH7: 0x0081c4ca = -4.03940V + 960: CH0: 0x0001c4d5 = +0.05660V CH1: 0x0081c47d = -4.03944V CH2: 0x0081c47d = -4.03944V CH3: 0x0001c4bb = +0.05659V CH4: 0x0001c496 = +0.05657V CH5: 0x0081c4f2 = -4.03938V CH6: 0x0001c486 = +0.05657V CH7: 0x0001c4d4 = +0.05660V + 961: CH0: 0x0081c4ec = -4.03938V CH1: 0x0081c47f = -4.03944V CH2: 0x0081c47f = -4.03944V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0081c48d = -4.03943V CH5: 0x0001c4e0 = +0.05661V CH6: 0x0001c48e = +0.05657V CH7: 0x0081c4dc = -4.03939V + 962: CH0: 0x0081c4f6 = -4.03938V CH1: 0x0001c46f = +0.05655V CH2: 0x0001c489 = +0.05657V CH3: 0x0081c4c3 = -4.03940V CH4: 0x0001c49a = +0.05658V CH5: 0x0001c4ec = +0.05662V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0001c4d5 = +0.05660V + 963: CH0: 0x0001c4f2 = +0.05662V CH1: 0x0081c47b = -4.03944V CH2: 0x0001c47d = +0.05656V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c4ac = +0.05658V CH5: 0x0081c4fd = -4.03938V CH6: 0x0081c492 = -4.03943V CH7: 0x0081c4da = -4.03939V + 964: CH0: 0x0001c4e6 = +0.05661V CH1: 0x0001c470 = +0.05655V CH2: 0x0081c47e = -4.03944V CH3: 0x0081c4a2 = -4.03942V CH4: 0x0001c480 = +0.05656V CH5: 0x0001c4cd = +0.05660V CH6: 0x0081c480 = -4.03944V CH7: 0x0081c4bb = -4.03941V + 965: CH0: 0x0081c505 = -4.03937V CH1: 0x0001c49d = +0.05658V CH2: 0x0001c4a4 = +0.05658V CH3: 0x0001c4dc = +0.05661V CH4: 0x0081c4bb = -4.03941V CH5: 0x0081c4f8 = -4.03938V CH6: 0x0081c4a2 = -4.03942V CH7: 0x0001c4ed = +0.05662V + 966: CH0: 0x0081c505 = -4.03937V CH1: 0x0081c48f = -4.03943V CH2: 0x0081c48d = -4.03943V CH3: 0x0001c4b4 = +0.05659V CH4: 0x0001c4b6 = +0.05659V CH5: 0x0001c4f7 = +0.05662V CH6: 0x0001c497 = +0.05657V CH7: 0x0081c4ff = -4.03938V + 967: CH0: 0x0081c4d8 = -4.03939V CH1: 0x0081c45c = -4.03945V CH2: 0x0001c47a = +0.05656V CH3: 0x0001c4a1 = +0.05658V CH4: 0x0081c48c = -4.03943V CH5: 0x0001c4cc = +0.05660V CH6: 0x0081c484 = -4.03944V CH7: 0x0081c4cc = -4.03940V + 968: CH0: 0x0001c4ec = +0.05662V CH1: 0x0081c497 = -4.03943V CH2: 0x0001c49d = +0.05658V CH3: 0x0081c4c9 = -4.03940V CH4: 0x0001c4b4 = +0.05659V CH5: 0x0081c4f4 = -4.03938V CH6: 0x0081c4ac = -4.03942V CH7: 0x0081c4e5 = -4.03939V + 969: CH0: 0x0081c4ec = -4.03938V CH1: 0x0081c474 = -4.03944V CH2: 0x0081c47a = -4.03944V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c48b = +0.05657V CH5: 0x0081c4f6 = -4.03938V CH6: 0x0001c495 = +0.05657V CH7: 0x0001c4bd = +0.05659V + 970: CH0: 0x0081c4fb = -4.03938V CH1: 0x0001c488 = +0.05657V CH2: 0x0001c499 = +0.05657V CH3: 0x0081c4de = -4.03939V CH4: 0x0081c4b5 = -4.03941V CH5: 0x0001c509 = +0.05663V CH6: 0x0001c4b5 = +0.05659V CH7: 0x0081c4e3 = -4.03939V + 971: CH0: 0x0081c4f3 = -4.03938V CH1: 0x0001c48c = +0.05657V CH2: 0x0081c489 = -4.03943V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c4ad = +0.05658V CH5: 0x0001c4ea = +0.05661V CH6: 0x0001c49c = +0.05658V CH7: 0x0081c4d7 = -4.03939V + 972: CH0: 0x0001c4eb = +0.05661V CH1: 0x0001c46e = +0.05655V CH2: 0x0001c486 = +0.05657V CH3: 0x0081c4bc = -4.03941V CH4: 0x0001c49d = +0.05658V CH5: 0x0001c4d4 = +0.05660V CH6: 0x0081c48e = -4.03943V CH7: 0x0001c4be = +0.05659V + 973: CH0: 0x0001c4e3 = +0.05661V CH1: 0x0081c487 = -4.03943V CH2: 0x0001c49d = +0.05658V CH3: 0x0081c4bb = -4.03941V CH4: 0x0081c4b3 = -4.03941V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0081c498 = -4.03943V CH7: 0x0001c4df = +0.05661V + 974: CH0: 0x0081c4d6 = -4.03940V CH1: 0x0001c46f = +0.05655V CH2: 0x0081c473 = -4.03944V CH3: 0x0001c4a0 = +0.05658V CH4: 0x0081c48f = -4.03943V CH5: 0x0001c4c4 = +0.05660V CH6: 0x0081c469 = -4.03945V CH7: 0x0081c4ac = -4.03942V + 975: CH0: 0x0001c4fd = +0.05662V CH1: 0x0081c495 = -4.03943V CH2: 0x0081c498 = -4.03943V CH3: 0x0081c4c6 = -4.03940V CH4: 0x0081c4b2 = -4.03941V CH5: 0x0001c4ee = +0.05662V CH6: 0x0001c4a6 = +0.05658V CH7: 0x0001c4d6 = +0.05660V + 976: CH0: 0x0001c4fe = +0.05662V CH1: 0x0001c475 = +0.05656V CH2: 0x0081c484 = -4.03944V CH3: 0x0081c4cf = -4.03940V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4d1 = +0.05660V CH6: 0x0001c49e = +0.05658V CH7: 0x0001c4e1 = +0.05661V + 977: CH0: 0x0081c4f8 = -4.03938V CH1: 0x0001c47b = +0.05656V CH2: 0x0081c491 = -4.03943V CH3: 0x0001c4d2 = +0.05660V CH4: 0x0001c49d = +0.05658V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0001c496 = +0.05657V CH7: 0x0001c4bf = +0.05659V + 978: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0001c48a = +0.05657V CH2: 0x0001c49c = +0.05658V CH3: 0x0001c4b8 = +0.05659V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0081c4b5 = -4.03941V CH7: 0x0001c4d7 = +0.05660V + 979: CH0: 0x0081c4e6 = -4.03939V CH1: 0x0081c471 = -4.03944V CH2: 0x0081c480 = -4.03944V CH3: 0x0081c4bd = -4.03941V CH4: 0x0001c4a7 = +0.05658V CH5: 0x0081c4cc = -4.03940V CH6: 0x0001c497 = +0.05657V CH7: 0x0001c4d5 = +0.05660V + 980: CH0: 0x0081c4ee = -4.03938V CH1: 0x0001c483 = +0.05656V CH2: 0x0081c48f = -4.03943V CH3: 0x0081c4ba = -4.03941V CH4: 0x0001c4af = +0.05659V CH5: 0x0081c4ed = -4.03938V CH6: 0x0081c489 = -4.03943V CH7: 0x0081c4c3 = -4.03940V + 981: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0001c487 = +0.05657V CH2: 0x0081c49c = -4.03942V CH3: 0x0001c4cd = +0.05660V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0081c4e7 = -4.03939V CH6: 0x0001c49f = +0.05658V CH7: 0x0081c4e7 = -4.03939V + 982: CH0: 0x0001c4d9 = +0.05661V CH1: 0x0001c477 = +0.05656V CH2: 0x0081c48f = -4.03943V CH3: 0x0081c4ba = -4.03941V CH4: 0x0001c49b = +0.05658V CH5: 0x0081c4dc = -4.03939V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4d2 = -4.03940V + 983: CH0: 0x0001c4fc = +0.05662V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c493 = -4.03943V CH3: 0x0001c4b7 = +0.05659V CH4: 0x0001c4a3 = +0.05658V CH5: 0x0001c4df = +0.05661V CH6: 0x0001c48d = +0.05657V CH7: 0x0001c4ce = +0.05660V + 984: CH0: 0x0001c505 = +0.05663V CH1: 0x0001c48d = +0.05657V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0001c4bb = +0.05659V CH5: 0x0081c4e4 = -4.03939V CH6: 0x0001c4a2 = +0.05658V CH7: 0x0001c4ec = +0.05662V + 985: CH0: 0x0081c4ef = -4.03938V CH1: 0x0001c479 = +0.05656V CH2: 0x0001c480 = +0.05656V CH3: 0x0081c4af = -4.03941V CH4: 0x0001c49b = +0.05658V CH5: 0x0001c4de = +0.05661V CH6: 0x0001c48b = +0.05657V CH7: 0x0081c4ca = -4.03940V + 986: CH0: 0x0001c4de = +0.05661V CH1: 0x0081c493 = -4.03943V CH2: 0x0081c494 = -4.03943V CH3: 0x0081c4a5 = -4.03942V CH4: 0x0001c49a = +0.05658V CH5: 0x0081c4eb = -4.03938V CH6: 0x0081c4a0 = -4.03942V CH7: 0x0001c4dd = +0.05661V + 987: CH0: 0x0081c4ce = -4.03940V CH1: 0x0081c476 = -4.03944V CH2: 0x0001c46e = +0.05655V CH3: 0x0081c496 = -4.03943V CH4: 0x0001c496 = +0.05657V CH5: 0x0001c4dc = +0.05661V CH6: 0x0081c49c = -4.03942V CH7: 0x0001c4c5 = +0.05660V + 988: CH0: 0x0001c4fe = +0.05662V CH1: 0x0081c48c = -4.03943V CH2: 0x0081c481 = -4.03944V CH3: 0x0081c4c7 = -4.03940V CH4: 0x0081c499 = -4.03942V CH5: 0x0001c4dc = +0.05661V CH6: 0x0081c498 = -4.03943V CH7: 0x0001c4d1 = +0.05660V + 989: CH0: 0x0081c4d0 = -4.03940V CH1: 0x0001c484 = +0.05656V CH2: 0x0081c48b = -4.03943V CH3: 0x0081c4a5 = -4.03942V CH4: 0x0081c49f = -4.03942V CH5: 0x0001c4d9 = +0.05661V CH6: 0x0081c488 = -4.03943V CH7: 0x0081c4cd = -4.03940V + 990: CH0: 0x0081c4ca = -4.03940V CH1: 0x0081c471 = -4.03944V CH2: 0x0081c46e = -4.03945V CH3: 0x0081c49a = -4.03942V CH4: 0x0001c49c = +0.05658V CH5: 0x0001c4d7 = +0.05660V CH6: 0x0001c48a = +0.05657V CH7: 0x0081c4b3 = -4.03941V + 991: CH0: 0x0001c4f7 = +0.05662V CH1: 0x0001c49a = +0.05658V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0001c4c9 = +0.05660V CH4: 0x0081c4a7 = -4.03942V CH5: 0x0001c4ee = +0.05662V CH6: 0x0081c4b6 = -4.03941V CH7: 0x0081c4ee = -4.03938V + 992: CH0: 0x0001c4da = +0.05661V CH1: 0x0001c463 = +0.05655V CH2: 0x0001c487 = +0.05657V CH3: 0x0081c4a7 = -4.03942V CH4: 0x0001c487 = +0.05657V CH5: 0x0001c4c6 = +0.05660V CH6: 0x0081c492 = -4.03943V CH7: 0x0001c4dc = +0.05661V + 993: CH0: 0x0081c4d1 = -4.03940V CH1: 0x0001c471 = +0.05656V CH2: 0x0001c492 = +0.05657V CH3: 0x0001c4ab = +0.05658V CH4: 0x0001c49a = +0.05658V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0081c474 = -4.03944V CH7: 0x0001c4c6 = +0.05660V + 994: CH0: 0x0081c4f8 = -4.03938V CH1: 0x0001c483 = +0.05656V CH2: 0x0081c49a = -4.03942V CH3: 0x0081c4c5 = -4.03940V CH4: 0x0001c4aa = +0.05658V CH5: 0x0001c4e7 = +0.05661V CH6: 0x0001c494 = +0.05657V CH7: 0x0081c4e3 = -4.03939V + 995: CH0: 0x0001c50e = +0.05663V CH1: 0x0001c48a = +0.05657V CH2: 0x0001c494 = +0.05657V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0081c4aa = -4.03942V CH5: 0x0081c4f0 = -4.03938V CH6: 0x0001c4b1 = +0.05659V CH7: 0x0081c4e1 = -4.03939V + 996: CH0: 0x0081c4ff = -4.03938V CH1: 0x0081c482 = -4.03944V CH2: 0x0001c48c = +0.05657V CH3: 0x0081c4c8 = -4.03940V CH4: 0x0081c4a0 = -4.03942V CH5: 0x0081c4e0 = -4.03939V CH6: 0x0001c49b = +0.05658V CH7: 0x0001c4c7 = +0.05660V + 997: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c46a = +0.05655V CH2: 0x0001c48b = +0.05657V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0001c4de = +0.05661V CH6: 0x0001c490 = +0.05657V CH7: 0x0081c4cb = -4.03940V + 998: CH0: 0x0001c4f3 = +0.05662V CH1: 0x0081c477 = -4.03944V CH2: 0x0081c490 = -4.03943V CH3: 0x0001c4b4 = +0.05659V CH4: 0x0001c4ab = +0.05658V CH5: 0x0081c4f7 = -4.03938V CH6: 0x0001c491 = +0.05657V CH7: 0x0001c4da = +0.05661V + 999: CH0: 0x0001c50f = +0.05663V CH1: 0x0081c482 = -4.03944V CH2: 0x0001c490 = +0.05657V CH3: 0x0001c4da = +0.05661V CH4: 0x0081c4a4 = -4.03942V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c4b9 = +0.05659V CH7: 0x0081c4f3 = -4.03938V + 1000: CH0: 0x0081c4ef = -4.03938V CH1: 0x0001c483 = +0.05656V CH2: 0x0001c496 = +0.05657V CH3: 0x0081c4b8 = -4.03941V CH4: 0x0081c4ac = -4.03942V CH5: 0x0081c4ea = -4.03939V CH6: 0x0081c4ac = -4.03942V CH7: 0x0001c4d5 = +0.05660V + 1001: CH0: 0x0001c4f5 = +0.05662V CH1: 0x0001c485 = +0.05656V CH2: 0x0081c48a = -4.03943V CH3: 0x0081c4be = -4.03941V CH4: 0x0001c49c = +0.05658V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0001c498 = +0.05657V CH7: 0x0081c4d4 = -4.03940V + 1002: CH0: 0x0081c4ec = -4.03938V CH1: 0x0081c485 = -4.03943V CH2: 0x0081c48a = -4.03943V CH3: 0x0001c4b6 = +0.05659V CH4: 0x0081c49b = -4.03942V CH5: 0x0001c4f8 = +0.05662V CH6: 0x0081c49b = -4.03942V CH7: 0x0081c4ed = -4.03938V + 1003: CH0: 0x0081c4d3 = -4.03940V CH1: 0x0081c464 = -4.03945V CH2: 0x0081c46f = -4.03945V CH3: 0x0081c48f = -4.03943V CH4: 0x0001c498 = +0.05657V CH5: 0x0001c4d0 = +0.05660V CH6: 0x0001c470 = +0.05655V CH7: 0x0081c4be = -4.03941V + 1004: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0081c476 = -4.03944V CH2: 0x0081c48f = -4.03943V CH3: 0x0081c4b0 = -4.03941V CH4: 0x0081c49b = -4.03942V CH5: 0x0081c4d2 = -4.03940V CH6: 0x0001c48e = +0.05657V CH7: 0x0001c4d3 = +0.05660V + 1005: CH0: 0x0081c4da = -4.03939V CH1: 0x0081c47e = -4.03944V CH2: 0x0081c487 = -4.03943V CH3: 0x0001c4b4 = +0.05659V CH4: 0x0001c496 = +0.05657V CH5: 0x0001c4cd = +0.05660V CH6: 0x0081c495 = -4.03943V CH7: 0x0001c4dd = +0.05661V + 1006: CH0: 0x0081c506 = -4.03937V CH1: 0x0001c479 = +0.05656V CH2: 0x0001c48a = +0.05657V CH3: 0x0001c4ae = +0.05658V CH4: 0x0081c4a2 = -4.03942V CH5: 0x0081c4cb = -4.03940V CH6: 0x0001c4a4 = +0.05658V CH7: 0x0001c4dc = +0.05661V + 1007: CH0: 0x0001c4e8 = +0.05661V CH1: 0x0081c46a = -4.03945V CH2: 0x0081c494 = -4.03943V CH3: 0x0081c4b7 = -4.03941V CH4: 0x0001c49a = +0.05658V CH5: 0x0001c4d1 = +0.05660V CH6: 0x0081c48c = -4.03943V CH7: 0x0001c4d1 = +0.05660V + 1008: CH0: 0x0081c4d6 = -4.03940V CH1: 0x0081c461 = -4.03945V CH2: 0x0001c477 = +0.05656V CH3: 0x0081c4a8 = -4.03942V CH4: 0x0001c468 = +0.05655V CH5: 0x0081c4b8 = -4.03941V CH6: 0x0001c458 = +0.05654V CH7: 0x0081c4b2 = -4.03941V + 1009: CH0: 0x0001c4f4 = +0.05662V CH1: 0x0081c48e = -4.03943V CH2: 0x0081c4a3 = -4.03942V CH3: 0x0001c4b0 = +0.05659V CH4: 0x0001c490 = +0.05657V CH5: 0x0081c4e0 = -4.03939V CH6: 0x0081c491 = -4.03943V CH7: 0x0081c4cf = -4.03940V + 1010: CH0: 0x0081c4ea = -4.03939V CH1: 0x0081c46d = -4.03945V CH2: 0x0001c47a = +0.05656V CH3: 0x0001c4d5 = +0.05660V CH4: 0x0001c4a9 = +0.05658V CH5: 0x0001c4e7 = +0.05661V CH6: 0x0001c492 = +0.05657V CH7: 0x0001c4c5 = +0.05660V + 1011: CH0: 0x0001c4e9 = +0.05661V CH1: 0x0001c470 = +0.05655V CH2: 0x0001c46b = +0.05655V CH3: 0x0081c4b5 = -4.03941V CH4: 0x0001c48a = +0.05657V CH5: 0x0081c4d5 = -4.03940V CH6: 0x0081c47a = -4.03944V CH7: 0x0001c4d4 = +0.05660V + 1012: CH0: 0x0081c4d1 = -4.03940V CH1: 0x0001c46e = +0.05655V CH2: 0x0081c481 = -4.03944V CH3: 0x0001c499 = +0.05657V CH4: 0x0081c482 = -4.03944V CH5: 0x0081c4d6 = -4.03940V CH6: 0x0001c488 = +0.05657V CH7: 0x0081c4de = -4.03939V + 1013: CH0: 0x0081c4e8 = -4.03939V CH1: 0x0081c45e = -4.03945V CH2: 0x0081c47f = -4.03944V CH3: 0x0081c4c4 = -4.03940V CH4: 0x0001c489 = +0.05657V CH5: 0x0001c4d7 = +0.05660V CH6: 0x0001c492 = +0.05657V CH7: 0x0081c4c5 = -4.03940V + 1014: CH0: 0x0081c4d6 = -4.03940V CH1: 0x0001c46a = +0.05655V CH2: 0x0001c484 = +0.05656V CH3: 0x0001c4b3 = +0.05659V CH4: 0x0001c49b = +0.05658V CH5: 0x0001c4d8 = +0.05661V CH6: 0x0081c499 = -4.03942V CH7: 0x0001c4cf = +0.05660V + 1015: CH0: 0x0001c4ca = +0.05660V CH1: 0x0081c44a = -4.03946V CH2: 0x0081c46d = -4.03945V CH3: 0x0081c495 = -4.03943V CH4: 0x0001c484 = +0.05656V CH5: 0x0001c4b8 = +0.05659V CH6: 0x0081c46e = -4.03945V CH7: 0x0001c4aa = +0.05658V + 1016: CH0: 0x0001c505 = +0.05663V CH1: 0x0081c47a = -4.03944V CH2: 0x0001c49b = +0.05658V CH3: 0x0001c4da = +0.05661V CH4: 0x0081c491 = -4.03943V CH5: 0x0081c4ef = -4.03938V CH6: 0x0081c491 = -4.03943V CH7: 0x0081c4d2 = -4.03940V + 1017: CH0: 0x0081c4f3 = -4.03938V CH1: 0x0001c469 = +0.05655V CH2: 0x0001c483 = +0.05656V CH3: 0x0081c4c9 = -4.03940V CH4: 0x0001c4a0 = +0.05658V CH5: 0x0001c4f4 = +0.05662V CH6: 0x0001c4ad = +0.05658V CH7: 0x0001c4e4 = +0.05661V + 1018: CH0: 0x0001c4ea = +0.05661V CH1: 0x0001c47c = +0.05656V CH2: 0x0001c47c = +0.05656V CH3: 0x0081c4a8 = -4.03942V CH4: 0x0081c497 = -4.03943V CH5: 0x0081c4ca = -4.03940V CH6: 0x0001c48a = +0.05657V CH7: 0x0001c4ce = +0.05660V + 1019: CH0: 0x0001c4f9 = +0.05662V CH1: 0x0081c48a = -4.03943V CH2: 0x0081c4a4 = -4.03942V CH3: 0x0001c4c6 = +0.05660V CH4: 0x0081c4a6 = -4.03942V CH5: 0x0001c4f6 = +0.05662V CH6: 0x0081c4b0 = -4.03941V CH7: 0x0001c4ed = +0.05662V + 1020: CH0: 0x0001c4f1 = +0.05662V CH1: 0x0081c457 = -4.03946V CH2: 0x0081c48d = -4.03943V CH3: 0x0081c4b1 = -4.03941V CH4: 0x0001c495 = +0.05657V CH5: 0x0001c4e2 = +0.05661V CH6: 0x0001c49d = +0.05658V CH7: 0x0081c4d0 = -4.03940V + 1021: CH0: 0x0081c4de = -4.03939V CH1: 0x0081c46e = -4.03945V CH2: 0x0001c485 = +0.05656V CH3: 0x0001c49f = +0.05658V CH4: 0x0001c499 = +0.05657V CH5: 0x0081c4e2 = -4.03939V CH6: 0x0081c484 = -4.03944V CH7: 0x0081c4d1 = -4.03940V + 1022: CH0: 0x0081c4c2 = -4.03940V CH1: 0x0081c46d = -4.03945V CH2: 0x0081c465 = -4.03945V CH3: 0x0001c499 = +0.05657V CH4: 0x0081c493 = -4.03943V CH5: 0x0081c4d7 = -4.03939V CH6: 0x0081c482 = -4.03944V CH7: 0x0081c4bb = -4.03941V + 1023: CH0: 0x0081c4f2 = -4.03938V CH1: 0x0001c49a = +0.05658V CH2: 0x0081c4a2 = -4.03942V CH3: 0x0081c4dd = -4.03939V CH4: 0x0081c4a9 = -4.03942V CH5: 0x0001c4e9 = +0.05661V CH6: 0x0001c4ab = +0.05658V CH7: 0x0001c4cd = +0.05660V + + + +.. note:: + + The continuous ADC data stream will keep printing in the console until the + serial session is closed. To stop the data flow, simply disconnect from the + serial port in your terminal application (for example, select *Disconnect* in + Tera Term) diff --git a/docs/solutions/reference-designs/eval-ad7134-fmcz/user-guide.rst b/docs/solutions/reference-designs/eval-ad7134-fmcz/user-guide.rst new file mode 100644 index 00000000000..886b8815710 --- /dev/null +++ b/docs/solutions/reference-designs/eval-ad7134-fmcz/user-guide.rst @@ -0,0 +1,141 @@ +.. _eval-ad7134-fmcz user-guide: + +User guide +========== + +The complete user guide of the evaluation board can be found at +:adi:`EVAL-AD7134FMCZ User Guide +`. + +Additional documentation: + +- :adi:`AD7134 Data Sheet + ` + +Hardware guide +-------------- + +Hardware configuration +~~~~~~~~~~~~~~~~~~~~~~ + +The :adi:`EVAL-AD7134FMCZ` board connects to the FPGA carrier via the FMC LPC +connector. On the +`ZedBoard `__, +configure the BOOT switches (JP7-JP11) and the MIO0 jumper (JP6) for the desired +boot mode. Refer to the :ref:`eval-ad7134-fmcz quickstart zed` guide for the +specific jumper positions for SD card and JTAG boot modes. + +The following jumpers on the evaluation board must be configured: + +.. list-table:: + :header-rows: 1 + + - - Jumper/Solder link + - Position + - Description + - - JP14 + - Mounted + - DEC0/DCLKIO + - - JP15 + - Mounted + - DEC0/DCLKIO + - - JP16 + - Mounted + - MODE + - - JP17 + - Mounted + - MODE + +The device mode of operation can be set to either **MASTER** or **SLAVE** by +changing the P10 jumper position: + +- P10 **open**: master mode (default on the EVB) +- P10 **shorted**: slave mode + +Make sure to change the mode in both software (``app_config.h`` file) and +hardware, and power-cycle the EVAL-AD7134FMCZ to reflect the new mode. + +Power supply +~~~~~~~~~~~~ + +The :adi:`EVAL-AD7134FMCZ` evaluation board requires an external **9 V** power +supply connected to the appropriate header on the evaluation board. + +The :adi:`AD7134` can be powered from a **4.5 V to 5.5 V** analog power supply +and a **1.65 V to 1.95 V** digital power supply for 1.8 V I/O level. It +supports external voltage references of 2.5 V, 4.096 V, and 5 V, and a crystal +or CMOS external clock of 48 MHz. + +The FPGA carrier board (ZedBoard) is powered separately through its own 12 V +power input connector (J20). The VADJ voltage provided from the carrier through +the FMC connector must be set to **1.8 V** as specified in the HDL project's +README at :external+hdl:ref:`ad7134_fmc`. + +Analog inputs +~~~~~~~~~~~~~ + +The :adi:`AD7134` provides 4 differential analog input channels with +simultaneous sampling at up to 1.5 MSPS. The device uses continuous-time +sigma-delta modulation technology that does not use sample-and-hold circuitry, +providing inherent alias rejection up to 100 dB. + +For testing purposes, connect a signal generator to the analog inputs of the +evaluation board using the appropriate jumper wires or SMB connectors. For +optimal performance, use a low noise, low distortion signal source such as an +Audio Precision audio analyzer. + +Data acquisition performance +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The :adi:`AD7134` supports a wide range of output data rate (ODR) frequencies, +from 0.01 kSPS to 1496 kSPS with less than 0.01 SPS adjustment resolution, +allowing the user to granularly vary sampling speed to achieve coherent sampling. + +The device offers three digital filter profile options: + +.. list-table:: + :header-rows: 1 + + - - Filter type + - ODR range + - - Wideband low ripple + - 2.5 kSPS to 374 kSPS + - - Sinc3 (fast responding) + - 0.01 kSPS to 1496 kSPS + - - Sinc6 (balanced) + - 2.5 kSPS to 1.496 MSPS + +The HDL reference design uses the +:external+hdl:ref:`SPI Engine Framework ` to interface with the +ADC. The design operates in slave mode, with both the data clock (DCLK) and +output data rate (ODR) signals generated by the FPGA. + +Schematic, PCB layout, bill of materials +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Design and layout files for the evaluation board can be found on the product +page: + +- :adi:`EVAL-AD7134FMCZ design files + ` + +Software guide +-------------- + +The evaluation board is supported both with Linux (using the Libiio library) +and with no-OS (bare metal). The Libiio library is cross-platform (Windows, +Linux, Mac) with language bindings for C, C#, Python, and others. Applications +that can be used with it are: + +- :git-iio-oscilloscope:`IIO Oscilloscope ` +- :external+scopy:doc:`Scopy ` + +For no-OS (bare metal), the AD7134 IIO firmware application runs on the +SDP-K1 (MBED) or Nucleo-L552ZEQ (STM32) controller boards and communicates +over UART or VirtualCOM port. The firmware supports SPI and TDM communication +modes, with continuous and burst data capture. Refer to the +:ref:`no-OS quick start section ` for details. + +Python support is available through the +:external+pyadi-iio:doc:`pyadi-iio ` library using the +``ad7134_data_capture.py`` script.