{ "cells": [ { "cell_type": "markdown", "id": "6c293f86", "metadata": {}, "source": [ "(sec-tutorial-compiling)=\n", "\n", "# Tutorial: Compiling to Hardware\n", "\n", "```{seealso}\n", "The complete source code of this tutorial can be found in\n", "\n", "{nb-download}`Compiling to Hardware.ipynb`\n", "```\n", "\n", "Compilation allows converting the schedules introduced in {ref}`sec-tutorial-sched-pulse` into a set of instructions that can be executed on the control hardware.\n", "\n", "In this notebook, we will define an example schedule, demonstrate how to compile it, and run it on a virtual hardware setup.\n", "\n", "## Schedule definition\n", "\n", "We start by defining an example schedule." ] }, { "cell_type": "code", "execution_count": 1, "id": "83c2428b", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Schedule \"Simple schedule\" containing (2) 2 (unique) operations." ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from quantify_scheduler import ClockResource, Schedule\n", "from quantify_scheduler.operations import SquarePulse\n", "\n", "sched = Schedule(\"Simple schedule\")\n", "sched.add(SquarePulse(amp=0.2, duration=8e-9, port=\"q0:res\", clock=\"q0.ro\"))\n", "sched.add(SquarePulse(amp=0.1, duration=12e-9, port=\"q0:res\", clock=\"q0.ro\"))\n", "\n", "readout_clock = ClockResource(name=\"q0.ro\", freq=7e9)\n", "sched.add_resource(readout_clock)\n", "\n", "sched\n", "\n" ] }, { "cell_type": "markdown", "id": "b8418ffb", "metadata": {}, "source": [ "## Hardware compilation configuration\n", "\n", "In our example setup, we will use a Qblox Cluster containing an RF control module (QCM-RF). To compile the schedule, we will need to provide the compiler with a dictionary detailing the hardware compilation configuration.\n", "\n", "Please check the documentation on how to properly create such a configuration for the supported backends:\n", "\n", "- {ref}`sec-backend-qblox`\n", "- {ref}`sec-backend-zhinst`\n", "\n", "```{admonition} Creating an example Qblox hardware compilation configuration\n", ":class: dropdown\n", "\n", "Below we create an example hardware configuration dictionary, for the Qblox backend.\n", "In this configuration, we include:\n", "\n", "- The `\"config_type\"`, which points to the specific {class}`~quantify_scheduler.backends.types.common.HardwareCompilationConfig` datastructure for the backend we want to use (the Qblox backend, in this case).\n", "- The description of the setup, including:\n", " - A Cluster containing a QCM-RF module (in the 2nd slot).\n", "- The hardware options we want to use in the compilation.\n", "- The connectivity between the control hardware and the quantum device.\n", "```" ] }, { "cell_type": "code", "execution_count": 2, "id": "0c36bb0a", "metadata": { "mystnb": { "code_prompt_show": "Example hardware configuration" }, "tags": [ "hide-cell" ] }, "outputs": [], "source": [ "hardware_comp_cfg = {\n", " \"config_type\": \"quantify_scheduler.backends.qblox_backend.QbloxHardwareCompilationConfig\",\n", " \"hardware_description\": {\n", " \"cluster0\": {\n", " \"instrument_type\": \"Cluster\",\n", " \"ref\": \"internal\",\n", " \"modules\": {\n", " \"2\": {\n", " \"instrument_type\": \"QCM_RF\"\n", " },\n", " },\n", " },\n", " },\n", " \"hardware_options\": {\n", " \"modulation_frequencies\": {\n", " \"q0:res-q0.ro\": {\"interm_freq\": 50e6},\n", " },\n", " \"mixer_corrections\": {\n", " \"q0:res-q0.ro\": {\n", " \"dc_offset_i\": -0.00552,\n", " \"dc_offset_q\": -0.00556,\n", " \"amp_ratio\": 0.9998,\n", " \"phase_error\": -4.1\n", " }\n", " }\n", " },\n", " \"connectivity\": {\n", " \"graph\": [\n", " (\"cluster0.module2.complex_output_0\", \"q0:res\"),\n", " ]\n", " },\n", "}" ] }, { "cell_type": "markdown", "id": "06e1d92d", "metadata": {}, "source": [ "(sec-tutorial-compiling-to-hardware-compilation)=\n", "## Compilation\n", "\n", "Now we are ready to proceed to the compilation stage. For each of the control stack's instruments, the compilation generates:\n", "\n", "- The schedule's absolute timing. During the schedule's definition, we didn't assign absolute times to the operations. Instead, only the duration was defined. For the instruments to know how to execute the schedule, the absolute timing of the operations is calculated.\n", "- A set of parameters that are used to properly configure each instrument for the execution of the schedule. These parameters typically don't change during the execution of the schedule.\n", "- A compiled program that contains instructions on what the instrument must do in order for the schedule to be executed.\n", "\n", "We perform the compilation via {func}`~quantify_scheduler.backends.graph_compilation.QuantifyCompiler.compile`.\n", "\n", "We start by setting the directory where the compiled schedule files will be stored, via [set_datadir](https://quantify-os.org/docs/quantify-core/dev/user/concepts.html#data-directory)." ] }, { "cell_type": "code", "execution_count": 3, "id": "203f6b17", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Data will be saved in:\n", "/home/gabor/quantify-data\n" ] } ], "source": [ "from quantify_core.data import handling as dh\n", "\n", "dh.set_datadir(dh.default_datadir())\n", "\n" ] }, { "cell_type": "markdown", "id": "98af01a3", "metadata": {}, "source": [ "Next, we create a device configuration that contains all knowledge of the physical device under test (DUT). To generate it we use the {class}`~quantify_scheduler.device_under_test.quantum_device.QuantumDevice` class.\n", "\n", "The schedule defined at the beginning of this tutorial consists of 2 pulse operations. As such, the hardware compilation configuration must contain the necessary information to execute the schedule. We add the hardware compilation configuration to the `QuantumDevice` object and compile the schedule using this information. We visualize the compiled schedule in a {meth}`pulse diagram <.plot_pulse_diagram>`." ] }, { "cell_type": "code", "execution_count": 4, "id": "f69d851e", "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fill": "tozeroy", "hoverinfo": "x+y+name", "hoverlabel": { "namelength": -1 }, "legendgroup": "0", "line": { "color": "#636EFA" }, "mode": "lines", "name": "SquarePulse, clock q0.ro", "showlegend": true, "type": "scatter", "x": { "bdata": "lmR54X/9pb0AAAAAAAAAAJXWJugLLhE+ldYm6AsuIT7gQTrcEcUpPpXWJugLLjE+Ooww4o55NT7gQTrcEcU5PoX3Q9aUED4+PHguiIwoQT6V1iboCy5BPg==", "dtype": "f8" }, "xaxis": "x", "y": { "bdata": "AAAAAAAAAACamZmZmZnJP5qZmZmZmck/mpmZmZmZyT+amZmZmZnJP5qZmZmZmck/mpmZmZmZyT+amZmZmZnJP5qZmZmZmck/mpmZmZmZyT8AAAAAAAAAAA==", "dtype": "f8" }, "yaxis": "y" }, { "fill": "tozeroy", "hoverinfo": "x+y+name", "hoverlabel": { "namelength": -1 }, "legendgroup": "1", "line": { "color": "#EF553B" }, "mode": "lines", "name": "SquarePulse, clock q0.ro", "showlegend": true, "type": "scatter", "x": { "bdata": "PHguiIwoQT6V1iboCy5BPmixK2XNU0M+O4ww4o55RT4OZzVfUJ9HPuFBOtwRxUk+tBw/WdPqSz6H90PWlBBOPi1ppCkrG1A+ltYm6AsuUT4ARKmm7EBSPmqxK2XNU1M+0x6uI65mVD4QXTQyz3ZVPj2MMOKOeVU+", "dtype": "f8" }, "xaxis": "x", "y": { "bdata": "AAAAAAAAAACamZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5PwAAAAAAAAAA", "dtype": "f8" }, "yaxis": "y" } ], "layout": { "height": 300, "showlegend": false, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermap": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermap" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Simple schedule" }, "width": 1000, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "hoverformat": ".3s", "showgrid": true, "tickformat": ".2s", "tickformatstops": [ { "dtickrange": [ null, 1e-09 ], "value": ".10s" }, { "dtickrange": [ 1e-09, 1e-06 ], "value": ".7s" }, { "dtickrange": [ 1e-06, 0.001 ], "value": ".4s" } ], "ticksuffix": "s", "title": { "text": "Time" } }, "yaxis": { "anchor": "x", "autorange": true, "domain": [ 0.0, 1.0 ], "hoverformat": ".3s", "tickformat": ".2s", "ticksuffix": "V", "title": { "text": "q0:res" } } } }, "text/html": [ "
\n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from quantify_scheduler import QuantumDevice, SerialCompiler\n", "\n", "quantum_device = QuantumDevice(\"DUT\")\n", "\n", "quantum_device.hardware_config(hardware_comp_cfg)\n", "compiler = SerialCompiler(name=\"compiler\")\n", "compiled_sched = compiler.compile(\n", " schedule=sched, config=quantum_device.generate_compilation_config()\n", ")\n", "\n", "compiled_sched.plot_pulse_diagram(plot_backend='plotly')\n", "\n" ] }, { "cell_type": "markdown", "id": "607f57c6", "metadata": {}, "source": [ "The cell above compiles the schedule, returning a {class}`~quantify_scheduler.schedules.schedule.CompiledSchedule` object. This class differs from {class}`~quantify_scheduler.schedules.schedule.Schedule` in that it is immutable and contains the {attr}`~quantify_scheduler.schedules.schedule.CompiledSchedule.compiled_instructions` attribute. We inspect these instructions below." ] }, { "cell_type": "code", "execution_count": 5, "id": "1f801c9d", "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "074880690a164f409c2ac1abb04d7346", "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": [ "compiled_sched.compiled_instructions\n", "\n" ] }, { "cell_type": "markdown", "id": "08662870", "metadata": {}, "source": [ "## Execution on the hardware\n", "\n", "In the compiled schedule, we have all the information necessary to execute the schedule.\n", "In this specific case, only sequencer {code}`seq0` of the RF control module (QCM-RF) is needed. The compiled schedule contains the file path where the sequencer's program is stored, as well as the QCoDeS parameters that need to be set in the device.\n", "\n", "Now that we have compiled the schedule, we are almost ready to execute it with our control setup.\n", "\n", "We start by connecting to a dummy cluster device by passing a `dummy_cfg` argument when initializing a `Cluster`:" ] }, { "cell_type": "code", "execution_count": 6, "id": "2654f95a", "metadata": {}, "outputs": [], "source": [ "from qblox_instruments import Cluster, ClusterType\n", "\n", "Cluster.close_all() # Closes all registered instruments (not just Clusters)\n", "\n", "cluster0 = Cluster(\"cluster0\", dummy_cfg={\"2\": ClusterType.CLUSTER_QCM_RF})\n" ] }, { "cell_type": "markdown", "id": "9142d2a0", "metadata": {}, "source": [ "Here, {code}`dummy_cfg={\"2\": ClusterType.CLUSTER_QCM_RF}` initializes a dummy cluster instrument that contains an RF control module in slot 2, as specified by the example hardware config.\n", "\n", "We attach these instruments to the {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` via the appropriate {class}`~quantify_scheduler.instrument_coordinator.components.base.InstrumentCoordinatorComponentBase` component wrapper class. More information on the scheduler execution can be found in the {ref}`Execution section of User guide `." ] }, { "cell_type": "code", "execution_count": 7, "id": "9a51498f", "metadata": {}, "outputs": [], "source": [ "from quantify_scheduler import InstrumentCoordinator\n", "from quantify_scheduler.qblox import ClusterComponent\n", "\n", "ic = InstrumentCoordinator(\"ic\")\n", "ic.add_component(ClusterComponent(cluster0))\n", "\n" ] }, { "cell_type": "markdown", "id": "4e2f9961", "metadata": {}, "source": [ "The {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` object is responsible for the smooth and in-concert operation of the different instruments, so that the provided schedule is correctly executed.\n", "Essentially, it \"coordinates\" the control stack instruments, giving the relevant commands to the different instruments of the control stack at each point in time.\n", "\n", "The experiment can now be conducted using the methods of {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator`:\n", "\n", "1. We prepare the instruments with the appropriate settings and upload the schedule program by calling the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.prepare` method and passing the compiled schedule as an argument.\n", "2. We start the hardware execution by calling the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.start` method.\n", "\n", "Additionally, the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.wait_done` method is useful to wait for the experiment to finish and assure the synchronicity of the python script." ] }, { "cell_type": "code", "execution_count": 8, "id": "3c635f67", "metadata": {}, "outputs": [], "source": [ "# Set the qcodes parameters and upload the schedule program\n", "ic.prepare(compiled_sched)\n", "\n", "# Start the hardware execution\n", "ic.start()\n", "\n", "# Wait for the experiment to finish or for a timeout\n", "ic.wait_done(timeout_sec=10)\n", "\n" ] }, { "cell_type": "markdown", "id": "946ec817", "metadata": {}, "source": [ "The {class}`~~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` has two more methods that were not covered in this experiment:\n", "\n", "- {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.retrieve_acquisition`\n", " \\- In case the schedule contained acquisitions, this method retrieves the acquired data.\n", "- {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.stop`\n", " \\- Stops all running instruments.\n", "\n", "Note that the schedule used in this tutorial was defined purely in terms of pulses.\n", "However, `quantify-scheduler` also supports the usage of quantum gates in schedules. Given that gates may require different pulses depending on the type of quantum system, an extra step of defining the quantum device configuration, i.e. the qubits, is necessary. This use case is covered in the {ref}`sec-tutorial-ops-qubits` tutorial." ] } ], "metadata": { "file_format": "mystnb", "kernelspec": { "display_name": "python3", "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.23" }, "source_map": [ 6, 25, 40, 64, 102, 117, 124, 130, 145, 149, 154, 165, 173, 178, 187, 199, 211 ], "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "008923afc9c743f9aa4ba5b0bb551172": { "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 } }, "00bfc58631fd490999f42edb17758159": { "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 } }, "017f06c6871747ba9b8a0255c089d290": { "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 } }, "01d3f9fb97594891a9e3208b6ca1b207": { "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 } }, "02b3f5439b3241b79235d9a0a1f42216": { "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 } }, "0677e3fcba8e42e4ac388c581b206751": { "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 } }, "06e719724b8b431d94647454a069bbd7": { "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 } }, "074880690a164f409c2ac1abb04d7346": { "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_8f12dc9f2d914211b3b6044a9657304a" ], "layout": "IPY_MODEL_7b91a65834654f9fab5319da310a0811", "selected_index": 0, "tabbable": null, "titles": [ "cluster0" ], "tooltip": null } }, "089e0a9988c4448ca583d0d7cac36964": { "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_c8c5ae4e137444eaa033618c276710c4", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "09ab77a8126344faa7b9059830fae9a5": { "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 } }, "09e49104f2d2422b93fd8823c26e1f78": { "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_02b3f5439b3241b79235d9a0a1f42216", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0a9e544076da4b5782a978fb851a0082": { "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 } }, "0aea9183cba543a998d43dd52977c5eb": { "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 } }, "0c4facc618ad47cd92f1e0fb08602acd": { "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_fd2371d5073b4572bc0827596bdd0bd3" ], "layout": "IPY_MODEL_856cac4534d24fcfb0b9a129d17d75a7", "selected_index": 0, "tabbable": null, "titles": [ "seq0" ], "tooltip": null } }, "0d4ca6f5a6514e848004ac3370749878": { "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_380e7ad207244c619719fc147c21d8ab", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0e8cc21856a449e68e886748b1beb490": { "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 } }, "0faf41fc279d44229633d4e693a3c0b1": { "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_7ef1e32edfaf454eb2aab2e935bc998b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1146e394c6ef44e78e778a132a1f5925": { "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 } }, "183f1a54cdcd45568a62c3018cda6d17": { "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_3e0f34197a654960914a0307a0e9fff0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "18ebad9599f14dd9a711880f4de464ba": { "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 } }, "190b905eb11345da88e793a9f895d73c": { "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 } }, "1f31c18366e447f0a8ef0ac7f7b70f57": { "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_2fd0d38218f9491ca055a1e0590d57e3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2402e77c239d45998f3d0998a475ceac": { "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_a7e88f0ec019434cb051075b9f147138", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "255cb9bf228f4e7cbfd89d54e477ac3f": { "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_32275df14f4d4495b4963b7f38728fe0", "IPY_MODEL_9ffc36d21c5c40b785841814627a05de" ], "layout": "IPY_MODEL_1146e394c6ef44e78e778a132a1f5925", "selected_index": 0, "tabbable": null, "titles": [ "waveforms", "program" ], "tooltip": null } }, "274bf3b9272144d7bd234d4ccee2721c": { "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_648fb0a04a10463994637af1a4d8b122", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2842298c95d447bd8a16b1a9a1d1a9e9": { "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 } }, "29015acd56dd4c598e8ccce01866c05d": { "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 } }, "2aaf24f95d9c4f49b87d39153333154c": { "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 } }, "2d26dcbe1c2148c393b4168e49c12dfe": { "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_6afb89e4c3824b8bbca050eae0b3fc94", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null } }, "2fd0d38218f9491ca055a1e0590d57e3": { "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 } }, "32275df14f4d4495b4963b7f38728fe0": { "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_4890e3b6edef42e591e86eb13bfafbfe", "IPY_MODEL_836790ac44994286889fd8e1ed8fbdbb" ], "layout": "IPY_MODEL_4c4db16aa9f44870a61d481494ea1b83", "selected_index": 0, "tabbable": null, "titles": [ "0", "1" ], "tooltip": null } }, "3461fcec946443f8aadc92a81347fb49": { "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_eb04cc383e0347e69c0fbb915935827f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "34ec8657117b41b4996692472b3de6b8": { "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 } }, "352f21a603d049ee8d7b2654277c19a6": { "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_2842298c95d447bd8a16b1a9a1d1a9e9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "380e7ad207244c619719fc147c21d8ab": { "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 } }, "382c909418184f2ea306e16d20b6e9fd": { "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_190b905eb11345da88e793a9f895d73c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "386ea05de2284f3996d211fae57bf014": { "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 } }, "39509decae0f482799265fadac452f3c": { "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_87c9adcdce794dd68e086970076e80db", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3e0f34197a654960914a0307a0e9fff0": { "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 } }, "4086318ba86342959c9ccc3f12f2d1f4": { "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_e088e6163ca44df2b0866b9096ee8c2a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4273cd8d0a784a75851da8cb8aec3879": { "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 } }, "43797e8fb3d14752b2cd1c710c4ab288": { "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_386ea05de2284f3996d211fae57bf014", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4415fe0d87914042a273ebf1c870a214": { "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_6ccf014e20d347f781b71bdb90b504bb", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4890e3b6edef42e591e86eb13bfafbfe": { "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_92c777ea53ac4b4f977cc26ac3ec0cda", "msg_id": "", "outputs": [ { "data": { "image/png": "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", "text/plain": "
" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "49185660d79b4fc38c1072cf394a1bb3": { "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 } }, "4c4db16aa9f44870a61d481494ea1b83": { "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 } }, "4cf07a8c73924954a731522f59705aed": { "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_0a9e544076da4b5782a978fb851a0082", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4f506b5abf734c12b33694bfa3cede67": { "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_95ad925d75d548dd91b20278556eff02", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "545ca743643d4b65be2dc2fe9142206c": { "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_80627308416e43069461bdee5f898d6a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "56b082df19fd4279913fb922e685987b": { "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_0c4facc618ad47cd92f1e0fb08602acd", "IPY_MODEL_e02e7292866f4fff8614860f89eade29", "IPY_MODEL_d2f74bb45f0c4703811e622aec14c3b8" ], "layout": "IPY_MODEL_008923afc9c743f9aa4ba5b0bb551172", "selected_index": 0, "tabbable": null, "titles": [ "sequencers", "settings", "other values" ], "tooltip": null } }, "57ad77860615434993ec1d1f63846a9b": { "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 } }, "59897507afd9450685730dc7ff86b702": { "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 } }, "5a3bb0519e2e47b485ba520e887d459e": { "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 } }, "5b160c54f95941dfbb2fc22e86611f15": { "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 } }, "5eab3ab1c0a54933bd9d9c3d29ced525": { "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_9f7bf9f6b75d4864aa4e0e162de8d3e6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5f9041863e7f46df9559e8c32d169656": { "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 } }, "60549bbe33b6435bb057555a3a25c1cc": { "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 } }, "63031690019942acb90a0e3d36836041": { "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_975cc4bf9dcc4b54b01ae025ff7dd31d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6334ea36607f490ea96ab6ac12c0d9cb": { "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 } }, "637554728b904080ad5a3eaf40ba72e4": { "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_09ab77a8126344faa7b9059830fae9a5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "645e8ed4c6074ba9a55448f88760271e": { "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_8d770f4a281241cfbb1cbd1f82e29774", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "648fb0a04a10463994637af1a4d8b122": { "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 } }, "64f140df6ef64c729497b586ed10aabf": { "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 } }, "662ac8732b4b436b9954a4b07234b4cf": { "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_e10910c51c3a48028aa0b7a067bbcf79", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6afb89e4c3824b8bbca050eae0b3fc94": { "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 } }, "6ccf014e20d347f781b71bdb90b504bb": { "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 } }, "6df211937ec64c17bbbc4b1e5a0af344": { "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_57ad77860615434993ec1d1f63846a9b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6e66cf001bfe487d89e3c53369446eb2": { "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 } }, "6f6cbd3fd4a74fcbaf9905e01dedfe99": { "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_9712a60241064c57bb2c95c6b22716ad", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6f7dbfa801f34449bf566458d80275f1": { "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_0e8cc21856a449e68e886748b1beb490", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "71b81d18e1554a38942bdd33d3462ef3": { "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_e60a5ef850644e5c903459d6c7979f2f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7241189310674d4a9acf2a580c42afd8": { "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 } }, "766849f18fe542df8157ba9174263bc3": { "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_01d3f9fb97594891a9e3208b6ca1b207", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7760925b6a744e9db76f550943e7b18e": { "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 } }, "797036d2438f43c2bfb3092e593b2cd7": { "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_06e719724b8b431d94647454a069bbd7", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7b91a65834654f9fab5319da310a0811": { "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 } }, "7ef1e32edfaf454eb2aab2e935bc998b": { "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 } }, "80627308416e43069461bdee5f898d6a": { "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 } }, "810ed68292064aa499d84b006df4ff6e": { "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 } }, "815c4424a35041cf983f8def5c42b07c": { "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_29015acd56dd4c598e8ccce01866c05d", "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 } }, "816af89e35f241f0bc39ff870ce6251c": { "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_7760925b6a744e9db76f550943e7b18e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "81dd697bd1a14b1b8978456fb8a8442f": { "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_64f140df6ef64c729497b586ed10aabf", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "836790ac44994286889fd8e1ed8fbdbb": { "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_0aea9183cba543a998d43dd52977c5eb", "msg_id": "", "outputs": [ { "data": { "image/png": "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rur91+AvXLjg1WAPKi8vT8nJyR5rKSkpSk9PlyTdunVLx44d06xZs9zXBwQEKDk5WXl5effcb1VVlaqqqtyXHQ6Hbwf/P1/frla3eZ/Uy74BAPA3pxam6KEgr1LkgdX6XleuXKl/+Id/UHBwsFauXHnfbadMmfLAg9WkpKREERERHmsRERFyOBz6+uuvdf36dVVXV9e4zenTp++536ysLL366qv1MjMAAGh8ah1Ab731lsaOHavg4OB7/hiq9O1bWfUVQPVl1qxZysjIcF92OByKjo72+f2ENA3UqYUpPt8vAAD+KKRpoGX3XesA+uu3vax6CywyMlKlpaUea6WlpQoLC1NISIgCAwMVGBhY4zaRkZH33K/dbpfdbq+Xmf+azWaz7FAfAAD4C5/+GGp969+/v3Jzcz3WcnJy1L9/f0lSUFCQ+vTp47GN0+lUbm6uexsAAIBaH47467eIvs+yZctqtV1FRYXOnTvnvnzhwgUVFBSoVatWiomJ0axZs3Tp0iX99re/lSRNnDhRq1ev1owZMzRhwgTt2bNH27Zt065duzzmTE1NVWJiovr166fly5ersrJS48ePr/X8AADgh63WAZSfn1+r7erycbajR49q0KBB7svfRVZqaqo2btyoK1euqKioyH19XFycdu3apWnTpmnFihXq0KGDfv3rX7u/A0iSRo8eratXr2revHkqKSlRr169tHv37rtOjAYAAOby6nuAfujq63uAAABA/anL6/cDnwNUXFys4uLiB90NAABAg/EqgO7cuaO5c+cqPDxcsbGxio2NVXh4uObMmaPbt2/7ekYAAACf8uoz2ZMnT9b27du1ZMkS96er8vLytGDBAl27dk1r16716ZAAAAC+5NU5QOHh4dqyZYuGDh3qsf7RRx/pueeeU3l5uc8GtALnAAEA4H/q/Rwgu92u2NjYu9bj4uIUFBTkzS4BAAAajFcBNGnSJL322msePyBaVVWlRYsWadKkST4bDgAAoD54dQ5Qfn6+cnNz1aFDB8XHx0uSTpw4oVu3bmnw4MEaNWqUe9vt27f7ZlIAAAAf8SqAWrRooaefftpjrT5+PBQAAKA+eBVAGzZs8PUcAAAADcavfgwVAADAF7w6AnTt2jXNmzdPe/fuVVlZmZxOp8f1X375pU+GAwAAqA9eBdALL7ygc+fO6aWXXlJERESdfgAVAADAal4F0KeffqqDBw+6PwEGAADgT7w6B6hr1676+uuvfT0LAABAg/AqgH71q19p9uzZ2r9/v65duyaHw+HxBwAA0Jh5/T1ADodDP/3pTz3WXS6XbDabqqurfTIcAABAffAqgMaOHaumTZtq8+bNnAQNAAD8jlcBVFhYqPz8fHXp0sXX8wAAANQ7r84BSkxMVHFxsa9nAQAAaBBeHQGaPHmypk6dqldeeUU9evRQ06ZNPa7v2bOnT4YDAACoDzaXy+Wq640CAu594OiHcBK0w+FQeHi4ysvLFRYWZvU4AACgFury+u3VEaALFy54NRgAAEBj4FUAPfLII5KkU6dOqaioSLdu3XJfZ7PZ3NcDAAA0Rl4F0Pnz5zVy5EidPHlSNptN372L9t3H4f39LTAAAPDD5tWnwKZOnaq4uDiVlZXpoYceUmFhoQ4cOKDExETt27fPxyMCAAD4lldHgPLy8rRnzx61adNGAQEBCgwM1I9+9CNlZWVpypQpys/P9/WcAAAAPuPVEaDq6mqFhoZKktq0aaPLly9L+vbcoDNnzvhuOgAAgHrg1RGg7t2768SJE4qLi1NSUpKWLFmioKAgrV+/Xh07dvT1jAAAAD7lVQDNmTNHlZWVkqSFCxfqZz/7mX784x+rdevW2rp1q08HBAAA8DWvvgixJl9++aVatmz5g/hhVL4IEQAA/1PvX4RYk1atWvlqVwAAAPXKq5OgAQAA/BkBBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMI7lAbRmzRrFxsYqODhYSUlJOnz48D23vX37thYuXKhOnTopODhY8fHx2r17t8c21dXVmjt3ruLi4hQSEqJOnTrptddek8vlqu+HAgAA/ISlAbR161ZlZGRo/vz5On78uOLj45WSkqKysrIat58zZ47efvttrVq1SqdOndLEiRM1cuRI5efnu7d58803tXbtWq1evVp/+MMf9Oabb2rJkiVatWpVQz0sAADQyNlcFh4aSUpKUt++fbV69WpJktPpVHR0tCZPnqzMzMy7to+KitLs2bOVlpbmXnv66acVEhKi9957T5L0s5/9TBEREfr3f//3e27zfRwOh8LDw1VeXq6wsLAHeYgAAKCB1OX127IjQLdu3dKxY8eUnJz8l2ECApScnKy8vLwab1NVVaXg4GCPtZCQEB08eNB9ecCAAcrNzdXZs2clSSdOnNDBgwc1dOjQe85SVVUlh8Ph8QcAAH64mlh1x1988YWqq6sVERHhsR4REaHTp0/XeJuUlBQtW7ZMTz75pDp16qTc3Fxt375d1dXV7m0yMzPlcDjUtWtXBQYGqrq6WosWLdLYsWPvOUtWVpZeffVV3zwwAADQ6Fl+EnRdrFixQp07d1bXrl0VFBSkSZMmafz48QoI+MvD2LZtm95//31t3rxZx48f16ZNm/Rv//Zv2rRp0z33O2vWLJWXl7v/iouLG+LhAAAAi1h2BKhNmzYKDAxUaWmpx3ppaakiIyNrvM3DDz+sHTt26JtvvtG1a9cUFRWlzMxMdezY0b3NK6+8oszMTI0ZM0aS1KNHD/3pT39SVlaWUlNTa9yv3W6X3W730SMDAACNnWVHgIKCgtSnTx/l5ua615xOp3Jzc9W/f//73jY4OFjt27fXnTt39MEHH+jnP/+5+7qvvvrK44iQJAUGBsrpdPr2AQAAAL9l2REgScrIyFBqaqoSExPVr18/LV++XJWVlRo/frwkady4cWrfvr2ysrIkSYcOHdKlS5fUq1cvXbp0SQsWLJDT6dSMGTPc+xw+fLgWLVqkmJgYPfHEE8rPz9eyZcs0YcIESx4jAABofCwNoNGjR+vq1auaN2+eSkpK1KtXL+3evdt9YnRRUZHH0ZxvvvlGc+bM0fnz59W8eXM99dRTevfdd9WiRQv3NqtWrdLcuXP1z//8zyorK1NUVJT+8R//UfPmzWvohwcAABopS78HqLHie4AAAPA/fvE9QAAAAFYhgAAAgHEIIAAAYBwCCAAAGIcAAgAAxiGAAACAcQggAABgHAIIAAAYhwACAADGIYAAAIBxCCAAAGAcAggAABiHAAIAAMYhgAAAgHEIIAAAYBwCCAAAGIcAAgAAxiGAAACAcQggAABgHAIIAAAYhwACAADGIYAAAIBxCCAAAGAcAggAABiHAAIAAMYhgAAAgHEIIAAAYBwCCAAAGIcAAgAAxiGAAACAcQggAABgHAIIAAAYhwACAADGIYAAAIBxCCAAAGAcAggAABiHAAIAAMYhgAAAgHEIIAAAYBwCCAAAGIcAAgAAxiGAAACAcQggAABgHAIIAAAYhwACAADGIYAAAIBxCCAAAGAcAggAABiHAAIAAMYhgAAAgHEIIAAAYBwCCAAAGIcAAgAAxiGAAACAcQggAABgHAIIAAAYhwACAADGsTyA1qxZo9jYWAUHByspKUmHDx++57a3b9/WwoUL1alTJwUHBys+Pl67d+++a7tLly7p+eefV+vWrRUSEqIePXro6NGj9fkwAACAH7E0gLZu3aqMjAzNnz9fx48fV3x8vFJSUlRWVlbj9nPmzNHbb7+tVatW6dSpU5o4caJGjhyp/Px89zbXr1/XwIED1bRpU3388cc6deqUli5dqpYtWzbUwwIAAI2czeVyuay686SkJPXt21erV6+WJDmdTkVHR2vy5MnKzMy8a/uoqCjNnj1baWlp7rWnn35aISEheu+99yRJmZmZ+v3vf69PP/201nNUVVWpqqrKfdnhcCg6Olrl5eUKCwvz9uEBAIAG5HA4FB4eXqvXb8uOAN26dUvHjh1TcnLyX4YJCFBycrLy8vJqvE1VVZWCg4M91kJCQnTw4EH35Z07dyoxMVG/+MUv1LZtWyUkJOidd9657yxZWVkKDw93/0VHRz/AIwMAAI2dZQH0xRdfqLq6WhERER7rERERKikpqfE2KSkpWrZsmf74xz/K6XQqJydH27dv15UrV9zbnD9/XmvXrlXnzp31ySef6J/+6Z80ZcoUbdq06Z6zzJo1S+Xl5e6/4uJi3zxIAADQKDWxeoC6WLFihf7+7/9eXbt2lc1mU6dOnTR+/Hj95je/cW/jdDqVmJioxYsXS5ISEhJUWFiodevWKTU1tcb92u122e32BnkMAADAepYdAWrTpo0CAwNVWlrqsV5aWqrIyMgab/Pwww9rx44dqqys1J/+9CedPn1azZs3V8eOHd3btGvXTt26dfO43eOPP66ioiLfPwgAAOCXLAugoKAg9enTR7m5ue41p9Op3Nxc9e/f/763DQ4OVvv27XXnzh198MEH+vnPf+6+buDAgTpz5ozH9mfPntUjjzzi2wcAAAD8lqVvgWVkZCg1NVWJiYnq16+fli9frsrKSo0fP16SNG7cOLVv315ZWVmSpEOHDunSpUvq1auXLl26pAULFsjpdGrGjBnufU6bNk0DBgzQ4sWL9eyzz+rw4cNav3691q9fb8ljBAAAjY+lATR69GhdvXpV8+bNU0lJiXr16qXdu3e7T4wuKipSQMBfDlJ98803mjNnjs6fP6/mzZvrqaee0rvvvqsWLVq4t+nbt6+ys7M1a9YsLVy4UHFxcVq+fLnGjh3b0A8PAAA0UpZ+D1BjVZfvEQAAAI2DX3wPEAAAgFUIIAAAYBwCCAAAGIcAAgAAxiGAAACAcQggAABgHAIIAAAYhwACAADGIYAAAIBxCCAAAGAcAggAABiHAAIAAMYhgAAAgHEIIAAAYBwCCAAAGIcAAgAAxiGAAACAcQggAABgHAIIAAAYhwACAADGIYAAAIBxCCAAAGAcAggAABiHAAIAAMYhgAAAgHEIIAAAYBwCCAAAGIcAAgAAxiGAAACAcQggAABgHAIIAAAYhwACAADGIYAAAIBxCCAAAGAcAggAABiHAAIAAMYhgAAAgHEIIAAAYBwCCAAAGIcAAgAAxiGAAACAcQggAABgnCZWD9AYuVwuSZLD4bB4EgAAUFvfvW5/9zp+PwRQDW7evClJio6OtngSAABQVzdv3lR4ePh9t7G5apNJhnE6nbp8+bJCQ0Nls9l8um+Hw6Ho6GgVFxcrLCzMp/s2Cc+jb/A8+gbPo2/wPPqGyc+jy+XSzZs3FRUVpYCA+5/lwxGgGgQEBKhDhw71eh9hYWHG/YtZH3gefYPn0Td4Hn2D59E3TH0ev+/Iz3c4CRoAABiHAAIAAMYhgBqY3W7X/PnzZbfbrR7Fr/E8+gbPo2/wPPoGz6Nv8DzWDidBAwAA43AECAAAGIcAAgAAxiGAAACAcQggAABgHAKoAa1Zs0axsbEKDg5WUlKSDh8+bPVIfiUrK0t9+/ZVaGio2rZtqxEjRujMmTNWj+X33njjDdlsNqWnp1s9it+5dOmSnn/+ebVu3VohISHq0aOHjh49avVYfqW6ulpz585VXFycQkJC1KlTJ7322mu1+i0nkx04cEDDhw9XVFSUbDabduzY4XG9y+XSvHnz1K5dO4WEhCg5OVl//OMfrRm2kSKAGsjWrVuVkZGh+fPn6/jx44qPj1dKSorKysqsHs1v7N+/X2lpafrss8+Uk5Oj27dva8iQIaqsrLR6NL915MgRvf322+rZs6fVo/id69eva+DAgWratKk+/vhjnTp1SkuXLlXLli2tHs2vvPnmm1q7dq1Wr16tP/zhD3rzzTe1ZMkSrVq1yurRGrXKykrFx8drzZo1NV6/ZMkSrVy5UuvWrdOhQ4fUrFkzpaSk6JtvvmngSRsxFxpEv379XGlpae7L1dXVrqioKFdWVpaFU/m3srIylyTX/v37rR7FL928edPVuXNnV05Ojutv/uZvXFOnTrV6JL8yc+ZM149+9COrx/B7w4YNc02YMMFjbdSoUa6xY8daNJH/keTKzs52X3Y6na7IyEjXL3/5S/fajRs3XHa73fUf//EfFkzYOHEEqAHcunVLx44dU3JysnstICBAycnJysvLs3Ay/1ZeXi5JatWqlcWT+Ke0tDQNGzbM499L1N7OnTuVmJioX/ziF2rbtq0SEhL0zjvvWD2W3xkwYIByc3N19uxZSdKJEyd08OBBDR061OLJ/NeFCxdUUlLi8d92eHi4kpKSeM35K/wYagP44osvVF1drYiICI/1iIgInT592qKp/JvT6VR6eroGDhyo7t27Wz2O39myZYuOHz+uI0eOWD2K3zp//rzWrl2rjIwM/eu//quOHDmiKVOmKCgoSKmpqVaP5zcyMzPlcDjUtWtXBQYGqrq6WosWLdLYsWOtHs1vlZSUSFKNrznfXQcCCH4qLS1NhYWFOnjwoNWj+J3i4mJNnTpVOTk5Cg4Otnocv+V0OpWYmKjFixdLkhISElRYWKh169YRQHWwbds2vf/++9q8ebOeeOIJFRQUKD09XVFRUTyPqFe8BdYA2rRpo8DAQJWWlnqsl5aWKjIy0qKp/NekSZP04Ycfau/everQoYPV4/idY8eOqaysTL1791aTJk3UpEkT7d+/XytXrlSTJk1UXV1t9Yh+oV27durWrZvH2uOPP66ioiKLJvJPr7zyijIzMzVmzBj16NFDL7zwgqZNm6asrCyrR/Nb372u8JpzfwRQAwgKClKfPn2Um5vrXnM6ncrNzVX//v0tnMy/uFwuTZo0SdnZ2dqzZ4/i4uKsHskvDR48WCdPnlRBQYH7LzExUWPHjlVBQYECAwOtHtEvDBw48K6vYTh79qweeeQRiybyT1999ZUCAjxfigIDA+V0Oi2ayP/FxcUpMjLS4zXH4XDo0KFDvOb8Fd4CayAZGRlKTU1VYmKi+vXrp+XLl6uyslLjx4+3ejS/kZaWps2bN+u//uu/FBoa6n4vOzw8XCEhIRZP5z9CQ0PvOm+qWbNmat26NedT1cG0adM0YMAALV68WM8++6wOHz6s9evXa/369VaP5leGDx+uRYsWKSYmRk888YTy8/O1bNkyTZgwwerRGrWKigqdO3fOffnChQsqKChQq1atFBMTo/T0dL3++uvq3Lmz4uLiNHfuXEVFRWnEiBHWDd3YWP0xNJOsWrXKFRMT4woKCnL169fP9dlnn1k9kl+RVOPfhg0brB7N7/ExeO/893//t6t79+4uu93u6tq1q2v9+vVWj+R3HA6Ha+rUqa6YmBhXcHCwq2PHjq7Zs2e7qqqqrB6tUdu7d2+N/z9MTU11uVzffhR+7ty5roiICJfdbncNHjzYdebMGWuHbmRsLhdftwkAAMzCOUAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAABqVffv2yWaz6caNGw1+3zabTTabTS1atPDZPhcsWODe7/Lly322XwAPhgACYJmf/OQnSk9P91gbMGCArly5ovDwcEtm2rBhg86ePeuz/U2fPl1XrlxRhw4dfLZPAA+OH0MF0KgEBQUpMjLSsvtv0aKF2rZt67P9NW/eXM2bN1dgYKDP9gngwXEECIAlXnzxRe3fv18rVqxwv0V08eLFu94C27hxo1q0aKEPP/xQXbp00UMPPaRnnnlGX331lTZt2qTY2Fi1bNlSU6ZMUXV1tXv/VVVVmj59utq3b69mzZopKSlJ+/btq/OcCxYsUK9evfTuu+8qNjZW4eHhGjNmjG7evOne5j//8z/Vo0cPhYSEqHXr1kpOTlZlZeWDPkUA6hFHgABYYsWKFTp79qy6d++uhQsXSpIefvhhXbx48a5tv/rqK61cuVJbtmzRzZs3NWrUKI0cOVItWrTQRx99pPPnz+vpp5/WwIEDNXr0aEnSpEmTdOrUKW3ZskVRUVHKzs7W3/7t3+rkyZPq3LlznWb9/PPPtWPHDn344Ye6fv26nn32Wb3xxhtatGiRrly5oueee05LlizRyJEjdfPmTX366afid6aBxo0AAmCJ8PBwBQUF6aGHHvret7xu376ttWvXqlOnTpKkZ555Ru+++65KS0vVvHlzdevWTYMGDdLevXs1evRoFRUVacOGDSoqKlJUVJSkb8/F2b17tzZs2KDFixfXaVan06mNGzcqNDRUkvTCCy8oNzfXHUB37tzRqFGj9Mgjj0iSevToUdenA0ADI4AANHoPPfSQO34kKSIiQrGxsWrevLnHWllZmSTp5MmTqq6u1mOPPeaxn6qqKrVu3brO9x8bG+uOH0lq166d+77i4+M1ePBg9ejRQykpKRoyZIieeeYZtWzZss73A6DhEEAAGr2mTZt6XLbZbDWuOZ1OSVJFRYUCAwN17Nixu04+/utoepD7/+6+AgMDlZOTo//5n//R7373O61atUqzZ8/WoUOHFBcXV+f7AtAwOAkagGWCgoI8Tlz2lYSEBFVXV6usrEyPPvqox199fMLMZrNp4MCBevXVV5Wfn6+goCBlZ2f7/H4A+A5HgABYJjY2VocOHdLFixfVvHlztWrVyif7feyxxzR27FiNGzdOS5cuVUJCgq5evarc3Fz17NlTw4YN88n9SNKhQ4eUm5urIUOGqG3btjp06JCuXr2qxx9/3Gf3AcD3OAIEwDLTp09XYGCgunXrpocfflhFRUU+2/eGDRs0btw4/cu//Iu6dOmiESNG6MiRI4qJifHZfUhSWFiYDhw4oKeeekqPPfaY5syZo6VLl2ro0KE+vR8AvmVz8VlNAJD07VtZ2dnZGjFihM/3HRsbq/T09Lu++RqANTgCBAB/5bnnnvPpz1YsXrxYzZs39+nRLQAPjiNAAPB/zp07J+nbT3b56hNcX375pb788ktJ337Ro1W/cQbAEwEEAACMw1tgAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOP8PxOWelallVvdAAAAAElFTkSuQmCC", "text/plain": "
" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "856cac4534d24fcfb0b9a129d17d75a7": { "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 } }, "87c9adcdce794dd68e086970076e80db": { "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 } }, "88585685a6cd49f79bd61dc9d848b184": { "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_017f06c6871747ba9b8a0255c089d290", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "88daad39e7a648d3955e680697b77fb5": { "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 } }, "8d770f4a281241cfbb1cbd1f82e29774": { "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 } }, "8edf7a59aa2e4890b61596538e0bd9fa": { "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 } }, "8ef1988f1a334034a6d713ed8246f0f2": { "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_49185660d79b4fc38c1072cf394a1bb3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8f12dc9f2d914211b3b6044a9657304a": { "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_fd4dd15ad6984c20bcd2ee08cc8e0f73", "IPY_MODEL_56b082df19fd4279913fb922e685987b" ], "layout": "IPY_MODEL_c9e41d232a4a4079b5da067b36d3ea5c", "selected_index": 0, "tabbable": null, "titles": [ "settings", "cluster0_module2" ], "tooltip": null } }, "8f56cd2f3a1d44df9a5a92c8affb1c7d": { "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 } }, "92c777ea53ac4b4f977cc26ac3ec0cda": { "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 } }, "9509b18205e64fbf89da6976f1b35758": { "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 } }, "95ad925d75d548dd91b20278556eff02": { "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 } }, "9712a60241064c57bb2c95c6b22716ad": { "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 } }, "975cc4bf9dcc4b54b01ae025ff7dd31d": { "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 } }, "97bbaf39149e4d0599ae426166f3cead": { "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_f72f96f380be4ee28b97b7ddb487ceca", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9927b02f565c498794c27e6b2d59cdf8": { "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_cb50241a7e124e78b33e6e3b73f9a492", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9aefe4d1981b49dfb5685ec6c3832816": { "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 } }, "9d0b150a02e34cd49c83d403a5c2ed64": { "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_d528b90b372a4290b9706bdeeada6a39", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9f7bf9f6b75d4864aa4e0e162de8d3e6": { "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 } }, "9ffc36d21c5c40b785841814627a05de": { "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_db07bd7c6ddd4a5880387f6c70bec7ec", "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_gain 6554,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (8 ns) \n wait 4 # auto generated wait (4 ns) \n set_awg_gain 3277,0 # setting gain for SquarePulse \n play 1,1,4 # play SquarePulse (12 ns) \n wait 8 # auto generated wait (8 ns) \n loop R0,@start \n stop \n \n\n" } ], "tabbable": null, "tooltip": null } }, "a313c834beeb4093a90cb93631e5c12f": { "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_db136c0d38114335a42741836a1f0797", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a4b5ba1940e74c4988293c428884ef3b": { "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_e95f12f7f8cf4c3ea19a114f94759814", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a587a486b1e8466bb674b14590ffd326": { "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 } }, "a5baeb2c09f940b78188fdfb0133cb32": { "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_cf087f431ad64ff5b87bfedc676d86ee", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a5be05f333b24536804c949e1406ce10": { "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_b72c8a9acb2c4b048a2de47bed583be5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a7e88f0ec019434cb051075b9f147138": { "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 } }, "a8894dfc3e9c4ed790face5f5a9ed906": { "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_6e66cf001bfe487d89e3c53369446eb2", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "aaedcba494024f448609076025732d4b": { "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_18ebad9599f14dd9a711880f4de464ba", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b555f094266a41ddaa4dc2e3e99366be": { "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_cfa4a4007a7b406b957733a8e2fc4f13", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b72c8a9acb2c4b048a2de47bed583be5": { "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 } }, "b75be19e8bb4466aa026ae8ed9625d08": { "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_d7241d3030a4478b94566aec2a002de6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "baeff03f3f32483daa9a520e03afb22e": { "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_5b160c54f95941dfbb2fc22e86611f15", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "bc98e2cb1d8a413fba0a24fec20a95e0": { "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_34ec8657117b41b4996692472b3de6b8", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c05992dda75a4da8badcc8ded52d10f3": { "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_0677e3fcba8e42e4ac388c581b206751", "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_freq50000000.0
mixer_corr_phase_offset_degree-4.1
mixer_corr_gain_ratio0.9998
auto_sideband_calSidebandCalEnum.OFF
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 50000000.0\nmixer_corr_phase_offset_degree -4.1\nmixer_corr_gain_ratio 0.9998\nauto_sideband_cal SidebandCalEnum.OFF\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 } }, "c5ab93144e80451e9fde3bc5426e9a14": { "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 } }, "c7f061200dd04b3f878470e08b3767b0": { "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_7241189310674d4a9acf2a580c42afd8", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c8c0195ef0e84441a324407f27a30ac3": { "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_c5ab93144e80451e9fde3bc5426e9a14", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c8c5ae4e137444eaa033618c276710c4": { "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 } }, "c8d7ac1fe2db41f1a71a2e37dabd161e": { "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 } }, "c9e41d232a4a4079b5da067b36d3ea5c": { "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 } }, "ca0b2fac01e24157b2b481b87ceb3545": { "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_e65b06042d2c477faa4051e1eee8b510", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ca820c3424cf4c2aaffbac28bee1fc71": { "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_5f9041863e7f46df9559e8c32d169656", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "cb50241a7e124e78b33e6e3b73f9a492": { "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 } }, "cc899191315a4cb29525f54f55621515": { "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_60549bbe33b6435bb057555a3a25c1cc", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "cf087f431ad64ff5b87bfedc676d86ee": { "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 } }, "cfa4a4007a7b406b957733a8e2fc4f13": { "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 } }, "d2f74bb45f0c4703811e622aec14c3b8": { "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_88daad39e7a648d3955e680697b77fb5", "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 } }, "d5119709a75249e98698a33ee64415fd": { "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_6334ea36607f490ea96ab6ac12c0d9cb", "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 \n \n \n \n
settingvalue
offset_ch0_path_I-5.52
offset_ch0_path_Q-5.56
offset_ch1_path_INone
offset_ch1_path_QNone
in0_gainNone
in1_gainNone
distortion_corrections[{'exp0': {'coeffs': None, 'config': 'QbloxFil...
out0_lo_freq_cal_type_defaultLoCalEnum.OFF
out1_lo_freq_cal_type_defaultLoCalEnum.OFF
lo0_freq6950000000.0
lo1_freqNone
lo2_freqNone
lo3_freqNone
lo4_freqNone
lo5_freqNone
in0_freqNone
in1_freqNone
out0_attNone
out1_attNone
out2_attNone
out3_attNone
out4_attNone
out5_attNone
in0_attNone
in1_attNone
\n
", "text/plain": "setting value\noffset_ch0_path_I -5.52\noffset_ch0_path_Q -5.56\noffset_ch1_path_I None\noffset_ch1_path_Q None\nin0_gain None\nin1_gain None\ndistortion_corrections [{'exp0': {'coeffs': None, 'config': 'QbloxFil...\nout0_lo_freq_cal_type_default LoCalEnum.OFF\nout1_lo_freq_cal_type_default LoCalEnum.OFF\nlo0_freq 6950000000.0\nlo1_freq None\nlo2_freq None\nlo3_freq None\nlo4_freq None\nlo5_freq None\nin0_freq None\nin1_freq None\nout0_att None\nout1_att None\nout2_att None\nout3_att None\nout4_att None\nout5_att None\nin0_att None\nin1_att None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "d528b90b372a4290b9706bdeeada6a39": { "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 } }, "d7241d3030a4478b94566aec2a002de6": { "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 } }, "d754cc23000c432da52caaf8f417c448": { "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_fa08f795f13c4e45bd27e64d8c0dee20", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "db07bd7c6ddd4a5880387f6c70bec7ec": { "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 } }, "db136c0d38114335a42741836a1f0797": { "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 } }, "de45481cac394da6840c3907393e217a": { "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_5a3bb0519e2e47b485ba520e887d459e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "dff6792f00f246a3941acd13458f1c03": { "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 } }, "e02e7292866f4fff8614860f89eade29": { "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_d5119709a75249e98698a33ee64415fd" ], "layout": "IPY_MODEL_9aefe4d1981b49dfb5685ec6c3832816", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "e088e6163ca44df2b0866b9096ee8c2a": { "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 } }, "e10910c51c3a48028aa0b7a067bbcf79": { "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 } }, "e3f9f1009776424c9f47365f624c03c4": { "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_8edf7a59aa2e4890b61596538e0bd9fa", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e470c84929d84937a17be38b82ae8a23": { "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_810ed68292064aa499d84b006df4ff6e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e60a5ef850644e5c903459d6c7979f2f": { "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 } }, "e65b06042d2c477faa4051e1eee8b510": { "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 } }, "e95f12f7f8cf4c3ea19a114f94759814": { "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 } }, "eb04cc383e0347e69c0fbb915935827f": { "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 } }, "eba96ac1275f4c238041ec89e63c8573": { "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_59897507afd9450685730dc7ff86b702", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ecfd591cecd7486badf864fd80098552": { "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_2aaf24f95d9c4f49b87d39153333154c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ed46f54ba0674d548818692424b1718b": { "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_9509b18205e64fbf89da6976f1b35758", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ee341aa5129343f6a5d0df1ef5f5e686": { "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_a587a486b1e8466bb674b14590ffd326", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f72f96f380be4ee28b97b7ddb487ceca": { "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 } }, "f813a51ac47d4063af576ba32d34d991": { "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_8f56cd2f3a1d44df9a5a92c8affb1c7d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f916b7d7f08d4f0e9a9c59e0bb8e6830": { "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_00bfc58631fd490999f42edb17758159", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fa08f795f13c4e45bd27e64d8c0dee20": { "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 } }, "fd2371d5073b4572bc0827596bdd0bd3": { "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_255cb9bf228f4e7cbfd89d54e477ac3f", "IPY_MODEL_c05992dda75a4da8badcc8ded52d10f3" ], "layout": "IPY_MODEL_c8d7ac1fe2db41f1a71a2e37dabd161e", "selected_index": 0, "tabbable": null, "titles": [ "sequence", "settings" ], "tooltip": null } }, "fd4dd15ad6984c20bcd2ee08cc8e0f73": { "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_815c4424a35041cf983f8def5c42b07c" ], "layout": "IPY_MODEL_4273cd8d0a784a75851da8cb8aec3879", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "fed6c33d18e04988bee8a46d012f3259": { "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_dff6792f00f246a3941acd13458f1c03", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } } }, "version_major": 2, "version_minor": 0 } } }, "nbformat": 4, "nbformat_minor": 5 }