{
"cells": [
{
"cell_type": "markdown",
"id": "17a9bd71",
"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": "8dab32cf",
"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": "d54e5cfe",
"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": "2e63100c",
"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": "e4fd2dcd",
"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": "468691e2",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Data will be saved in:\n",
"/root/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": "0aff4dea",
"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": "b206600b",
"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/9pb0AAAAAAAAAADx4LoiMKEE+ldYm6AsuQT4=",
"dtype": "f8"
},
"xaxis": "x",
"y": {
"bdata": "AAAAAAAAAACamZmZmZnJP5qZmZmZmck/AAAAAAAAAAA=",
"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": "PHguiIwoQT6V1iboCy5BPhBdNDLPdlU+PYww4o55VT4=",
"dtype": "f8"
},
"xaxis": "x",
"y": {
"bdata": "AAAAAAAAAACamZmZmZm5P5qZmZmZmbk/AAAAAAAAAAA=",
"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": [
"
"
]
},
"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": "27fe34ba",
"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": "ef8c6889",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "b0e0847b2eb24ddb9a323f86d3178fab",
"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": "592c98b6",
"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": "84edd376",
"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": "87f9a69e",
"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": "7a2cb5cb",
"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": "d193d2ea",
"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": "42c94014",
"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",
"# Stops all running instruments and any active components. Must be run before starting a new experiment.\n",
"ic.stop()\n"
]
},
{
"cell_type": "markdown",
"id": "6a3e1800",
"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.25"
},
"source_map": [
6,
25,
40,
64,
102,
117,
124,
130,
145,
149,
154,
165,
173,
178,
187,
199,
213
],
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"010c673742984225a899a09e7536fd8d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"0300ff40d665446a94d1146537fd4b44": {
"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_2d931c8ed6e94aef9f869726e476b70d",
"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
}
},
"03df0f2befdc4efcb62c178ccef533ea": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"04b7b3f2d02f4855ba39aefbd6f35c5f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"06469e313992404d89dfb4ccd5c88ae7": {
"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_08a157c4f56c42cabb063a809324fca8",
"IPY_MODEL_0300ff40d665446a94d1146537fd4b44"
],
"layout": "IPY_MODEL_25569b1a9686480386eaf2178eebb5e2",
"selected_index": 0,
"tabbable": null,
"titles": [
"0",
"1"
],
"tooltip": null
}
},
"086da7d56181448cb5d8bf695277cd12": {
"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_3bfdb8847eb54ce9be88cb1b26ac3a22",
"selected_index": null,
"tabbable": null,
"titles": [],
"tooltip": null
}
},
"08a157c4f56c42cabb063a809324fca8": {
"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_57b56b555c55413e8749f24e9d2fa948",
"msg_id": "",
"outputs": [
{
"data": {
"image/png": "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",
"text/plain": ""
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"090ceeed8d8b405b8338bbe825355261": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"0a99e1976048494486acab324ec3d640": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"0b831d4411454d819652685c0c0ef86a": {
"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_1b0ba6a7f5214c71aed61b991b8eade7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0c42bdaea6e545bca64481d1648dc7a8": {
"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_c4a59a8244aa4f978fca5dba297b3215",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0d0a0cd3a5cd46319b2d2be6e107f445": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"0e1bd1eb7d77472083304e8a59e38704": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"0f0dd081db8148b6869ba6e2cd5c73ec": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"151d9f12046941b3b9ff440a5abd3b45": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"18c0614a15a545a19d950cfb397ef32a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1a64b9a945d444b79a730604a3329cb8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1b0ba6a7f5214c71aed61b991b8eade7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1db606b6f2eb47258835da0b472855a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1ea38734691a40a6886f518311a485c8": {
"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_0f0dd081db8148b6869ba6e2cd5c73ec",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"2034dabbd46a4a8f8a4b87a686fa827f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"20b84a9666bd4bb38cb8a41f2cf1938a": {
"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_33723553cff04b3cbab2bb2632864a83",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"2139e5cac9eb4099aba24acdd22a1ce0": {
"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_b589ee9d189d4e9d92ba6a5d50a11c50",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"2160df35e25d4e0cb7014874b4a6d7ce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"21a8228a6b7d488092231719b2f396af": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2524862855314a218eefd097a522d167": {
"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_ab650936e2e14ca5b4955ce8b55b3270",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"25569b1a9686480386eaf2178eebb5e2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2597f1a890f24c6ea05c396204443605": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2ba3984ec60441acaf0f18892eebe085": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2c1759c193d94a659dfe9507622def61": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2d931c8ed6e94aef9f869726e476b70d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2f2664b8224548f3aa2d99b4e9d2576f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"31b66b11e1744de592541a0fe1a1d823": {
"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_f018de3435474300abacb1cc8f2f09a0",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"32a90a04b3fc4b56a047c65e1ec9be7e": {
"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_867da702a8e54177bd19010d8ba8c78c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"33651d9773e94c8e885295acd9c4b9a1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"33723553cff04b3cbab2bb2632864a83": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"3947d82e1c0e47b49c3261af4e6310dc": {
"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_47ec6ff7bba24aff85e10b09ee9630de",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3abcc78aa6ae4450960da1f0ae9a5050": {
"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_825e0f66791444258a030a4a53e85ab1"
],
"layout": "IPY_MODEL_7628c84cb03c4b92b68ae3dae3b1e6ee",
"selected_index": 0,
"tabbable": null,
"titles": [
"seq0"
],
"tooltip": null
}
},
"3bfdb8847eb54ce9be88cb1b26ac3a22": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"3d317f920be64e99b19c5857a3706a72": {
"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_04b7b3f2d02f4855ba39aefbd6f35c5f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3e2b08f0616f4ebc84059bc44b706ef8": {
"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_921b024ead2c4f83b3086d518a68873e",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3e86a669fd314a9f9aab836a171180ac": {
"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_4ba27b084ee248469ec878c4b1911ba9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3e980560dca74948bd44ba28b96eb654": {
"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_2597f1a890f24c6ea05c396204443605",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"429046c4a69c4fab81721e57806085b9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"42b8389a079d4e1ba3d78cfa18543600": {
"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_7623c92b46c345fd8261d01823de5629",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4412e2fb6cb54b38b3d63d694d419ba1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"47ec6ff7bba24aff85e10b09ee9630de": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4a9d5daed1d542b4a30e45258f511552": {
"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_8d8ee2617eac41519787425f0928de35",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4acc8a2c5f6444abaa7e2575831e1ef5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4ba27b084ee248469ec878c4b1911ba9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4c3bd982365f42cb9bb0a81f94dbcaeb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4ec7213a869f403fa311b4d1f80eea01": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4f6df5df0db44a78b3011aeb9dbb36ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4ffda111d42d4fe79ec19868bfd97126": {
"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_21a8228a6b7d488092231719b2f396af",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"549938c371e44cdbab9e88ed5b4825b7": {
"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_9781181139084576b3f27d2997673d22",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"56a4647bafed4457b8a9bdb14e145553": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"57b56b555c55413e8749f24e9d2fa948": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"57e468ee8a494890bcc6243c92d88702": {
"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_d52e14c50aef4dc1bcd7c03a851b62d5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5a1c68d4fb47403ea30726d0625ef6f0": {
"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_6aa4ed22a60f4cc9aa47466b646d1a51",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting \n value \n \n \n \n \n repetitions \n 1 \n \n \n
\n
",
"text/plain": "setting value\nrepetitions 1"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"5a6910d96103467aab9b8c01c8d8fa32": {
"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_9501a62ca2a943f68361f1c7fc28d14c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5abd0f4fac134943ace7713fe2b7c4ee": {
"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_2f2664b8224548f3aa2d99b4e9d2576f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5c12e89dfada46a9981e3413ad7b7720": {
"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_151d9f12046941b3b9ff440a5abd3b45",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5db612bdbf7044c999a5aebc5ed4c0e6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"5debd0f915ef49eab082ec5a42e1ece6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"64024baff4e545c1a15ad7bb62328a48": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"67dd0eba2a3f47b09b1c7456ac524f23": {
"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_ab86344d8490434598e61592c4e7025f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"68e97a08142b4d0b9c138ff4f50687c4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6a533142e7774cda82fe3c2f59e81c29": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6aa4ed22a60f4cc9aa47466b646d1a51": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6b4309ae870c4054bb7e4c533fdd9b04": {
"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_0e1bd1eb7d77472083304e8a59e38704",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting \n value \n \n \n \n \n sync_en \n True \n \n \n channel_name \n complex_output_0 \n \n \n channel_name_measure \n None \n \n \n connected_output_indices \n (0, 1) \n \n \n connected_input_indices \n () \n \n \n seq_fn \n None \n \n \n thresholded_acq_trigger_write_en \n None \n \n \n thresholded_acq_trigger_write_address \n None \n \n \n thresholded_acq_trigger_write_invert \n False \n \n \n nco_en \n True \n \n \n init_offset_awg_path_I \n 0.0 \n \n \n init_offset_awg_path_Q \n 0.0 \n \n \n init_gain_awg_path_I \n 1.0 \n \n \n init_gain_awg_path_Q \n 1.0 \n \n \n modulation_freq \n 50000000.0 \n \n \n mixer_corr_phase_offset_degree \n -4.1 \n \n \n mixer_corr_gain_ratio \n 0.9998 \n \n \n auto_sideband_cal \n SidebandCalEnum.OFF \n \n \n integration_length_acq \n None \n \n \n thresholded_acq_threshold \n None \n \n \n thresholded_acq_rotation \n None \n \n \n ttl_acq_input_select \n None \n \n \n ttl_acq_threshold \n None \n \n \n ttl_acq_auto_bin_incr_en \n None \n \n \n
\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
}
},
"6c68848f90a140208dba35554482a0c5": {
"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_f39d6577996c4105833042a3e1a4ccb0"
],
"layout": "IPY_MODEL_5db612bdbf7044c999a5aebc5ed4c0e6",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"6da9240ecf874e39ae480eed22d0d8f3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6dc9082b71fc42a789cc810a25776452": {
"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_18c0614a15a545a19d950cfb397ef32a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"6ddac4407f1f49848237e4c5e1ab8af0": {
"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_4ec7213a869f403fa311b4d1f80eea01",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"6ddf8a1d04414203a240bc14f3918c0d": {
"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_0d0a0cd3a5cd46319b2d2be6e107f445",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"70347d9ae44649f5a868ebb04bbeeb80": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"70cb12349dfe4e9ea6a65099fa46b3cf": {
"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_b16e977f6eed421dbbb06b9c2128f6b5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"71ec7dd82de947b7b1bdbb933f8d96e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"73099a5dddd04500b096e3d1e1bab617": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"756e0108e2da45a7b04a039c84635586": {
"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_e07608433786404b8869da9e9bf2a1a4",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7623c92b46c345fd8261d01823de5629": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7628c84cb03c4b92b68ae3dae3b1e6ee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7879fcc3760f4f99bf2b5b3f77c99301": {
"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_90a5d288e3b54d60bd787b0bca1531b7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"79e12566d2a5477c8de38575f42e02ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7d6553aef1e44112ab87d5f3a3a6981a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7d87cdb5de654e29aa0fb53aa728feed": {
"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_b2f41378fd1c48e2a54fae345ac6feb8",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7da50b6192404334833389a92519952c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7e4ddd4dea6a4a49abd3da62b9692cf1": {
"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_bb11769d9e6649258e52884933f757c4",
"IPY_MODEL_abac5c2197ae44bcb823bf65acad7108",
"IPY_MODEL_fcae6a965c5442caa03d5a427c23f507"
],
"layout": "IPY_MODEL_5debd0f915ef49eab082ec5a42e1ece6",
"selected_index": 0,
"tabbable": null,
"titles": [
"settings",
"cluster0_module2",
"other values"
],
"tooltip": null
}
},
"8133413d91b34fc1bfea5f18c1627866": {
"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_2160df35e25d4e0cb7014874b4a6d7ce",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"825e0f66791444258a030a4a53e85ab1": {
"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_afda03cf981145e79f7521842bc891b0",
"IPY_MODEL_6b4309ae870c4054bb7e4c533fdd9b04"
],
"layout": "IPY_MODEL_4f6df5df0db44a78b3011aeb9dbb36ed",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequence",
"settings"
],
"tooltip": null
}
},
"84c898be694e41ca82365030258b5eb0": {
"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_64024baff4e545c1a15ad7bb62328a48",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"8527ec92b31e43e3bcdebc05443ac57e": {
"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_a207b6538771429cb679e0c114335dc0",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"867da702a8e54177bd19010d8ba8c78c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"875ef971517e462caffdaa3305f855dd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"8812d979e15045d0bd2f7b398cd0d390": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"8bd48cc735d3418ca5a8631bcb394e8f": {
"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_090ceeed8d8b405b8338bbe825355261",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting \n value \n \n \n \n \n reference_source \n internal \n \n \n sync_on_external_trigger \n None \n \n \n
\n
",
"text/plain": "setting value\nreference_source internal\nsync_on_external_trigger None"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"8bdf74dbec3f4ac081c13eeb9efb1abd": {
"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_429046c4a69c4fab81721e57806085b9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"8d8ee2617eac41519787425f0928de35": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"8e127a82433f4a3ea37b02325924b5dd": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"90a5d288e3b54d60bd787b0bca1531b7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"921b024ead2c4f83b3086d518a68873e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"946f98d454bb469399c06ff69495c744": {
"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_4acc8a2c5f6444abaa7e2575831e1ef5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9501a62ca2a943f68361f1c7fc28d14c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"9781181139084576b3f27d2997673d22": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"97d904836f4144da9907b0ca671d60eb": {
"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_f3824f491bbb40d49c85d352ebd4bdde",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"984dc8aba337451c9b1b1ec94c21e86e": {
"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_71ec7dd82de947b7b1bdbb933f8d96e5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9a7e5dd0cdff4261a74eb7f4b58cd7e5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"9c76e20aa2ce4ef58138509aa8e8768a": {
"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_fbf59be4b2b14aa0b6496c0bb1ae9a6c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a207b6538771429cb679e0c114335dc0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"a3374697df1946c4bd1247351cb36140": {
"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_4412e2fb6cb54b38b3d63d694d419ba1",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a385bc3e0c7f422b92fb7fbb56631aa5": {
"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_1a64b9a945d444b79a730604a3329cb8",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a38d58ca4bba4e858b08db70846c3a58": {
"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_9a7e5dd0cdff4261a74eb7f4b58cd7e5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a6bb66b08abb40f888da5ecce4f74b4e": {
"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_8e127a82433f4a3ea37b02325924b5dd",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a8538d2e964a48babc84a6ab9bfe852a": {
"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_2c1759c193d94a659dfe9507622def61",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a8e92680e7164b2da6f5b486464d813a": {
"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_7d6553aef1e44112ab87d5f3a3a6981a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"aac3d783513b4f4e89d1bdcc56d8b908": {
"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_b14a5d264f6a45ecb05dc743fa68fb8a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ab650936e2e14ca5b4955ce8b55b3270": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ab86344d8490434598e61592c4e7025f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"abac5c2197ae44bcb823bf65acad7108": {
"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_3abcc78aa6ae4450960da1f0ae9a5050",
"IPY_MODEL_6c68848f90a140208dba35554482a0c5",
"IPY_MODEL_5a1c68d4fb47403ea30726d0625ef6f0"
],
"layout": "IPY_MODEL_03df0f2befdc4efcb62c178ccef533ea",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequencers",
"settings",
"other values"
],
"tooltip": null
}
},
"afda03cf981145e79f7521842bc891b0": {
"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_06469e313992404d89dfb4ccd5c88ae7",
"IPY_MODEL_c39d6b6410f942aaabe8fc6cfdd998e6"
],
"layout": "IPY_MODEL_70347d9ae44649f5a868ebb04bbeeb80",
"selected_index": 0,
"tabbable": null,
"titles": [
"waveforms",
"program"
],
"tooltip": null
}
},
"b0e0847b2eb24ddb9a323f86d3178fab": {
"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_7e4ddd4dea6a4a49abd3da62b9692cf1"
],
"layout": "IPY_MODEL_f5831f4750f7435fbf09e907d9100473",
"selected_index": 0,
"tabbable": null,
"titles": [
"cluster0"
],
"tooltip": null
}
},
"b10511daa3934fbba04a12051463ef9c": {
"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_6da9240ecf874e39ae480eed22d0d8f3",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b14a5d264f6a45ecb05dc743fa68fb8a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b16e977f6eed421dbbb06b9c2128f6b5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b2f41378fd1c48e2a54fae345ac6feb8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b45514fbd47744b0ad9b504bc913ff24": {
"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_0a99e1976048494486acab324ec3d640",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b589ee9d189d4e9d92ba6a5d50a11c50": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b5d9b1472ad3405098f1cc64da22c8b0": {
"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_c306f365662746cebe1890532ca71484",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"bb11769d9e6649258e52884933f757c4": {
"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_8bd48cc735d3418ca5a8631bcb394e8f"
],
"layout": "IPY_MODEL_6a533142e7774cda82fe3c2f59e81c29",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"bbe992b8ec784a9d9c6110f771f47cc9": {
"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_d2b22237f2c24c80850f3a56c77adf73",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"bd7eee9ef34f4558aa957c26fb5b7ed3": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"c306f365662746cebe1890532ca71484": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"c33b2d5c6fc547c2a6018a396441402f": {
"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_7da50b6192404334833389a92519952c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c39d6b6410f942aaabe8fc6cfdd998e6": {
"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_875ef971517e462caffdaa3305f855dd",
"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
}
},
"c4019c75ec264e26a7e742ed02a35734": {
"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_bd7eee9ef34f4558aa957c26fb5b7ed3",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c4a59a8244aa4f978fca5dba297b3215": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"c60283d39cdb4effb9a114bf18267c6b": {
"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_d6707b700ab4482bb38b9e112f2a22fc",
"selected_index": null,
"tabbable": null,
"titles": [],
"tooltip": null
}
},
"cbeaef0d273945398d45cb669c93e9a5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ce8c8d47f11b485abe678d81857062c4": {
"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_33651d9773e94c8e885295acd9c4b9a1",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"d2b22237f2c24c80850f3a56c77adf73": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d52e14c50aef4dc1bcd7c03a851b62d5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d6707b700ab4482bb38b9e112f2a22fc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"dd4d036b44214a768333b43905d1605b": {
"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_8812d979e15045d0bd2f7b398cd0d390",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"dd8010a7879d42fb8b7dd0468d4c0a3a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e07608433786404b8869da9e9bf2a1a4": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e1354681251f4a38812fd4d0b635e0e4": {
"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_79e12566d2a5477c8de38575f42e02ed",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e18baa966900472b94246def8bd832e9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e846d3db5f5d411c8a371c52cb32c02b": {
"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_dd8010a7879d42fb8b7dd0468d4c0a3a",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e9767b4179364d8a8f8adb65b7b1bed3": {
"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_2034dabbd46a4a8f8a4b87a686fa827f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ec503f4625364d64a70e4056c5d8ab7c": {
"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_73099a5dddd04500b096e3d1e1bab617",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ed4fd58dc7c7407284415a3597799c08": {
"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_68e97a08142b4d0b9c138ff4f50687c4",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f018de3435474300abacb1cc8f2f09a0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f3824f491bbb40d49c85d352ebd4bdde": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f39d6577996c4105833042a3e1a4ccb0": {
"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_1db606b6f2eb47258835da0b472855a0",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting \n value \n \n \n \n \n offset_ch0_path_I \n -5.52 \n \n \n offset_ch0_path_Q \n -5.56 \n \n \n offset_ch1_path_I \n None \n \n \n offset_ch1_path_Q \n None \n \n \n in0_gain \n None \n \n \n in1_gain \n None \n \n \n distortion_corrections \n [{'exp0': {'coeffs': None, 'config': 'QbloxFil... \n \n \n out0_lo_freq_cal_type_default \n LoCalEnum.OFF \n \n \n out1_lo_freq_cal_type_default \n LoCalEnum.OFF \n \n \n lo0_freq \n 6950000000.0 \n \n \n lo1_freq \n None \n \n \n lo2_freq \n None \n \n \n lo3_freq \n None \n \n \n lo4_freq \n None \n \n \n lo5_freq \n None \n \n \n out0_att \n None \n \n \n out1_att \n None \n \n \n out2_att \n None \n \n \n out3_att \n None \n \n \n out4_att \n None \n \n \n out5_att \n None \n \n \n in0_att \n None \n \n \n in1_att \n None \n \n \n
\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\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
}
},
"f509c2fffb5e47a0ba229c70f8ab476c": {
"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_56a4647bafed4457b8a9bdb14e145553",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f5831f4750f7435fbf09e907d9100473": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f688b5debec8405594eb17b11f7aeafd": {
"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_cbeaef0d273945398d45cb669c93e9a5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f9bbd1a9aa0341848e96ba7345faf0ea": {
"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_2ba3984ec60441acaf0f18892eebe085",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"fa69d94fcc584fe7bb0154fc42e2e021": {
"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_e18baa966900472b94246def8bd832e9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"fbf59be4b2b14aa0b6496c0bb1ae9a6c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"fcae6a965c5442caa03d5a427c23f507": {
"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_4c3bd982365f42cb9bb0a81f94dbcaeb",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting \n value \n \n \n \n \n repetitions \n 1 \n \n \n
\n
",
"text/plain": "setting value\nrepetitions 1"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"feb3d4988afe40529f09a8d4218991b2": {
"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_010c673742984225a899a09e7536fd8d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}