{ "cells": [ { "cell_type": "markdown", "id": "5421891a", "metadata": { "lines_to_next_cell": 0 }, "source": [] }, { "cell_type": "markdown", "id": "6bbf57af", "metadata": { "tags": [ "header_banner" ] }, "source": [ "\n", " \"image0\"\n", "" ] }, { "cell_type": "code", "execution_count": 1, "id": "42f01c16", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:26.263103Z", "iopub.status.busy": "2025-03-12T18:00:26.262939Z", "iopub.status.idle": "2025-03-12T18:00:28.208982Z", "shell.execute_reply": "2025-03-12T18:00:28.207938Z" }, "tags": [ "imports", "header_0" ] }, "outputs": [], "source": [ "import numpy as np\n", "import rich # noqa:F401\n", "from qcodes.parameters import ManualParameter\n", "\n", "import quantify_core.data.handling as dh\n", "from quantify_scheduler import QuantumDevice, Schedule, ScheduleGettable\n", "from quantify_scheduler.operations import Measure, Reset\n", "from quantify_scheduler.operations.control_flow_library import LoopOperation\n", "from quantify_scheduler.operations.pulse_library import IdlePulse, SetClockFrequency, VoltageOffset\n", "\n", "from utils import display_dict, initialize_hardware, run_schedule, show_connectivity # noqa:F401" ] }, { "cell_type": "code", "execution_count": 2, "id": "25f13667", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:28.213134Z", "iopub.status.busy": "2025-03-12T18:00:28.211566Z", "iopub.status.idle": "2025-03-12T18:00:28.216029Z", "shell.execute_reply": "2025-03-12T18:00:28.215392Z" }, "tags": [ "config", "header_1" ] }, "outputs": [], "source": [ "hw_config_path = \"configs/tuning_transmon_coupled_pair_hardware_config.json\"\n", "device_path = \"devices/transmon_device_2q.json\"" ] }, { "cell_type": "code", "execution_count": 3, "id": "b10a38ce", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:28.217693Z", "iopub.status.busy": "2025-03-12T18:00:28.217520Z", "iopub.status.idle": "2025-03-12T18:00:28.221190Z", "shell.execute_reply": "2025-03-12T18:00:28.220582Z" }, "tags": [ "header_2" ] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Data will be saved in:\n", "/root/quantify-data\n" ] } ], "source": [ "# Enter your own dataset directory here!\n", "dh.set_datadir(dh.default_datadir())" ] }, { "cell_type": "code", "execution_count": 4, "id": "935dc327", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:28.222817Z", "iopub.status.busy": "2025-03-12T18:00:28.222526Z", "iopub.status.idle": "2025-03-12T18:00:28.906753Z", "shell.execute_reply": "2025-03-12T18:00:28.906212Z" }, "tags": [ "header_3" ] }, "outputs": [], "source": [ "quantum_device = QuantumDevice.from_json_file(device_path)\n", "qubit = quantum_device.get_element(\"q0\")\n", "quantum_device.hardware_config.load_from_json_file(hw_config_path)\n", "cluster_ip = None\n", "meas_ctrl, inst_coord, cluster = initialize_hardware(quantum_device, ip=cluster_ip)" ] }, { "cell_type": "code", "execution_count": 5, "id": "6af8b54c", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:28.909255Z", "iopub.status.busy": "2025-03-12T18:00:28.909069Z", "iopub.status.idle": "2025-03-12T18:00:28.912951Z", "shell.execute_reply": "2025-03-12T18:00:28.912500Z" }, "tags": [ "header_flux" ] }, "outputs": [], "source": [ "flux_settable: callable = cluster.module2.out0_offset\n", "flux_settable.inter_delay = 100e-9 # Delay time in seconds between consecutive set operations.\n", "flux_settable.step = 0.3e-3 # Stepsize in V that this Parameter uses during set operation.\n", "flux_settable() # Get before setting to avoid jumps.\n", "flux_settable(0.0)" ] }, { "cell_type": "markdown", "id": "395a5854", "metadata": {}, "source": [ "# Qubit Flux Spectroscopy\n", "For flux tunable qubits, the resonance frequency of the qubit depends on the flux.\n", "This can be used to find the sweetspot." ] }, { "cell_type": "markdown", "id": "186e7f3c", "metadata": { "tags": [ "no_demo" ] }, "source": [ "## Setup\n", "In this section we configure the hardware configuration which specifies the connectivity of our system.\n", "\n", "The experiments of this tutorial are meant to be executed with a Qblox Cluster controlling a transmon system.\n", "The experiments can also be executed using a dummy Qblox device that is created via an instance of the `Cluster` class, and is initialized with a dummy configuration.\n", "When using a dummy device, the analysis will not work because the experiments will return `np.nan` values.\n", "\n", "### Configuration file\n", "\n", "This is a template hardware configuration file for a 2-qubit system with a flux-control line which can be used to tune the qubit frequency. We will only work with qubit 0.\n", "\n", "The hardware connectivity is as follows, by cluster slot:\n", "\n", "- **QCM** (Slot 2)\n", " - $\\text{O}^{1}$: Flux line for `q0`.\n", " - $\\text{O}^{2}$: Flux line for `q1`.\n", "\n", "- **QCM-RF** (Slot 6)\n", " - $\\text{O}^{1}$: Drive line for `q0` using fixed 80 MHz IF.\n", " - $\\text{O}^{2}$: Drive line for `q1` using fixed 80 MHz IF.\n", "\n", "- **QRM-RF** (Slot 8)\n", " - $\\text{O}^{1}$ and $\\text{I}^{1}$: Shared readout line for `q0`/`q1` using a fixed LO set at 7.5 GHz.\n", "\n", "Note that in the hardware configuration below the mixers are uncorrected, but for high fidelity experiments this should also be done for all the modules." ] }, { "cell_type": "markdown", "id": "1b2e232e", "metadata": { "tags": [ "no_demo" ] }, "source": [ "### Quantum device settings\n", "Here we initialize our `QuantumDevice` and our qubit parameters, checkout this [tutorial](https://quantify-os.org/docs/quantify-scheduler/tutorials/Operations%20and%20Qubits.html) for further details.\n", "\n", "In short, a `QuantumDevice` contains device elements where we save our found parameters. Here we are loading a template for 2 qubits, but we will only use qubit 0." ] }, { "cell_type": "markdown", "id": "e2a266c7", "metadata": {}, "source": [ "## Configure external flux control\n", "In the case of flux-tunable transmon qubits, we need to have some way of controlling the external flux.\n", "This can be done by setting an output bias on a module of the cluster which is then connected to the flux line.\n", "If your system is not using flux-tunable transmons, then you can skip to the next section." ] }, { "cell_type": "markdown", "id": "87cdc13c", "metadata": { "lines_to_next_cell": 2, "title": "BODY" }, "source": [ "## Qubit Flux Spectroscopy" ] }, { "cell_type": "code", "execution_count": 6, "id": "f9bdd5f5", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:28.914544Z", "iopub.status.busy": "2025-03-12T18:00:28.914396Z", "iopub.status.idle": "2025-03-12T18:00:28.921224Z", "shell.execute_reply": "2025-03-12T18:00:28.920795Z" }, "lines_to_next_cell": 2 }, "outputs": [], "source": [ "def two_tone_spec(\n", " qubit, # noqa: ANN001\n", " spec_pulse_frequencies: np.array,\n", " spec_pulse_amp: float = 0.05,\n", " repetitions: int = 1,\n", ") -> Schedule:\n", " \"\"\"\n", " Generate a schedule for performing fast two-tone spectroscopy.\n", "\n", " To avoid the qubit reset time, the schedule uses sequential averaging.\n", "\n", " Parameters\n", " ----------\n", " qubit\n", " qubit that should be used.\n", " spec_pulse_frequencies\n", " Sample frequencies for the spectroscopy pulse in Hertz.\n", " spec_pulse_amp\n", " Amplitude of the continuous spectroscopy tone.\n", " repetitions\n", " The amount of times the Schedule will be repeated.\n", "\n", " \"\"\"\n", " sched = Schedule(\"two-tone\", repetitions=1)\n", "\n", " sched.add(\n", " VoltageOffset(\n", " offset_path_I=spec_pulse_amp,\n", " offset_path_Q=0,\n", " port=f\"{qubit.name}:mw\",\n", " clock=f\"{qubit.name}.01\",\n", " )\n", " )\n", " for acq_idx, spec_pulse_freq in enumerate(spec_pulse_frequencies):\n", " sched.add(Reset(qubit.name))\n", " sched.add(SetClockFrequency(clock=f\"{qubit.name}.01\", clock_freq_new=spec_pulse_freq))\n", " subsched = Schedule(\"meas\")\n", " subsched.add(Measure(qubit.name, acq_index=acq_idx))\n", " subsched.add(IdlePulse(8e-9))\n", " # measure `repetitions` times at every frequency point\n", " sched.add(LoopOperation(subsched, repetitions=repetitions))\n", " sched.add(\n", " VoltageOffset(\n", " offset_path_I=0.0, offset_path_Q=0, port=f\"{qubit.name}:mw\", clock=f\"{qubit.name}.01\"\n", " )\n", " )\n", " sched.add(IdlePulse(8e-9))\n", " return sched\n", "\n", "\n", "freqs = ManualParameter(name=\"freq\", unit=\"Hz\", label=\"Frequency\")\n", "freqs.batched = True\n", "\n", "qubit_spec_sched_kwargs = dict(qubit=qubit, spec_pulse_frequencies=freqs, spec_pulse_amp=0.05)\n", "\n", "gettable = ScheduleGettable(\n", " quantum_device,\n", " schedule_function=two_tone_spec,\n", " schedule_kwargs=qubit_spec_sched_kwargs,\n", " real_imag=False,\n", " batched=True,\n", ")\n", "\n", "meas_ctrl.gettables(gettable)" ] }, { "cell_type": "code", "execution_count": 7, "id": "e548fb0e", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:28.922603Z", "iopub.status.busy": "2025-03-12T18:00:28.922457Z", "iopub.status.idle": "2025-03-12T18:00:34.814392Z", "shell.execute_reply": "2025-03-12T18:00:34.813772Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting batched measurement...\n", "Iterative settable(s) [outer loop(s)]:\n", "\t out0_offset \n", "Batched settable(s):\n", "\t freq \n", "Batch size limit: 900\n", "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ec49d363dc47439ca3231766b4b19bf7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Completed: 0%| [ elapsed time: 00:00 | time left: ? ] it" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
<xarray.Dataset> Size: 29kB\n",
       "Dimensions:  (dim_0: 900)\n",
       "Coordinates:\n",
       "    x0       (dim_0) float64 7kB 5.08e+09 5.08e+09 ... 5.12e+09 5.12e+09\n",
       "    x1       (dim_0) float64 7kB 0.0 0.0 0.0 0.0 0.0 0.0 ... 1.0 1.0 1.0 1.0 1.0\n",
       "Dimensions without coordinates: dim_0\n",
       "Data variables:\n",
       "    y0       (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n",
       "    y1       (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n",
       "Attributes:\n",
       "    tuid:                             20250312-180028-925-900444\n",
       "    name:                             flux two-tone\n",
       "    grid_2d:                          True\n",
       "    grid_2d_uniformly_spaced:         True\n",
       "    1d_2_settables_uniformly_spaced:  False\n",
       "    xlen:                             300\n",
       "    ylen:                             3
" ], "text/plain": [ " Size: 29kB\n", "Dimensions: (dim_0: 900)\n", "Coordinates:\n", " x0 (dim_0) float64 7kB 5.08e+09 5.08e+09 ... 5.12e+09 5.12e+09\n", " x1 (dim_0) float64 7kB 0.0 0.0 0.0 0.0 0.0 0.0 ... 1.0 1.0 1.0 1.0 1.0\n", "Dimensions without coordinates: dim_0\n", "Data variables:\n", " y0 (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n", " y1 (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n", "Attributes:\n", " tuid: 20250312-180028-925-900444\n", " name: flux two-tone\n", " grid_2d: True\n", " grid_2d_uniformly_spaced: True\n", " 1d_2_settables_uniformly_spaced: False\n", " xlen: 300\n", " ylen: 3" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "quantum_device.cfg_sched_repetitions(400)\n", "center = qubit.clock_freqs.f01()\n", "frequency_setpoints = np.linspace(center - 20e6, center + 20e6, 300)\n", "flux_setpoints = np.linspace(0, 1, 3)\n", "meas_ctrl.settables([freqs, flux_settable])\n", "meas_ctrl.setpoints_grid((frequency_setpoints, flux_setpoints))\n", "\n", "qfs_ds = meas_ctrl.run(\"flux two-tone\")\n", "qfs_ds" ] }, { "cell_type": "code", "execution_count": 8, "id": "845b8c0d", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:34.816799Z", "iopub.status.busy": "2025-03-12T18:00:34.816339Z", "iopub.status.idle": "2025-03-12T18:00:35.399651Z", "shell.execute_reply": "2025-03-12T18:00:35.399098Z" }, "tags": [ "no_demo" ] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6c3b827ff1f94f1ebfda01ca4ee3966b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Tab(children=(Tab(children=(Tab(children=(Output(),), selected_index=0, titles=('other values',)), Tab(childre…" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "inst_coord.last_schedule.compiled_instructions" ] }, { "cell_type": "code", "execution_count": 9, "id": "dec004af", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:35.435225Z", "iopub.status.busy": "2025-03-12T18:00:35.435035Z", "iopub.status.idle": "2025-03-12T18:00:35.595631Z", "shell.execute_reply": "2025-03-12T18:00:35.595048Z" }, "tags": [ "no_demo" ] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "970f6c82d1c549ed9b39bb52d20050b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Tab(children=(Tab(children=(Tab(children=(Tab(children=(Tab(children=(Output(),), selected_index=0, titles=('o…" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "display_dict(quantum_device.hardware_config())" ] }, { "cell_type": "code", "execution_count": 10, "id": "8576cf09", "metadata": { "execution": { "iopub.execute_input": "2025-03-12T18:00:35.620001Z", "iopub.status.busy": "2025-03-12T18:00:35.619812Z", "iopub.status.idle": "2025-03-12T18:00:35.625636Z", "shell.execute_reply": "2025-03-12T18:00:35.625143Z" } }, "outputs": [ { "data": { "text/plain": [ "'devices/device_2q_2025-03-12_18-00-35_UTC.json'" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "quantum_device.to_json_file(\"devices/\")" ] } ], "metadata": { "files_to_bundle_in_zip_file": [ "figures/Banner.jpeg", "configs/tuning_transmon_coupled_pair_hardware_config.json", "devices/transmon_device_2q.json", "utils.py" ], "jupytext": { "cell_metadata_filter": "all", "notebook_metadata_filter": "files_to_bundle_in_zip_file,is_demo,execute" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.20" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "000a0f4d81bb4bd390c469458a56026d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "028f2fa7eec847099373483f6e68674d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "032ea9395fff46b38f17d2fac35157e7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "03458454da624ed9a10ccd13eda6030a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_a11198667f6344f2a94d8575f2412f97", "IPY_MODEL_4423b0545a2148e980b52f79e1ca0365" ], "layout": "IPY_MODEL_0c01e20cd5314572b50a40222a9e5155", "selected_index": 0, "tabbable": null, "titles": [ "sequence", "settings" ], "tooltip": null } }, "03a57f3cd6de4cfe8f49769c7c60cb4c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "03cfece57f144f1cac99fc2ad1127d1b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "042f2f0ce6114581a9448bb4a17cd545": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [], "layout": "IPY_MODEL_4ea06d05540b491e8b13810e5e2478b1", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null } }, "049ab32aff7e4fb4a689fc5aea68ad92": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1b723cd1371442579db8d6b3184dd750", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "049fcf5813fe43fdbd72c5875c0870ae": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "04fa53420d484690996f2884d418c028": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_83400d51db4a4de7a04e65b685c7da86", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0575db68d7f040d2ad4c29cffea08876": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "064226cfa4934281acda790e198898f2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "06d39ec195b04af59f60b71ce237b765": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "074a54953ddb48309d7a11271d9c36de": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "07ae73483b694a7fae606e3bd0fe13d9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a4b64edbf2a64c029e24aafeb3ba2242", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
interm_freq80000000.0
\n
", "text/plain": "setting value\ninterm_freq 80000000.0" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "090cc186b3a24a05bc2a44937139a986": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_6c63daa0be6a42659286be052472ed1f", "IPY_MODEL_97af8df302e84e97b81e6b70bfb85b9e", "IPY_MODEL_36d5425ee58248dd98763d49aac8e59b" ], "layout": "IPY_MODEL_d348c66537224b5a831bca99eabb3740", "selected_index": 0, "tabbable": null, "titles": [ "sequencers", "settings", "other values" ], "tooltip": null } }, "0b2b04b70f92407bbc5af953fec44222": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0b3d841b020e4af0aaf5e5575eefee2d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3c8273e43a0b45d697c99f37f5174962", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0b6da86497ca4fdc90fa76c496d1c174": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0b83380f72c54459941f42f3a8e042f6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0ba4f5fd01bb4029b1c93a95e0856d52": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_2faaf800f4eb4bf9aabd89e817aa4fb3", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
offset_ch0_path_INone
offset_ch0_path_QNone
offset_ch1_path_INone
offset_ch1_path_QNone
in0_gainNone
in1_gainNone
distortion_corrections[{'bt': {'coeffs': None, 'config': 'QbloxFilte...
out0_lo_freq_cal_type_defaultLoCalEnum.ON_LO_INTERM_FREQ_CHANGE
out1_lo_freq_cal_type_defaultLoCalEnum.OFF
lo0_freq5020000000.0
lo1_freqNone
out0_att10
out1_attNone
in0_attNone
\n
", "text/plain": "setting value\noffset_ch0_path_I None\noffset_ch0_path_Q None\noffset_ch1_path_I None\noffset_ch1_path_Q None\nin0_gain None\nin1_gain None\ndistortion_corrections [{'bt': {'coeffs': None, 'config': 'QbloxFilte...\nout0_lo_freq_cal_type_default LoCalEnum.ON_LO_INTERM_FREQ_CHANGE\nout1_lo_freq_cal_type_default LoCalEnum.OFF\nlo0_freq 5020000000.0\nlo1_freq None\nout0_att 10\nout1_att None\nin0_att None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "0bcf02053ae04aa79d0c8d5f0c94c478": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_455a8039adbb464ab7c8e39fc2b54483", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0c01e20cd5314572b50a40222a9e5155": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0d09544e19f34038b99927d3f1747978": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0d46e45fe298441e8f70d54682ac7cfc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_03a57f3cd6de4cfe8f49769c7c60cb4c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0dec38ebd2194d7282a2a24cb8c50307": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0e71c764d193474d8a897fce7df5b394": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "0ff00d5159a3445aacb6543f7ce2b3fe": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_72f7ceed1cbf48bbaeddb03a05f97fe4", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "10f050cb404e4cf699b752421b1d2620": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "110e496ba9ee42a8a97541882fe24462": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_98688d1ccb074945bb581b211be99403", "msg_id": "", "outputs": [ { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAA20AAAIsCAYAAABhgUG3AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8ekN5oAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA4z0lEQVR4nO3de3RV9Zn44TcXDASTCC2ahARCQFCBDhSrU2/AgDpKZaxWu8QWL60XanWKtV7mN+KltJap1VqdasfOVKvV2iq9QJWOInSNHau2tQoUlYtIIAQLlRwuIUByfn+0ZkghIegh2UmeZ62srpz93Xu/xzbL9eneZ5+sdDqdDgAAABIpu6MHAAAAoGWiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEiw3I4eoLtpbGyM6urqKCgoiKysrI4eBwAA6CDpdDo2b94cpaWlkZ3d8vU00dbOqquro7y8vKPHAAAAEqKqqirKyspa3C7a2llBQUFE/OW/mMLCwg6eBgAA6CipVCrKy8ubGqEloq2dvXtLZGFhoWgDAAD2+bEpDyIBAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJFiXibYtW7bEpEmT4v777291XV1dXdx2220xevToKC0tjeLi4iguLo6hQ4fG+eefHytWrGjzOW+//fb453/+5/c7OgAAQIu6RLSlUqk47bTTYsmSJbF169ZW15533nmxevXqmDt3bqxduzZqamqipqYmXn755Tj11FNj/PjxUV1dvc9zzps3L2688caora3N1NsAAADYQ25HD/B+1dXVxSmnnBKnn356NDY2trr2t7/9baxZsyZmz54d2dnNe7V3794xderU2LBhQ8yaNSvuuuuuFo+zatWqmDZtWtx8882xdOnSjLwPAACAven0V9rS6XRcffXVMWPGjH2uXbRoUYwbN26PYNvdxIkTY9GiRS1ur6uri0984hPx9a9/PYYNG/aeZgYAAGirTh9t+fn5ce6557Zp7Zo1a6KkpKTVNaWlpbF69eq9bkun0/H5z38+xo4dG5/4xCf2e1YAAID91elvj9wfDQ0NkZOT0+qa3Nzc2LVr1163ffe734033ngjnn322Tafs76+Purr65t+T6VSbd4XAACg019pay8vvfRSzJw5Mx577LHo0aNHm/e77bbboqioqOmnvLz8AE4JAAB0Nd062mpra2PIkCGxcOHCVtdt2LAhPvnJT8aDDz4YpaWl+3WOG264IWpra5t+qqqq3sfEAABAd9Otbo/8W0VFRbF8+fJW1zQ0NMR5550Xl19+eYwbN26/z5GXlxd5eXnvcUIAAKC761ZX2lr7vNq7du3aFbm5/9eyM2bMiN69e8eXvvSlAz0eAADAHrrVlbaysrJYvHhxq2uqq6tjwIABEfGXx/vfd999kZWVtdenTtbV1cWOHTti4cKF8corr0RRUdEBmRsAAOi+ulW0jRw5Mu6+++5obGxs8bva5s+fHyNHjoyIiF69esXGjRtbPN4DDzwQf/jDH+Kb3/zmgRgXAACge90eOWbMmBg4cGBMmzYt1q5dG+l0umnbtm3b4uGHH44777wzrrvuug6cEgAA4P90qWgrLCyMgoKCpt8nT54cX/va15qteeSRR6KioiImTZoUpaWlUVxcHMXFxfF3f/d38eSTT8aCBQva/ITIgoKCZucDAADItKz07pebOOBSqVQUFRVFbW1tFBYWdvQ4AABAB2lrG3SpK20AAABdjWgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASrEtE25YtW2LSpElx//33t7qurq4ubrvtthg9enSUlpZGcXFxFBcXx9ChQ+P888+PFStW7LHPCy+8EBMmTIj+/fvHYYcd1rTP4MGD43Of+1z8+c9/PlBvCwAAoPNHWyqVitNOOy2WLFkSW7dubXXteeedF6tXr465c+fG2rVro6amJmpqauLll1+OU089NcaPHx/V1dVN6zdu3BjnnHNO/Mu//EusWbMm1q9f37TPkiVL4tBDD41LLrnkQL9FAACgG8vt6AHej7q6ujjllFPi9NNPj8bGxlbX/va3v401a9bE7NmzIzu7eav27t07pk6dGhs2bIhZs2bFXXfdFRERL774Yhx//PExYcKEPY7Xs2fPmDFjRpSXl8e2bdsiPz8/c28MAADgrzr1lbZ0Oh1XX311zJgxY59rFy1aFOPGjdsj2HY3ceLEWLRoUdPvAwYMiIsuuqjF9dnZ2dG/f/9Ys2bN/g0OAADQRp36Slt+fn6ce+65bVq7Zs2aKCkpaXVNaWlprF69uun34cOHx/Dhw1tcv3379njrrbdiwIABbRsYAABgP3XqaNsfDQ0NkZOT0+qa3Nzc2LVrV5uOt3379rjsssvinHPOiZ49e7a4rr6+Purr65t+T6VSbRsYAAAgOvntkR3l+eefj1GjRkVjY2Pcfvvtra697bbboqioqOmnvLy8naYEAAC6gm4bbbW1tTFkyJBYuHBhm/fZtGlTXHnllXHeeefFrbfeGt///vdbvcoWEXHDDTdEbW1t009VVdX7nBwAAOhOus3tkX+rqKgoli9f3ub1s2fPjunTp8f5558fS5Ysid69e7dpv7y8vMjLy3uvYwIAAN1ct4m2tnxebdeuXZGb2/wfSTqdji9/+cvxox/9KObNmxdHHnnkgRwTAACgmW4TbWVlZbF48eJW11RXV+/xJMjHHnssfv7zn8cLL7zQ5qtrAAAAmdJtPtM2cuTIWLBgQatfwj1//vwYOXJk0+/pdDq+9KUvxYMPPijYAACADtFtom3MmDExcODAmDZtWqxduzbS6XTTtm3btsXDDz8cd955Z1x33XVNr//pT3+K3NzcVr+rDQAA4EDqMrdHFhYWRkFBQdPvkydPjuOOOy6uv/76ptceeeSRuPPOO2PSpEmxfv36pnArKCiIj3zkI7FgwYIoLS1tWv+nP/0p1q1bF8XFxa2e+z/+4z9i8uTJGX5HAAAAEVnp3S85ccClUqkoKiqK2traKCws7OhxAACADtLWNug2t0cCAAB0RqINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEy1i0NTQ0xHe+8504++yzY8yYMTFgwIAYNmxYLF26NCIizjjjjPjMZz4Tf/jDHzJ1SgAAgC4vI9G2ffv2GDNmTFxxxRWxY8eOOOGEE+Lss8+O5cuXx5tvvhkREaeffnr85je/iZNOOileffXVTJwWAACgy8tItH31q1+NZcuWxSuvvBJz5syJu+66K6655ppIp9NNa6ZNmxYvvfRSlJSUxB133JGJ0wIAAHR5GYm2p556KqZMmRLDhw9vdV1+fn780z/9Uzz33HOZOC0AAECXl5FoW7ZsWQwZMqRNa4uLi2PdunWZOC0AAECXl5FoS6VSUVBQ0Ka1eXl5sX379kycFgAAoMvzyH8AAIAEy0i0FRQUxObNm9u0dsuWLW2+KgcAANDdZSTahgwZEsuWLWvT2rfeeisqKyszcVoAAIAuLyPRdsopp8QjjzwSixcvbnXdW2+9FT/4wQ/i1FNPzcRpAQAAurys9O5fpvYebd26NcaMGRMrVqyIU089NSorKyM7Ozu+9a1vxSc/+ckoLy+PqqqqmDNnTvTv3z9+//vfR+/evTMxf6eTSqWiqKgoamtro7CwsKPHAQAAOkhb2yAj0RYRsWPHjvj3f//3+NWvfhWrVq2K2trapm0FBQUxaNCgOOmkk+Lzn/985OXlZeKUnZJoAwAAIjog2mgb0QYAAES0vQ088h8AACDBRBsAAECCiTYAAIAEy92fxZ/+9Kfjrbfeet8nraioiO9///vv+zgAAABd3X5FW2VlZeTm7rnLgw8+GMccc0wceeSRe90vnU7Hq6++Gn/4wx/ixBNPjEGDBr23aQEAALqZjDw9Mjs7O+6555743Oc+1+q6f/u3f4vbb789XnnllSgpKXm/p+2UPD0SAACISOjTI7/0pS9Ffn5+zJo1qz1PCwAA0Gm1a7RlZWXF6aefHr/85S/b87QAAACdVrs/PbJ///6xdu3a9j4tAABAp9Tu0VZUVBRbt25t79MCAAB0ShmJtl69esW2bdvatHb79u3Rq1evTJwWAACgy8tItA0ZMqTN39+2evXqqKyszMRpAQAAuryMRNtxxx0Xjz76aGzcuLHVdRs2bIhHHnkkTjjhhEycFgAAoMvLyPe0bdiwoemLtadOnRoDBw6Mgw8+uGn7li1bYtWqVfHQQw9FdnZ2LFmyJD74wQ++39N2Sr6nDQAAiGh7G+Rm4mQf/OAH47XXXotbb7015s+fH6tWrYpUKtW0vbCwMCoqKmLKlClx4403dttgAwAA2F8ZudJG27nSBgAARLS9Ddr9kf8AAAC0nWgDAABIMNEGAACQYBl5EMl///d/x5o1a9q8vqysLE455ZRMnBoAAKBLy0i0XXHFFbFixYp9rsvKyop0Oh2DBw+OZcuWZeLUAAAAXVpGbo9ctmxZNDY2tvizc+fOePbZZ2PEiBFxww03CDYAAIA2ysiVtn3JycmJcePGxZNPPhmDBw+OE044IU477bT2ODUAAECn1q4PIunfv3+cdtppce+997bnaQEAADqtdn965PDhw+Oll15q79MCAAB0Su0ebf369YsNGza092kBAAA6pXaPtoaGhsjNbZeP0gEAAHR67R5t1dXVMWjQoPY+LQAAQKfUrtG2ffv2ePzxx2PMmDHteVoAAIBOKyP3Kf7xj3+MmpqaFrdv2bIlVq9eHffdd1/86U9/ii9/+cuZOC0AAECXl5Fo+4d/+Id4++23W11TUFAQY8eOjR//+MdRUVGRidMCAAB0eRmJttdffz02bdrU4vbCwsLo06dPJk4FAADQrWQk2oqKiqKoqCgThwIAAGA37f70SAAAANouI9H2gx/8INatW9emtdXV1fHwww9n4rQAAABdXkaiberUqfHTn/60TWsfe+yxmDZtWiZOCwAA0OVlJNrS6XSk0+k2rV29enUMHDgwE6cFAADo8tr1M221tbXx6KOPxt///d+352kBAAA6rff09Mj169fHk08+2ezq2v/+7/9Gz54997p+27ZtUVVVFQ8//HDs2LHDl2sDAAC0UVa6rfc17ubBBx+Miy666P8OkpXV6u2R+fn5UVFREccff3zcfPPNUVJS8t6m3YstW7bEJz/5yTjzzDPjkksuaXFdXV1dfPOb34wf/ehHsX79+mhsbIyIv3yH3Ec+8pG49dZbY/Dgwc322bVrV/zXf/1X3H///VFdXR0NDQ1N72fkyJFxyy23xKhRo/Zr3lQqFUVFRVFbWxuFhYX792YBAIAuo61t8J6utF1wwQVxwQUXNP2enZ0d99xzT3zuc597L4d7z1KpVEyaNCmqqqri5JNPbnXteeedFyUlJTF37twoLS2NrKysiIjYunVrPPHEEzF+/Pj4zW9+E6WlpU37XHPNNVFVVRWPPvpoVFZWRnb2X+4m3b59ezz99NPx8Y9/PH7yk5/sd7gBAAC0VUa+XDsvL6/FWyMPlLq6ujjllFPi9NNPb7pq1pLf/va3sWbNmpg9e3ZTeL2rd+/eMXXq1NiwYUPMmjUr7rrrroiIWLduXfz0pz+NpUuXRq9evZrt07NnzzjjjDNi586dcdNNN8XPfvazzL45AACAv8rIg0heffXVOP/88zNxqDZLp9Nx9dVXx4wZM/a5dtGiRTFu3Lg9gm13EydOjEWLFjX9/tprr8XRRx+9R7DtbsKECc32AQAAyLSMXGk7/PDDM3GY/ZKfnx/nnntum9auWbNmn5+jKy0tjdWrV+/XPkVFRfHnP/+5TTMkTTqdjm07d3X0GAAA0O7ye+Q2fVyqM9jvaGtoaIh169ZFWVnZgZjngGhoaIicnJxW1+Tm5sauXf8XMW3Zpy3q6+ujvr6+6fdUKvW+j5kJ23buioP/7QcdPQYAALS7LdeeH70P6tHRY7TZfkfbsGHD4s0334zTTjst5s6dGxERM2bMiFWrVrX5GBUVFXHrrbfu76k7pdtuuy1uueWWjh4DAADopPY72jZv3hzpdDq2bt3a9FpVVVVUVVW1/aS5Gbkr8z2rra2NMWPGxHe/+90YN25cm/cbPXp0XHPNNfv1+b0bbrghrr766qbfU6lUlJeX78+4B0R+j9zYcm37fg4RAACSIL9Hx/bI/trvaRcvXhyvvfZas8fcf+9738vkTAdcUVFRLF++fL/3e/nll/d7n7y8vMjLy9vv/Q60rKysTnVJGAAAuqv9jrZ+/fpFv379DsQsB8zffl5tb3bt2tXsCmBb9gEAADjQMvLI/6QrKyuLmpqaVtdUV1fHgAED9mufVCoVffv2zciMAAAAe9Pu0bZgwYI49dRT2/WcI0eOjAULFrT6Jdzz58+PkSNHNv1+xBFHxG9/+9vYtm1bm/cBAADItHaPtl//+tfxyiuvtOs5x4wZEwMHDoxp06bF2rVrI51ON23btm1bPPzww3HnnXfGdddd1/R6cXFxnHXWWXH++efH8uXLmwVffX19zJ07N66++uq4+eab2/OtAAAA3Uy7PjZl/fr18cMf/jDGjBmT0eMWFhZGQUFB0++TJ0+O4447Lq6//vqm1x555JG48847Y9KkSbF+/fqmcCsoKIiPfOQjsWDBgigtLW123K9//evxn//5n3HeeefF2rVrm8ItPz8/RowYEbNnz47Ro0dn9L0AAADsLiu9+2WnfTjppJP26/vYdldfXx8bN26Mfv36xdNPPx0jRox4T8fp7FKpVBQVFUVtbW0UFhZ29DgAAEAHaWsb7NeVtgsvvHC/vo9tdz179oxBgwbFaaed1uyqGAAAAC3br2i7+OKLD9QcAAAA7EW3eOQ/AABAZyXaAAAAEky0AQAAJFjGHvlfX18f99xzT/zqV7+KN998M2pra5u2FRUVxaBBg2Ls2LHx+c9/PvLy8jJ1WgAAgC5tvx7535LNmzfHmDFj4q233oozzjgjKioqmj0hcvPmzbFq1aqYO3duDBgwIH73u9912ydIeuQ/AAAQcYAe+d+SmTNnRnV1dSxevDgOP/zwFtctW7YsRo8eHTNnzoxZs2Zl4tQAAABdWkY+0/b000/HlClTWg22iIjDDz88PvWpT8XTTz+didMCAAB0eRmJthUrVsTgwYPbtHbQoEGxcuXKTJwWAACgy8tItG3evDkOPvjgNq09+OCDY/PmzZk4LQAAQJeXkWjr3bt3pFKpTBwKAACA3WQk2vr37x/V1dWZOBQAAAC7yUi0TZw4MZ566qlMHAoAAIDdZCTarr/++ti4cWN861vfysThAAAA+KuMfE/bL3/5yxg3blxMnz49fvKTn8Rxxx0XOTk5e1370ksvRUTEjBkzmr1eVlYWl156aSbGAQAA6DKy0ul0+v0eZPz48bFq1ar3dYxBgwbFs88++35HSby2fus5AADQtbW1DTJypW3BggWZOAwAAAB/IyOfaQMAAODAEG0AAAAJJtoAAAASLCOfaXvXhg0b4vXXX4/q6uqoq6trcV3//v1jwoQJmTw1AABAl5SRaNu5c2dcccUV8eCDD8bOnTv3ub6ysjKWL1+eiVMDAAB0aRm5PfIrX/lKfPe7340vfvGL8cc//jFSqVTs3LmzxZ9ly5Zl4rQAAABdXkautD3xxBNxzjnnxFe/+tVMHA4AAIC/ysiVtuXLl8cxxxyTiUMBAACwm4xEW319feTl5WXiUAAAAOwmI9HWt2/fqKmpycShAAAA2E1Gou3EE0+MZ599NhOHAgAAYDcZibZZs2bFypUr47Of/WwsXbo0tm/fnonDAgAAdHtZ6XQ6nYkDPfXUU3HGGWdEWw43ePDgeOONNzJx2k4nlUpFUVFR1NbWRmFhYUePAwAAdJC2tkFGHvn/3//93zF58uQYOHBgnHPOOVFWVha9evVqcX3//v0zcVoAAIAuLyPRdsstt8RRRx0VL774oqdIAgAAZFBGPtO2aNGiOOusswQbAABAhmUk2rZs2RL9+vXLxKEAAADYTUairaCgIFKpVCYOBQAAwG4yEm1HH310LFmyJBOHAgAAYDcZibbbbrst5s6dGwsWLMjE4QAAAPirjDw9cu7cuTFkyJCYOHFijBo1KgYNGhT5+fktrq+oqIhbb701E6cGAADo0jISbatXr46DDz44TjrppIiI2LhxY2zcuLHlk+Zm5LQAAABdXkbq6YEHHsjEYQAAAPgbGflMGwAAAAeGaAMAAEgw0QYAAJBgGX0iSHV1dbz00kuxatWqqK2tbXFdeXl5XHTRRZk8NQAAQJeUsWibMWNG3H777bF9+/bo1atXbN++Pfr06RO9evWKXbt2xfr16yMrKytKSkpi8ODBog0AAKANMnJ75OOPPx4zZ86Mq6++OjZs2BCvvfZapNPp+P73vx9VVVWxbt26WLRoURx77LExceLE+NWvfpWJ0wIAAHR5GYm2u+++OyZMmBAzZ86Mvn37Rnb2nocdPnx4zJkzJ3784x/HD3/4w0ycFgAAoMvLSLStWLEijjvuuH2u+8AHPhBnnHFGfO9738vEaQEAALq8jERbdXV19OvXr01rhw4dGn/4wx8ycVoAAIAuL2OP/M/KymrTug9+8IOxcePGTJ0WAACgS8tItBUVFcWWLVv2eD2dTu/xWk5Ozl5fBwAAYE8Zibbi4uJYtWpV0++HHHJIRESkUqk91m7evDmKiooycVoAAIAuLyPR9o//+I8xe/bsqKmpiYiI3r17R2lpaTz33HN7rH3uuefi8MMPz8RpAQAAuryMfLn2F77whfjRj34Uhx9+eHzxi1+Mm2++Oa655pr44he/GJs3b46jjz46Ghsb41e/+lU8+eSTHvkPAADQRhmJtoEDB8aLL74YDz74YPTs2TMiIq666qro3bt33HvvvfHzn/88cnJyYsiQIfHYY4/FOeeck4nTAgAAdHlZaU8FaVepVCqKioqitrY2CgsLO3ocAACgg7S1DTL2yH8AAAAyT7QBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgATrNNG2adOmuPbaa2PkyJFRUlISxcXFUVxcHEcddVRMmzYt1q9f3+r+u3btirvvvjs+9KEPNdu/tLQ0RowYEXfccUfs3Lmz2T7pdDq+853v7LFP//794+///u9j7ty5B/ItAwAARG5HD9AWDQ0NMWHChJg8eXIsXLgw+vbtG1lZWRERUVtbGw888EAcf/zx8eqrr0Z+fv5ej3HPPffEvHnzYs6cOTFgwICm/SMi1q9fH1dddVXU19fHDTfc0PT6D3/4w3jooYdizpw5MXDgwKbX0+l0LFmyJM4999woKyuLUaNGHZg3DgAAdHtZ6XQ63dFD7Mvjjz8ejz76aDzxxBMtrrnqqqti0KBBMX369L1uP+qoo+LJJ5+MioqKvW5/5513YvTo0bFq1aqm1z7+8Y/HlVdeGf/wD/+w132++93vxrJly2LWrFltfi+pVCqKioqitrY2CgsL27wfAADQtbS1DTrF7ZGLFi2K8ePHt7pm4sSJsWjRoha3r1u3rtnVsr/Vp0+f2LFjR9TX1ze99vbbb0dpaWmL+5SVlUVVVVWrcwEAALwfnSLa1qxZEyUlJa2uKS0tjdWrV7e4PZ1ON7slcm8OOuigqKura/r9qKOOajXKqqqqorKystVjAgAAvB+dItoaGhoiJyen1TW5ubmxa9euFrdnZ2fHvu4E3T3YIiLOOeec+H//7//FkiVLoqGhoen1dDodf/zjH+Mb3/hGnHjiia0es76+PlKpVLMfAACAtuoU0ZYJpaWlsXLlyha3b9iwId5+++1mr40bNy5KSkpixIgRUVhY2PT0yIMPPjiGDx8ep556apxyyimtnve2226LoqKipp/y8vKMvB8AAKB76JTR9vrrr0dlZWW88cYbbd7niiuuiEsuuSRee+21ZlfNGhsbY+XKlXHllVfGwQcf3Gyfz33uc1FcXBxr166NLVu2RE1NTdTU1ERtbW0sWrQoli9fHr///e9bPe8NN9wQtbW1TT8+AwcAAOyPTvHI/781bNiwVq+a7c1ll10WeXl5ceGFF0ZVVVVTuPXs2TOGDx8e06dPj+eff75p/Z///Od4+umnY/ny5dGjR49mx8rNzY0RI0bErFmzYvr06fH000+3eN68vLzIy8vbr1kBAADe1SmibV+fV4v4y5dn5+a2/Hays7Pj4osvjosvvrhN51yxYkUMGTJkj2Db3ZFHHhkvv/xym44HAADwXnSK2yPLysqipqam1TXV1dUxYMCAFrdfcskl0djY2Ooxtm/fHgcddFBERKsBuLt9xSQAAMD70SmibeTIkTF//vxW18yfPz9GjhzZ4vbnn38+qqurW9yeSqUiKysr8vPzIyKioqIili1b1mqULVu2zINFAACAA6pTRNuZZ54Za9asiZtuuik2btzY7NH9qVQq7r777vjFL34Rl156aavHuP7662PTpk17bNu0aVNceeWVcd555zW91qdPnxg7dmxce+21sXnz5mbr0+l0rF69Oq644oq4/PLL3/8bBAAAaEGniLacnJx45plnoq6uLsaOHRulpaVNj98/5phjYvHixfHcc89F7969IyJi4cKFMWTIkGbfifav//qvUVFREWPGjGnat7i4OEpKSuLoo4+O0tLSmDlzZrPzfvvb346cnJz48Ic/3Gyf0tLSmDRpUpx11lmiDQAAOKCy0vv6xmkyKpVKRVFRUdTW1kZhYWFHjwMAAHSQtrZBp7jSBgAA0F2JNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCdJto2bdoU1157bYwcOTJKSkqiuLg4iouL46ijjopp06bF+vXrW91/165dcffdd8eHPvShZvuXlpbGiBEj4o477oidO3c226empiYuuuiiGDRoUNP64uLiKCkpib/7u7+LBx988EC+ZQAAgMjt6AHaoqGhISZMmBCTJ0+OhQsXRt++fSMrKysiImpra+OBBx6I448/Pl599dXIz8/f6zHuueeemDdvXsyZMycGDBjQtH9ExPr16+Oqq66K+vr6uOGGGyIiIp1Ox5QpU+KUU06J++67L/Ly8podb/ny5XH22WdH//79Y+LEiQfonQMAAN1dVjqdTnf0EPvy+OOPx6OPPhpPPPFEi2uuuuqqGDRoUEyfPn2v24866qh48skno6KiYq/b33nnnRg9enSsWrUqIiKqq6tj3Lhx8frrrzcLvN099NBD8dJLL8W3vvWtNr+XVCoVRUVFUVtbG4WFhW3eDwAA6Fra2gad4vbIRYsWxfjx41tdM3HixFi0aFGL29etWxcDBw5scXufPn1ix44dUV9fHxERq1atisGDB7cYbBERxx57bPTv338f0wMAALx3nSLa1qxZEyUlJa2uKS0tjdWrV7e4PZ1OtxpgEREHHXRQ1NXVRUTEjh079rgl8m8NHTo0rrvuulbXAAAAvB+dItoaGhoiJyen1TW5ubmxa9euFrdnZ2fHvu4EfTfYdvdf//VfMWHChCgrK2t6EElFRUWcfPLJ8fTTT7ftDQAAALxHneJBJJlQWloaK1eujMGDB+91+4YNG+Ltt99u9tr//u//RmVlZTzyyCNx6KGHNl2pq6+vjxdffDE+85nPxIMPPhgf/ehHWzxvfX190y2XEX+5bxUAAKCtOsWVtr/1+uuvR2VlZbzxxhtt3ueKK66ISy65JF577bVoaGhoer2xsTFWrlwZV155ZRx88MHN9undu3d8/etfj8MOO6zZrZV5eXlx4oknxsyZM+Pee+9t9by33XZbFBUVNf2Ul5e3eWYAAIBOeaVt2LBhsXLlyv3a57LLLou8vLy48MILo6qqqincevbsGcOHD4/p06fH888/32yfoUOHtnpb5ogRI+Kuu+5q9bw33HBDXH311U2/p1Ip4QYAALRZp4i2fX1eLeIvX56dm9vy28nOzo6LL744Lr744jaft1evXq1uz8/Pj61bt7a6Ji8vb58PNAEAAGhJp7g9sqysLGpqalpdU11dHQMGDGhx+yWXXBKNjY2tHmP79u1x0EEHRcRfbo3cvn17q+vr6upa/DJvAACATOgU0TZy5MiYP39+q2vmz58fI0eObHH7888/H9XV1S1uT6VSkZWV1RRhlZWVsXz58lafOLl06dKorKzcx/QAAADvXaeItjPPPDPWrFkTN910U2zcuLFZSKVSqbj77rvjF7/4RVx66aWtHuP666+PTZs27bFt06ZNceWVV8Z5553X9NoHPvCB+PCHPxwzZszY4xbIdDodr7zyStx4443x2c9+9v2/QQAAgBZ0imjLycmJZ555Jurq6mLs2LFRWlra9J1pxxxzTCxevDiee+656N27d0RELFy4MIYMGdLs8fr/+q//GhUVFTFmzJimfYuLi6OkpCSOPvroKC0tjZkzZzY77/333x9bt26NUaNGRUlJSdM+/fv3j0svvTS+/OUvx7hx49rzHwUAANDNZKX39Y3TZFQqlYqioqKora2NwsLCjh4HAADoIG1tg05xpQ0AAKC7Em0AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAguV29ADdTTqdjoiIVCrVwZMAAAAd6d0meLcRWiLa2tnmzZsjIqK8vLyDJwEAAJJg8+bNUVRU1OL2rPS+so6MamxsjOrq6igoKIisrKwOnSWVSkV5eXlUVVVFYWFhh84CtMzfKnQO/lYh+ZL2d5pOp2Pz5s1RWloa2dktf3LNlbZ2lp2dHWVlZR09RjOFhYWJ+B8t0Dp/q9A5+FuF5EvS32lrV9je5UEkAAAACSbaAAAAEky0dWN5eXlx0003RV5eXkePArTC3yp0Dv5WIfk669+pB5EAAAAkmCttAAAACSbaAAAAEky0AQAAJJhoAwAASDDR1s1s2rQprr322hg5cmSUlJREcXFxFBcXx1FHHRXTpk2L9evXd/SIwF5s2bIlJk2aFPfff39HjwLs5uGHH45Ro0Y1+3dqSUlJHHXUUXHHHXfErl27OnpE6PaeeeaZOOGEE6K0tDQOO+ywpr/TI444Ir72ta/Fzp07O3rEfRJt3UhDQ0NMmDAhevfuHQsXLozq6uqoqamJmpqaeP755+OII46I448/PrZt29bRowK7SaVScdppp8WSJUti69atHT0O8FcLFy6Mr33ta/GjH/0o1q1b1/Tv1HXr1sWCBQti4cKFce+993b0mNCtrVq1Ki666KL4xje+EWvXro3169c3/Z3+z//8T7z00ktxxx13dPSY++SR/93I448/Ho8++mg88cQTLa656qqrYtCgQTF9+vR2nAxoSV1dXYwfPz5OP/30aGxsjEMOOSS+8IUvdPRYQERcd911UVlZGZdddtlet7/++usxderUeOGFF9p5MuBdDz30ULzwwgtxzz337HX7ihUr4txzz43f/e537TzZ/nGlrRtZtGhRjB8/vtU1EydOjEWLFrXTRMC+pNPpuPrqq2PGjBkdPQrwNz760Y/GySef3OL28vLyqKqqaseJgL917LHHxuWXX97i9v79+3eKjwfldvQAtJ81a9bEhz70oVbXlJaWxurVq9tpImBf8vPz49xzz+3oMYC9OPPMM1vdvnjx4hgyZEj7DAPs1dChQ1vdvmbNmvjwhz/cTtO8d660dSMNDQ2Rk5PT6prc3FwfmgaA92nt2rVx2WWXxVVXXdXRowB7kU6nY926dXHttdfG1KlTO3qcfRJtAAAZkk6n44EHHohRo0bFhRdeGJ/4xCc6eiTgr6qqqqK8vDyKi4ujT58+UVpaGn369Imzzjqro0fbJ9HWjb3++utRWVkZb7zxRkePAgCd3htvvBGnnHJKfOc734lf/vKX8c///M8dPRKwm3c/Z1pTUxPvvPNOrFu3Lg4++OBO8QA+0daNDRs2LFauXLnPe30BgJY1NDTErbfeGhMnTozzzz8/fv3rX3eKz8hAd5aVlRXFxcVxxx13xLx586KmpqajR2qVB5F0I235vNquXbsiN9f/LACgLbZs2RJTpkyJ3NzcePXVV+OQQw7p6JGA/ZCTkxNHHnlk/PGPf4zi4uKOHqdFrrR1I2VlZfv8fxGqq6tjwIAB7TQRAHRu11xzTZSVlcUTTzwh2CCBxo0bF5s3b251TXZ2dmRnJzuLkj0dGTVy5MiYP39+q2vmz58fI0eObKeJAKDzWrZsWcybNy++8Y1vRFZWVkePA+xFTk5OvPbaay1uT6fTsXTp0qisrGzHqfafaOtGzjzzzFizZk3cdNNNsXHjxkin003bUqlU3H333fGLX/wiLr300g6cEgA6h5dffjnGjx8fvXr16uhRgBZMmTIlrr322r1+D/HWrVtjxowZMWzYsMTfaebDS91ITk5OPPPMM/GVr3wlxo4d2yzcDjnkkBg7dmw899xz0bt37w6eFNibwsLCKCgo6OgxgL/auHFj/PjHP46nnnqqxTU9evSIF154IUpLS9txMuBdF198cWzfvj0mTZoUGzZsaHbRoqCgIE4//fR44IEHOm7ANspK7z45AAAAieL2SAAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEy+3oAQCAfXv77bdjx44dkZeXF/369evQWd55553YunVr5OTkRHFxcWRlZXXoPABdnSttAHRJ8+bNi169esWnP/3pjh7lffvd734Xhx12WJSXl8ehhx4aK1as6LBZ6urqori4OMrLy6O0tDRmz57dYbMAdBeiDYBOp7GxMb797W/H5s2bW1zz4osvxvbt2+PXv/51O052YLz7PufMmRPPPPNMDBo0qMNm6dWrVzz77LMxZ86c6NevX6v/HQCQGW6PBKDTqaqqiiuuuCKGDRsWEyZM2Ouaf/zHf4yf/OQnccYZZ7TzdAfOxz72sY4eISIijj/++IiIyM/P7+BJALoH0QZAp5NOp5v9594cc8wx8fLLL7fXSABwwLg9EgAAIMFEGwCdxrPPPhu5ublNn+k6+eSTIysrK7KysiI3NzcWLlzYbP3hhx8e8+bN2+M4N910U3z605+ON954IyZPnhx9+vSJrKysyM/Pj9GjR8cPfvCDiIhYv359TJ06NQ477LDIysqKHj16xLBhw+LKK69s9bNcq1atik996lNx5JFHRl5eXtOMxcXFceKJJ8ZDDz3U6lXC/TFkyJCYN29eVFVVxec///kYOnRo5OfnR1ZWVpSVlcW4ceNi9uzZLZ7vjTfeiDPOOCMOPfTQpjnf/cnPz4+PfOQj8dRTT2VkVgDeG7dHAtBpjB49Ou65555Yv3593HzzzXHFFVfEEUccERERubm5MWrUqGbrly9fHmvWrNnjOG+99Va8+OKLMXbs2Dj22GNj+vTp0adPn9i0aVM89dRT8alPfSqysrJi5syZkZWVFRdccEH0798/GhoaYvHixfHtb387li5dGs8888wex166dGmMGTMmDjnkkDjnnHOivLw8evbsGel0OjZs2BAvv/xyTJ06NZ5//vn49re//b7/maxYsSJ+9rOfxbnnnhsDBw6M0047LUpKSiI/Pz/efvvteOGFF+Lss8+OG2+8MW699dZm++7cuTM+9rGPRWNjY1x55ZVxyCGHNHt8/8aNG+Opp56KM888M1555ZWmf9YAtLM0AHQyb775Zjoi0k8//XSr6yIiff/99+/x+gUXXNDitl27dqVPOOGEdHZ2dnrixInpHTt27LHmvvvuS0dE+ve///0e2yZPnpweNGhQura2tsW57r333nR2dnZ60aJFrc7/rgULFqRb+ld2RKR79OiR/uEPf5hubGzc65pbbrklnZeXl66qqmr2+nPPPdfi+3hXfX19um/fvumvfOUre2wbOHBg+nvf+16b3gMA753bIwHolvr27RsXX3zxHq/n5OTElClTorGxMb7whS9Ejx499ljz7ne/LV68uNnr6XQ6Fi5cGJdffnkUFha2eO7PfOYzUVBQEPPnz3+f7+IvpkyZEp/85Cdb/JLr6dOnR319ffzmN79p9npVVVVERAwdOrTFYx900EFxxx13xAknnJCRWQHYf26PBKBbGjhwYGRn7/3/uywrK4uIaPH70PLz86Nv375RXV3d7PVNmzZFKpWKysrKVs/do0ePGDBgQKxatWr/B9+Lj370o61uLygoiL59+8abb77Z7PW+fftGxF/m7t27d4v7X3DBBe9/SADeM9EGQLfU2neM9erVq01r6urqmr1WW1sbEX/5rNjePkv3t+f/05/+1NZxW5WTk7PPNQUFBU3zvWv06NGRn58f119/fVx33XVRVFTU7Gpdz5494wMf+ECLV/AAaB+iDQAybMqUKW1aN2LEiAM8Sev69esX9913X0ybNi0efvjhva4pKCiIyy67LL7yla/EQQcd1M4TAhAh2gAg47785S/v8STLvTn66KMP/DD78OlPfzrOOOOMWLp0aWzcuLHZtvr6+njllVfia1/7Whx22GFxzTXXdNCUAN2baAOg03n381fbtm3r4EmaKygoiIiIUaNGxcc+9rEOnqbtDjnkkBY/F3f22WfHypUr42c/+5loA+ggnh4JQKfzwQ9+MPLz85uefpgUffv2jYKCgjbNdf7558esWbPaYaqWvfjii/HEE0/sc115eXnU1NS0w0QA7I1oA6DTycrKiuOPPz7uv//+qK+v7+hxmmRlZcVJJ50U//Ef/xE7duxocd3y5cvjsccei8MOO6wdp9vTL3/5y7j88stj586dra5btmxZ0xM1AWh/bo8EoFOaNWtWHHvssXHkkUfGWWedFRUVFXH++edHnz59Onyuo48+Oo444og4++yzo6SkJA466KBIp9Oxbdu2ePPNN+PHP/5xDB06ND7+8Y936Kxnnnlm3HrrrXHiiSfGySefvEdE7tixI1599dWYPXt23HfffR00JQCiDYBOafTo0bFo0aK48cYb4+c//3msXbs2hg8fHuPHj29aM3jw4L1eIRo4cGDs2rWrxWMfdthhceihh8YhhxzS4prKysoYMGDAHq8PHz48lixZEjfeeGPMmTMn3nzzzaarboWFhVFaWhqf/exnY/r06VFUVLQf77jlOdpyFayioiIGDhzY7LWRI0fGT3/607jlllvim9/8ZmzZsqXZ9oMOOigqKiri9ttvj8985jPve1YA3pusdDqd7ughAICWLVy4MMaPHx9J+1d2RUVF3HzzzXHhhRd29CgAXZrPtAEAACSY2yMBoJNYtWpV9OzZM4qLizt0jg0bNsSWLVtavcUUgMwRbQCQcD169IiIiEGDBkXEX57mOGTIkA6Zpa6uLkpKSpqC7d3ZADhwfKYNABJu586dsWDBgtixY0f06tUrxo8fH9nZHfcJh1//+tfxzjvvRE5OTowdOzby8/M7bBaA7kC0AQAAJJgHkQAAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAAS7P8DHVwm8/gqSR0AAAAASUVORK5CYII=", "text/plain": "
" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "1120d30c52884219a46796af2b729d9f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "119af531f61246f9924b37b98fdf1981": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_398313591e1946d7ab027e53975fa242", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "12149b5dbca9479fa2efe70bcc654c68": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1289afa9adab40ab86079bb1ed0f15a1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_40041d1c7fa14ee1b66398fda7193478", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "134e3b16d44c42ac90b79c7471950456": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "14551aaa42d3467f9783a4e275ca389d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_5a948ce1090243c7a5625f0d50b07d7a" ], "layout": "IPY_MODEL_064226cfa4934281acda790e198898f2", "selected_index": 0, "tabbable": null, "titles": [ "cluster0" ], "tooltip": null } }, "14645ce078b0462c869d475edba7ffaf": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_b98eabc85a0e450dbc1469393264e71c" ], "layout": "IPY_MODEL_8d1803ba22c8456fb09fb64cd81aef53", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "147df04f517242ec983b4fb1117507b0": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9597cf37d0444ed997a79c26844068dd", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "14fe65f4b9c64a8b81d6f1a0447e69d3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "15ae6178cd6c46af9ef3de31a8fa4e61": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1720deff15ee483293eef130acbac932": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "173321ce1d7f4bfeae114d234e847a1c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_87e59e8de0514ba8ad322b9d29c1795d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "180d44f7daa746268fbe4389aac4ae36": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1885e14e900b445bab486d9f73552d1c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "191e5832efff43afa63f8cc10c8a64a8": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_df0b4fce732e461daa71e72fcdc4ec79", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1933e9a3a71b4ea0b04b29962f39aafa": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_07ae73483b694a7fae606e3bd0fe13d9" ], "layout": "IPY_MODEL_f3dc8c2728234dc296c798990549490e", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "1956a77623e942fa863f09caa52e4805": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "196cd3db427b462d8bbc3a150eb9385f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "19753219a9ec43eda39e5f20688baaff": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_498533c785454e4cb67b429067f042e0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1a30d3bfdd5a4ac79cc3e8bc2bf0b808": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_afb964b0813a457a8d13a56c48940ea7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1aa83dbcc0ef4b1b94e2594af4ee6243": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_41f34bb503ad42b885feeb2ad9eae8c6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1ac868edb87741b79390d1f7a47a89fb": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c708cb5ef31847d2a77924993585326e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1b723cd1371442579db8d6b3184dd750": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1c1e1db61d594620b961cb30377d132e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1d12764ecbac4c5f8d5cb323e935e9a9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1d62b9eeb808411b904806aa3fd3b15c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_420686ffc03041da8457317544756ab6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1d80cef7487945e2ae0bf74d6c0212db": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "1e80fd71ba994c7fb7a62429d164eeab": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_d19d1ec19cf34a538c8a46c429ffd255", "IPY_MODEL_6429656e311f4053b6239c5be0a55e64", "IPY_MODEL_30247cc3aed9428f9197e027fc74a12c" ], "layout": "IPY_MODEL_567e098e31b54d159ae7f36958a295a6", "selected_index": 0, "tabbable": null, "titles": [ "6", "2", "8" ], "tooltip": null } }, "1e8945c09f894444a94f0f0ba5488a03": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5aae72e01e4b4f8e8cbc18d05ca6aed7", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
graph[[cluster0.module6.complex_output_0, q0:mw], [...
\n
", "text/plain": "setting value\ngraph [[cluster0.module6.complex_output_0, q0:mw], [..." }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "20a1cfd0bec04ee8aa94c7b638847f53": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_dc6da22de7f74d9abf90406ef0684cdd", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "20fb246078a8487099e8dda60e28900b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_d7cf2928fbc94ebbbd96fb3e0e333897", "IPY_MODEL_254f1d6382f54165af71e1e736db5eb8", "IPY_MODEL_3f386db14fc84b5dba57bdf87c3baf2d" ], "layout": "IPY_MODEL_de0dd6a5cec347f9a7f3a5cf99b93d50", "selected_index": 0, "tabbable": null, "titles": [ "output_att", "mixer_corrections", "modulation_frequencies" ], "tooltip": null } }, "22adfca2d5cf40948e9a74d72f90a425": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "235231036cbc44e3be4bf97bb0a1b786": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a54813adcb0242e992c72d487af3581e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "23973a67949d43d7bb37311fd2bf1d1f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_22adfca2d5cf40948e9a74d72f90a425", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
acq_protocolSSBIntegrationComplex
bin_modeaverage
acq_return_type<class 'complex'>
repetitions1
\n
", "text/plain": "setting value\nacq_protocol SSBIntegrationComplex\nbin_mode average\nacq_return_type \nrepetitions 1" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "23c375658b6f4b6eaf7ad5842fed1efc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3a79bfba380d45f3ac29921d3931942c", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "241b5458047149fe97a004680ade6ca3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "24735f9432bb46fea8d1b53d0b8b52b5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "24a71b7a81f34b1fa7b6cfb47bd34e81": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e089f2caf69c4e9cac60f37cf29315f5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "254f1d6382f54165af71e1e736db5eb8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_f0fe253020c042f7ba22a8249ab5a08c", "IPY_MODEL_41ec0cc9e8cb4f6a8bb3c04e8184df76", "IPY_MODEL_bab16bf1e78c4c1daabffea790a12677", "IPY_MODEL_7827bf1ce4ca4e95aefa39b1b15fd390" ], "layout": "IPY_MODEL_31334f63d20c4ce5a2d24336e23cb65e", "selected_index": 0, "tabbable": null, "titles": [ "q0:mw-q0.01", "q1:mw-q1.01", "q0:res-q0.ro", "q1:res-q1.ro" ], "tooltip": null } }, "262494929d01412db02aba839688a61a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "269152687a02470fb60b51e21c2ffced": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_032ea9395fff46b38f17d2fac35157e7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2721c0865e774f18b9a992af6d651123": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6005ab18eb174501a7edbecc9b91d40b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "28003716a18d4af08c0325b67f83e194": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3d44c96194b845688ced0a28531089a6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "285ee278585d48beb40470fe7861ee97": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5405d52759674af2b18b2e6c0e443a1a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2a99c085c1ba47f5a4e765e8b20060c9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_36527c66c09f43a0ad3e95a37feb1f9b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2acfee90908e4a9a8fbc38d686f6b2e9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e6b6d8424bc3454a8ec7d91697f3c234", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2bfd7bad81454a5a81b2788a583839fb": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_56dfa19b9c2a45929a7c755cd32e355e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2c1413c5e815419ea58dfa606c39de96": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2d3b44b8602248aab28c86c97a2b64d4": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_78e6557947f74ea9985ae075f8382a44", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2d5c7f3e16ad40b59470aa8de6016210": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5dc1ee81d0c14c3683ca563554010ab6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2dd69f5b8e9e4db3ad505b4d7b2983b0": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_438f06e4dc7e4f6ba4c239207c537fe2", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2e16bdc85f264627bee294aaceaa1efc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_775cc32daea843d4998b53dec6165103", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2e25d1b85eed496eb8c12100dacbfea6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2f95ff6bb6cc469db2ba0f03294e3da7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2faaf800f4eb4bf9aabd89e817aa4fb3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "2fd0b844b44f4d6188b05f00c9c1139f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "30247cc3aed9428f9197e027fc74a12c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_964cd6a272aa4565b0f7fb06fcb86440" ], "layout": "IPY_MODEL_e2f731ab8df44440bfc7082b00392004", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "30b529c75087426fa3e4dc3d9c512130": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a89eed2cc5534ec1affe40f272a61a8e", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
lo_freq7.500000e+09
\n
", "text/plain": "setting value\nlo_freq 7.500000e+09" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "312182885f4c438ba7403777d5a91510": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_0b6da86497ca4fdc90fa76c496d1c174", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "31334f63d20c4ce5a2d24336e23cb65e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "31c766aec2ef42cfa948e29d50153aa8": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_35ad8e92419048718942e7fbacb97df3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3306dba747884f33baf5533f4a908a0f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3398e5310ec747b3b821462c241194a2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "33cc6ba02584433a89b7fe4eae9064ef": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "341478b1220a4f158fcca4195c748e8d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_78b807a1a2c3493aa3d8b89ab1bbd6da", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "343331c7020d4ed1a67a0dc1ed49b815": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_049fcf5813fe43fdbd72c5875c0870ae", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3483733c3f394a96bcc52e67daf8a376": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "34d9130d06b74ac9af65c46df858b2e0": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_bce5a5a81aa146838353784064b3c9fb", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "352a05b86b354dc299507f685a13bc34": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "356e968935b64817b6ff3eb90510345b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "35ad8e92419048718942e7fbacb97df3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "364b362f25834d069b22b803567026ca": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_cd99f8b593584fb89f65f9f8a34a9596", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "36527c66c09f43a0ad3e95a37feb1f9b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "36d5425ee58248dd98763d49aac8e59b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6f34e63949294009bd292ec029f830eb", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
repetitions1
\n
", "text/plain": "setting value\nrepetitions 1" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "371618f837a349d797e8c4b4399e6060": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "398313591e1946d7ab027e53975fa242": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "399702a189024459ab14ec706101f1c3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3a79bfba380d45f3ac29921d3931942c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3aaa8916b6044b8f834ac0e267991dbe": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e931b7235c5047ad9ccd7d995fb18a44", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3b0dcd1244e541399a99c0d222254fd3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3c63f3800ffd47feb35882b3e06d20f6": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_56c925f26014477688c1b731732f34b9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3c6b62755f0443ce9709af017ef0ef15": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ccc6cc7b7a584a31a68577f678e5c4b0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3c8273e43a0b45d697c99f37f5174962": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3d44c96194b845688ced0a28531089a6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3e50a248c4134b639b8100d00184d85a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "3e813ab9790c4ef0a0a0bd771627367c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e2b2a948104a43989215010c2243f62e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3f386db14fc84b5dba57bdf87c3baf2d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_d696fb2fdf604b929673b5e33361c28f", "IPY_MODEL_1933e9a3a71b4ea0b04b29962f39aafa", "IPY_MODEL_14645ce078b0462c869d475edba7ffaf", "IPY_MODEL_42027bbf3f33449aae33535eab4c5dda" ], "layout": "IPY_MODEL_6642938d8d7c4df1acd3618b7f9ccebe", "selected_index": 0, "tabbable": null, "titles": [ "q0:mw-q0.01", "q1:mw-q1.01", "q0:res-q0.ro", "q1:res-q1.ro" ], "tooltip": null } }, "3fcdcd007c8b464c987a9b77725c9f36": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "40041d1c7fa14ee1b66398fda7193478": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "40bf429cecba4be9b278a17eccc13f94": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_42b20f56899c482ab966390431d69e82", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
config_typequantify_scheduler.backends.qblox_backend.Qblo...
\n
", "text/plain": "setting value\nconfig_type quantify_scheduler.backends.qblox_backend.Qblo..." }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "415e59a97bd049cab9ea2c8215f16985": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_0b83380f72c54459941f42f3a8e042f6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "41ec0cc9e8cb4f6a8bb3c04e8184df76": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_48ccd21bb67447189566adbc597c3acf" ], "layout": "IPY_MODEL_dd563549eb354f9492a5f477967bd281", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "41f34bb503ad42b885feeb2ad9eae8c6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "42027bbf3f33449aae33535eab4c5dda": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_30b529c75087426fa3e4dc3d9c512130" ], "layout": "IPY_MODEL_c02fc66dc31f49c3b52fe8d2414d4a15", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "420686ffc03041da8457317544756ab6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "42825159ad3348b5952dd37d01556934": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "42b20f56899c482ab966390431d69e82": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "438f06e4dc7e4f6ba4c239207c537fe2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4423b0545a2148e980b52f79e1ca0365": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_399702a189024459ab14ec706101f1c3", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
sync_enTrue
channel_namecomplex_output_0
channel_name_measure[complex_input_0]
connected_output_indices(0, 1)
connected_input_indices(0, 1)
seq_fnNone
thresholded_acq_trigger_write_enNone
thresholded_acq_trigger_write_addressNone
thresholded_acq_trigger_write_invertFalse
nco_enTrue
init_offset_awg_path_I0.0
init_offset_awg_path_Q0.0
init_gain_awg_path_I1.0
init_gain_awg_path_Q1.0
modulation_freq100000000.0
mixer_corr_phase_offset_degree0.0
mixer_corr_gain_ratio1.0
auto_sideband_calSidebandCalEnum.ON_INTERM_FREQ_CHANGE
integration_length_acq1900
thresholded_acq_thresholdNone
thresholded_acq_rotationNone
ttl_acq_input_selectNone
ttl_acq_thresholdNone
ttl_acq_auto_bin_incr_enNone
\n
", "text/plain": "setting value\nsync_en True\nchannel_name complex_output_0\nchannel_name_measure [complex_input_0]\nconnected_output_indices (0, 1)\nconnected_input_indices (0, 1)\nseq_fn None\nthresholded_acq_trigger_write_en None\nthresholded_acq_trigger_write_address None\nthresholded_acq_trigger_write_invert False\nnco_en True\ninit_offset_awg_path_I 0.0\ninit_offset_awg_path_Q 0.0\ninit_gain_awg_path_I 1.0\ninit_gain_awg_path_Q 1.0\nmodulation_freq 100000000.0\nmixer_corr_phase_offset_degree 0.0\nmixer_corr_gain_ratio 1.0\nauto_sideband_cal SidebandCalEnum.ON_INTERM_FREQ_CHANGE\nintegration_length_acq 1900\nthresholded_acq_threshold None\nthresholded_acq_rotation None\nttl_acq_input_select None\nttl_acq_threshold None\nttl_acq_auto_bin_incr_en None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "451f2541e3644fc4ab4cd5551468764a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "455a8039adbb464ab7c8e39fc2b54483": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4610442b7e2846a09d457959b0abe889": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "461213cfdf7c4484b24be6f92d8776f6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "46352d56b07f428cb9da02a06d2ccf8d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_356e968935b64817b6ff3eb90510345b", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeCluster
sequence_to_fileFalse
refinternal
\n
", "text/plain": "setting value\ninstrument_type Cluster\nsequence_to_file False\nref internal" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "46c62e2d864e4de888364a6ff60da0cc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_dd3c017bcf874322bbae8ba7e079e11c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "478d8ff2c6994b5e9bc0697e95909e3d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "47e45dd2ca3a481f902bc9e965874cd2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_882681d1fb7e496ca307dce031b704d3", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
repetitions1
\n
", "text/plain": "setting value\nrepetitions 1" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "4845226c797c4a53bed426df7bcc4cc8": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_6fa722286d394e3ba4dea0609c34e9ea" ], "layout": "IPY_MODEL_180d44f7daa746268fbe4389aac4ae36", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "486b1b7abca14c11adbde6c674235b34": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4883d9d364ba46d7952d1d6c79a6f05e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_de64e850850f48f2a306c9e9a8849c14", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "48c07c884bd345b8bd2d812e83e5de87": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "48ccd21bb67447189566adbc597c3acf": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_33cc6ba02584433a89b7fe4eae9064ef", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "48f646e1c94341b0ad3f7d1002add8f9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "495cc23c114c466787ee97e69dbb799f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_42825159ad3348b5952dd37d01556934", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4968076e71d94e8e98afd0abbeb3b474": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "498533c785454e4cb67b429067f042e0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "49a27c7c4dce44168d21e1e57288eb74": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4aee825b98894d22a4f4ecbc96e55285": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b4a603ca5fe04b25acd7ce450caff116", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4c2be46f994a4de19df944be97e7a51d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4c7a6408e6e7483d9df5c5010b730f10": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4d0ff21ab7c24ad4989c6ad224c67e97": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4d9ded6aca71458487c2d2b27075c17f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4e3f5f0e96fa485ca5cfff9420b5c2c7": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_074a54953ddb48309d7a11271d9c36de", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4e9004f707504925b4b8524da9da56cb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4ea06d05540b491e8b13810e5e2478b1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4f1acffd74d846b582d9cba5ec466d48": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "4ff6cc06997e4fcc9b6aba6fc5a09ece": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "50ab4773dcfc4782b257011a2e8c7544": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "50afa75a888345d1bd1108256d73d261": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "512ab83cf9fe49ba9e53880e59c22cd2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f520899fa3304a8ebd0aa9902364e5fd", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "52300f8213524b68b6688789a95dd493": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "523e9295ae1b426b967896e0d61ffa35": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_d37d75580c51474897f35a524a2f48e6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "526097e2931a41bfb63e3fc6180b3be9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_77a6e180d8ab447ebf82b782e380d322", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "53eb25cf00ae4b34bbfee2d284e0d636": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f4353ba95be849a08ea9d1f4044b7e66", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5405d52759674af2b18b2e6c0e443a1a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "54a60e47a6f7495aa3e2ffd287a09b15": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "55b45331a21841bba32d46c9d53f1cbe": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_eefaf7ea1fe44b439bdae06af4a08cf1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "567e098e31b54d159ae7f36958a295a6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "56c925f26014477688c1b731732f34b9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "56dfa19b9c2a45929a7c755cd32e355e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "57093946d2f848be8d5acbc1d4a59cfc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4f1acffd74d846b582d9cba5ec466d48", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "571c46f5a31c40a2a51673eeec11456a": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3306dba747884f33baf5533f4a908a0f", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
sync_enTrue
channel_namecomplex_output_0
channel_name_measureNone
connected_output_indices(0, 1)
connected_input_indices()
seq_fnNone
thresholded_acq_trigger_write_enNone
thresholded_acq_trigger_write_addressNone
thresholded_acq_trigger_write_invertFalse
nco_enTrue
init_offset_awg_path_I0.0
init_offset_awg_path_Q0.0
init_gain_awg_path_I1.0
init_gain_awg_path_Q1.0
modulation_freq80000000.0
mixer_corr_phase_offset_degree0.0
mixer_corr_gain_ratio1.0
auto_sideband_calSidebandCalEnum.ON_INTERM_FREQ_CHANGE
integration_length_acqNone
thresholded_acq_thresholdNone
thresholded_acq_rotationNone
ttl_acq_input_selectNone
ttl_acq_thresholdNone
ttl_acq_auto_bin_incr_enNone
\n
", "text/plain": "setting value\nsync_en True\nchannel_name complex_output_0\nchannel_name_measure None\nconnected_output_indices (0, 1)\nconnected_input_indices ()\nseq_fn None\nthresholded_acq_trigger_write_en None\nthresholded_acq_trigger_write_address None\nthresholded_acq_trigger_write_invert False\nnco_en True\ninit_offset_awg_path_I 0.0\ninit_offset_awg_path_Q 0.0\ninit_gain_awg_path_I 1.0\ninit_gain_awg_path_Q 1.0\nmodulation_freq 80000000.0\nmixer_corr_phase_offset_degree 0.0\nmixer_corr_gain_ratio 1.0\nauto_sideband_cal SidebandCalEnum.ON_INTERM_FREQ_CHANGE\nintegration_length_acq None\nthresholded_acq_threshold None\nthresholded_acq_rotation None\nttl_acq_input_select None\nttl_acq_threshold None\nttl_acq_auto_bin_incr_en None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "575ad4c192834cc0800a60d6c7b92411": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f4ab1844a9d548f3976a0a1c90a60024", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "57eb45187bb8415e943470691a35e98c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_06d39ec195b04af59f60b71ce237b765", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "58056ad8c99f4304880136009d2d5a70": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_03458454da624ed9a10ccd13eda6030a" ], "layout": "IPY_MODEL_f03cbd85fe6c4289ae936f7e5c0340bb", "selected_index": 0, "tabbable": null, "titles": [ "seq0" ], "tooltip": null } }, "58730ca464c74e69ba5626c0ee2d2fdc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_8c32a52ad61a48aab96f9bffb8a4b9a5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "58e649c2049f4965bed4614154b441c7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "58ec30e52d0c453cb5d8596e37014246": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5924aa4a5001481598f3cb60219c04a3": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_d3caef54248149d4bafa4f14f6e39f3a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "59634c9e8d73475c8fc399b4e8192c91": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "59bf5876759c44d5b1a3bc8e1485f2ba": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_86093324b9a646649a56d45b29ea064f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5a948ce1090243c7a5625f0d50b07d7a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_1e80fd71ba994c7fb7a62429d164eeab", "IPY_MODEL_46352d56b07f428cb9da02a06d2ccf8d" ], "layout": "IPY_MODEL_d04b15d94a7849b2a6cf465c4f50b28f", "selected_index": 0, "tabbable": null, "titles": [ "modules", "other values" ], "tooltip": null } }, "5aae72e01e4b4f8e8cbc18d05ca6aed7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5c3a81d5b2e44e24a77e55c50c318b4b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1c1e1db61d594620b961cb30377d132e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5c7e6bdcc93e49d19415f97e5ba89c11": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5d9b9f314523419cb9b429956baa6ee9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5dc1ee81d0c14c3683ca563554010ab6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5dc2a643b9794800aeb7bf597a80105b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_0b2b04b70f92407bbc5af953fec44222", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
num_bins300
index0
\n
", "text/plain": "setting value\nnum_bins 300\nindex 0" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "5de5068938894ea394756732fb586e9e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "5eab147493a9407c84ae27bae483b8a6": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_6a04055f2c854f4f86431fccedf4ac53" ], "layout": "IPY_MODEL_94b473210c6945748c163faf6120e32d", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "5f830d30f4fa49fbbf161e550a1bbde1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_c6ef7cb931154d4c81a5756e30d319fe", "IPY_MODEL_090cc186b3a24a05bc2a44937139a986", "IPY_MODEL_9eab28440fb14dbea465ac142a08a04d" ], "layout": "IPY_MODEL_3398e5310ec747b3b821462c241194a2", "selected_index": 0, "tabbable": null, "titles": [ "settings", "cluster0_module6", "cluster0_module8" ], "tooltip": null } }, "6005ab18eb174501a7edbecc9b91d40b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "610a1d2877ca4a918d705697650f96d8": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "61f3a617ba3f41598f115437f29b8216": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_bae3ed57b9a84a78ae393dd9229cfadc", "msg_id": "", "outputs": [ { "name": "stdout", "output_type": "stream", "text": " \n set_mrk 2 # set markers to 2 (init) \n wait_sync 4 \n upd_param 4 \n wait 4 # latency correction of 4 + 0 ns \n move 1,R0 # iterator for loop with label start \n start: reset_ph \n upd_param 4 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop10 \n loop10: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,0,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop10 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop25 \n loop25: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,1,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop25 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop40 \n loop40: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,2,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop40 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop55 \n loop55: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,3,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop55 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop70 \n loop70: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,4,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop70 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop85 \n loop85: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,5,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop85 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop10 \n 0 \n loop100: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,6,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop100 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop11 \n 5 \n loop115: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,7,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop115 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop13 \n 0 \n loop130: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,8,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop130 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop14 \n 5 \n loop145: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,9,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop145 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop16 \n 0 \n loop160: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,10,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop160 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop17 \n 5 \n loop175: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,11,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop175 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop19 \n 0 \n loop190: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,12,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop190 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop20 \n 5 \n loop205: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,13,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop205 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop22 \n 0 \n loop220: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,14,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop220 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop23 \n 5 \n loop235: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,15,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop235 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop25 \n 0 \n loop250: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,16,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop250 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop26 \n 5 \n loop265: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,17,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop265 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop28 \n 0 \n loop280: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,18,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop280 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop29 \n 5 \n loop295: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,19,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop295 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop31 \n 0 \n loop310: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,20,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop310 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop32 \n 5 \n loop325: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,21,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop325 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop34 \n 0 \n loop340: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,22,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop340 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop35 \n 5 \n loop355: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,23,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop355 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop37 \n 0 \n loop370: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,24,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop370 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop38 \n 5 \n loop385: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,25,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop385 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop40 \n 0 \n loop400: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,26,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop400 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop41 \n 5 \n loop415: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,27,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop415 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop43 \n 0 \n loop430: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,28,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop430 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop44 \n 5 \n loop445: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,29,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop445 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop46 \n 0 \n loop460: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,30,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop460 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop47 \n 5 \n loop475: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,31,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop475 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop49 \n 0 \n loop490: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,32,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop490 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop50 \n 5 \n loop505: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,33,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop505 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop52 \n 0 \n loop520: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,34,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop520 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop53 \n 5 \n loop535: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,35,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop535 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop55 \n 0 \n loop550: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,36,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop550 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop56 \n 5 \n loop565: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,37,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop565 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop58 \n 0 \n loop580: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,38,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop580 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop59 \n 5 \n loop595: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,39,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop595 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop61 \n 0 \n loop610: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,40,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop610 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop62 \n 5 \n loop625: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,41,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop625 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop64 \n 0 \n loop640: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,42,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop640 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop65 \n 5 \n loop655: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,43,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop655 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop67 \n 0 \n loop670: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,44,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop670 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop68 \n 5 \n loop685: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,45,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop685 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop70 \n 0 \n loop700: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,46,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop700 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop71 \n 5 \n loop715: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,47,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop715 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop73 \n 0 \n loop730: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,48,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop730 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop74 \n 5 \n loop745: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,49,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop745 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop76 \n 0 \n loop760: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,50,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop760 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop77 \n 5 \n loop775: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,51,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop775 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop79 \n 0 \n loop790: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,52,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop790 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop80 \n 5 \n loop805: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,53,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop805 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop82 \n 0 \n loop820: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,54,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop820 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop83 \n 5 \n loop835: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,55,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop835 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop85 \n 0 \n loop850: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,56,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop850 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop86 \n 5 \n loop865: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,57,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop865 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop88 \n 0 \n loop880: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,58,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop880 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop89 \n 5 \n loop895: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,59,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop895 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop91 \n 0 \n loop910: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,60,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop910 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop92 \n 5 \n loop925: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,61,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop925 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop94 \n 0 \n loop940: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,62,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop940 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop95 \n 5 \n loop955: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,63,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop955 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop97 \n 0 \n loop970: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,64,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop970 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop98 \n 5 \n loop985: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,65,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop985 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop10 \n 00 \n loop1000: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,66,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1000 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop10 \n 15 \n loop1015: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,67,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1015 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop10 \n 30 \n loop1030: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,68,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1030 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop10 \n 45 \n loop1045: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,69,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1045 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop10 \n 60 \n loop1060: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,70,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1060 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop10 \n 75 \n loop1075: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,71,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1075 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop10 \n 90 \n loop1090: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,72,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1090 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop11 \n 05 \n loop1105: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,73,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1105 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop11 \n 20 \n loop1120: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,74,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1120 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop11 \n 35 \n loop1135: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,75,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1135 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop11 \n 50 \n loop1150: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,76,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1150 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop11 \n 65 \n loop1165: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,77,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1165 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop11 \n 80 \n loop1180: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,78,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1180 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop11 \n 95 \n loop1195: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,79,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1195 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop12 \n 10 \n loop1210: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,80,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1210 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop12 \n 25 \n loop1225: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,81,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1225 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop12 \n 40 \n loop1240: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,82,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1240 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop12 \n 55 \n loop1255: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,83,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1255 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop12 \n 70 \n loop1270: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,84,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1270 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop12 \n 85 \n loop1285: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,85,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1285 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop13 \n 00 \n loop1300: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,86,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1300 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop13 \n 15 \n loop1315: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,87,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1315 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop13 \n 30 \n loop1330: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,88,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1330 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop13 \n 45 \n loop1345: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,89,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1345 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop13 \n 60 \n loop1360: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,90,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1360 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop13 \n 75 \n loop1375: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,91,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1375 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop13 \n 90 \n loop1390: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,92,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1390 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop14 \n 05 \n loop1405: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,93,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1405 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop14 \n 20 \n loop1420: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,94,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1420 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop14 \n 35 \n loop1435: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,95,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1435 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop14 \n 50 \n loop1450: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,96,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1450 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop14 \n 65 \n loop1465: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,97,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1465 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop14 \n 80 \n loop1480: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,98,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1480 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop14 \n 95 \n loop1495: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,99,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1495 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop15 \n 10 \n loop1510: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,100,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1510 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop15 \n 25 \n loop1525: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,101,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1525 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop15 \n 40 \n loop1540: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,102,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1540 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop15 \n 55 \n loop1555: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,103,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1555 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop15 \n 70 \n loop1570: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,104,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1570 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop15 \n 85 \n loop1585: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,105,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1585 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop16 \n 00 \n loop1600: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,106,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1600 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop16 \n 15 \n loop1615: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,107,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1615 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop16 \n 30 \n loop1630: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,108,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1630 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop16 \n 45 \n loop1645: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,109,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1645 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop16 \n 60 \n loop1660: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,110,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1660 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop16 \n 75 \n loop1675: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,111,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1675 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop16 \n 90 \n loop1690: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,112,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1690 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop17 \n 05 \n loop1705: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,113,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1705 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop17 \n 20 \n loop1720: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,114,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1720 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop17 \n 35 \n loop1735: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,115,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1735 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop17 \n 50 \n loop1750: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,116,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1750 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop17 \n 65 \n loop1765: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,117,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1765 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop17 \n 80 \n loop1780: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,118,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1780 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop17 \n 95 \n loop1795: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,119,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1795 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop18 \n 10 \n loop1810: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,120,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1810 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop18 \n 25 \n loop1825: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,121,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1825 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop18 \n 40 \n loop1840: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,122,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1840 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop18 \n 55 \n loop1855: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,123,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1855 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop18 \n 70 \n loop1870: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,124,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1870 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop18 \n 85 \n loop1885: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,125,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1885 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop19 \n 00 \n loop1900: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,126,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1900 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop19 \n 15 \n loop1915: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,127,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1915 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop19 \n 30 \n loop1930: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,128,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1930 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop19 \n 45 \n loop1945: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,129,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1945 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop19 \n 60 \n loop1960: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,130,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1960 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop19 \n 75 \n loop1975: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,131,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1975 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop19 \n 90 \n loop1990: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,132,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop1990 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop20 \n 05 \n loop2005: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,133,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2005 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop20 \n 20 \n loop2020: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,134,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2020 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop20 \n 35 \n loop2035: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,135,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2035 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop20 \n 50 \n loop2050: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,136,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2050 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop20 \n 65 \n loop2065: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,137,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2065 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop20 \n 80 \n loop2080: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,138,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2080 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop20 \n 95 \n loop2095: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,139,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2095 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop21 \n 10 \n loop2110: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,140,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2110 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop21 \n 25 \n loop2125: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,141,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2125 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop21 \n 40 \n loop2140: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,142,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2140 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop21 \n 55 \n loop2155: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,143,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2155 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop21 \n 70 \n loop2170: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,144,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2170 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop21 \n 85 \n loop2185: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,145,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2185 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop22 \n 00 \n loop2200: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,146,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2200 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop22 \n 15 \n loop2215: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,147,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2215 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop22 \n 30 \n loop2230: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,148,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2230 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop22 \n 45 \n loop2245: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,149,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2245 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop22 \n 60 \n loop2260: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,150,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2260 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop22 \n 75 \n loop2275: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,151,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2275 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop22 \n 90 \n loop2290: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,152,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2290 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop23 \n 05 \n loop2305: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,153,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2305 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop23 \n 20 \n loop2320: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,154,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2320 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop23 \n 35 \n loop2335: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,155,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2335 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop23 \n 50 \n loop2350: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,156,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2350 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop23 \n 65 \n loop2365: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,157,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2365 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop23 \n 80 \n loop2380: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,158,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2380 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop23 \n 95 \n loop2395: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,159,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2395 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop24 \n 10 \n loop2410: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,160,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2410 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop24 \n 25 \n loop2425: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,161,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2425 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop24 \n 40 \n loop2440: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,162,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2440 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop24 \n 55 \n loop2455: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,163,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2455 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop24 \n 70 \n loop2470: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,164,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2470 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop24 \n 85 \n loop2485: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,165,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2485 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop25 \n 00 \n loop2500: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,166,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2500 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop25 \n 15 \n loop2515: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,167,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2515 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop25 \n 30 \n loop2530: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,168,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2530 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop25 \n 45 \n loop2545: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,169,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2545 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop25 \n 60 \n loop2560: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,170,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2560 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop25 \n 75 \n loop2575: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,171,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2575 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop25 \n 90 \n loop2590: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,172,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2590 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop26 \n 05 \n loop2605: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,173,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2605 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop26 \n 20 \n loop2620: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,174,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2620 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop26 \n 35 \n loop2635: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,175,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2635 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop26 \n 50 \n loop2650: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,176,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2650 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop26 \n 65 \n loop2665: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,177,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2665 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop26 \n 80 \n loop2680: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,178,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2680 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop26 \n 95 \n loop2695: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,179,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2695 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop27 \n 10 \n loop2710: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,180,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2710 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop27 \n 25 \n loop2725: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,181,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2725 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop27 \n 40 \n loop2740: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,182,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2740 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop27 \n 55 \n loop2755: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,183,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2755 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop27 \n 70 \n loop2770: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,184,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2770 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop27 \n 85 \n loop2785: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,185,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2785 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop28 \n 00 \n loop2800: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,186,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2800 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop28 \n 15 \n loop2815: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,187,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2815 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop28 \n 30 \n loop2830: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,188,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2830 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop28 \n 45 \n loop2845: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,189,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2845 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop28 \n 60 \n loop2860: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,190,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2860 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop28 \n 75 \n loop2875: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,191,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2875 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop28 \n 90 \n loop2890: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,192,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2890 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop29 \n 05 \n loop2905: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,193,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2905 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop29 \n 20 \n loop2920: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,194,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2920 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop29 \n 35 \n loop2935: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,195,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2935 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop29 \n 50 \n loop2950: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,196,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2950 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop29 \n 65 \n loop2965: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,197,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2965 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop29 \n 80 \n loop2980: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,198,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2980 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop29 \n 95 \n loop2995: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,199,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop2995 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop30 \n 10 \n loop3010: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,200,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3010 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop30 \n 25 \n loop3025: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,201,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3025 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop30 \n 40 \n loop3040: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,202,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3040 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop30 \n 55 \n loop3055: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,203,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3055 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop30 \n 70 \n loop3070: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,204,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3070 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop30 \n 85 \n loop3085: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,205,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3085 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop31 \n 00 \n loop3100: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,206,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3100 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop31 \n 15 \n loop3115: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,207,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3115 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop31 \n 30 \n loop3130: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,208,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3130 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop31 \n 45 \n loop3145: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,209,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3145 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop31 \n 60 \n loop3160: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,210,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3160 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop31 \n 75 \n loop3175: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,211,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3175 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop31 \n 90 \n loop3190: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,212,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3190 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop32 \n 05 \n loop3205: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,213,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3205 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop32 \n 20 \n loop3220: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,214,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3220 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop32 \n 35 \n loop3235: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,215,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3235 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop32 \n 50 \n loop3250: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,216,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3250 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop32 \n 65 \n loop3265: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,217,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3265 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop32 \n 80 \n loop3280: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,218,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3280 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop32 \n 95 \n loop3295: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,219,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3295 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop33 \n 10 \n loop3310: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,220,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3310 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop33 \n 25 \n loop3325: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,221,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3325 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop33 \n 40 \n loop3340: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,222,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3340 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop33 \n 55 \n loop3355: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,223,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3355 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop33 \n 70 \n loop3370: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,224,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3370 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop33 \n 85 \n loop3385: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,225,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3385 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop34 \n 00 \n loop3400: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,226,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3400 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop34 \n 15 \n loop3415: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,227,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3415 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop34 \n 30 \n loop3430: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,228,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3430 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop34 \n 45 \n loop3445: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,229,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3445 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop34 \n 60 \n loop3460: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,230,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3460 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop34 \n 75 \n loop3475: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,231,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3475 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop34 \n 90 \n loop3490: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,232,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3490 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop35 \n 05 \n loop3505: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,233,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3505 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop35 \n 20 \n loop3520: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,234,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3520 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop35 \n 35 \n loop3535: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,235,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3535 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop35 \n 50 \n loop3550: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,236,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3550 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop35 \n 65 \n loop3565: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,237,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3565 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop35 \n 80 \n loop3580: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,238,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3580 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop35 \n 95 \n loop3595: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,239,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3595 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop36 \n 10 \n loop3610: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,240,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3610 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop36 \n 25 \n loop3625: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,241,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3625 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop36 \n 40 \n loop3640: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,242,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3640 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop36 \n 55 \n loop3655: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,243,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3655 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop36 \n 70 \n loop3670: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,244,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3670 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop36 \n 85 \n loop3685: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,245,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3685 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop37 \n 00 \n loop3700: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,246,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3700 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop37 \n 15 \n loop3715: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,247,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3715 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop37 \n 30 \n loop3730: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,248,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3730 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop37 \n 45 \n loop3745: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,249,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3745 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop37 \n 60 \n loop3760: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,250,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3760 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop37 \n 75 \n loop3775: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,251,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3775 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop37 \n 90 \n loop3790: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,252,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3790 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop38 \n 05 \n loop3805: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,253,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3805 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop38 \n 20 \n loop3820: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,254,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3820 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop38 \n 35 \n loop3835: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,255,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3835 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop38 \n 50 \n loop3850: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,256,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3850 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop38 \n 65 \n loop3865: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,257,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3865 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop38 \n 80 \n loop3880: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,258,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3880 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop38 \n 95 \n loop3895: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,259,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3895 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop39 \n 10 \n loop3910: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,260,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3910 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop39 \n 25 \n loop3925: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,261,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3925 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop39 \n 40 \n loop3940: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,262,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3940 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop39 \n 55 \n loop3955: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,263,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3955 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop39 \n 70 \n loop3970: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,264,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3970 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop39 \n 85 \n loop3985: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,265,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop3985 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop40 \n 00 \n loop4000: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,266,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4000 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop40 \n 15 \n loop4015: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,267,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4015 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop40 \n 30 \n loop4030: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,268,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4030 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop40 \n 45 \n loop4045: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,269,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4045 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop40 \n 60 \n loop4060: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,270,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4060 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop40 \n 75 \n loop4075: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,271,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4075 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop40 \n 90 \n loop4090: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,272,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4090 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop41 \n 05 \n loop4105: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,273,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4105 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop41 \n 20 \n loop4120: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,274,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4120 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop41 \n 35 \n loop4135: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,275,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4135 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop41 \n 50 \n loop4150: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,276,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4150 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop41 \n 65 \n loop4165: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,277,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4165 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop41 \n 80 \n loop4180: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,278,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4180 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop41 \n 95 \n loop4195: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,279,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4195 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop42 \n 10 \n loop4210: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,280,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4210 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop42 \n 25 \n loop4225: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,281,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4225 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop42 \n 40 \n loop4240: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,282,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4240 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop42 \n 55 \n loop4255: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,283,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4255 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop42 \n 70 \n loop4270: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,284,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4270 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop42 \n 85 \n loop4285: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,285,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4285 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop43 \n 00 \n loop4300: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,286,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4300 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop43 \n 15 \n loop4315: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,287,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4315 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop43 \n 30 \n loop4330: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,288,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4330 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop43 \n 45 \n loop4345: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,289,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4345 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop43 \n 60 \n loop4360: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,290,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4360 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop43 \n 75 \n loop4375: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,291,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4375 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop43 \n 90 \n loop4390: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,292,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4390 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop44 \n 05 \n loop4405: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,293,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4405 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop44 \n 20 \n loop4420: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,294,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4420 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop44 \n 35 \n loop4435: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,295,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4435 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop44 \n 50 \n loop4450: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,296,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4450 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop44 \n 65 \n loop4465: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,297,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4465 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop44 \n 80 \n loop4480: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,298,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4480 \n wait 65532 # auto generated wait (100000 ns) \n wait 34468 # auto generated wait (100000 ns) \n move 400,R1 # iterator for loop with label loop44 \n 95 \n loop4495: reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,299,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 108 # auto generated wait (108 ns) \n loop R1,@loop4495 \n wait 8 # auto generated wait (8 ns) \n loop R0,@start \n stop \n \n\n" } ], "tabbable": null, "tooltip": null } }, "62806b3fd9a94302967cd28a40d679e0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6311162567c14a4ea061175ecfaf0dc9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "63e3804817184645b8521329d8265477": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_371618f837a349d797e8c4b4399e6060", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6429656e311f4053b6239c5be0a55e64": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_b41d5a89e2084ebc93489fc5fb72d76c" ], "layout": "IPY_MODEL_f4b5df3b50f44a05a024dbe324baf5cd", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "656e502dac7a4606b45dbd37ac5343f5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "658a74d25cd44c278b3f54141174cb73": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "65dffe80142143ff8d4a7256fdd48cf7": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f54641c9934b4376a91499b06625070b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "65e8570a8a934df1a479d848a4a0a487": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7258cbbaf95a47b29237a5e3a0c9f1fa", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6642938d8d7c4df1acd3618b7f9ccebe": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6648371a7d7044bc985de52fcdef71dd": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_59634c9e8d73475c8fc399b4e8192c91", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "666ccbe17ff04a55820c9d401a4b00f7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [], "layout": "IPY_MODEL_cde36d571c444f8b93bc5ba27a269964", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null } }, "666e9484e1624173aede5f7e90679484": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1720deff15ee483293eef130acbac932", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6696afd974004b21afad9009749f37d5": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4c7a6408e6e7483d9df5c5010b730f10", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "66fa9f6774434b07ac666b42a0e1cc12": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a21f8c3fd2c740789d738a670e9d3b67", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "678303f654fa49d091cfb877fb579793": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "68417aae34cf403da809d0c7de97a547": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_610a1d2877ca4a918d705697650f96d8", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "694ad558023e4c75aa921daabb28f17a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6a04055f2c854f4f86431fccedf4ac53": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ddd07593e12347918af5f8c1c3183df9", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
acq_channel0
acq_indices[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,...
thresholded_trigger_countNone
\n
", "text/plain": "setting value\nacq_channel 0\nacq_indices [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,...\nthresholded_trigger_count None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "6b7c925cc4104eedafd72bc8996fd10b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6c3b827ff1f94f1ebfda01ca4ee3966b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_5f830d30f4fa49fbbf161e550a1bbde1" ], "layout": "IPY_MODEL_bfb823408be440caa77d0bc31054a8ae", "selected_index": 0, "tabbable": null, "titles": [ "cluster0" ], "tooltip": null } }, "6c63daa0be6a42659286be052472ed1f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_954133598b9e43feb1d0996de69e572b" ], "layout": "IPY_MODEL_54a60e47a6f7495aa3e2ffd287a09b15", "selected_index": 0, "tabbable": null, "titles": [ "seq0" ], "tooltip": null } }, "6c9a828ccc924f1f8210647dc658be33": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6ce3f5e8fb0342cfb4e82fee5c0960ec": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6efcae1c8f6b428fb521fbbf230a5d01": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6f34e63949294009bd292ec029f830eb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "6fa722286d394e3ba4dea0609c34e9ea": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_5dc2a643b9794800aeb7bf597a80105b" ], "layout": "IPY_MODEL_fcc2546eb48a46beac8c29420c0b855b", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "70cbdb5f64ab42c6b8f39bbeb0910c85": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f04786ed183741caaab4bfcc95bfee05", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "71b0cf77082d483eb4a666daa4c35be0": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "71c543eb48504f68afe88715b5c47093": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b8cae54b37bf47d7a602a728a11b33a8", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
interm_freq80000000.0
\n
", "text/plain": "setting value\ninterm_freq 80000000.0" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "724bbf56573a4df29510c6e61f28020c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7258cbbaf95a47b29237a5e3a0c9f1fa": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "729dab01b9dc498da0efdef1b29b5b86": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_461213cfdf7c4484b24be6f92d8776f6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "72f7ceed1cbf48bbaeddb03a05f97fe4": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "73d5fc59d5fa44b8af4421accd078613": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ccd14faaa02d42879f9236e7892a9db9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "752a9da3bf9d44f3b617566064b9c6c1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_5eab147493a9407c84ae27bae483b8a6" ], "layout": "IPY_MODEL_50ab4773dcfc4782b257011a2e8c7544", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "767b0dfbfa534e08af85b654cc32743b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_752a9da3bf9d44f3b617566064b9c6c1", "IPY_MODEL_23973a67949d43d7bb37311fd2bf1d1f" ], "layout": "IPY_MODEL_58ec30e52d0c453cb5d8596e37014246", "selected_index": 0, "tabbable": null, "titles": [ "acq_channels_metadata", "settings" ], "tooltip": null } }, "76ed15bdfcd246d994d3c5143eced010": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_196cd3db427b462d8bbc3a150eb9385f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "77294725f0274b06a739c52a141469a3": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_d9a44b3806684929ae471329f8e9679f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7745cc920b4f4582a768dc33f903526e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ee232d70860841658d6db4df5e1dd9d6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "775cc32daea843d4998b53dec6165103": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "77a6e180d8ab447ebf82b782e380d322": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7827bf1ce4ca4e95aefa39b1b15fd390": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_92cb61b8e24e49b5a2643e5e3295051d" ], "layout": "IPY_MODEL_6c9a828ccc924f1f8210647dc658be33", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "78a3c2edd7be4146bdb16dca434e2a83": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_967078f6530b4de389448de1dbde9ba9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "78b807a1a2c3493aa3d8b89ab1bbd6da": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "78e6557947f74ea9985ae075f8382a44": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "79883013d93b47fba8368af282a3f836": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f74bfd4a48254e2a92d72d2123aba08e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7a119f37be50408aa92becd5bd2478ea": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_694ad558023e4c75aa921daabb28f17a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7accfe9900dc45caa75fdecb7f87022c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1885e14e900b445bab486d9f73552d1c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7b11413430c64815affbcfb5d0600af8": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7cf0008b0b25479fb99e7d34ec21df74": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b3d0cdd6a6cf44279fdfd40e5ec0fd44", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7d424999510a4a4c86ddaf001a05a3b2": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_14fe65f4b9c64a8b81d6f1a0447e69d3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7d91ce96df7e48efacfd60ab4cb838f9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "7df66205f7894e9fa108649eb356f72f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_844825c36fd94ec081a709c22f6c139a", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
q0:mw-q0.0110
q1:mw-q1.0110
q0:res-q0.ro60
q1:res-q1.ro60
\n
", "text/plain": "setting value\nq0:mw-q0.01 10\nq1:mw-q1.01 10\nq0:res-q0.ro 60\nq1:res-q1.ro 60" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "7e73cfadfe1540fca877f3210a7121f7": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1956a77623e942fa863f09caa52e4805", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8165f4a87e984f8e96982dcc7a2f524b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_478d8ff2c6994b5e9bc0697e95909e3d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "827b2431ee704e1e88ac95e52cc81cc2": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_f21743c7d33848a998ad5fbb2cba01f4" ], "layout": "IPY_MODEL_ceb68e142f524d60b0aaf12687086335", "selected_index": 0, "tabbable": null, "titles": [ "program" ], "tooltip": null } }, "83400d51db4a4de7a04e65b685c7da86": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8355deb3acfd474e8d20d56bc4d78b9c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_1e8945c09f894444a94f0f0ba5488a03" ], "layout": "IPY_MODEL_678303f654fa49d091cfb877fb579793", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "83a87fbab400403a814bfb98d8b2f7aa": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_8ded12fdebf144f5ac1e2872f21f5bff", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "841e71d8e9584ae786e911467536e8e9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_85bdfbcbd28f405db0a90ea133da3174" ], "layout": "IPY_MODEL_d5e6e28e8f6b43b19ba2f545bdaa3c00", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "844825c36fd94ec081a709c22f6c139a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "85bdfbcbd28f405db0a90ea133da3174": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e6fcd886258347e98f9b84d211806c08", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
offset_ch0_path_INone
offset_ch0_path_QNone
offset_ch1_path_INone
offset_ch1_path_QNone
in0_gainNone
in1_gainNone
distortion_corrections[{'bt': {'coeffs': None, 'config': 'QbloxFilte...
out0_lo_freq_cal_type_defaultLoCalEnum.ON_LO_INTERM_FREQ_CHANGE
out1_lo_freq_cal_type_defaultLoCalEnum.OFF
lo0_freq7500000000.0
lo1_freqNone
out0_att60
out1_attNone
in0_attNone
\n
", "text/plain": "setting value\noffset_ch0_path_I None\noffset_ch0_path_Q None\noffset_ch1_path_I None\noffset_ch1_path_Q None\nin0_gain None\nin1_gain None\ndistortion_corrections [{'bt': {'coeffs': None, 'config': 'QbloxFilte...\nout0_lo_freq_cal_type_default LoCalEnum.ON_LO_INTERM_FREQ_CHANGE\nout1_lo_freq_cal_type_default LoCalEnum.OFF\nlo0_freq 7500000000.0\nlo1_freq None\nout0_att 60\nout1_att None\nin0_att None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "86093324b9a646649a56d45b29ea064f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "875d696d07584b22b51487641173a0de": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_bbceb9ec08e1444a91f77f1717b0d9e4", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "87e59e8de0514ba8ad322b9d29c1795d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "882681d1fb7e496ca307dce031b704d3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8847179f1fa649d0a0582f128135e11b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_48f646e1c94341b0ad3f7d1002add8f9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8870823b4b304dd4baee66bc7c947c7e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_af638bd5afe042afbec99f0ee10f363e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "88d5fe198ee14caabb77d8856f7b51a5": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_2e25d1b85eed496eb8c12100dacbfea6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "89afa80d9ade4a4ab35c3084d955bacc": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a188bb077ac54d209c1943384ab49220", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "89d78fef61244583a1fdec4897bae64d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_cec4ff0adebb46ac989cd86b93f330fb", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8ae1085fd10848f98d231050d2ad5de5": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b834a38af8f14673b5cfda124f13f606", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8c32a52ad61a48aab96f9bffb8a4b9a5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8cfb9e9bf74f4893bd218b3c70b49b28": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c080042e871f4946881d9be0d95d9f61", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8d1803ba22c8456fb09fb64cd81aef53": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8d5cbd43f03c4abeb07a0d322158d50a": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1d12764ecbac4c5f8d5cb323e935e9a9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8ded12fdebf144f5ac1e2872f21f5bff": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "8df7d79d342b45d78bf3fedb18b366a6": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_000a0f4d81bb4bd390c469458a56026d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8ee0f308c06f48799bcb7b1b4b599c69": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "902514bf447a45af93f255d9ed9c42ff": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6efcae1c8f6b428fb521fbbf230a5d01", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "90f7b8c4f8cb4604ad675daf8f65f938": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "91f28d3f0afd49eaafade40a95842fae": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4e9004f707504925b4b8524da9da56cb", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "92cb61b8e24e49b5a2643e5e3295051d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b93170e1cf484472922c185aa58030b2", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "9322dba54214458bacc95386503a174a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "94b473210c6945748c163faf6120e32d": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "954133598b9e43feb1d0996de69e572b": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_827b2431ee704e1e88ac95e52cc81cc2", "IPY_MODEL_571c46f5a31c40a2a51673eeec11456a" ], "layout": "IPY_MODEL_eb818b3160d64682bd5e6da676021331", "selected_index": 0, "tabbable": null, "titles": [ "sequence", "settings" ], "tooltip": null } }, "9546118c665d4dbcb0f76a12fdba9359": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [], "layout": "IPY_MODEL_a1858a5894864b14a531593cee2cc9ac", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null } }, "9597cf37d0444ed997a79c26844068dd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "95b8f10dddff4f67b8ef02a923cecfd3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "964cd6a272aa4565b0f7fb06fcb86440": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_dced5a51c88148edb8bf754dd55aa124", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeQRM_RF
\n
", "text/plain": "setting value\ninstrument_type QRM_RF" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "967078f6530b4de389448de1dbde9ba9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "96db10468f3a4a5381ab4144585c4380": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f1a749c32fb648dc8a187f684dee7554", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "970f6c82d1c549ed9b39bb52d20050b5": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_14551aaa42d3467f9783a4e275ca389d", "IPY_MODEL_20fb246078a8487099e8dda60e28900b", "IPY_MODEL_8355deb3acfd474e8d20d56bc4d78b9c", "IPY_MODEL_40bf429cecba4be9b278a17eccc13f94" ], "layout": "IPY_MODEL_0d09544e19f34038b99927d3f1747978", "selected_index": 0, "tabbable": null, "titles": [ "hardware_description", "hardware_options", "connectivity", "other values" ], "tooltip": null } }, "97af8df302e84e97b81e6b70bfb85b9e": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_0ba4f5fd01bb4029b1c93a95e0856d52" ], "layout": "IPY_MODEL_3e50a248c4134b639b8100d00184d85a", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "98688d1ccb074945bb581b211be99403": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9ac7b51a92174be49425798862505dea": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b2325ac2ca994cd0b384b4015d823a97", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9b19c2c7a7924ab0820a91ff10e732cf": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9b3a6edbbc51423b91890a2f2ea84078": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9c53bd214f054b8db47295ed1677d3a1": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_03cfece57f144f1cac99fc2ad1127d1b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9daf2f45edad460491d685317a8a62f7": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f8e4804931be4a1eb2295627c40755e9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9dbd69c4d2454dd5a037a82cb8cbab71": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "9eab28440fb14dbea465ac142a08a04d": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_bf76f35b0c37423385b3a1697fdcbddd", "IPY_MODEL_58056ad8c99f4304880136009d2d5a70", "IPY_MODEL_841e71d8e9584ae786e911467536e8e9", "IPY_MODEL_47e45dd2ca3a481f902bc9e965874cd2" ], "layout": "IPY_MODEL_ca4440648d9a45c9873d5132050c87fc", "selected_index": 0, "tabbable": null, "titles": [ "acq_metadata", "sequencers", "settings", "other values" ], "tooltip": null } }, "9eaf9b5b74cb4342867834eefca68609": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_15ae6178cd6c46af9ef3de31a8fa4e61", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9f5a8e8bd4f44579a5bcaa3f010cfae6": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_cd7932f26f714d2b94151c0d3cb55b95", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a11198667f6344f2a94d8575f2412f97": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_c8b58c93c94448d587691a5b5bddb56f", "IPY_MODEL_4845226c797c4a53bed426df7bcc4cc8", "IPY_MODEL_61f3a617ba3f41598f115437f29b8216" ], "layout": "IPY_MODEL_6ce3f5e8fb0342cfb4e82fee5c0960ec", "selected_index": 0, "tabbable": null, "titles": [ "waveforms", "acquisitions", "program" ], "tooltip": null } }, "a1858a5894864b14a531593cee2cc9ac": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a188bb077ac54d209c1943384ab49220": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a21f8c3fd2c740789d738a670e9d3b67": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a408150ffcf1490eb705cbade5f3c594": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4c2be46f994a4de19df944be97e7a51d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a44267e8b0f34fcc9621233a65571220": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a4b64edbf2a64c029e24aafeb3ba2242": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a54813adcb0242e992c72d487af3581e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a75b25e2387047f5830d3cf93aad1192": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_58e649c2049f4965bed4614154b441c7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a7b4eb690c0143c1b6b3923ba5223adb": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_656e502dac7a4606b45dbd37ac5343f5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a85812bd7f2c45dab8f36c5bc31d8eff": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_7b11413430c64815affbcfb5d0600af8", "placeholder": "​", "style": "IPY_MODEL_da5986c3c7c14336b0db0dd91b625435", "tabbable": null, "tooltip": null, "value": " [ elapsed time: 00:03 | time left: 00:00 ]  last batch size: 300" } }, "a89eed2cc5534ec1affe40f272a61a8e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "a8f2ab6a059d4de0a919ca66d798069a": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_ab17ec48d06447bfbef2417afa70663e", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
reference_sourceinternal
sync_on_external_triggerNone
\n
", "text/plain": "setting value\nreference_source internal\nsync_on_external_trigger None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "a911c86f7dfe4fbea9067b338c917986": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_af370c0ebaf842fe8d14b6682e1d04c8", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a9364a17361e4a2ab2da1776638bb706": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "aa5e373492bb43a98e4137f1623a917f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ab17ec48d06447bfbef2417afa70663e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "abbb0a7b6d6747c78a055e7050b434f3": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_486b1b7abca14c11adbde6c674235b34", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ac092c61ce0f43f59a450858ac318d2b": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c689105f478f4897baf79415ef5c4444", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ac4f4bc6d6c54759ac766e9e5a1cbeb9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_62806b3fd9a94302967cd28a40d679e0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ad2bf912ed4b473ead6f4b4259f1c921": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5d9b9f314523419cb9b429956baa6ee9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "af370c0ebaf842fe8d14b6682e1d04c8": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "af638bd5afe042afbec99f0ee10f363e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "afb964b0813a457a8d13a56c48940ea7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "afee8ba4a5fa43428d999bed06c4bfcf": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_0dec38ebd2194d7282a2a24cb8c50307", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b10fe16415a64d089a965b96c813331f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6311162567c14a4ea061175ecfaf0dc9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b15631f0062748659097c3a4c2f2d048": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b2195230b16a458aa9a416ec10f15b84": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_10f050cb404e4cf699b752421b1d2620", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b2325ac2ca994cd0b384b4015d823a97": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b265f4b1ac7c46b481148417dc17999f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c34642f4a80a40c489c7d05449b50186", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b276a35c3b6c45dba6aa748ef0a447ae": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [], "layout": "IPY_MODEL_ef321a407efa490bacb1b96718434d20", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null } }, "b2fc28d0bb56455c92d53916b18f2e78": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_352a05b86b354dc299507f685a13bc34", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b3d0cdd6a6cf44279fdfd40e5ec0fd44": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b41d5a89e2084ebc93489fc5fb72d76c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9b19c2c7a7924ab0820a91ff10e732cf", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeQCM
\n
", "text/plain": "setting value\ninstrument_type QCM" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "b4290dac1ff547a39f2e09ef9f85a062": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b456a19bf25c43e78aa63213db3289ef": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b4290dac1ff547a39f2e09ef9f85a062", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b4a603ca5fe04b25acd7ce450caff116": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b60290add64640f69d6aac88a68bfc26": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f7e923d781c04e809e62cc5bebcd65f5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b6962e51f0a24150bf9c95d3de449f18": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_49a27c7c4dce44168d21e1e57288eb74", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b71e593c115b45f786b20e6ac626fc8f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b7a2ca52b26e4773a88f27ad2b101a83": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_241b5458047149fe97a004680ade6ca3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b8105b181710417f8563f23f28f59e60": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b834a38af8f14673b5cfda124f13f606": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b8cae54b37bf47d7a602a728a11b33a8": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b93170e1cf484472922c185aa58030b2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "b98eabc85a0e450dbc1469393264e71c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_2f95ff6bb6cc469db2ba0f03294e3da7", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
lo_freq7.500000e+09
\n
", "text/plain": "setting value\nlo_freq 7.500000e+09" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "bab16bf1e78c4c1daabffea790a12677": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_0ff00d5159a3445aacb6543f7ce2b3fe" ], "layout": "IPY_MODEL_8ee0f308c06f48799bcb7b1b4b599c69", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "bae3ed57b9a84a78ae393dd9229cfadc": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "baea3774e6a446228bfca7ed5fa5fc13": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_262494929d01412db02aba839688a61a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "bbceb9ec08e1444a91f77f1717b0d9e4": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bc5881e1487f4d539484f02791bacecd": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_50afa75a888345d1bd1108256d73d261", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "bce2cc81e63a46a8970b075e05d0cafa": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e4057ca983ce463d9d6c279e34a839a5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "bce5a5a81aa146838353784064b3c9fb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bd2466bea26d4604baa6738ecb479d83": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5de5068938894ea394756732fb586e9e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "bd373b77af04497f8c54b31e6c1e18d3": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bf76f35b0c37423385b3a1697fdcbddd": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_767b0dfbfa534e08af85b654cc32743b" ], "layout": "IPY_MODEL_0575db68d7f040d2ad4c29cffea08876", "selected_index": 0, "tabbable": null, "titles": [ "seq0" ], "tooltip": null } }, "bf7a0c4cf8cf4a72a19effe5541ce12a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bfb823408be440caa77d0bc31054a8ae": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c0167a76d1a4403d919847b896eef489": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_aa5e373492bb43a98e4137f1623a917f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c02fc66dc31f49c3b52fe8d2414d4a15": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c080042e871f4946881d9be0d95d9f61": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c34642f4a80a40c489c7d05449b50186": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c375a87806c04081aba23b26c78e1a1e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c3dc0fe4c13b43088b953fead040e5f5": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_658a74d25cd44c278b3f54141174cb73", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c5b9b5fc949a4a03b5a0ce91bb8ec46f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c5c19d5f7ce943d893ae581da22a9b96": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c689105f478f4897baf79415ef5c4444": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c6ef7cb931154d4c81a5756e30d319fe": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_a8f2ab6a059d4de0a919ca66d798069a" ], "layout": "IPY_MODEL_0e71c764d193474d8a897fce7df5b394", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "c708cb5ef31847d2a77924993585326e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "c8b58c93c94448d587691a5b5bddb56f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_110e496ba9ee42a8a97541882fe24462" ], "layout": "IPY_MODEL_dbc9d3caad5240c494facb95aea54cf2", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "c9765ce52eff43be8c0490de33517ec5": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b15631f0062748659097c3a4c2f2d048", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c9d63c2d601e4410afd547ea3aee6679": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1120d30c52884219a46796af2b729d9f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ca4440648d9a45c9873d5132050c87fc": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ca5e4747942644ebb40e545c414f33e8": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_fe18e0036bc247a485e46aae4a7e02d2", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ccc6cc7b7a584a31a68577f678e5c4b0": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ccd14faaa02d42879f9236e7892a9db9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cd7932f26f714d2b94151c0d3cb55b95": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cd99f8b593584fb89f65f9f8a34a9596": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cde36d571c444f8b93bc5ba27a269964": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ce445d44c90d4913af062ea1461c6833": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c375a87806c04081aba23b26c78e1a1e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ceb68e142f524d60b0aaf12687086335": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cec4ff0adebb46ac989cd86b93f330fb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "cf5520dc37c64c4092440bc3e68c739e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9dbd69c4d2454dd5a037a82cb8cbab71", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d04b15d94a7849b2a6cf465c4f50b28f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d0ea8018db1540bc9e132f8370138395": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_95b8f10dddff4f67b8ef02a923cecfd3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d0f28d9a73ee4062a96cf544f7597230": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_f0c89e21bf39452698353d998cf31a34", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d11d8509efed493ca51b9727b589e121": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3fcdcd007c8b464c987a9b77725c9f36", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d19d1ec19cf34a538c8a46c429ffd255": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_f48f81bf84464f23bc95acf683d09ccb" ], "layout": "IPY_MODEL_d478b5c5cda64811bc8b95fcb5790321", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "d333f5e71dc34f5ca1daeac824199090": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_7d91ce96df7e48efacfd60ab4cb838f9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d348c66537224b5a831bca99eabb3740": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d36a9b38a20249e091a009298c4a9e70": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b71e593c115b45f786b20e6ac626fc8f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d37d75580c51474897f35a524a2f48e6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d3c3b56a8c2e42b4b23784ee5dc4190e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_5c7e6bdcc93e49d19415f97e5ba89c11", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d3caef54248149d4bafa4f14f6e39f3a": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d478b5c5cda64811bc8b95fcb5790321": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d5e6e28e8f6b43b19ba2f545bdaa3c00": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d696fb2fdf604b929673b5e33361c28f": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_71c543eb48504f68afe88715b5c47093" ], "layout": "IPY_MODEL_724bbf56573a4df29510c6e61f28020c", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "d7cf2928fbc94ebbbd96fb3e0e333897": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_7df66205f7894e9fa108649eb356f72f" ], "layout": "IPY_MODEL_3b0dcd1244e541399a99c0d222254fd3", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "d84b483b985d42129b0c0c6890732d0e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c5c19d5f7ce943d893ae581da22a9b96", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d96c0c6ab4d94588808134bbaaf1e393": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4ff6cc06997e4fcc9b6aba6fc5a09ece", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d9a44b3806684929ae471329f8e9679f": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "d9bd21ffde374f0c91a49b7aab9cc5b7": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "da5986c3c7c14336b0db0dd91b625435": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "dac34ed5bf6f438f8025aacc2618ff2a": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9b3a6edbbc51423b91890a2f2ea84078", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "dbc9d3caad5240c494facb95aea54cf2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dc6da22de7f74d9abf90406ef0684cdd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dcebaf8dca4c4011aac01e5ba1256297": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_c5b9b5fc949a4a03b5a0ce91bb8ec46f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "dced5a51c88148edb8bf754dd55aa124": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dd3c017bcf874322bbae8ba7e079e11c": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dd563549eb354f9492a5f477967bd281": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ddbace0fe0134154a89dd916d31dac68": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_028f2fa7eec847099373483f6e68674d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ddd07593e12347918af5f8c1c3183df9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "de0dd6a5cec347f9a7f3a5cf99b93d50": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "de64e850850f48f2a306c9e9a8849c14": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "dea28758133f43e4ae9a49edac42ea60": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_9322dba54214458bacc95386503a174a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "df0b4fce732e461daa71e72fcdc4ec79": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e089f2caf69c4e9cac60f37cf29315f5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e1a6ab14db88467c906b06ce0df418f3": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_fd39cf15cfdb442f880b127f0c508c25", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e2b2a948104a43989215010c2243f62e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e2f731ab8df44440bfc7082b00392004": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e4057ca983ce463d9d6c279e34a839a5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e462bf013b07490ca3d062b1bb5f610f": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_fdff4ba67db540cfbb98f09fedb77786", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e48bcd70e25842909083fd7c9b6cfac0": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a44267e8b0f34fcc9621233a65571220", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e5459720f23849e098ebb72603d460b9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e65358cd09e646cb8bf7898ec258a8b1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_90f7b8c4f8cb4604ad675daf8f65f938", "placeholder": "​", "style": "IPY_MODEL_fca723f7c97a46a3a23244d2be1282dc", "tabbable": null, "tooltip": null, "value": "Completed: 100%" } }, "e6b6d8424bc3454a8ec7d91697f3c234": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e6fcd886258347e98f9b84d211806c08": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e7059cee078c488db11222dca26e913a": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_bf7a0c4cf8cf4a72a19effe5541ce12a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e931b7235c5047ad9ccd7d995fb18a44": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "eb818b3160d64682bd5e6da676021331": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ec49d363dc47439ca3231766b4b19bf7": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_e65358cd09e646cb8bf7898ec258a8b1", "IPY_MODEL_f3731b468bd9408a96054efdfd8192b9", "IPY_MODEL_a85812bd7f2c45dab8f36c5bc31d8eff" ], "layout": "IPY_MODEL_bd373b77af04497f8c54b31e6c1e18d3", "tabbable": null, "tooltip": null } }, "ec6f45332cb44a939e9605bebc57e2fa": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_451f2541e3644fc4ab4cd5551468764a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ec9afaa9a3b94e05831fc6319eaa97ec": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4968076e71d94e8e98afd0abbeb3b474", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ee232d70860841658d6db4df5e1dd9d6": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ee705a688e1a4e87be0f0a7af37f0ec9": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_d9bd21ffde374f0c91a49b7aab9cc5b7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ee7337ab3a59458e9009347e2e59b65d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_b8105b181710417f8563f23f28f59e60", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "eea7308634c544d9b36c10c042f43089": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_134e3b16d44c42ac90b79c7471950456", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "eefaf7ea1fe44b439bdae06af4a08cf1": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ef321a407efa490bacb1b96718434d20": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "ef47cd4e02b94069919d8c2d4c8812cf": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_48c07c884bd345b8bd2d812e83e5de87", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f03cbd85fe6c4289ae936f7e5c0340bb": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f04786ed183741caaab4bfcc95bfee05": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f0b7d08f0fdd4e83bda200d22ba26af5": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_1d80cef7487945e2ae0bf74d6c0212db", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f0c89e21bf39452698353d998cf31a34": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f0fe253020c042f7ba22a8249ab5a08c": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "TabModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "TabModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "TabView", "box_style": "", "children": [ "IPY_MODEL_23c375658b6f4b6eaf7ad5842fed1efc" ], "layout": "IPY_MODEL_2c1413c5e815419ea58dfa606c39de96", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "f1a749c32fb648dc8a187f684dee7554": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f21743c7d33848a998ad5fbb2cba01f4": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_3483733c3f394a96bcc52e67daf8a376", "msg_id": "", "outputs": [ { "name": "stdout", "output_type": "stream", "text": " \n set_mrk 1 # set markers to 1 (init) \n wait_sync 4 \n upd_param 4 \n wait 4 # latency correction of 4 + 0 ns \n move 1,R0 # iterator for loop with label start \n start: reset_ph \n upd_param 4 \n set_awg_offs 1638,0 # setting offset for VoltageOffset \n upd_param 4 \n wait 65532 # auto generated wait (99996 ns) \n wait 34464 # auto generated wait (99996 ns) \n set_freq 240000000 # set nco frequency to 6.000000e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n wait14: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait14 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 240535117 # set nco frequency to 6.013378e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait21 \n wait21: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait21 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 241070234 # set nco frequency to 6.026756e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait28 \n wait28: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait28 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 241605351 # set nco frequency to 6.040134e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait35 \n wait35: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait35 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 242140468 # set nco frequency to 6.053512e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait42 \n wait42: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait42 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 242675585 # set nco frequency to 6.066890e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait49 \n wait49: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait49 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 243210702 # set nco frequency to 6.080268e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait56 \n wait56: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait56 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 243745819 # set nco frequency to 6.093645e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait63 \n wait63: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait63 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 244280936 # set nco frequency to 6.107023e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait70 \n wait70: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait70 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 244816054 # set nco frequency to 6.120401e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait77 \n wait77: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait77 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 245351171 # set nco frequency to 6.133779e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait84 \n wait84: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait84 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 245886288 # set nco frequency to 6.147157e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait91 \n wait91: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait91 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 246421405 # set nco frequency to 6.160535e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait98 \n wait98: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait98 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 246956522 # set nco frequency to 6.173913e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 5 \n wait105: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait105 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 247491639 # set nco frequency to 6.187291e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 2 \n wait112: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait112 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 248026756 # set nco frequency to 6.200669e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 9 \n wait119: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait119 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 248561873 # set nco frequency to 6.214047e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 6 \n wait126: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait126 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 249096990 # set nco frequency to 6.227425e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 3 \n wait133: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait133 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 249632107 # set nco frequency to 6.240803e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 0 \n wait140: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait140 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 250167224 # set nco frequency to 6.254181e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 7 \n wait147: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait147 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 250702341 # set nco frequency to 6.267559e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 4 \n wait154: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait154 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 251237458 # set nco frequency to 6.280936e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 1 \n wait161: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait161 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 251772575 # set nco frequency to 6.294314e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 8 \n wait168: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait168 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 252307692 # set nco frequency to 6.307692e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 5 \n wait175: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait175 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 252842809 # set nco frequency to 6.321070e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 2 \n wait182: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait182 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 253377926 # set nco frequency to 6.334448e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 9 \n wait189: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait189 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 253913043 # set nco frequency to 6.347826e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 6 \n wait196: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait196 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 254448161 # set nco frequency to 6.361204e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 3 \n wait203: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait203 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 254983278 # set nco frequency to 6.374582e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait21 \n 0 \n wait210: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait210 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 255518395 # set nco frequency to 6.387960e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait21 \n 7 \n wait217: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait217 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 256053512 # set nco frequency to 6.401338e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait22 \n 4 \n wait224: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait224 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 256588629 # set nco frequency to 6.414716e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait23 \n 1 \n wait231: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait231 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 257123746 # set nco frequency to 6.428094e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait23 \n 8 \n wait238: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait238 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 257658863 # set nco frequency to 6.441472e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait24 \n 5 \n wait245: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait245 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 258193980 # set nco frequency to 6.454849e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait25 \n 2 \n wait252: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait252 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 258729097 # set nco frequency to 6.468227e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait25 \n 9 \n wait259: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait259 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 259264214 # set nco frequency to 6.481605e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait26 \n 6 \n wait266: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait266 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 259799331 # set nco frequency to 6.494983e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait27 \n 3 \n wait273: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait273 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 260334448 # set nco frequency to 6.508361e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait28 \n 0 \n wait280: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait280 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 260869565 # set nco frequency to 6.521739e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait28 \n 7 \n wait287: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait287 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 261404682 # set nco frequency to 6.535117e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait29 \n 4 \n wait294: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait294 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 261939799 # set nco frequency to 6.548495e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait30 \n 1 \n wait301: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait301 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 262474916 # set nco frequency to 6.561873e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait30 \n 8 \n wait308: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait308 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 263010033 # set nco frequency to 6.575251e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait31 \n 5 \n wait315: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait315 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 263545151 # set nco frequency to 6.588629e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait32 \n 2 \n wait322: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait322 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 264080268 # set nco frequency to 6.602007e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait32 \n 9 \n wait329: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait329 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 264615385 # set nco frequency to 6.615385e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait33 \n 6 \n wait336: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait336 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 265150502 # set nco frequency to 6.628763e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait34 \n 3 \n wait343: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait343 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 265685619 # set nco frequency to 6.642140e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait35 \n 0 \n wait350: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait350 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 266220736 # set nco frequency to 6.655518e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait35 \n 7 \n wait357: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait357 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 266755853 # set nco frequency to 6.668896e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait36 \n 4 \n wait364: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait364 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 267290970 # set nco frequency to 6.682274e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait37 \n 1 \n wait371: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait371 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 267826087 # set nco frequency to 6.695652e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait37 \n 8 \n wait378: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait378 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 268361204 # set nco frequency to 6.709030e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait38 \n 5 \n wait385: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait385 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 268896321 # set nco frequency to 6.722408e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait39 \n 2 \n wait392: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait392 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 269431438 # set nco frequency to 6.735786e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait39 \n 9 \n wait399: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait399 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 269966555 # set nco frequency to 6.749164e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait40 \n 6 \n wait406: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait406 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 270501672 # set nco frequency to 6.762542e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait41 \n 3 \n wait413: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait413 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 271036789 # set nco frequency to 6.775920e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait42 \n 0 \n wait420: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait420 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 271571906 # set nco frequency to 6.789298e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait42 \n 7 \n wait427: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait427 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 272107023 # set nco frequency to 6.802676e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait43 \n 4 \n wait434: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait434 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 272642140 # set nco frequency to 6.816054e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait44 \n 1 \n wait441: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait441 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 273177258 # set nco frequency to 6.829431e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait44 \n 8 \n wait448: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait448 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 273712375 # set nco frequency to 6.842809e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait45 \n 5 \n wait455: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait455 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 274247492 # set nco frequency to 6.856187e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait46 \n 2 \n wait462: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait462 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 274782609 # set nco frequency to 6.869565e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait46 \n 9 \n wait469: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait469 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 275317726 # set nco frequency to 6.882943e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait47 \n 6 \n wait476: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait476 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 275852843 # set nco frequency to 6.896321e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait48 \n 3 \n wait483: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait483 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 276387960 # set nco frequency to 6.909699e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait49 \n 0 \n wait490: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait490 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 276923077 # set nco frequency to 6.923077e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait49 \n 7 \n wait497: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait497 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 277458194 # set nco frequency to 6.936455e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait50 \n 4 \n wait504: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait504 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 277993311 # set nco frequency to 6.949833e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait51 \n 1 \n wait511: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait511 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 278528428 # set nco frequency to 6.963211e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait51 \n 8 \n wait518: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait518 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 279063545 # set nco frequency to 6.976589e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait52 \n 5 \n wait525: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait525 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 279598662 # set nco frequency to 6.989967e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait53 \n 2 \n wait532: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait532 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 280133779 # set nco frequency to 7.003344e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait53 \n 9 \n wait539: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait539 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 280668896 # set nco frequency to 7.016722e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait54 \n 6 \n wait546: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait546 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 281204013 # set nco frequency to 7.030100e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait55 \n 3 \n wait553: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait553 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 281739130 # set nco frequency to 7.043478e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait56 \n 0 \n wait560: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait560 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 282274247 # set nco frequency to 7.056856e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait56 \n 7 \n wait567: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait567 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 282809365 # set nco frequency to 7.070234e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait57 \n 4 \n wait574: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait574 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 283344482 # set nco frequency to 7.083612e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait58 \n 1 \n wait581: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait581 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 283879599 # set nco frequency to 7.096990e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait58 \n 8 \n wait588: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait588 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 284414716 # set nco frequency to 7.110368e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait59 \n 5 \n wait595: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait595 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 284949833 # set nco frequency to 7.123746e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait60 \n 2 \n wait602: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait602 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 285484950 # set nco frequency to 7.137124e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait60 \n 9 \n wait609: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait609 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 286020067 # set nco frequency to 7.150502e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait61 \n 6 \n wait616: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait616 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 286555184 # set nco frequency to 7.163880e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait62 \n 3 \n wait623: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait623 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 287090301 # set nco frequency to 7.177258e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait63 \n 0 \n wait630: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait630 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 287625418 # set nco frequency to 7.190635e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait63 \n 7 \n wait637: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait637 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 288160535 # set nco frequency to 7.204013e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait64 \n 4 \n wait644: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait644 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 288695652 # set nco frequency to 7.217391e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait65 \n 1 \n wait651: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait651 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 289230769 # set nco frequency to 7.230769e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait65 \n 8 \n wait658: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait658 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 289765886 # set nco frequency to 7.244147e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait66 \n 5 \n wait665: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait665 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 290301003 # set nco frequency to 7.257525e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait67 \n 2 \n wait672: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait672 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 290836120 # set nco frequency to 7.270903e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait67 \n 9 \n wait679: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait679 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 291371237 # set nco frequency to 7.284281e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait68 \n 6 \n wait686: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait686 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 291906355 # set nco frequency to 7.297659e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait69 \n 3 \n wait693: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait693 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 292441472 # set nco frequency to 7.311037e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait70 \n 0 \n wait700: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait700 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 292976589 # set nco frequency to 7.324415e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait70 \n 7 \n wait707: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait707 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 293511706 # set nco frequency to 7.337793e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait71 \n 4 \n wait714: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait714 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 294046823 # set nco frequency to 7.351171e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait72 \n 1 \n wait721: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait721 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 294581940 # set nco frequency to 7.364548e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait72 \n 8 \n wait728: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait728 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 295117057 # set nco frequency to 7.377926e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait73 \n 5 \n wait735: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait735 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 295652174 # set nco frequency to 7.391304e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait74 \n 2 \n wait742: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait742 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 296187291 # set nco frequency to 7.404682e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait74 \n 9 \n wait749: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait749 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 296722408 # set nco frequency to 7.418060e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait75 \n 6 \n wait756: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait756 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 297257525 # set nco frequency to 7.431438e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait76 \n 3 \n wait763: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait763 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 297792642 # set nco frequency to 7.444816e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait77 \n 0 \n wait770: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait770 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 298327759 # set nco frequency to 7.458194e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait77 \n 7 \n wait777: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait777 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 298862876 # set nco frequency to 7.471572e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait78 \n 4 \n wait784: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait784 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 299397993 # set nco frequency to 7.484950e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait79 \n 1 \n wait791: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait791 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 299933110 # set nco frequency to 7.498328e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait79 \n 8 \n wait798: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait798 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 300468227 # set nco frequency to 7.511706e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait80 \n 5 \n wait805: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait805 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 301003344 # set nco frequency to 7.525084e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait81 \n 2 \n wait812: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait812 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 301538462 # set nco frequency to 7.538462e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait81 \n 9 \n wait819: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait819 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 302073579 # set nco frequency to 7.551839e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait82 \n 6 \n wait826: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait826 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 302608696 # set nco frequency to 7.565217e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait83 \n 3 \n wait833: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait833 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 303143813 # set nco frequency to 7.578595e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait84 \n 0 \n wait840: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait840 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 303678930 # set nco frequency to 7.591973e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait84 \n 7 \n wait847: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait847 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 304214047 # set nco frequency to 7.605351e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait85 \n 4 \n wait854: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait854 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 304749164 # set nco frequency to 7.618729e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait86 \n 1 \n wait861: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait861 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 305284281 # set nco frequency to 7.632107e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait86 \n 8 \n wait868: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait868 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 305819398 # set nco frequency to 7.645485e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait87 \n 5 \n wait875: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait875 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 306354515 # set nco frequency to 7.658863e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait88 \n 2 \n wait882: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait882 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 306889632 # set nco frequency to 7.672241e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait88 \n 9 \n wait889: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait889 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 307424749 # set nco frequency to 7.685619e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait89 \n 6 \n wait896: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait896 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 307959866 # set nco frequency to 7.698997e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait90 \n 3 \n wait903: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait903 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 308494983 # set nco frequency to 7.712375e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait91 \n 0 \n wait910: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait910 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 309030100 # set nco frequency to 7.725753e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait91 \n 7 \n wait917: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait917 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 309565217 # set nco frequency to 7.739130e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait92 \n 4 \n wait924: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait924 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 310100334 # set nco frequency to 7.752508e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait93 \n 1 \n wait931: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait931 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 310635452 # set nco frequency to 7.765886e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait93 \n 8 \n wait938: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait938 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 311170569 # set nco frequency to 7.779264e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait94 \n 5 \n wait945: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait945 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 311705686 # set nco frequency to 7.792642e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait95 \n 2 \n wait952: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait952 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 312240803 # set nco frequency to 7.806020e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait95 \n 9 \n wait959: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait959 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 312775920 # set nco frequency to 7.819398e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait96 \n 6 \n wait966: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait966 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 313311037 # set nco frequency to 7.832776e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait97 \n 3 \n wait973: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait973 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 313846154 # set nco frequency to 7.846154e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait98 \n 0 \n wait980: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait980 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 314381271 # set nco frequency to 7.859532e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait98 \n 7 \n wait987: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait987 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 314916388 # set nco frequency to 7.872910e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait99 \n 4 \n wait994: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait994 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 315451505 # set nco frequency to 7.886288e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 01 \n wait1001: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1001 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 315986622 # set nco frequency to 7.899666e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 08 \n wait1008: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1008 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 316521739 # set nco frequency to 7.913043e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 15 \n wait1015: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1015 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 317056856 # set nco frequency to 7.926421e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 22 \n wait1022: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1022 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 317591973 # set nco frequency to 7.939799e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 29 \n wait1029: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1029 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 318127090 # set nco frequency to 7.953177e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 36 \n wait1036: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1036 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 318662207 # set nco frequency to 7.966555e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 43 \n wait1043: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1043 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 319197324 # set nco frequency to 7.979933e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 50 \n wait1050: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1050 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 319732441 # set nco frequency to 7.993311e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 57 \n wait1057: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1057 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 320267559 # set nco frequency to 8.006689e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 64 \n wait1064: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1064 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 320802676 # set nco frequency to 8.020067e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 71 \n wait1071: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1071 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 321337793 # set nco frequency to 8.033445e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 78 \n wait1078: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1078 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 321872910 # set nco frequency to 8.046823e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 85 \n wait1085: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1085 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 322408027 # set nco frequency to 8.060201e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 92 \n wait1092: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1092 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 322943144 # set nco frequency to 8.073579e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait10 \n 99 \n wait1099: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1099 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 323478261 # set nco frequency to 8.086957e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 06 \n wait1106: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1106 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 324013378 # set nco frequency to 8.100334e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 13 \n wait1113: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1113 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 324548495 # set nco frequency to 8.113712e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 20 \n wait1120: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1120 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 325083612 # set nco frequency to 8.127090e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 27 \n wait1127: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1127 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 325618729 # set nco frequency to 8.140468e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 34 \n wait1134: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1134 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 326153846 # set nco frequency to 8.153846e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 41 \n wait1141: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1141 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 326688963 # set nco frequency to 8.167224e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 48 \n wait1148: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1148 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 327224080 # set nco frequency to 8.180602e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 55 \n wait1155: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1155 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 327759197 # set nco frequency to 8.193980e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 62 \n wait1162: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1162 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 328294314 # set nco frequency to 8.207358e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 69 \n wait1169: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1169 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 328829431 # set nco frequency to 8.220736e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 76 \n wait1176: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1176 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 329364548 # set nco frequency to 8.234114e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 83 \n wait1183: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1183 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 329899666 # set nco frequency to 8.247492e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 90 \n wait1190: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1190 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 330434783 # set nco frequency to 8.260870e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait11 \n 97 \n wait1197: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1197 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 330969900 # set nco frequency to 8.274247e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 04 \n wait1204: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1204 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 331505017 # set nco frequency to 8.287625e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 11 \n wait1211: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1211 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 332040134 # set nco frequency to 8.301003e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 18 \n wait1218: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1218 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 332575251 # set nco frequency to 8.314381e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 25 \n wait1225: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1225 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 333110368 # set nco frequency to 8.327759e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 32 \n wait1232: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1232 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 333645485 # set nco frequency to 8.341137e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 39 \n wait1239: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1239 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 334180602 # set nco frequency to 8.354515e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 46 \n wait1246: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1246 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 334715719 # set nco frequency to 8.367893e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 53 \n wait1253: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1253 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 335250836 # set nco frequency to 8.381271e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 60 \n wait1260: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1260 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 335785953 # set nco frequency to 8.394649e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 67 \n wait1267: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1267 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 336321070 # set nco frequency to 8.408027e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 74 \n wait1274: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1274 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 336856187 # set nco frequency to 8.421405e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 81 \n wait1281: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1281 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 337391304 # set nco frequency to 8.434783e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 88 \n wait1288: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1288 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 337926421 # set nco frequency to 8.448161e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait12 \n 95 \n wait1295: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1295 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 338461538 # set nco frequency to 8.461538e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 02 \n wait1302: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1302 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 338996656 # set nco frequency to 8.474916e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 09 \n wait1309: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1309 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 339531773 # set nco frequency to 8.488294e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 16 \n wait1316: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1316 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 340066890 # set nco frequency to 8.501672e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 23 \n wait1323: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1323 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 340602007 # set nco frequency to 8.515050e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 30 \n wait1330: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1330 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 341137124 # set nco frequency to 8.528428e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 37 \n wait1337: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1337 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 341672241 # set nco frequency to 8.541806e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 44 \n wait1344: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1344 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 342207358 # set nco frequency to 8.555184e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 51 \n wait1351: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1351 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 342742475 # set nco frequency to 8.568562e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 58 \n wait1358: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1358 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 343277592 # set nco frequency to 8.581940e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 65 \n wait1365: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1365 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 343812709 # set nco frequency to 8.595318e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 72 \n wait1372: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1372 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 344347826 # set nco frequency to 8.608696e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 79 \n wait1379: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1379 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 344882943 # set nco frequency to 8.622074e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 86 \n wait1386: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1386 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 345418060 # set nco frequency to 8.635452e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait13 \n 93 \n wait1393: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1393 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 345953177 # set nco frequency to 8.648829e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 00 \n wait1400: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1400 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 346488294 # set nco frequency to 8.662207e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 07 \n wait1407: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1407 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 347023411 # set nco frequency to 8.675585e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 14 \n wait1414: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1414 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 347558528 # set nco frequency to 8.688963e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 21 \n wait1421: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1421 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 348093645 # set nco frequency to 8.702341e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 28 \n wait1428: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1428 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 348628763 # set nco frequency to 8.715719e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 35 \n wait1435: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1435 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 349163880 # set nco frequency to 8.729097e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 42 \n wait1442: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1442 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 349698997 # set nco frequency to 8.742475e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 49 \n wait1449: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1449 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 350234114 # set nco frequency to 8.755853e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 56 \n wait1456: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1456 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 350769231 # set nco frequency to 8.769231e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 63 \n wait1463: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1463 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 351304348 # set nco frequency to 8.782609e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 70 \n wait1470: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1470 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 351839465 # set nco frequency to 8.795987e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 77 \n wait1477: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1477 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 352374582 # set nco frequency to 8.809365e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 84 \n wait1484: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1484 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 352909699 # set nco frequency to 8.822742e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 91 \n wait1491: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1491 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 353444816 # set nco frequency to 8.836120e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait14 \n 98 \n wait1498: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1498 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 353979933 # set nco frequency to 8.849498e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 05 \n wait1505: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1505 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 354515050 # set nco frequency to 8.862876e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 12 \n wait1512: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1512 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 355050167 # set nco frequency to 8.876254e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 19 \n wait1519: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1519 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 355585284 # set nco frequency to 8.889632e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 26 \n wait1526: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1526 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 356120401 # set nco frequency to 8.903010e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 33 \n wait1533: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1533 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 356655518 # set nco frequency to 8.916388e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 40 \n wait1540: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1540 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 357190635 # set nco frequency to 8.929766e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 47 \n wait1547: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1547 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 357725753 # set nco frequency to 8.943144e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 54 \n wait1554: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1554 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 358260870 # set nco frequency to 8.956522e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 61 \n wait1561: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1561 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 358795987 # set nco frequency to 8.969900e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 68 \n wait1568: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1568 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 359331104 # set nco frequency to 8.983278e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 75 \n wait1575: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1575 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 359866221 # set nco frequency to 8.996656e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 82 \n wait1582: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1582 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 360401338 # set nco frequency to 9.010033e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 89 \n wait1589: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1589 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 360936455 # set nco frequency to 9.023411e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait15 \n 96 \n wait1596: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1596 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 361471572 # set nco frequency to 9.036789e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 03 \n wait1603: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1603 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 362006689 # set nco frequency to 9.050167e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 10 \n wait1610: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1610 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 362541806 # set nco frequency to 9.063545e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 17 \n wait1617: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1617 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 363076923 # set nco frequency to 9.076923e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 24 \n wait1624: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1624 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 363612040 # set nco frequency to 9.090301e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 31 \n wait1631: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1631 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 364147157 # set nco frequency to 9.103679e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 38 \n wait1638: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1638 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 364682274 # set nco frequency to 9.117057e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 45 \n wait1645: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1645 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 365217391 # set nco frequency to 9.130435e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 52 \n wait1652: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1652 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 365752508 # set nco frequency to 9.143813e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 59 \n wait1659: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1659 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 366287625 # set nco frequency to 9.157191e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 66 \n wait1666: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1666 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 366822742 # set nco frequency to 9.170569e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 73 \n wait1673: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1673 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 367357860 # set nco frequency to 9.183946e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 80 \n wait1680: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1680 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 367892977 # set nco frequency to 9.197324e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 87 \n wait1687: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1687 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 368428094 # set nco frequency to 9.210702e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait16 \n 94 \n wait1694: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1694 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 368963211 # set nco frequency to 9.224080e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 01 \n wait1701: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1701 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 369498328 # set nco frequency to 9.237458e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 08 \n wait1708: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1708 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 370033445 # set nco frequency to 9.250836e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 15 \n wait1715: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1715 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 370568562 # set nco frequency to 9.264214e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 22 \n wait1722: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1722 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 371103679 # set nco frequency to 9.277592e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 29 \n wait1729: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1729 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 371638796 # set nco frequency to 9.290970e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 36 \n wait1736: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1736 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 372173913 # set nco frequency to 9.304348e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 43 \n wait1743: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1743 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 372709030 # set nco frequency to 9.317726e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 50 \n wait1750: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1750 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 373244147 # set nco frequency to 9.331104e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 57 \n wait1757: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1757 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 373779264 # set nco frequency to 9.344482e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 64 \n wait1764: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1764 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 374314381 # set nco frequency to 9.357860e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 71 \n wait1771: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1771 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 374849498 # set nco frequency to 9.371237e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 78 \n wait1778: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1778 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 375384615 # set nco frequency to 9.384615e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 85 \n wait1785: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1785 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 375919732 # set nco frequency to 9.397993e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 92 \n wait1792: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1792 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 376454849 # set nco frequency to 9.411371e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait17 \n 99 \n wait1799: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1799 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 376989967 # set nco frequency to 9.424749e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 06 \n wait1806: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1806 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 377525084 # set nco frequency to 9.438127e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 13 \n wait1813: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1813 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 378060201 # set nco frequency to 9.451505e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 20 \n wait1820: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1820 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 378595318 # set nco frequency to 9.464883e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 27 \n wait1827: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1827 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 379130435 # set nco frequency to 9.478261e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 34 \n wait1834: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1834 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 379665552 # set nco frequency to 9.491639e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 41 \n wait1841: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1841 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 380200669 # set nco frequency to 9.505017e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 48 \n wait1848: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1848 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 380735786 # set nco frequency to 9.518395e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 55 \n wait1855: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1855 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 381270903 # set nco frequency to 9.531773e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 62 \n wait1862: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1862 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 381806020 # set nco frequency to 9.545151e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 69 \n wait1869: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1869 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 382341137 # set nco frequency to 9.558528e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 76 \n wait1876: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1876 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 382876254 # set nco frequency to 9.571906e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 83 \n wait1883: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1883 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 383411371 # set nco frequency to 9.585284e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 90 \n wait1890: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1890 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 383946488 # set nco frequency to 9.598662e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait18 \n 97 \n wait1897: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1897 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 384481605 # set nco frequency to 9.612040e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 04 \n wait1904: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1904 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 385016722 # set nco frequency to 9.625418e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 11 \n wait1911: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1911 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 385551839 # set nco frequency to 9.638796e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 18 \n wait1918: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1918 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 386086957 # set nco frequency to 9.652174e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 25 \n wait1925: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1925 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 386622074 # set nco frequency to 9.665552e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 32 \n wait1932: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1932 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 387157191 # set nco frequency to 9.678930e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 39 \n wait1939: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1939 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 387692308 # set nco frequency to 9.692308e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 46 \n wait1946: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1946 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 388227425 # set nco frequency to 9.705686e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 53 \n wait1953: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1953 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 388762542 # set nco frequency to 9.719064e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 60 \n wait1960: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1960 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 389297659 # set nco frequency to 9.732441e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 67 \n wait1967: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1967 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 389832776 # set nco frequency to 9.745819e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 74 \n wait1974: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1974 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 390367893 # set nco frequency to 9.759197e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 81 \n wait1981: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1981 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 390903010 # set nco frequency to 9.772575e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 88 \n wait1988: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1988 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 391438127 # set nco frequency to 9.785953e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait19 \n 95 \n wait1995: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait1995 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 391973244 # set nco frequency to 9.799331e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 02 \n wait2002: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2002 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 392508361 # set nco frequency to 9.812709e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 09 \n wait2009: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2009 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 393043478 # set nco frequency to 9.826087e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 16 \n wait2016: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2016 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 393578595 # set nco frequency to 9.839465e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 23 \n wait2023: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2023 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 394113712 # set nco frequency to 9.852843e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 30 \n wait2030: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2030 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 394648829 # set nco frequency to 9.866221e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 37 \n wait2037: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2037 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 395183946 # set nco frequency to 9.879599e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 44 \n wait2044: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2044 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 395719064 # set nco frequency to 9.892977e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 51 \n wait2051: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2051 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 396254181 # set nco frequency to 9.906355e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 58 \n wait2058: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2058 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 396789298 # set nco frequency to 9.919732e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 65 \n wait2065: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2065 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 397324415 # set nco frequency to 9.933110e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 72 \n wait2072: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2072 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 397859532 # set nco frequency to 9.946488e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 79 \n wait2079: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2079 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 398394649 # set nco frequency to 9.959866e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 86 \n wait2086: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2086 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 398929766 # set nco frequency to 9.973244e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait20 \n 93 \n wait2093: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2093 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 399464883 # set nco frequency to 9.986622e+07 H \n z \n upd_param 4 \n move 14,R1 # iterator for loop with label wait21 \n 00 \n wait2100: wait 65532 # auto generated wait (943196 ns) \n loop R1,@wait2100 \n wait 25748 # auto generated wait (943196 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 H \n z \n upd_param 4 \n move 12,R1 # iterator for loop with label wait21 \n 07 \n wait2107: wait 65532 # auto generated wait (843196 ns) \n loop R1,@wait2107 \n wait 56812 # auto generated wait (843196 ns) \n set_awg_offs 0,0 # setting offset for VoltageOffset \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n loop R0,@start \n stop \n \n\n" } ], "tabbable": null, "tooltip": null } }, "f313b8e6e63345739fb1685c952d009c": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_24735f9432bb46fea8d1b53d0b8b52b5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f3731b468bd9408a96054efdfd8192b9": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_12149b5dbca9479fa2efe70bcc654c68", "max": 100.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_71b0cf77082d483eb4a666daa4c35be0", "tabbable": null, "tooltip": null, "value": 100.0 } }, "f3dc8c2728234dc296c798990549490e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f4353ba95be849a08ea9d1f4044b7e66": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f485bf1f47e548e3bcdec93256db0969": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_52300f8213524b68b6688789a95dd493", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f48f81bf84464f23bc95acf683d09ccb": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4610442b7e2846a09d457959b0abe889", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeQCM_RF
\n
", "text/plain": "setting value\ninstrument_type QCM_RF" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "f4ab1844a9d548f3976a0a1c90a60024": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f4b5df3b50f44a05a024dbe324baf5cd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f520899fa3304a8ebd0aa9902364e5fd": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f54641c9934b4376a91499b06625070b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f74bfd4a48254e2a92d72d2123aba08e": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f7e923d781c04e809e62cc5bebcd65f5": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "f8e4804931be4a1eb2295627c40755e9": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fa2eff9d7bf047ff889ff8429802bb04": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4d9ded6aca71458487c2d2b27075c17f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fb45a3e26f97478ca8662577ef1e6b9e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_a9364a17361e4a2ab2da1776638bb706", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fca723f7c97a46a3a23244d2be1282dc": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "fcc2546eb48a46beac8c29420c0b855b": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fd39cf15cfdb442f880b127f0c508c25": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fd6bc39560e344e9ab787929329da394": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_6b7c925cc4104eedafd72bc8996fd10b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fdabab89a2214637a56c5ea3233ec0b0": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_2fd0b844b44f4d6188b05f00c9c1139f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fdff4ba67db540cfbb98f09fedb77786": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "fe18e0036bc247a485e46aae4a7e02d2": { "model_module": "@jupyter-widgets/base", "model_module_version": "2.0.0", "model_name": "LayoutModel", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "2.0.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border_bottom": null, "border_left": null, "border_right": null, "border_top": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "feae30aae8524c81ab00dd9abbf6f85e": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_e5459720f23849e098ebb72603d460b9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ff88e125f7b747719d7f8ec170e3574d": { "model_module": "@jupyter-widgets/output", "model_module_version": "1.0.0", "model_name": "OutputModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/output", "_model_module_version": "1.0.0", "_model_name": "OutputModel", "_view_count": null, "_view_module": "@jupyter-widgets/output", "_view_module_version": "1.0.0", "_view_name": "OutputView", "layout": "IPY_MODEL_4d0ff21ab7c24ad4989c6ad224c67e97", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }