{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "247550b0", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:17.833669Z", "iopub.status.busy": "2025-04-17T20:52:17.832989Z", "iopub.status.idle": "2025-04-17T20:52:17.839074Z", "shell.execute_reply": "2025-04-17T20:52:17.838209Z" }, "nbsphinx": "hidden" }, "outputs": [], "source": [ "# Copyright 2025 Keysight Technologies Inc." ] }, { "cell_type": "raw", "id": "7895d79a", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Cross Resonance Gate\n", "======================\n", "The Cross-Resonance (CR) gate is one of the most widely used\n", "two-qubit entangling gates for superconducting qubits. By using only\n", "microwave controls, they eliminate the need for flux-tunable qubits,\n", "thus avoiding noisy flux lines.\n", "\n", "The gate acts on pairs of qubits that are either capacitively coupled\n", "or connected by a coupler.\n", "In its most basic form, it applies a pulse to the control qubits at the\n", "frequencies of the target qubits. Additional single-qubit pulses can be\n", "incorporated to enhance performance, but the core mechanism relies on this principle.\n", "\n", "Let's see why that works by looking at the driving Hamiltonians of\n", "two qubits (ref :cite:`Krantz2019`):\n", "\n", ".. math::\n", " H_{d,1} = \\Omega V_{d1}(t) \\left( \\sigma_x \\otimes \\mathbb{1}\n", " + \\nu_1^{-} \\mathbb{1} \\otimes \\sigma_x + \\mu_1^{-} \\sigma_z \\otimes \\sigma_x \\\\\n", " \\right)\\\\\n", " H_{d,2} = \\Omega V_{d2}(t) \\left( \\mathbb{1} \\otimes \\sigma_x + \\nu_2^{+} \\\\\n", " \\sigma_x \\otimes \\mathbb{1} + \\mu_2^{+} \\sigma_x \\otimes \\sigma_z \\right)\n", "\n", "With:\n", "\n", ".. math::\n", " \\mu_i^{\\pm} = \\pm \\frac{g}{\\Delta_{12}} \\frac{\\alpha_i}{\\left( \\alpha_i \\\\\n", " \\mp \\Delta_{12} \\right)}\\\\\n", " \\nu_i^{\\pm} = \\pm \\frac{g}{\\Delta_{12}} \\frac{\\mp \\Delta_{12}}{\\left( \\\\\n", " \\alpha_i \\mp \\Delta_{12} \\right)}\n", "\n", "\n", "Where :math:`g` is the coupling, :math:`\\Delta_{12}` is the frequency difference\n", "between qubit 1 and qubit 2 and and :math:`\\Omega V_{di}(t)` is the\n", "driving for qubit i.\n", "If we drive qubit 1 at the frequency of\n", "qubit 2, based on the equation for :math:`H_{d,2}` it will result in a\n", "combination of :math:`\\nu_2^{+} \\sigma_x\\otimes \\mathbb{1}` and\n", ":math:`\\mu_1^{-} \\sigma_z \\otimes \\sigma_x`\n", "This means that the Rabi oscillations of qubit 2 will have a frequency given by:\n", "\n", ".. math::\n", " \\Omega_{\\text{QB2}}^{\\text{Rabi}} = \\Omega V_{\\text{d1}} \\left( \\nu_1^{-} + z_1 \\\\\n", " \\mu_1^{-} \\right)\n", "\n", "\n", "where :math:`z_1 = \\langle \\sigma_z \\mathbb{1} \\rangle` , and :math:`z_1` depends on\n", "the state of qubit 1, therefore demonstrating the existence of the coupling between\n", "the two qubits.\n", "\n", ".. image:: ../figures/cr_p_krantz.png\n", " :align: center\n", " :width: 50%\n", "\n", "Lets now explain how the tuneup process works.\n", "The CR gate consists of pulsing the control\n", "qubit with a drive tone at the frequency of the target qubit. By varying either\n", "the amplitude or the duration of the tone, we observe the target qubit undergoing\n", "Rabi oscillations.\n", "To tune-up the gate, we want to meet the following condition:\n", "if the control qubit is in the zero state, nothing should happen to the target\n", "qubit. If the control qubit is in the excited state, the target qubit should\n", "undergo a full pi rotation about the X axis as shown in the picture above\n", "(see p.37, ref :cite:`Krantz2019`).\n", "\n", "We thus seek an amplitude (or duration) at which both conditions hold approximately\n", "to the best degree possible.\n", "\n", "Let's walk through the steps to perform this experiment on Keysight hardware using\n", "the QCS package.\n", "First, we'll load all the necessary packages and a channel mapper, which links up to\n", "the hardware channels. If a channel mapper doesn't exist, we can create a new one and\n", "add the hardware references to it. Then we generate a calibration set for the qubits\n", "using :py:func:`~keysight.qcs.experiments.make_calibration_set`. This file that stores\n", "all the important variables and parameters we need to run experiments on our quantum\n", "system." ] }, { "cell_type": "code", "execution_count": 2, "id": "956e0a55", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:17.842681Z", "iopub.status.busy": "2025-04-17T20:52:17.842094Z", "iopub.status.idle": "2025-04-17T20:52:21.226330Z", "shell.execute_reply": "2025-04-17T20:52:21.223970Z" }, "lines_to_next_cell": 2 }, "outputs": [], "source": [ "import numpy as np\n", "import keysight.qcs as qcs\n", "from keysight.qcs.experiments import make_calibration_set\n", "from keysight.qcs.experiments import CrossResonance" ] }, { "cell_type": "code", "execution_count": 3, "id": "3cc28f24", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:21.230290Z", "iopub.status.busy": "2025-04-17T20:52:21.229584Z", "iopub.status.idle": "2025-04-17T20:52:21.235106Z", "shell.execute_reply": "2025-04-17T20:52:21.234354Z" } }, "outputs": [], "source": [ "# Set this to True if channel mapper exists\n", "channel_mapper_exists = False\n", "\n", "if channel_mapper_exists:\n", " mapper = qcs.load(\"\")\n", "else:\n", " # generate an empty channel mapper with the correct address\n", " mapper = qcs.ChannelMapper(\"127.0.0.1\")" ] }, { "cell_type": "raw", "id": "3a686ff5", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "The CR gate is a two-qubit experiment and therefore requires defining the targets\n", "a bit differently than for the single-qubit experiments. Here we are doing a minimal\n", "example of 1 CR gate between qubit 0 and qubit 1, where the former is the control and\n", "the latter is the target.\n", "To this end, we describe the connections as a list of tuples where the control\n", "qubit is specified first in ``edge_list`` and then\n", "make a :py:class:`~keysight.qcs.quantum.MultiQudits` object out of it using the\n", ":py:meth:`~keysight.qcs.quantum.Qudits.make_connectivity` method.\n", "The obtained ``mq_targets`` is then the equivalent\n", "of ``qubits`` for other 1 qubit experiments. We can then simply pass it to our\n", "built-in :py:class:`~keysight.qcs.experiments.CrossResonance`,\n", "which then acts on the given connectivity encoded in this ``mq_targets``.\n", "\n", "Note that the :py:class:`~keysight.qcs.programs.CalibrationSet` object provided to\n", "the experiment class must match\n", "the connectivity, as it stores the linker definition for the CR gate. This is why\n", "we can pass the ``edge_list``\n", "to :py:func:`~keysight.qcs.experiments.make_calibration_set`, which will\n", "automatically handle this for us.\n", "\n", ".. note::\n", " It is also possible to define the\n", " :py:class:`~keysight.qcs.programs.CalibrationSet` on a longer list of\n", " edges (e.g., [(0, 1), (1, 0)]) and only run the Cross Resonance calibration on one\n", " of these directed edges (e.g., [(0, 1)]), as long as there's at least one matching\n", " edge." ] }, { "cell_type": "code", "execution_count": 4, "id": "e15a7225", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:21.238687Z", "iopub.status.busy": "2025-04-17T20:52:21.238158Z", "iopub.status.idle": "2025-04-17T20:52:21.428126Z", "shell.execute_reply": "2025-04-17T20:52:21.427318Z" } }, "outputs": [], "source": [ "n_qubits = 2\n", "qubits = qcs.Qudits(range(n_qubits))\n", "edge_list = [(0, 1)]\n", "mq_targets = qubits.make_connectivity(edge_list)\n", "calibration_set = make_calibration_set(n_qubits, edge_list)\n", "\n", "# Set this to True if connected to hardware\n", "run_on_hw = False" ] }, { "cell_type": "raw", "id": "cd10a2c4", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Next, we’ll set up our Cross Resonance experiment to find the amplitude\n", "of the CR gate. The\n", ":py:class:`~keysight.qcs.experiments.CrossResonance`\n", "class is\n", "actually a subclass of the more general\n", ":py:class:`~keysight.qcs.experiments.CalibrationExperiment`.\n", "which is specifically designed to calibrate quantum\n", "operations and store all the parameters in the\n", ":py:class:`~keysight.qcs.programs.CalibrationSet`.\n", "\n", "In this example, we're setting up the experiment to calibrate the amplitude\n", "for 1 CR gate." ] }, { "cell_type": "code", "execution_count": 5, "id": "1432a541", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:21.431614Z", "iopub.status.busy": "2025-04-17T20:52:21.431286Z", "iopub.status.idle": "2025-04-17T20:52:21.767629Z", "shell.execute_reply": "2025-04-17T20:52:21.766790Z" } }, "outputs": [], "source": [ "# Create a resonator spectroscopy experiment\n", "cross_resonance = CrossResonance(\n", " backend=mapper,\n", " calibration_set=calibration_set,\n", " qubits=mq_targets,\n", " operation=\"CR\",\n", ")" ] }, { "cell_type": "code", "execution_count": 6, "id": "5f5c1453", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:21.771303Z", "iopub.status.busy": "2025-04-17T20:52:21.770746Z", "iopub.status.idle": "2025-04-17T20:52:21.862291Z", "shell.execute_reply": "2025-04-17T20:52:21.861412Z" }, "lines_to_next_cell": 0 }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", " \n", "\tkeysight-logo-svg\n", "\t\n", "\t\n", "\t\t\n", "\t\n", "\n", "\n", " \n", "
\n", " Program\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Program\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Durationundefined
Layers3
Targets3
Repetitions\n", "
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #0\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #0 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Durationundefined
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #1\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #1 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Duration100 ns
\n", "
\n", "\n", "
\n", "
\n", "
\n", "
\n", " Layer #2\n", "
\n", " \n", "\n", "\n", "\n", "
\n", " Layer #2 \n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Durationundefined
\n", "
\n", "\n", "
\n", "
\n", "
\n", " qudits\n", " \n", " 0\n", " \n", " \n", "
\n", " RX\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " ParameterizedGate RX on ('qudits', 0)\n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Parametersphi_x
ValuesArray(name=amplitudes, shape=(1,), dtype=float, unit=none)
\n", "
\n", " Matrices\n", "
\n", "
\n", " \n", "
\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01
10
\n", "\n", "
\n", "
\n", "
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Measure on ('qudits', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
Dim2
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " 1\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " Measure on ('qudits', 1)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", "
Dim2
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", " xy_pulse\n", " \n", " 0\n", " \n", " \n", "
\n", " \n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
\n", " RFWaveform on ('xy_pulse', 0)\n", "
\n", "
\n", " Parameters\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
DurationScalarRef(name=cr_gate_duration, value=100 ns, dtype=float, unit=s)
AmplitudeScalarRef(name=_implicit, value=0.1, dtype=float, unit=none)
FrequencyScalarRef(name=xy_pulse_frequencies_target, value=5.1 GHz, dtype=float, unit=Hz)
EnvelopeGaussianEnvelope(2.0)
Instantaneous PhaseScalarRef(name=CR_control_phase, value=0 rad, dtype=float, unit=rad)
Post-phaseScalarRef(name=CR_control_post_phase, value=0 rad, dtype=float, unit=rad)
\n", "
\n", "\n", "\n", "
\n", "
\n", "
\n", "\n", "\n", "\n", "\n", "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": { "text/html": { "isolated": true } }, "output_type": "display_data" } ], "source": [ "# Draw the program to view the hardware operations\n", "cross_resonance.draw()" ] }, { "cell_type": "raw", "id": "b6f25ee9", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "Now we specify the amplitude range to sweep over for the CR pulse.\n", "You can simply pass it as an argument to the\n", ":py:class:`~keysight.qcs.experiments.CrossResonance` class.\n", "\n", ".. note::\n", " If the \"CR\" operation is stored in the\n", " :py:class:`~keysight.qcs.programs.CalibrationSet` under a\n", " different name, you’ll need to pass that name as an argument (``operation=``)\n", " to the :py:class:`~keysight.qcs.experiments.CrossResonance` class so it can\n", " reference the correct entry in the\n", " :py:class:`~keysight.qcs.programs.CalibrationSet`." ] }, { "cell_type": "code", "execution_count": 7, "id": "2485d12d", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:21.865814Z", "iopub.status.busy": "2025-04-17T20:52:21.865273Z", "iopub.status.idle": "2025-04-17T20:52:21.872586Z", "shell.execute_reply": "2025-04-17T20:52:21.871754Z" } }, "outputs": [], "source": [ "# Retrieve the amplitude stored in the calibration set\n", "current_freq = cross_resonance.calibration_set.variables.cr_gate_amplitude.value\n", "\n", "# Set the frequency range for sweeping\n", "start = 0\n", "end = 0.5\n", "nsteps = 10\n", "freq_scan_values = np.linspace(start, end, nsteps)" ] }, { "cell_type": "code", "execution_count": 8, "id": "45194755", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:21.875851Z", "iopub.status.busy": "2025-04-17T20:52:21.875310Z", "iopub.status.idle": "2025-04-17T20:52:21.928780Z", "shell.execute_reply": "2025-04-17T20:52:21.927937Z" } }, "outputs": [], "source": [ "# Configure the repetitions for this experiment\n", "cross_resonance.configure_repetitions(\n", " n_shots=1, cr_amplitudes=freq_scan_values, hw_sweep=False\n", ")" ] }, { "cell_type": "raw", "id": "6e7d824a", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "To execute this experiment, we can simply run" ] }, { "cell_type": "code", "execution_count": 9, "id": "f8e9f464", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:21.932290Z", "iopub.status.busy": "2025-04-17T20:52:21.931967Z", "iopub.status.idle": "2025-04-17T20:52:22.053672Z", "shell.execute_reply": "2025-04-17T20:52:22.052834Z" }, "lines_to_next_cell": 2 }, "outputs": [], "source": [ "if run_on_hw:\n", " cross_resonance.execute()\n", "else:\n", " # load in a previously executed version of this experiment\n", " cross_resonance = qcs.load(\"CrossResonance.qcs\")" ] }, { "cell_type": "raw", "id": "c2994c1d", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ "For the purposes of this demonstration, we added an \"ancilla\" qubit to the\n", "program and connected the physical output channels for our CR control qubit's control\n", "line to the digizer associated with the ancilla to allow us to capture the CR pulse." ] }, { "cell_type": "code", "execution_count": 10, "id": "37ec48e7", "metadata": { "execution": { "iopub.execute_input": "2025-04-17T20:52:22.057922Z", "iopub.status.busy": "2025-04-17T20:52:22.057564Z", "iopub.status.idle": "2025-04-17T20:52:22.947754Z", "shell.execute_reply": "2025-04-17T20:52:22.946985Z" } }, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0013183592818677425, -0.001977538922801614, -0.002636718563735485, 0.0002197265566792339, 0.0008789062267169356, 0.002636718563735485, 0.0013183592818677425, 0.0008789062267169356, 0.0, -0.002636718563735485, 0.002197265625, 0.0, -0.0002197265566792339, 0.0, -0.0013183592818677425, 0.001977538922801614, 0.002197265625, 0.0010986328125, 0.002636718563735485, 0.0024169920943677425, -0.0002197265566792339, 0.0041748047806322575, 0.002197265625, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, 0.0, -0.0010986328125, -0.0010986328125, 0.0013183592818677425, 0.0006591796409338713, -0.0002197265566792339, 0.002636718563735485, 0.0, -0.0008789062267169356, 0.0, 0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, 0.003076171735301614, -0.0008789062267169356, 0.0002197265566792339, -0.0004394531133584678, 0.0, 0.0002197265566792339, 0.0006591796409338713, 0.0013183592818677425, 0.003076171735301614, 0.0006591796409338713, -0.0013183592818677425, -0.002197265625, -0.0013183592818677425, 0.0, 0.0002197265566792339, -0.0017578124534338713, -0.0004394531133584678, -0.0006591796409338713, 0.001538085867650807, -0.001538085867650807, 0.0024169920943677425, -0.0013183592818677425, 0.0028564452659338713, 0.0013183592818677425, 0.0017578124534338713, 0.0006591796409338713, -0.002636718563735485, 0.0013183592818677425, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, 0.001538085867650807, 0.0013183592818677425, -0.003735351376235485, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, 0.0002197265566792339, -0.0002197265566792339, 0.0004394531133584678, 0.0024169920943677425, 0.0004394531133584678, -0.0004394531133584678, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.0008789062267169356, 0.0, 0.0017578124534338713, -0.0041748047806322575, 0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, 0.001538085867650807, 0.0002197265566792339, -0.003076171735301614, -0.003076171735301614, 0.0004394531133584678, 0.002636718563735485, -0.0002197265566792339, -0.001977538922801614, 0.0, 0.0006591796409338713, 0.0013183592818677425, 0.0004394531133584678, -0.002197265625, -0.0010986328125, -0.0008789062267169356, -0.0004394531133584678, -0.0004394531133584678, 0.0006591796409338713, 0.0013183592818677425, 0.0002197265566792339, 0.0006591796409338713, -0.0010986328125, 0.0017578124534338713, -0.001538085867650807, -0.0006591796409338713, 0.001977538922801614, -0.0008789062267169356, 0.0, -0.0024169920943677425, -0.0010986328125, 0.0004394531133584678, 0.0010986328125, 0.0008789062267169356, 0.0013183592818677425, 0.0017578124534338713, 0.0, 0.001538085867650807, -0.0017578124534338713, -0.0004394531133584678, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.0002197265566792339, -0.0041748047806322575, 0.0004394531133584678, -0.0002197265566792339, -0.0024169920943677425, -0.0010986328125, 0.0006591796409338713, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, 0.0004394531133584678, 0.001538085867650807, -0.0010986328125, 0.001538085867650807, -0.0002197265566792339, -0.0004394531133584678, 0.0008789062267169356, 0.0006591796409338713, 0.002197265625, 0.0004394531133584678, 0.0013183592818677425, -0.0004394531133584678, -0.0002197265566792339, 0.0010986328125, 0.0004394531133584678, -0.0006591796409338713, -0.0002197265566792339, 0.0004394531133584678, -0.0002197265566792339, -0.0006591796409338713, 0.0006591796409338713, 0.001977538922801614, 0.0006591796409338713, -0.0013183592818677425, 0.0002197265566792339, -0.0004394531133584678, 0.0008789062267169356, 0.0032958984375, -0.001977538922801614, 0.0008789062267169356, -0.0013183592818677425, 0.0008789062267169356, 0.001977538922801614, -0.0008789062267169356, 0.0006591796409338713, -0.002197265625, 0.0010986328125, -0.0032958984375, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, -0.0002197265566792339, 0.0, -0.0006591796409338713, -0.001538085867650807, 0.002197265625, 0.001977538922801614, -0.0004394531133584678, -0.001977538922801614, 0.0004394531133584678, 0.0024169920943677425, 0.0010986328125, 0.0008789062267169356, 0.003076171735301614, -0.0032958984375, -0.0008789062267169356, 0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, 0.002197265625, 0.0010986328125, -0.0006591796409338713, -0.0013183592818677425, 0.002197265625, 0.002197265625, 0.0004394531133584678, 0.0004394531133584678, 0.0004394531133584678, 0.0004394531133584678, -0.0017578124534338713, 0.0008789062267169356, -0.0002197265566792339, -0.0010986328125, 0.0008789062267169356, -0.0004394531133584678, 0.0017578124534338713, 0.0006591796409338713, -0.0006591796409338713, -0.001977538922801614, 0.0, -0.0004394531133584678, 0.0002197265566792339, 0.0, -0.0006591796409338713, -0.001977538922801614, 0.0008789062267169356, 0.0006591796409338713, -0.0006591796409338713, -0.0035156249068677425, 0.0008789062267169356, 0.0006591796409338713, -0.0010986328125, 0.0006591796409338713, 0.0035156249068677425, 0.001538085867650807, -0.001538085867650807, -0.0002197265566792339, 0.0017578124534338713, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, 0.0, 0.0, -0.0006591796409338713, 0.0008789062267169356, 0.0004394531133584678, 0.0, -0.002197265625, -0.001538085867650807, 0.0004394531133584678, -0.0010986328125, 0.0010986328125, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.0006591796409338713, 0.0006591796409338713, -0.0002197265566792339, 0.0002197265566792339, 0.0010986328125, -0.0006591796409338713, 0.002636718563735485, 0.0002197265566792339, -0.002197265625, 0.0, -0.0006591796409338713, 0.0008789062267169356, -0.001977538922801614, 0.0013183592818677425, 0.0032958984375, -0.0004394531133584678, -0.0002197265566792339, -0.001538085867650807, 0.0004394531133584678, 0.0, 0.0008789062267169356, 0.0013183592818677425, 0.0010986328125, 0.0024169920943677425, -0.0017578124534338713, 0.0, -0.0002197265566792339, -0.0017578124534338713, -0.0010986328125, 0.0004394531133584678, 0.001538085867650807, 0.0024169920943677425, -0.0004394531133584678, -0.002197265625, 0.0002197265566792339, -0.0010986328125, 0.001538085867650807, 0.0017578124534338713, 0.0002197265566792339, -0.002636718563735485, 0.0008789062267169356, 0.0, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, 0.0006591796409338713, 0.0006591796409338713, 0.002197265625, -0.0002197265566792339, -0.0017578124534338713, -0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, 0.0006591796409338713, 0.0006591796409338713, -0.0028564452659338713, -0.0002197265566792339, -0.0002197265566792339, 0.001977538922801614, 0.0017578124534338713, 0.002197265625, -0.001977538922801614, 0.0008789062267169356, 0.0008789062267169356, -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, 0.0, -0.0004394531133584678, -0.0013183592818677425, -0.0002197265566792339, 0.0008789062267169356, -0.0004394531133584678, 0.002636718563735485, 0.0008789062267169356, -0.0017578124534338713, 0.002197265625, 0.0010986328125, -0.002197265625, -0.001538085867650807, 0.003076171735301614, -0.0006591796409338713, -0.0002197265566792339, -0.002636718563735485, -0.0028564452659338713, 0.0004394531133584678, 0.0017578124534338713, -0.0004394531133584678, 0.0002197265566792339, 0.0008789062267169356, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, -0.0010986328125, 0.0024169920943677425, -0.0006591796409338713, -0.0006591796409338713, -0.0004394531133584678, 0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, 0.0008789062267169356, 0.0017578124534338713, 0.0004394531133584678, -0.0024169920943677425, -0.0008789062267169356, 0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, 0.0004394531133584678, -0.0013183592818677425, 0.0, -0.0013183592818677425, -0.0002197265566792339, -0.0008789062267169356, 0.0008789062267169356, -0.0006591796409338713, 0.0004394531133584678, 0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, 0.0002197265566792339, -0.0017578124534338713, -0.0006591796409338713, 0.0017578124534338713, -0.0010986328125, 0.0008789062267169356, -0.001538085867650807, 0.0006591796409338713, 0.0006591796409338713, -0.0024169920943677425, 0.0004394531133584678, -0.0008789062267169356, 0.0008789062267169356, -0.0008789062267169356, -0.0017578124534338713, 0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.0006591796409338713, 0.0013183592818677425, -0.0002197265566792339, -0.0006591796409338713, -0.0024169920943677425, 0.0004394531133584678, 0.0008789062267169356, -0.002197265625, 0.0010986328125, -0.0024169920943677425, -0.0010986328125, 0.0002197265566792339, -0.0013183592818677425, 0.0017578124534338713, -0.0013183592818677425, 0.0013183592818677425, 0.0008789062267169356, -0.0006591796409338713, 0.0006591796409338713, -0.0008789062267169356, 0.002197265625, -0.0024169920943677425, 0.0024169920943677425, 0.0002197265566792339, -0.0002197265566792339, 0.0013183592818677425, 0.0, -0.0002197265566792339, -0.0006591796409338713, 0.0002197265566792339, -0.0008789062267169356, 0.0002197265566792339, -0.0002197265566792339, 0.0004394531133584678, 0.0002197265566792339, -0.0004394531133584678, 0.0004394531133584678, 0.0010986328125, 0.001977538922801614, -0.0004394531133584678, 0.0, 0.0, -0.003076171735301614, 0.0004394531133584678, -0.0024169920943677425, 0.001538085867650807, -0.0013183592818677425, 0.0002197265566792339, 0.0013183592818677425, -0.002197265625, -0.0010986328125, -0.0013183592818677425, -0.002636718563735485, 0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.0006591796409338713, -0.0028564452659338713, -0.0008789062267169356, -0.0008789062267169356, -0.0002197265566792339, -0.002197265625, 0.001538085867650807, 0.0010986328125, -0.0024169920943677425, -0.001538085867650807, 0.0008789062267169356 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.0556)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.0004394531133584678, 0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, -0.0013183592818677425, 0.0002197265566792339, -0.0006591796409338713, -0.0002197265566792339, 0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.002197265625, 0.002197265625, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, 0.0, 0.0010986328125, 0.0002197265566792339, 0.0028564452659338713, -0.0002197265566792339, 0.0013183592818677425, 0.0010986328125, -0.002197265625, 0.0004394531133584678, -0.0004394531133584678, 0.0008789062267169356, 0.0, -0.0035156249068677425, 0.0008789062267169356, 0.0010986328125, 0.0008789062267169356, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, 0.0010986328125, 0.0, 0.0, 0.0032958984375, -0.0004394531133584678, -0.0010986328125, 0.0008789062267169356, 0.0, -0.001977538922801614, 0.0013183592818677425, 0.0028564452659338713, 0.0008789062267169356, 0.0010986328125, 0.0010986328125, -0.0004394531133584678, 0.0017578124534338713, 0.0013183592818677425, 0.0017578124534338713, -0.0010986328125, 0.001538085867650807, -0.0004394531133584678, -0.002197265625, 0.0013183592818677425, 0.0, 0.0010986328125, -0.0017578124534338713, 0.0013183592818677425, 0.0006591796409338713, -0.0004394531133584678, -0.0024169920943677425, -0.0028564452659338713, -0.0006591796409338713, 0.0013183592818677425, 0.0006591796409338713, -0.001977538922801614, 0.0004394531133584678, -0.0004394531133584678, -0.003955077845603228, -0.0013183592818677425, 0.0, -0.0013183592818677425, -0.0006591796409338713, 0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0028564452659338713, 0.0024169920943677425, 0.0010986328125, 0.0010986328125, 0.001977538922801614, -0.001538085867650807, -0.0004394531133584678, 0.001977538922801614, 0.0017578124534338713, 0.0013183592818677425, 0.001538085867650807, 0.003955077845603228, 0.001977538922801614, 0.001538085867650807, 0.0017578124534338713, 0.0017578124534338713, 0.002197265625, 0.0024169920943677425, 0.0, 0.002197265625, 0.002197265625, 0.0006591796409338713, 0.001977538922801614, 0.0010986328125, 0.0013183592818677425, 0.0010986328125, -0.0004394531133584678, 0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.001977538922801614, -0.0041748047806322575, -0.0028564452659338713, -0.003076171735301614, -0.002636718563735485, -0.0046142577193677425, -0.0024169920943677425, -0.0046142577193677425, -0.001977538922801614, -0.002636718563735485, -0.00637206993997097, -0.00527343712747097, -0.0035156249068677425, -0.003735351376235485, -0.004833984188735485, -0.003955077845603228, -0.0028564452659338713, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, 0.0006591796409338713, 0.0, 0.0008789062267169356, 0.0006591796409338713, 0.0008789062267169356, 0.0046142577193677425, 0.003955077845603228, 0.0057128905318677425, 0.00637206993997097, 0.00439453125, 0.00527343712747097, 0.008129882626235485, 0.0054931640625, 0.003955077845603228, 0.006152343470603228, 0.0032958984375, 0.006152343470603228, 0.0057128905318677425, 0.0046142577193677425, 0.006152343470603228, 0.005932617001235485, 0.0017578124534338713, 0.0008789062267169356, 0.0, -0.0008789062267169356, -0.001538085867650807, 0.0004394531133584678, 0.0004394531133584678, -0.0024169920943677425, -0.0006591796409338713, -0.00527343712747097, -0.007910155691206455, -0.0068115233443677425, -0.00856933556497097, -0.0087890625, -0.009448242373764515, -0.0076904296875, -0.008349609561264515, -0.0087890625, -0.007031249813735485, -0.008349609561264515, -0.0076904296875, -0.007031249813735485, -0.006591796875, -0.006591796875, -0.004833984188735485, -0.0006591796409338713, -0.003076171735301614, 0.0017578124534338713, -0.0010986328125, -0.0004394531133584678, 0.0017578124534338713, 0.0054931640625, 0.003735351376235485, 0.004833984188735485, 0.0087890625, 0.00637206993997097, 0.0057128905318677425, 0.011425781063735485, 0.010986328125, 0.010107421316206455, 0.010107421316206455, 0.01054687425494194, 0.00856933556497097, 0.0098876953125, 0.009008788503706455, 0.00856933556497097, 0.008129882626235485, 0.004833984188735485, 0.005053710658103228, 0.00439453125, 0.0024169920943677425, 0.0010986328125, -0.0002197265566792339, -0.00439453125, -0.007250976283103228, -0.0035156249068677425, -0.006591796875, -0.0068115233443677425, -0.009008788503706455, -0.009008788503706455, -0.00966796837747097, -0.009008788503706455, -0.013403319753706455, -0.011425781063735485, -0.01186523400247097, -0.01054687425494194, -0.011206054128706455, -0.0098876953125, -0.009448242373764515, -0.007910155691206455, -0.00747070275247097, -0.006152343470603228, -0.004833984188735485, -0.005932617001235485, -0.0010986328125, -0.0004394531133584678, 0.001977538922801614, 0.0017578124534338713, 0.005053710658103228, 0.005053710658103228, 0.0068115233443677425, 0.007910155691206455, 0.010986328125, 0.010107421316206455, 0.01076660118997097, 0.01384277269244194, 0.013403319753706455, 0.01164550706744194, 0.0120849609375, 0.010986328125, 0.01406249962747097, 0.01076660118997097, 0.01054687425494194, 0.009008788503706455, 0.005053710658103228, 0.005932617001235485, 0.0054931640625, 0.0054931640625, 0.0008789062267169356, 0.0010986328125, -0.0010986328125, -0.0046142577193677425, -0.004833984188735485, -0.0076904296875, -0.005932617001235485, -0.010327148251235485, -0.01296386681497097, -0.011206054128706455, -0.01318359375, -0.014501952566206455, -0.015600585378706455, -0.014721679501235485, -0.014721679501235485, -0.014501952566206455, -0.01296386681497097, -0.015600585378706455, -0.0120849609375, -0.011425781063735485, -0.011425781063735485, -0.00637206993997097, -0.009228515438735485, -0.0032958984375, -0.002636718563735485, -0.0017578124534338713, 0.0004394531133584678, 0.0004394531133584678, 0.002636718563735485, 0.00439453125, 0.0068115233443677425, 0.009448242373764515, 0.010327148251235485, 0.011206054128706455, 0.01186523400247097, 0.014501952566206455, 0.01406249962747097, 0.01274413987994194, 0.01296386681497097, 0.0120849609375, 0.01274413987994194, 0.01318359375, 0.0098876953125, 0.00856933556497097, 0.00747070275247097, 0.007031249813735485, 0.00527343712747097, 0.007031249813735485, 0.0010986328125, -0.0010986328125, -0.002636718563735485, -0.001538085867650807, -0.0054931640625, -0.0076904296875, -0.0076904296875, -0.008129882626235485, -0.01054687425494194, -0.0120849609375, -0.01274413987994194, -0.011425781063735485, -0.01604003831744194, -0.015380859375, -0.01296386681497097, -0.015600585378706455, -0.015600585378706455, -0.013623046688735485, -0.01384277269244194, -0.01296386681497097, -0.00966796837747097, -0.011206054128706455, -0.0068115233443677425, -0.005932617001235485, -0.0017578124534338713, 0.0, 0.0017578124534338713, 0.001977538922801614, 0.003076171735301614, 0.0028564452659338713, 0.009008788503706455, 0.0098876953125, 0.010327148251235485, 0.01296386681497097, 0.01274413987994194, 0.01054687425494194, 0.013403319753706455, 0.01406249962747097, 0.0142822265625, 0.011425781063735485, 0.01054687425494194, 0.01164550706744194, 0.01076660118997097, 0.006152343470603228, 0.0087890625, 0.0057128905318677425, 0.0057128905318677425, 0.0046142577193677425, 0.003735351376235485, 0.0013183592818677425, -0.002636718563735485, -0.003076171735301614, -0.002197265625, -0.0057128905318677425, -0.007031249813735485, -0.00856933556497097, -0.008349609561264515, -0.011425781063735485, -0.009228515438735485, -0.01164550706744194, -0.01384277269244194, -0.010986328125, -0.01054687425494194, -0.013623046688735485, -0.009448242373764515, -0.008349609561264515, -0.008349609561264515, -0.008349609561264515, -0.006152343470603228, -0.0068115233443677425, -0.00439453125, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, 0.0002197265566792339, 0.002197265625, 0.0024169920943677425, 0.00439453125, 0.00439453125, 0.007250976283103228, 0.005932617001235485, 0.0057128905318677425, 0.008129882626235485, 0.0076904296875, 0.009448242373764515, 0.009448242373764515, 0.0098876953125, 0.008129882626235485, 0.010986328125, 0.008349609561264515, 0.006591796875, 0.00856933556497097, 0.007250976283103228, 0.003735351376235485, 0.005053710658103228, 0.002197265625, 0.0024169920943677425, 0.002197265625, -0.0006591796409338713, -0.0006591796409338713, -0.002197265625, -0.0057128905318677425, -0.0024169920943677425, -0.0035156249068677425, -0.005053710658103228, -0.00527343712747097, -0.005053710658103228, -0.0046142577193677425, -0.006591796875, -0.007910155691206455, -0.008349609561264515, -0.007250976283103228, -0.007910155691206455, -0.007910155691206455, -0.004833984188735485, -0.003076171735301614, -0.0032958984375, -0.001538085867650807, -0.0032958984375, -0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, 0.0017578124534338713, 0.0017578124534338713, 0.0046142577193677425, 0.0004394531133584678, 0.0032958984375, 0.004833984188735485, 0.002197265625, 0.0032958984375, 0.002636718563735485, 0.00527343712747097, 0.0068115233443677425, 0.0046142577193677425, 0.005932617001235485, 0.005932617001235485, 0.00527343712747097, 0.0054931640625, 0.00527343712747097, 0.006591796875, 0.00527343712747097, 0.0032958984375, 0.0013183592818677425, 0.0032958984375, -0.0006591796409338713, 0.0004394531133584678, -0.0010986328125, -0.0028564452659338713, -0.0004394531133584678, -0.001538085867650807, -0.003076171735301614, -0.002197265625, -0.003955077845603228, -0.0054931640625, -0.0028564452659338713, -0.003735351376235485, -0.003955077845603228, -0.0054931640625, -0.002197265625, -0.0041748047806322575, -0.0017578124534338713, -0.002636718563735485, -0.0041748047806322575, -0.004833984188735485, -0.0024169920943677425, -0.0010986328125, -0.0002197265566792339, 0.0013183592818677425, -0.0008789062267169356, 0.0013183592818677425, 0.0013183592818677425, 0.0010986328125, 0.003076171735301614, 0.0028564452659338713, -0.0017578124534338713, 0.0, 0.001977538922801614, 0.0010986328125, 0.0017578124534338713, 0.0008789062267169356, 0.003955077845603228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.1111)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, 0.0004394531133584678, -0.0013183592818677425, -0.0004394531133584678, 0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, 0.0, -0.0006591796409338713, -0.0004394531133584678, 0.001977538922801614, -0.0008789062267169356, 0.0006591796409338713, 0.0, 0.0002197265566792339, 0.0002197265566792339, 0.0017578124534338713, 0.002636718563735485, -0.001538085867650807, 0.0, -0.0024169920943677425, -0.0008789062267169356, 0.0010986328125, -0.001977538922801614, 0.0002197265566792339, -0.0004394531133584678, 0.0004394531133584678, -0.003076171735301614, 0.0008789062267169356, 0.0008789062267169356, 0.0, 0.0004394531133584678, 0.0004394531133584678, 0.0010986328125, 0.002197265625, 0.0028564452659338713, -0.0017578124534338713, -0.001538085867650807, 0.0013183592818677425, -0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, -0.0041748047806322575, 0.0002197265566792339, 0.0013183592818677425, -0.0006591796409338713, 0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, 0.0, 0.0024169920943677425, 0.0, -0.0008789062267169356, 0.0004394531133584678, 0.0002197265566792339, -0.0008789062267169356, 0.002197265625, 0.0002197265566792339, 0.0, -0.002636718563735485, -0.002197265625, -0.0010986328125, -0.001538085867650807, -0.0006591796409338713, -0.0017578124534338713, -0.0028564452659338713, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, 0.0002197265566792339, -0.0017578124534338713, -0.0002197265566792339, -0.0024169920943677425, -0.0017578124534338713, -0.002636718563735485, -0.0046142577193677425, -0.0013183592818677425, -0.003076171735301614, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, 0.0010986328125, 0.0004394531133584678, 0.0028564452659338713, 0.002636718563735485, 0.002636718563735485, 0.002636718563735485, 0.003735351376235485, 0.0054931640625, 0.00527343712747097, 0.0032958984375, 0.00527343712747097, 0.006152343470603228, 0.00637206993997097, 0.0035156249068677425, 0.0041748047806322575, 0.005053710658103228, 0.0057128905318677425, 0.00439453125, 0.002197265625, 0.0046142577193677425, 0.002197265625, 0.002636718563735485, 0.0017578124534338713, 0.0002197265566792339, -0.0010986328125, -0.0002197265566792339, -0.004833984188735485, -0.002197265625, -0.0068115233443677425, -0.007910155691206455, -0.005932617001235485, -0.0068115233443677425, -0.008129882626235485, -0.009008788503706455, -0.0076904296875, -0.007031249813735485, -0.01164550706744194, -0.008129882626235485, -0.007910155691206455, -0.00527343712747097, -0.00637206993997097, -0.006152343470603228, -0.0046142577193677425, -0.00747070275247097, -0.0041748047806322575, -0.003735351376235485, -0.001538085867650807, -0.001977538922801614, 0.0008789062267169356, 0.0004394531133584678, 0.003076171735301614, 0.00439453125, 0.003955077845603228, 0.0076904296875, 0.006591796875, 0.010327148251235485, 0.01186523400247097, 0.011425781063735485, 0.011206054128706455, 0.010986328125, 0.01274413987994194, 0.009228515438735485, 0.01076660118997097, 0.01318359375, 0.009448242373764515, 0.00966796837747097, 0.0076904296875, 0.0068115233443677425, 0.00637206993997097, 0.005053710658103228, 0.002197265625, 0.0010986328125, -0.001977538922801614, -0.0041748047806322575, -0.0057128905318677425, -0.00747070275247097, -0.007250976283103228, -0.011206054128706455, -0.011206054128706455, -0.012524413876235485, -0.01274413987994194, -0.01582031138241291, -0.01604003831744194, -0.013403319753706455, -0.01625976525247097, -0.015600585378706455, -0.015380859375, -0.01801757700741291, -0.01801757700741291, -0.012524413876235485, -0.013623046688735485, -0.00966796837747097, -0.00637206993997097, -0.005053710658103228, -0.0028564452659338713, -0.0032958984375, 0.0008789062267169356, 0.0046142577193677425, 0.0076904296875, 0.008129882626235485, 0.01054687425494194, 0.01076660118997097, 0.01406249962747097, 0.01494140550494194, 0.01691894419491291, 0.01691894419491291, 0.02043456956744194, 0.01955566368997097, 0.0186767578125, 0.019775390625, 0.01845703087747097, 0.01999511756002903, 0.01406249962747097, 0.01318359375, 0.012304686941206455, 0.010986328125, 0.01186523400247097, 0.006591796875, 0.0041748047806322575, 0.0013183592818677425, -0.00439453125, -0.00637206993997097, -0.00856933556497097, -0.0120849609375, -0.014501952566206455, -0.01406249962747097, -0.0186767578125, -0.02021484263241291, -0.02285156212747097, -0.02395019493997097, -0.02175292931497097, -0.02285156212747097, -0.02438964694738388, -0.02548827975988388, -0.02175292931497097, -0.02109374850988388, -0.02021484263241291, -0.0186767578125, -0.01604003831744194, -0.013403319753706455, -0.01186523400247097, -0.00747070275247097, -0.00527343712747097, -0.0010986328125, 0.0004394531133584678, 0.001977538922801614, 0.0068115233443677425, 0.01054687425494194, 0.01186523400247097, 0.01713867112994194, 0.017578125, 0.0230712890625, 0.02109374850988388, 0.02482910081744194, 0.0263671875, 0.02812499925494194, 0.024169921875, 0.02614746056497097, 0.02175292931497097, 0.02241210825741291, 0.02153320237994194, 0.02241210825741291, 0.01669921912252903, 0.013403319753706455, 0.01164550706744194, 0.005932617001235485, 0.007031249813735485, 0.0017578124534338713, -0.0013183592818677425, -0.0057128905318677425, -0.01164550706744194, -0.013403319753706455, -0.014721679501235485, -0.017578125, -0.02131347544491291, -0.02197265625, -0.02570800669491291, -0.0274658203125, -0.0274658203125, -0.02702636644244194, -0.03120117075741291, -0.02900390513241291, -0.02482910081744194, -0.02680663950741291, -0.02592773362994194, -0.02197265625, -0.01933593675494194, -0.01735839806497097, -0.013623046688735485, -0.010107421316206455, -0.0046142577193677425, -0.0028564452659338713, 0.0028564452659338713, 0.003955077845603228, 0.0098876953125, 0.01186523400247097, 0.01406249962747097, 0.01933593675494194, 0.02109374850988388, 0.02504882775247097, 0.0263671875, 0.0274658203125, 0.02988281100988388, 0.02790527231991291, 0.02482910081744194, 0.028564453125, 0.02482910081744194, 0.02482910081744194, 0.02351074106991291, 0.02065429650247097, 0.01801757700741291, 0.01582031138241291, 0.01384277269244194, 0.006152343470603228, 0.00637206993997097, -0.0017578124534338713, -0.0035156249068677425, -0.00439453125, -0.008349609561264515, -0.013623046688735485, -0.01669921912252903, -0.019775390625, -0.02021484263241291, -0.02197265625, -0.02438964694738388, -0.0252685546875, -0.02768554538488388, -0.02768554538488388, -0.02900390513241291, -0.02658691257238388, -0.02395019493997097, -0.02197265625, -0.02065429650247097, -0.02109374850988388, -0.01669921912252903, -0.01384277269244194, -0.00966796837747097, -0.010107421316206455, -0.007910155691206455, -0.0006591796409338713, 0.0013183592818677425, 0.0054931640625, 0.007031249813735485, 0.01164550706744194, 0.01384277269244194, 0.01845703087747097, 0.01955566368997097, 0.02219238132238388, 0.02241210825741291, 0.02504882775247097, 0.02373046800494194, 0.02438964694738388, 0.02438964694738388, 0.02219238132238388, 0.02460937388241291, 0.02504882775247097, 0.01999511756002903, 0.01889648474752903, 0.01911620981991291, 0.01691894419491291, 0.009228515438735485, 0.009228515438735485, 0.003735351376235485, 0.003076171735301614, -0.002197265625, -0.003735351376235485, -0.0054931640625, -0.009228515438735485, -0.01406249962747097, -0.01669921912252903, -0.015380859375, -0.0186767578125, -0.02153320237994194, -0.02351074106991291, -0.019775390625, -0.02065429650247097, -0.02109374850988388, -0.02351074106991291, -0.02065429650247097, -0.01889648474752903, -0.02153320237994194, -0.015600585378706455, -0.015600585378706455, -0.013623046688735485, -0.010986328125, -0.007910155691206455, -0.0068115233443677425, 0.0004394531133584678, 0.0017578124534338713, 0.0054931640625, 0.005053710658103228, 0.006591796875, 0.01274413987994194, 0.012524413876235485, 0.01582031138241291, 0.01384277269244194, 0.01691894419491291, 0.01801757700741291, 0.02219238132238388, 0.01713867112994194, 0.01669921912252903, 0.0164794921875, 0.01735839806497097, 0.01801757700741291, 0.0164794921875, 0.014501952566206455, 0.013623046688735485, 0.008349609561264515, 0.007250976283103228, 0.007250976283103228, 0.0024169920943677425, 0.0028564452659338713, -0.0010986328125, -0.00637206993997097, -0.005053710658103228, -0.006152343470603228, -0.0087890625, -0.010327148251235485, -0.0120849609375, -0.012524413876235485, -0.01494140550494194, -0.0142822265625, -0.014721679501235485, -0.01801757700741291, -0.0164794921875, -0.01406249962747097, -0.01582031138241291, -0.013623046688735485, -0.009228515438735485, -0.00966796837747097, -0.01164550706744194, -0.005932617001235485, -0.009008788503706455, -0.005932617001235485, -0.0032958984375, -0.001538085867650807, 0.0006591796409338713, 0.0010986328125, 0.0024169920943677425, 0.005053710658103228, 0.007031249813735485, 0.0076904296875, 0.008349609561264515, 0.010986328125, 0.011425781063735485, 0.01076660118997097, 0.01186523400247097, 0.0087890625, 0.00966796837747097, 0.0087890625, 0.011206054128706455, 0.009448242373764515, 0.0076904296875, 0.00637206993997097, 0.00747070275247097, 0.00637206993997097, 0.0054931640625, 0.0046142577193677425, 0.001977538922801614, -0.0006591796409338713, 0.0006591796409338713, 0.0004394531133584678, -0.004833984188735485, -0.0054931640625, -0.004833984188735485, -0.008129882626235485, -0.0076904296875, -0.00527343712747097, -0.006591796875, -0.007910155691206455, -0.006591796875, -0.00856933556497097, -0.008129882626235485, -0.005932617001235485, -0.007250976283103228, -0.003735351376235485, -0.007910155691206455, -0.00637206993997097, -0.003955077845603228, -0.003955077845603228, -0.0041748047806322575, -0.001538085867650807, -0.003076171735301614, 0.0008789062267169356, 0.0, -0.0010986328125, 0.0010986328125, 0.0032958984375, 0.0024169920943677425, 0.001538085867650807, 0.005053710658103228, 0.003955077845603228, 0.0032958984375, 0.005932617001235485, 0.004833984188735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.1667)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.002197265625, -0.0002197265566792339, -0.001977538922801614, 0.0006591796409338713, 0.0035156249068677425, 0.0004394531133584678, 0.003076171735301614, 0.0008789062267169356, -0.0024169920943677425, 0.0002197265566792339, 0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, 0.0017578124534338713, 0.0, -0.0006591796409338713, 0.0017578124534338713, -0.0010986328125, 0.0004394531133584678, 0.001538085867650807, 0.0013183592818677425, -0.001538085867650807, 0.0006591796409338713, 0.0017578124534338713, -0.001538085867650807, -0.001538085867650807, 0.0004394531133584678, -0.001538085867650807, 0.0002197265566792339, -0.0004394531133584678, -0.0010986328125, 0.0013183592818677425, 0.0004394531133584678, 0.0004394531133584678, -0.001977538922801614, 0.0010986328125, -0.0017578124534338713, -0.0013183592818677425, -0.0008789062267169356, 0.0, -0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, 0.0008789062267169356, -0.0008789062267169356, 0.0017578124534338713, 0.0006591796409338713, 0.0002197265566792339, 0.0, -0.0002197265566792339, -0.0008789062267169356, -0.0004394531133584678, 0.003076171735301614, 0.0006591796409338713, 0.0004394531133584678, 0.001538085867650807, 0.0, -0.001538085867650807, -0.0008789062267169356, -0.001977538922801614, -0.0002197265566792339, -0.0004394531133584678, -0.0002197265566792339, -0.002197265625, -0.0035156249068677425, 0.0, -0.002197265625, -0.0017578124534338713, -0.005053710658103228, -0.0041748047806322575, -0.0017578124534338713, -0.00439453125, -0.001977538922801614, -0.0057128905318677425, 0.0, -0.004833984188735485, -0.002636718563735485, -0.002636718563735485, -0.0054931640625, -0.004833984188735485, -0.0068115233443677425, -0.0046142577193677425, -0.0004394531133584678, 0.0013183592818677425, -0.0006591796409338713, 0.0013183592818677425, 0.002636718563735485, 0.0, 0.002197265625, 0.004833984188735485, 0.0041748047806322575, 0.0068115233443677425, 0.00527343712747097, 0.0032958984375, 0.0076904296875, 0.00856933556497097, 0.008349609561264515, 0.007031249813735485, 0.00527343712747097, 0.009008788503706455, 0.006591796875, 0.00747070275247097, 0.005932617001235485, 0.003735351376235485, 0.005932617001235485, 0.00527343712747097, 0.005053710658103228, 0.0028564452659338713, -0.0006591796409338713, 0.0004394531133584678, -0.003735351376235485, -0.0046142577193677425, -0.004833984188735485, -0.005932617001235485, -0.00966796837747097, -0.01054687425494194, -0.0087890625, -0.01296386681497097, -0.01164550706744194, -0.010986328125, -0.01274413987994194, -0.0120849609375, -0.012524413876235485, -0.01054687425494194, -0.011206054128706455, -0.01054687425494194, -0.012304686941206455, -0.00856933556497097, -0.00856933556497097, -0.007250976283103228, -0.003955077845603228, -0.003955077845603228, -0.001977538922801614, 0.001538085867650807, 0.002197265625, 0.0046142577193677425, 0.00527343712747097, 0.005932617001235485, 0.01406249962747097, 0.01054687425494194, 0.01625976525247097, 0.01516113243997097, 0.017578125, 0.017578125, 0.02021484263241291, 0.01735839806497097, 0.0186767578125, 0.01823730394244194, 0.01669921912252903, 0.013403319753706455, 0.012524413876235485, 0.011425781063735485, 0.013623046688735485, 0.0068115233443677425, 0.00439453125, 0.0035156249068677425, 0.0024169920943677425, -0.002197265625, -0.003076171735301614, -0.007250976283103228, -0.008129882626235485, -0.01384277269244194, -0.01318359375, -0.01406249962747097, -0.01801757700741291, -0.01955566368997097, -0.02263183519244194, -0.02548827975988388, -0.02263183519244194, -0.02373046800494194, -0.02658691257238388, -0.02263183519244194, -0.02373046800494194, -0.01955566368997097, -0.01845703087747097, -0.01669921912252903, -0.01318359375, -0.013623046688735485, -0.0098876953125, -0.0046142577193677425, -0.0010986328125, -0.0008789062267169356, 0.0035156249068677425, 0.006152343470603228, 0.012304686941206455, 0.01845703087747097, 0.01823730394244194, 0.02219238132238388, 0.02548827975988388, 0.02724609337747097, 0.02592773362994194, 0.02922363206744194, 0.03208007663488388, 0.03098144382238388, 0.03164062276482582, 0.03098144382238388, 0.02614746056497097, 0.02175292931497097, 0.02351074106991291, 0.02109374850988388, 0.015600585378706455, 0.011425781063735485, 0.011425781063735485, 0.00527343712747097, 0.004833984188735485, -0.0041748047806322575, -0.00527343712747097, -0.01076660118997097, -0.01296386681497097, -0.01911620981991291, -0.02373046800494194, -0.02592773362994194, -0.0296630859375, -0.03032226487994194, -0.03361816331744194, -0.03339843824505806, -0.03493652120232582, -0.03669433668255806, -0.03537597507238388, -0.03603515401482582, -0.03471679612994194, -0.03273925557732582, -0.02834472618997097, -0.02482910081744194, -0.02197265625, -0.01516113243997097, -0.01186523400247097, -0.008349609561264515, -0.0035156249068677425, 0.0035156249068677425, 0.003955077845603228, 0.012304686941206455, 0.01889648474752903, 0.0208740234375, 0.02702636644244194, 0.02680663950741291, 0.03032226487994194, 0.032958984375, 0.0384521484375, 0.04020996019244194, 0.03889160230755806, 0.041748046875, 0.04130859300494194, 0.03713378682732582, 0.03317870944738388, 0.03515625, 0.02878417819738388, 0.02944335900247097, 0.02241210825741291, 0.017578125, 0.012524413876235485, 0.01054687425494194, 0.0032958984375, -0.003955077845603228, -0.00856933556497097, -0.01384277269244194, -0.01845703087747097, -0.02197265625, -0.02680663950741291, -0.03317870944738388, -0.03317870944738388, -0.037353515625, -0.03911132737994194, -0.041748046875, -0.04218749701976776, -0.041748046875, -0.04042968526482582, -0.03889160230755806, -0.03977050632238388, -0.03669433668255806, -0.03076171875, -0.02790527231991291, -0.02504882775247097, -0.01823730394244194, -0.01164550706744194, -0.0076904296875, -0.002197265625, 0.003076171735301614, 0.008349609561264515, 0.0142822265625, 0.01911620981991291, 0.02241210825741291, 0.0263671875, 0.03164062276482582, 0.0362548828125, 0.037353515625, 0.03889160230755806, 0.04218749701976776, 0.04658202826976776, 0.04416503757238388, 0.03977050632238388, 0.03911132737994194, 0.03867187350988388, 0.037353515625, 0.03208007663488388, 0.03054199181497097, 0.0230712890625, 0.019775390625, 0.01318359375, 0.008349609561264515, 0.0032958984375, -0.00439453125, -0.0076904296875, -0.01296386681497097, -0.01933593675494194, -0.02263183519244194, -0.02680663950741291, -0.03208007663488388, -0.03581542894244194, -0.03647460788488388, -0.037353515625, -0.04108886793255806, -0.04262695088982582, -0.04372558370232582, -0.03911132737994194, -0.03691406175494194, -0.03581542894244194, -0.03559570387005806, -0.02944335900247097, -0.02658691257238388, -0.02351074106991291, -0.01691894419491291, -0.01274413987994194, -0.0098876953125, -0.00637206993997097, 0.0006591796409338713, 0.006591796875, 0.010327148251235485, 0.01735839806497097, 0.0230712890625, 0.0263671875, 0.03076171875, 0.03251953050494194, 0.032958984375, 0.03779296949505806, 0.03801269456744194, 0.03669433668255806, 0.03757324069738388, 0.03823241963982582, 0.03471679612994194, 0.03208007663488388, 0.02922363206744194, 0.02724609337747097, 0.02373046800494194, 0.02285156212747097, 0.01779785193502903, 0.01296386681497097, 0.008129882626235485, 0.00439453125, -0.004833984188735485, -0.00856933556497097, -0.00966796837747097, -0.01516113243997097, -0.02065429650247097, -0.02153320237994194, -0.02570800669491291, -0.03076171875, -0.03120117075741291, -0.03251953050494194, -0.03449707105755806, -0.03339843824505806, -0.03251953050494194, -0.03361816331744194, -0.0318603515625, -0.02988281100988388, -0.02988281100988388, -0.02153320237994194, -0.02241210825741291, -0.0142822265625, -0.01406249962747097, -0.009008788503706455, -0.00637206993997097, -0.003076171735301614, 0.003735351376235485, 0.0057128905318677425, 0.007910155691206455, 0.01076660118997097, 0.015600585378706455, 0.02021484263241291, 0.02285156212747097, 0.02548827975988388, 0.02614746056497097, 0.02922363206744194, 0.02834472618997097, 0.02812499925494194, 0.0296630859375, 0.02790527231991291, 0.02548827975988388, 0.02548827975988388, 0.02373046800494194, 0.01955566368997097, 0.01801757700741291, 0.01516113243997097, 0.0142822265625, 0.00856933556497097, 0.004833984188735485, 0.00439453125, -0.001977538922801614, -0.005053710658103228, -0.005053710658103228, -0.0087890625, -0.0164794921875, -0.0164794921875, -0.0164794921875, -0.02131347544491291, -0.01845703087747097, -0.02197265625, -0.02241210825741291, -0.02438964694738388, -0.02153320237994194, -0.02197265625, -0.02109374850988388, -0.02197265625, -0.01999511756002903, -0.01494140550494194, -0.01604003831744194, -0.013623046688735485, -0.007250976283103228, -0.007031249813735485, -0.0028564452659338713, 0.0006591796409338713, -0.0006591796409338713, 0.0057128905318677425, 0.00637206993997097, 0.007910155691206455, 0.01054687425494194, 0.010107421316206455, 0.01494140550494194, 0.0142822265625, 0.01494140550494194, 0.01779785193502903, 0.01669921912252903, 0.01582031138241291, 0.0164794921875, 0.014721679501235485, 0.014501952566206455, 0.010107421316206455, 0.01274413987994194, 0.010986328125, 0.010327148251235485, 0.00637206993997097, 0.0054931640625, 0.003955077845603228, -0.0004394531133584678, 0.0008789062267169356, -0.00439453125, -0.001538085867650807, -0.0046142577193677425, -0.008129882626235485, -0.004833984188735485, -0.007250976283103228, -0.00966796837747097, -0.010107421316206455, -0.012304686941206455, -0.01274413987994194, -0.012524413876235485, -0.007910155691206455, -0.01318359375, -0.01076660118997097, -0.0120849609375, -0.009228515438735485, -0.01054687425494194, -0.007031249813735485, -0.0041748047806322575, -0.0032958984375, -0.0046142577193677425, -0.002197265625, -0.003735351376235485, -0.0008789062267169356, 0.0017578124534338713, 0.0, 0.0013183592818677425, 0.001977538922801614, 0.0032958984375, 0.0046142577193677425, 0.00439453125, 0.0057128905318677425, 0.00747070275247097, 0.008129882626235485, 0.007250976283103228 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.2222)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.0006591796409338713, -0.0017578124534338713, -0.0024169920943677425, 0.0008789062267169356, 0.0008789062267169356, 0.0004394531133584678, -0.0008789062267169356, 0.0010986328125, 0.001538085867650807, 0.0006591796409338713, -0.0002197265566792339, -0.0013183592818677425, -0.0004394531133584678, -0.0010986328125, -0.0002197265566792339, -0.0006591796409338713, 0.0041748047806322575, 0.0010986328125, -0.0024169920943677425, 0.0, 0.001977538922801614, -0.0013183592818677425, 0.0006591796409338713, -0.0006591796409338713, 0.0010986328125, 0.0035156249068677425, 0.0006591796409338713, 0.0006591796409338713, 0.0028564452659338713, -0.0010986328125, 0.0010986328125, 0.002636718563735485, -0.0010986328125, 0.0008789062267169356, 0.0013183592818677425, 0.002197265625, 0.0006591796409338713, 0.0004394531133584678, -0.0008789062267169356, -0.0006591796409338713, 0.0002197265566792339, -0.0002197265566792339, 0.001538085867650807, -0.001538085867650807, 0.0013183592818677425, 0.0024169920943677425, 0.0010986328125, -0.0006591796409338713, -0.001977538922801614, 0.0004394531133584678, 0.0006591796409338713, 0.001977538922801614, 0.0, 0.0010986328125, 0.0008789062267169356, 0.0017578124534338713, -0.0002197265566792339, -0.0006591796409338713, 0.0035156249068677425, -0.0008789062267169356, -0.002197265625, 0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.0006591796409338713, -0.0024169920943677425, 0.0, -0.005053710658103228, 0.0008789062267169356, -0.0010986328125, -0.00527343712747097, -0.003735351376235485, -0.003955077845603228, -0.0041748047806322575, -0.005932617001235485, -0.00637206993997097, -0.0046142577193677425, -0.00637206993997097, -0.004833984188735485, -0.0054931640625, -0.005053710658103228, -0.0028564452659338713, -0.004833984188735485, -0.0008789062267169356, -0.0010986328125, -0.0006591796409338713, 0.0013183592818677425, -0.0002197265566792339, 0.003076171735301614, 0.0057128905318677425, 0.005932617001235485, 0.0076904296875, 0.00856933556497097, 0.01186523400247097, 0.0076904296875, 0.009228515438735485, 0.009448242373764515, 0.01318359375, 0.00966796837747097, 0.009448242373764515, 0.011425781063735485, 0.009448242373764515, 0.012304686941206455, 0.0068115233443677425, 0.007910155691206455, 0.0057128905318677425, 0.00747070275247097, 0.003076171735301614, -0.0024169920943677425, 0.0013183592818677425, -0.005053710658103228, -0.003955077845603228, -0.0076904296875, -0.00856933556497097, -0.00747070275247097, -0.01384277269244194, -0.01494140550494194, -0.0164794921875, -0.015600585378706455, -0.014721679501235485, -0.0186767578125, -0.0208740234375, -0.01889648474752903, -0.01845703087747097, -0.01625976525247097, -0.0142822265625, -0.013623046688735485, -0.0120849609375, -0.008349609561264515, -0.01076660118997097, -0.005932617001235485, -0.0046142577193677425, -0.0010986328125, 0.0, 0.006152343470603228, 0.009008788503706455, 0.010107421316206455, 0.011206054128706455, 0.01735839806497097, 0.01713867112994194, 0.01933593675494194, 0.02175292931497097, 0.01933593675494194, 0.02351074106991291, 0.02329101413488388, 0.02592773362994194, 0.0252685546875, 0.02482910081744194, 0.02373046800494194, 0.02219238132238388, 0.019775390625, 0.01713867112994194, 0.01296386681497097, 0.012304686941206455, 0.009008788503706455, 0.00527343712747097, 0.003735351376235485, -0.0002197265566792339, -0.005053710658103228, -0.0098876953125, -0.01384277269244194, -0.017578125, -0.02109374850988388, -0.0230712890625, -0.02658691257238388, -0.02922363206744194, -0.02878417819738388, -0.0318603515625, -0.0340576171875, -0.03032226487994194, -0.0340576171875, -0.03361816331744194, -0.03032226487994194, -0.02900390513241291, -0.02614746056497097, -0.02131347544491291, -0.0186767578125, -0.017578125, -0.012304686941206455, -0.008129882626235485, -0.00527343712747097, 0.0013183592818677425, 0.00747070275247097, 0.014721679501235485, 0.015380859375, 0.02153320237994194, 0.02570800669491291, 0.02680663950741291, 0.03273925557732582, 0.03251953050494194, 0.03427734225988388, 0.041748046875, 0.04086913913488388, 0.04108886793255806, 0.04086913913488388, 0.03999023512005806, 0.03911132737994194, 0.0362548828125, 0.03273925557732582, 0.03010253794491291, 0.02395019493997097, 0.01713867112994194, 0.01384277269244194, 0.00966796837747097, 0.0028564452659338713, -0.0054931640625, -0.009448242373764515, -0.01494140550494194, -0.01933593675494194, -0.0263671875, -0.03229980543255806, -0.03471679612994194, -0.03713378682732582, -0.04438476264476776, -0.04372558370232582, -0.04658202826976776, -0.04855956882238388, -0.04636230319738388, -0.046142578125, -0.0450439453125, -0.0406494140625, -0.04240722581744194, -0.03955078125, -0.03010253794491291, -0.02900390513241291, -0.02329101413488388, -0.01494140550494194, -0.009228515438735485, -0.001977538922801614, 0.0035156249068677425, 0.007910155691206455, 0.017578125, 0.02197265625, 0.0296630859375, 0.03449707105755806, 0.0406494140625, 0.04196777194738388, 0.04746093600988388, 0.04899902269244194, 0.05141601338982582, 0.05339355394244194, 0.05119628831744194, 0.05119628831744194, 0.0494384765625, 0.04548339545726776, 0.04328612983226776, 0.03955078125, 0.03493652120232582, 0.0318603515625, 0.02175292931497097, 0.01933593675494194, 0.01054687425494194, 0.001977538922801614, -0.001977538922801614, -0.010327148251235485, -0.01713867112994194, -0.0252685546875, -0.028564453125, -0.03581542894244194, -0.04130859300494194, -0.04482421651482582, -0.05141601338982582, -0.050537109375, -0.05339355394244194, -0.05581054463982582, -0.05800781026482582, -0.052734375, -0.05427245795726776, -0.0516357421875, -0.046142578125, -0.04372558370232582, -0.03471679612994194, -0.03449707105755806, -0.02724609337747097, -0.01625976525247097, -0.01274413987994194, -0.003735351376235485, 0.00439453125, 0.00966796837747097, 0.01779785193502903, 0.02241210825741291, 0.02988281100988388, 0.03867187350988388, 0.04526367038488388, 0.04680175706744194, 0.05185546725988388, 0.05317382514476776, 0.054931640625, 0.05800781026482582, 0.05734863132238388, 0.05646972358226776, 0.05339355394244194, 0.0494384765625, 0.04746093600988388, 0.03999023512005806, 0.03911132737994194, 0.03273925557732582, 0.02878417819738388, 0.01999511756002903, 0.010327148251235485, 0.003076171735301614, -0.007031249813735485, -0.009448242373764515, -0.01845703087747097, -0.02482910081744194, -0.02834472618997097, -0.03647460788488388, -0.04086913913488388, -0.04482421651482582, -0.04921874776482582, -0.05031738057732582, -0.054931640625, -0.05756835639476776, -0.05624999850988388, -0.05361327901482582, -0.05075683444738388, -0.04702148213982582, -0.0428466796875, -0.04042968526482582, -0.03779296949505806, -0.0274658203125, -0.02504882775247097, -0.0208740234375, -0.01318359375, -0.005932617001235485, 0.0046142577193677425, 0.01054687425494194, 0.01604003831744194, 0.02438964694738388, 0.02812499925494194, 0.03273925557732582, 0.04152831807732582, 0.0428466796875, 0.04526367038488388, 0.04636230319738388, 0.04899902269244194, 0.05075683444738388, 0.050537109375, 0.04658202826976776, 0.04658202826976776, 0.04460449144244194, 0.0406494140625, 0.0362548828125, 0.03493652120232582, 0.0274658203125, 0.02043456956744194, 0.01516113243997097, 0.008129882626235485, 0.0041748047806322575, -0.0017578124534338713, -0.00856933556497097, -0.013403319753706455, -0.02263183519244194, -0.03032226487994194, -0.032958984375, -0.03251953050494194, -0.0406494140625, -0.04086913913488388, -0.04460449144244194, -0.04548339545726776, -0.04372558370232582, -0.0439453125, -0.04548339545726776, -0.04262695088982582, -0.04196777194738388, -0.0340576171875, -0.03054199181497097, -0.02702636644244194, -0.02197265625, -0.0186767578125, -0.0164794921875, -0.008349609561264515, -0.001538085867650807, 0.0017578124534338713, 0.007250976283103228, 0.013403319753706455, 0.01735839806497097, 0.02395019493997097, 0.0263671875, 0.03229980543255806, 0.03449707105755806, 0.03471679612994194, 0.03757324069738388, 0.0384521484375, 0.03581542894244194, 0.03911132737994194, 0.0362548828125, 0.03515625, 0.03142089769244194, 0.02724609337747097, 0.02768554538488388, 0.02351074106991291, 0.0186767578125, 0.015600585378706455, 0.00966796837747097, 0.007031249813735485, 0.0006591796409338713, -0.001977538922801614, -0.00747070275247097, -0.009228515438735485, -0.01406249962747097, -0.01933593675494194, -0.02021484263241291, -0.02329101413488388, -0.02460937388241291, -0.02702636644244194, -0.02548827975988388, -0.03010253794491291, -0.02944335900247097, -0.0274658203125, -0.03054199181497097, -0.02570800669491291, -0.02548827975988388, -0.02504882775247097, -0.02153320237994194, -0.01604003831744194, -0.0142822265625, -0.01296386681497097, -0.009228515438735485, -0.0054931640625, -0.003076171735301614, 0.001977538922801614, 0.00527343712747097, 0.008129882626235485, 0.00966796837747097, 0.012304686941206455, 0.01582031138241291, 0.01713867112994194, 0.019775390625, 0.02021484263241291, 0.02285156212747097, 0.02219238132238388, 0.02175292931497097, 0.02131347544491291, 0.01999511756002903, 0.02043456956744194, 0.01911620981991291, 0.01801757700741291, 0.015600585378706455, 0.015600585378706455, 0.012304686941206455, 0.008129882626235485, 0.007250976283103228, 0.003955077845603228, 0.002197265625, -0.0032958984375, -0.002636718563735485, -0.004833984188735485, -0.009228515438735485, -0.00966796837747097, -0.010107421316206455, -0.012304686941206455, -0.015380859375, -0.01164550706744194, -0.014721679501235485, -0.013403319753706455, -0.01604003831744194, -0.015600585378706455, -0.013623046688735485, -0.011206054128706455, -0.01274413987994194, -0.01164550706744194, -0.010107421316206455, -0.008129882626235485, -0.00747070275247097, -0.0028564452659338713, -0.001977538922801614, -0.0035156249068677425, -0.002197265625, 0.001977538922801614, 0.0006591796409338713, 0.0041748047806322575, 0.001977538922801614, 0.00747070275247097, 0.003735351376235485, 0.007250976283103228, 0.0087890625, 0.009228515438735485, 0.0068115233443677425, 0.006591796875 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.2778)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0, -0.0024169920943677425, -0.0008789062267169356, -0.0004394531133584678, 0.0, 0.0013183592818677425, 0.0006591796409338713, -0.0008789062267169356, 0.0010986328125, -0.0002197265566792339, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.0002197265566792339, -0.0004394531133584678, 0.0004394531133584678, -0.002197265625, 0.0002197265566792339, 0.0004394531133584678, -0.0010986328125, -0.001977538922801614, -0.0008789062267169356, -0.0010986328125, 0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, 0.0017578124534338713, 0.0004394531133584678, 0.001977538922801614, -0.0004394531133584678, -0.0028564452659338713, -0.0008789062267169356, -0.0010986328125, -0.003076171735301614, -0.0017578124534338713, -0.0006591796409338713, 0.0013183592818677425, 0.0006591796409338713, -0.0013183592818677425, -0.002197265625, 0.0024169920943677425, -0.0004394531133584678, -0.0002197265566792339, -0.0006591796409338713, 0.0004394531133584678, -0.0010986328125, 0.001538085867650807, 0.002636718563735485, 0.0006591796409338713, 0.0006591796409338713, 0.0004394531133584678, -0.0010986328125, 0.0028564452659338713, 0.0008789062267169356, 0.0013183592818677425, 0.001538085867650807, -0.002197265625, 0.001538085867650807, 0.002197265625, 0.0008789062267169356, 0.0013183592818677425, -0.0017578124534338713, -0.0002197265566792339, -0.0017578124534338713, -0.0004394531133584678, -0.002197265625, -0.00439453125, -0.0035156249068677425, -0.0041748047806322575, -0.00439453125, -0.0046142577193677425, -0.003955077845603228, -0.0087890625, -0.007031249813735485, -0.006152343470603228, -0.009448242373764515, -0.008129882626235485, -0.0076904296875, -0.005053710658103228, -0.00527343712747097, -0.00439453125, -0.005053710658103228, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, 0.0017578124534338713, 0.002636718563735485, 0.0041748047806322575, 0.0041748047806322575, 0.006152343470603228, 0.00966796837747097, 0.0076904296875, 0.009008788503706455, 0.007250976283103228, 0.012304686941206455, 0.01516113243997097, 0.012524413876235485, 0.0142822265625, 0.0120849609375, 0.01296386681497097, 0.01384277269244194, 0.01296386681497097, 0.01164550706744194, 0.010327148251235485, 0.008129882626235485, 0.0054931640625, 0.007250976283103228, 0.0041748047806322575, 0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.004833984188735485, -0.011206054128706455, -0.012524413876235485, -0.01274413987994194, -0.01625976525247097, -0.0164794921875, -0.0186767578125, -0.01801757700741291, -0.02109374850988388, -0.02197265625, -0.02197265625, -0.02153320237994194, -0.02109374850988388, -0.02504882775247097, -0.0208740234375, -0.01999511756002903, -0.0164794921875, -0.01582031138241291, -0.01164550706744194, -0.008349609561264515, -0.006591796875, -0.003076171735301614, 0.0032958984375, 0.0068115233443677425, 0.006591796875, 0.010986328125, 0.014721679501235485, 0.017578125, 0.019775390625, 0.02438964694738388, 0.02548827975988388, 0.02812499925494194, 0.02658691257238388, 0.03054199181497097, 0.03054199181497097, 0.03010253794491291, 0.0274658203125, 0.02944335900247097, 0.02790527231991291, 0.0252685546875, 0.0208740234375, 0.01823730394244194, 0.0120849609375, 0.012524413876235485, 0.0054931640625, 0.001977538922801614, -0.002636718563735485, -0.0054931640625, -0.010986328125, -0.01494140550494194, -0.02219238132238388, -0.02373046800494194, -0.02658691257238388, -0.0318603515625, -0.0384521484375, -0.03999023512005806, -0.03933105245232582, -0.03757324069738388, -0.03977050632238388, -0.03977050632238388, -0.03867187350988388, -0.037353515625, -0.03427734225988388, -0.03208007663488388, -0.03054199181497097, -0.02504882775247097, -0.01911620981991291, -0.014721679501235485, -0.010327148251235485, -0.0032958984375, 0.0010986328125, 0.0068115233443677425, 0.01516113243997097, 0.01889648474752903, 0.02438964694738388, 0.03054199181497097, 0.037353515625, 0.03977050632238388, 0.0439453125, 0.046142578125, 0.0494384765625, 0.04855956882238388, 0.04965820163488388, 0.0494384765625, 0.04768066108226776, 0.04416503757238388, 0.0450439453125, 0.03911132737994194, 0.03493652120232582, 0.028564453125, 0.02197265625, 0.01845703087747097, 0.01164550706744194, 0.0024169920943677425, -0.0028564452659338713, -0.009448242373764515, -0.01801757700741291, -0.02197265625, -0.03383788838982582, -0.037353515625, -0.04328612983226776, -0.04833984375, -0.050537109375, -0.0538330078125, -0.05712890625, -0.05910644307732582, -0.05844726413488388, -0.05646972358226776, -0.05646972358226776, -0.05295410007238388, -0.04790038987994194, -0.04790038987994194, -0.03889160230755806, -0.03669433668255806, -0.02988281100988388, -0.02241210825741291, -0.01625976525247097, -0.0046142577193677425, 0.001977538922801614, 0.01274413987994194, 0.019775390625, 0.028564453125, 0.03537597507238388, 0.04372558370232582, 0.05031738057732582, 0.05427245795726776, 0.054931640625, 0.06108398362994194, 0.06437987834215164, 0.06503906100988388, 0.06350097805261612, 0.06350097805261612, 0.06240234151482582, 0.059326171875, 0.05515136569738388, 0.05207519233226776, 0.0450439453125, 0.03823241963982582, 0.02900390513241291, 0.02351074106991291, 0.01384277269244194, 0.0057128905318677425, -0.003955077845603228, -0.01516113243997097, -0.02351074106991291, -0.02724609337747097, -0.04020996019244194, -0.0428466796875, -0.05361327901482582, -0.05690917745232582, -0.06416015326976776, -0.06591796875, -0.07053222507238388, -0.07207030802965164, -0.06767577677965164, -0.06855468451976776, -0.06635741889476776, -0.06416015326976776, -0.0604248046875, -0.052734375, -0.04592284932732582, -0.04086913913488388, -0.0318603515625, -0.02395019493997097, -0.01384277269244194, -0.005932617001235485, 0.0054931640625, 0.014721679501235485, 0.01735839806497097, 0.0340576171875, 0.037353515625, 0.04833984375, 0.05097655951976776, 0.0582275390625, 0.0648193359375, 0.06328124552965164, 0.06943359225988388, 0.07185058295726776, 0.07185058295726776, 0.07009277492761612, 0.06789550930261612, 0.06591796875, 0.06086425483226776, 0.05119628831744194, 0.04460449144244194, 0.04218749701976776, 0.02878417819738388, 0.02329101413488388, 0.01494140550494194, 0.003955077845603228, -0.0035156249068677425, -0.01274413987994194, -0.02351074106991291, -0.0318603515625, -0.04042968526482582, -0.0472412109375, -0.0516357421875, -0.05976562201976776, -0.06108398362994194, -0.06503906100988388, -0.0703125, -0.06745605170726776, -0.06965331733226776, -0.06899414211511612, -0.06328124552965164, -0.06108398362994194, -0.05976562201976776, -0.052734375, -0.04548339545726776, -0.03889160230755806, -0.03164062276482582, -0.02197265625, -0.010986328125, -0.0032958984375, 0.003955077845603228, 0.0120849609375, 0.01999511756002903, 0.02790527231991291, 0.03493652120232582, 0.04438476264476776, 0.050537109375, 0.05361327901482582, 0.05800781026482582, 0.06174316257238388, 0.06328124552965164, 0.06437987834215164, 0.06613769382238388, 0.06591796875, 0.06086425483226776, 0.05515136569738388, 0.05405273288488388, 0.04636230319738388, 0.0406494140625, 0.03537597507238388, 0.02548827975988388, 0.02021484263241291, 0.013403319753706455, 0.0054931640625, -0.00439453125, -0.01318359375, -0.01801757700741291, -0.02658691257238388, -0.03427734225988388, -0.03647460788488388, -0.04196777194738388, -0.04570312425494194, -0.05031738057732582, -0.05229492112994194, -0.05559081956744194, -0.05449218675494194, -0.05559081956744194, -0.05581054463982582, -0.05207519233226776, -0.04790038987994194, -0.04592284932732582, -0.04130859300494194, -0.03867187350988388, -0.03229980543255806, -0.02285156212747097, -0.015600585378706455, -0.0120849609375, -0.004833984188735485, 0.00439453125, 0.009228515438735485, 0.017578125, 0.02109374850988388, 0.02658691257238388, 0.03098144382238388, 0.03933105245232582, 0.041748046875, 0.04416503757238388, 0.04548339545726776, 0.04570312425494194, 0.04570312425494194, 0.04328612983226776, 0.04416503757238388, 0.04240722581744194, 0.03999023512005806, 0.03603515401482582, 0.03581542894244194, 0.028564453125, 0.02460937388241291, 0.01713867112994194, 0.01186523400247097, 0.00637206993997097, 0.001538085867650807, -0.0032958984375, -0.01076660118997097, -0.01076660118997097, -0.01823730394244194, -0.0208740234375, -0.02504882775247097, -0.03142089769244194, -0.03471679612994194, -0.03581542894244194, -0.0340576171875, -0.03933105245232582, -0.037353515625, -0.03999023512005806, -0.03647460788488388, -0.032958984375, -0.03273925557732582, -0.02878417819738388, -0.02878417819738388, -0.02460937388241291, -0.01713867112994194, -0.01406249962747097, -0.0120849609375, -0.00637206993997097, -0.0004394531133584678, 0.0017578124534338713, 0.0076904296875, 0.011206054128706455, 0.0120849609375, 0.0164794921875, 0.01911620981991291, 0.02065429650247097, 0.02241210825741291, 0.0252685546875, 0.02658691257238388, 0.02900390513241291, 0.02680663950741291, 0.02592773362994194, 0.02680663950741291, 0.02395019493997097, 0.02592773362994194, 0.01999511756002903, 0.02241210825741291, 0.01823730394244194, 0.0120849609375, 0.009448242373764515, 0.008129882626235485, 0.005053710658103228, -0.0002197265566792339, -0.001538085867650807, -0.004833984188735485, -0.0068115233443677425, -0.008349609561264515, -0.012524413876235485, -0.01296386681497097, -0.01494140550494194, -0.015380859375, -0.01691894419491291, -0.0164794921875, -0.0186767578125, -0.01779785193502903, -0.01911620981991291, -0.0164794921875, -0.01516113243997097, -0.01406249962747097, -0.01582031138241291, -0.01076660118997097, -0.009448242373764515, -0.008349609561264515, -0.0054931640625, -0.0068115233443677425, -0.0006591796409338713, -0.001538085867650807, 0.0017578124534338713, 0.0004394531133584678, 0.0024169920943677425, 0.005053710658103228, 0.009228515438735485, 0.008349609561264515, 0.011425781063735485, 0.0098876953125, 0.012304686941206455, 0.011206054128706455, 0.01274413987994194 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.3333)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.001538085867650807, 0.0024169920943677425, -0.0010986328125, 0.0002197265566792339, -0.0008789062267169356, -0.0002197265566792339, 0.0004394531133584678, 0.002636718563735485, -0.0004394531133584678, 0.0006591796409338713, -0.0010986328125, -0.0004394531133584678, 0.0010986328125, 0.0006591796409338713, -0.001538085867650807, 0.0008789062267169356, 0.0002197265566792339, 0.0004394531133584678, -0.0004394531133584678, 0.002197265625, 0.001538085867650807, 0.0004394531133584678, 0.0004394531133584678, 0.0, 0.001977538922801614, 0.0006591796409338713, 0.0, -0.0004394531133584678, -0.0002197265566792339, 0.001977538922801614, 0.002197265625, 0.0008789062267169356, -0.0008789062267169356, 0.002197265625, 0.0008789062267169356, 0.0006591796409338713, 0.0017578124534338713, 0.0008789062267169356, 0.0002197265566792339, 0.0017578124534338713, -0.0010986328125, 0.0013183592818677425, -0.0024169920943677425, -0.0006591796409338713, -0.002197265625, -0.0004394531133584678, 0.0008789062267169356, -0.0006591796409338713, 0.001538085867650807, 0.0006591796409338713, -0.001538085867650807, 0.002636718563735485, 0.002636718563735485, 0.0006591796409338713, 0.0013183592818677425, 0.0013183592818677425, -0.0004394531133584678, 0.001538085867650807, 0.001538085867650807, -0.0004394531133584678, -0.0008789062267169356, 0.002636718563735485, -0.001977538922801614, -0.003955077845603228, -0.003735351376235485, 0.0002197265566792339, -0.003955077845603228, -0.003735351376235485, -0.006152343470603228, -0.0057128905318677425, -0.006152343470603228, -0.00747070275247097, -0.00966796837747097, -0.008129882626235485, -0.007250976283103228, -0.007031249813735485, -0.006152343470603228, -0.0054931640625, -0.0076904296875, -0.007910155691206455, -0.005053710658103228, -0.004833984188735485, -0.004833984188735485, -0.0035156249068677425, -0.0035156249068677425, 0.001538085867650807, 0.0013183592818677425, 0.0017578124534338713, 0.006591796875, 0.0054931640625, 0.008129882626235485, 0.00856933556497097, 0.009448242373764515, 0.011425781063735485, 0.010986328125, 0.014501952566206455, 0.01625976525247097, 0.0164794921875, 0.0164794921875, 0.01516113243997097, 0.012524413876235485, 0.012304686941206455, 0.01494140550494194, 0.011425781063735485, 0.011425781063735485, 0.00747070275247097, 0.007250976283103228, 0.002197265625, 0.003076171735301614, 0.0010986328125, -0.00439453125, -0.006152343470603228, -0.009448242373764515, -0.01318359375, -0.014501952566206455, -0.0142822265625, -0.01779785193502903, -0.0230712890625, -0.02329101413488388, -0.02285156212747097, -0.02592773362994194, -0.02460937388241291, -0.02373046800494194, -0.02724609337747097, -0.02395019493997097, -0.02285156212747097, -0.02175292931497097, -0.02043456956744194, -0.015380859375, -0.010986328125, -0.008349609561264515, -0.003955077845603228, -0.001538085867650807, 0.0002197265566792339, 0.0068115233443677425, 0.010107421316206455, 0.015600585378706455, 0.01735839806497097, 0.02153320237994194, 0.0252685546875, 0.02834472618997097, 0.03032226487994194, 0.03076171875, 0.03581542894244194, 0.03779296949505806, 0.03669433668255806, 0.03537597507238388, 0.03691406175494194, 0.03339843824505806, 0.0318603515625, 0.02900390513241291, 0.0274658203125, 0.0252685546875, 0.01801757700741291, 0.01604003831744194, 0.00856933556497097, 0.0006591796409338713, -0.0024169920943677425, -0.007910155691206455, -0.01384277269244194, -0.02175292931497097, -0.02263183519244194, -0.03076171875, -0.03559570387005806, -0.04042968526482582, -0.04438476264476776, -0.04416503757238388, -0.04855956882238388, -0.04680175706744194, -0.04702148213982582, -0.05031738057732582, -0.04812011495232582, -0.04680175706744194, -0.03999023512005806, -0.04086913913488388, -0.03383788838982582, -0.03098144382238388, -0.02570800669491291, -0.01494140550494194, -0.009008788503706455, -0.0032958984375, 0.003076171735301614, 0.009228515438735485, 0.01406249962747097, 0.0252685546875, 0.03032226487994194, 0.03867187350988388, 0.04350585862994194, 0.04548339545726776, 0.0538330078125, 0.05690917745232582, 0.05998535081744194, 0.05954589694738388, 0.06218261644244194, 0.05954589694738388, 0.05778808519244194, 0.0582275390625, 0.05097655951976776, 0.05031738057732582, 0.04350585862994194, 0.03867187350988388, 0.02790527231991291, 0.02197265625, 0.011206054128706455, 0.00527343712747097, -0.002197265625, -0.010107421316206455, -0.01999511756002903, -0.02724609337747097, -0.03559570387005806, -0.04416503757238388, -0.0494384765625, -0.05800781026482582, -0.06174316257238388, -0.06503906100988388, -0.06855468451976776, -0.0714111328125, -0.07404784858226776, -0.07097167521715164, -0.06679687649011612, -0.06613769382238388, -0.06064452975988388, -0.05361327901482582, -0.04921874776482582, -0.04350585862994194, -0.03120117075741291, -0.02197265625, -0.01406249962747097, -0.00439453125, 0.0076904296875, 0.014501952566206455, 0.02680663950741291, 0.03361816331744194, 0.04196777194738388, 0.05119628831744194, 0.05734863132238388, 0.0648193359375, 0.06987304240465164, 0.0736083984375, 0.07536620646715164, 0.08107910305261612, 0.08261718600988388, 0.07624511420726776, 0.07558593899011612, 0.07382812350988388, 0.06569824367761612, 0.06064452975988388, 0.054931640625, 0.04636230319738388, 0.0384521484375, 0.02812499925494194, 0.01933593675494194, 0.0054931640625, -0.0013183592818677425, -0.01801757700741291, -0.02438964694738388, -0.037353515625, -0.0428466796875, -0.05295410007238388, -0.06437987834215164, -0.06877440959215164, -0.07624511420726776, -0.07976073771715164, -0.0823974609375, -0.08415526896715164, -0.08327636867761612, -0.08371581882238388, -0.0823974609375, -0.07668457180261612, -0.06745605170726776, -0.063720703125, -0.05559081956744194, -0.04921874776482582, -0.03713378682732582, -0.02768554538488388, -0.014721679501235485, -0.00527343712747097, 0.00747070275247097, 0.01735839806497097, 0.02724609337747097, 0.037353515625, 0.04592284932732582, 0.05449218675494194, 0.06350097805261612, 0.07097167521715164, 0.07866210490465164, 0.07932128757238388, 0.08173827826976776, 0.08327636867761612, 0.08723144233226776, 0.08173827826976776, 0.0802001953125, 0.07734374701976776, 0.07338867336511612, 0.06459961086511612, 0.05756835639476776, 0.046142578125, 0.03691406175494194, 0.02768554538488388, 0.01625976525247097, 0.007031249813735485, -0.0032958984375, -0.012524413876235485, -0.02548827975988388, -0.03779296949505806, -0.046142578125, -0.05690917745232582, -0.06108398362994194, -0.06833495944738388, -0.07382812350988388, -0.07866210490465164, -0.0802001953125, -0.0823974609375, -0.08195800334215164, -0.08063964545726776, -0.076904296875, -0.07514648139476776, -0.068115234375, -0.06108398362994194, -0.054931640625, -0.0450439453125, -0.03537597507238388, -0.02592773362994194, -0.015600585378706455, -0.0041748047806322575, 0.007250976283103228, 0.01318359375, 0.02351074106991291, 0.03691406175494194, 0.0450439453125, 0.05185546725988388, 0.05778808519244194, 0.06613769382238388, 0.07097167521715164, 0.07426757365465164, 0.07756347209215164, 0.07558593899011612, 0.07778320461511612, 0.07382812350988388, 0.06877440959215164, 0.06635741889476776, 0.0615234375, 0.05559081956744194, 0.05009765550494194, 0.03955078125, 0.03251953050494194, 0.02219238132238388, 0.0142822265625, 0.00439453125, -0.003076171735301614, -0.0142822265625, -0.024169921875, -0.03251953050494194, -0.04218749701976776, -0.04416503757238388, -0.04987792670726776, -0.06020507588982582, -0.0604248046875, -0.06328124552965164, -0.06679687649011612, -0.06965331733226776, -0.06767577677965164, -0.06394042819738388, -0.06394042819738388, -0.05888671800494194, -0.05361327901482582, -0.04877929389476776, -0.04086913913488388, -0.0340576171875, -0.02768554538488388, -0.01691894419491291, -0.0120849609375, -0.003955077845603228, 0.005053710658103228, 0.013403319753706455, 0.019775390625, 0.02460937388241291, 0.03142089769244194, 0.03889160230755806, 0.0439453125, 0.0472412109375, 0.0516357421875, 0.05515136569738388, 0.05515136569738388, 0.05734863132238388, 0.05734863132238388, 0.05471191182732582, 0.05295410007238388, 0.04812011495232582, 0.04482421651482582, 0.03977050632238388, 0.03713378682732582, 0.0296630859375, 0.02438964694738388, 0.01691894419491291, 0.01274413987994194, 0.0057128905318677425, -0.0046142577193677425, -0.01296386681497097, -0.013403319753706455, -0.02109374850988388, -0.02922363206744194, -0.02988281100988388, -0.03383788838982582, -0.03669433668255806, -0.04218749701976776, -0.04020996019244194, -0.04328612983226776, -0.04350585862994194, -0.04306640475988388, -0.04482421651482582, -0.03823241963982582, -0.0384521484375, -0.03867187350988388, -0.03251953050494194, -0.02570800669491291, -0.0230712890625, -0.01735839806497097, -0.0120849609375, -0.006152343470603228, -0.003076171735301614, 0.002197265625, 0.006591796875, 0.01274413987994194, 0.0208740234375, 0.02065429650247097, 0.02175292931497097, 0.028564453125, 0.02944335900247097, 0.03076171875, 0.032958984375, 0.032958984375, 0.03361816331744194, 0.03229980543255806, 0.02900390513241291, 0.03032226487994194, 0.02724609337747097, 0.02790527231991291, 0.02351074106991291, 0.02109374850988388, 0.01604003831744194, 0.013403319753706455, 0.008129882626235485, 0.0024169920943677425, -0.0006591796409338713, -0.0010986328125, -0.0054931640625, -0.00747070275247097, -0.009448242373764515, -0.013403319753706455, -0.013623046688735485, -0.0164794921875, -0.02241210825741291, -0.02219238132238388, -0.0230712890625, -0.02263183519244194, -0.0230712890625, -0.02197265625, -0.02131347544491291, -0.01889648474752903, -0.01713867112994194, -0.01625976525247097, -0.0164794921875, -0.01494140550494194, -0.0087890625, -0.004833984188735485, -0.005053710658103228, -0.0046142577193677425, 0.0, 0.0006591796409338713, 0.0046142577193677425, 0.006152343470603228, 0.0068115233443677425, 0.009228515438735485, 0.00747070275247097, 0.0098876953125, 0.01164550706744194, 0.01296386681497097, 0.013403319753706455, 0.01054687425494194 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.3889)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0010986328125, -0.001538085867650807, 0.0006591796409338713, -0.001977538922801614, -0.001538085867650807, -0.002197265625, 0.0013183592818677425, 0.002197265625, 0.0006591796409338713, 0.0004394531133584678, 0.0004394531133584678, -0.002197265625, -0.0006591796409338713, -0.0024169920943677425, 0.0017578124534338713, 0.001977538922801614, 0.0008789062267169356, -0.0028564452659338713, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, 0.0002197265566792339, -0.002636718563735485, 0.0002197265566792339, 0.0013183592818677425, -0.0002197265566792339, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, 0.0010986328125, -0.0002197265566792339, 0.0002197265566792339, -0.0008789062267169356, 0.002197265625, -0.0006591796409338713, 0.0017578124534338713, 0.001977538922801614, -0.0024169920943677425, -0.0002197265566792339, 0.003076171735301614, -0.0024169920943677425, -0.0004394531133584678, -0.002197265625, 0.0017578124534338713, -0.0006591796409338713, -0.0006591796409338713, 0.003955077845603228, 0.0006591796409338713, 0.0004394531133584678, 0.0017578124534338713, -0.0008789062267169356, 0.00439453125, 0.0010986328125, 0.001538085867650807, 0.002636718563735485, 0.0017578124534338713, 0.004833984188735485, 0.0017578124534338713, 0.0035156249068677425, 0.001977538922801614, 0.003735351376235485, 0.0008789062267169356, -0.0028564452659338713, -0.0006591796409338713, -0.0017578124534338713, -0.003955077845603228, -0.00439453125, -0.0024169920943677425, -0.0041748047806322575, -0.0024169920943677425, -0.005932617001235485, -0.0087890625, -0.0068115233443677425, -0.010986328125, -0.00747070275247097, -0.0098876953125, -0.010986328125, -0.0098876953125, -0.007250976283103228, -0.006152343470603228, -0.009228515438735485, -0.00527343712747097, -0.0041748047806322575, -0.0006591796409338713, -0.0006591796409338713, -0.0002197265566792339, 0.002197265625, 0.0046142577193677425, 0.005932617001235485, 0.0068115233443677425, 0.011425781063735485, 0.01076660118997097, 0.01318359375, 0.01516113243997097, 0.01516113243997097, 0.02109374850988388, 0.01911620981991291, 0.015380859375, 0.01669921912252903, 0.01691894419491291, 0.0164794921875, 0.01384277269244194, 0.01713867112994194, 0.01669921912252903, 0.014721679501235485, 0.0087890625, 0.009448242373764515, 0.0046142577193677425, 0.002636718563735485, -0.0041748047806322575, -0.005053710658103228, -0.009228515438735485, -0.01164550706744194, -0.01625976525247097, -0.01669921912252903, -0.02043456956744194, -0.02285156212747097, -0.02614746056497097, -0.0252685546875, -0.02614746056497097, -0.03251953050494194, -0.028564453125, -0.03229980543255806, -0.03054199181497097, -0.02922363206744194, -0.02592773362994194, -0.02351074106991291, -0.02438964694738388, -0.01845703087747097, -0.015380859375, -0.01054687425494194, -0.00747070275247097, -0.001977538922801614, 0.002636718563735485, 0.005932617001235485, 0.014501952566206455, 0.01582031138241291, 0.02329101413488388, 0.02548827975988388, 0.02900390513241291, 0.0340576171875, 0.03493652120232582, 0.03977050632238388, 0.04108886793255806, 0.04152831807732582, 0.04262695088982582, 0.04218749701976776, 0.04262695088982582, 0.04416503757238388, 0.03977050632238388, 0.03427734225988388, 0.03120117075741291, 0.02548827975988388, 0.02197265625, 0.01911620981991291, 0.01186523400247097, 0.00439453125, -0.0008789062267169356, -0.009008788503706455, -0.01406249962747097, -0.01999511756002903, -0.0296630859375, -0.03427734225988388, -0.04020996019244194, -0.04680175706744194, -0.04965820163488388, -0.05295410007238388, -0.052734375, -0.05734863132238388, -0.054931640625, -0.05471191182732582, -0.05339355394244194, -0.05515136569738388, -0.05185546725988388, -0.04526367038488388, -0.04130859300494194, -0.03208007663488388, -0.02944335900247097, -0.0186767578125, -0.01274413987994194, -0.004833984188735485, 0.006152343470603228, 0.012304686941206455, 0.01955566368997097, 0.02944335900247097, 0.03383788838982582, 0.04152831807732582, 0.04812011495232582, 0.05800781026482582, 0.06086425483226776, 0.06635741889476776, 0.06657714396715164, 0.068115234375, 0.0703125, 0.07009277492761612, 0.06833495944738388, 0.06635741889476776, 0.06306152045726776, 0.05449218675494194, 0.04877929389476776, 0.04108886793255806, 0.03164062276482582, 0.0252685546875, 0.01494140550494194, 0.006591796875, -0.003955077845603228, -0.01384277269244194, -0.02768554538488388, -0.03493652120232582, -0.04328612983226776, -0.05295410007238388, -0.05954589694738388, -0.0670166015625, -0.07294921576976776, -0.0780029296875, -0.07998047024011612, -0.08261718600988388, -0.08437499403953552, -0.08283691108226776, -0.07888183742761612, -0.076904296875, -0.0703125, -0.06635741889476776, -0.05581054463982582, -0.04855956882238388, -0.03867187350988388, -0.02834472618997097, -0.01845703087747097, -0.006591796875, 0.0028564452659338713, 0.017578125, 0.03054199181497097, 0.03933105245232582, 0.046142578125, 0.0560302734375, 0.06745605170726776, 0.07756347209215164, 0.0823974609375, 0.08701171725988388, 0.09140624850988388, 0.09096679091453552, 0.094482421875, 0.09272460639476776, 0.0889892578125, 0.08261718600988388, 0.0780029296875, 0.06899414211511612, 0.06328124552965164, 0.05515136569738388, 0.0428466796875, 0.02768554538488388, 0.01955566368997097, 0.00747070275247097, -0.006591796875, -0.01669921912252903, -0.02944335900247097, -0.037353515625, -0.0538330078125, -0.06306152045726776, -0.07316894084215164, -0.08063964545726776, -0.08876952528953552, -0.09228515625, -0.09799804538488388, -0.09689941257238388, -0.10063476115465164, -0.09514159709215164, -0.09272460639476776, -0.08942870795726776, -0.0823974609375, -0.07404784858226776, -0.06877440959215164, -0.05778808519244194, -0.0472412109375, -0.02988281100988388, -0.024169921875, -0.008129882626235485, 0.00439453125, 0.01889648474752903, 0.028564453125, 0.04416503757238388, 0.05317382514476776, 0.06196288764476776, 0.07294921576976776, 0.07976073771715164, 0.09184569865465164, 0.09426268935203552, 0.09580077975988388, 0.09799804538488388, 0.09843749552965164, 0.09645995497703552, 0.09580077975988388, 0.09184569865465164, 0.08437499403953552, 0.07404784858226776, 0.06306152045726776, 0.05668945237994194, 0.0450439453125, 0.03339843824505806, 0.0186767578125, 0.006591796875, -0.00527343712747097, -0.01823730394244194, -0.02900390513241291, -0.04262695088982582, -0.05207519233226776, -0.06218261644244194, -0.072509765625, -0.07932128757238388, -0.08701171725988388, -0.08964843302965164, -0.09360351413488388, -0.09624022990465164, -0.0977783203125, -0.0933837890625, -0.09294433146715164, -0.08635253459215164, -0.07976073771715164, -0.06899414211511612, -0.06437987834215164, -0.0538330078125, -0.0428466796875, -0.03164062276482582, -0.02043456956744194, -0.0054931640625, 0.004833984188735485, 0.01735839806497097, 0.02680663950741291, 0.03933105245232582, 0.050537109375, 0.05844726413488388, 0.07009277492761612, 0.07404784858226776, 0.07822265475988388, 0.0867919921875, 0.08723144233226776, 0.0911865234375, 0.090087890625, 0.08833007514476776, 0.085693359375, 0.0791015625, 0.07426757365465164, 0.06503906100988388, 0.05734863132238388, 0.04899902269244194, 0.0406494140625, 0.02878417819738388, 0.01625976525247097, 0.009008788503706455, -0.0010986328125, -0.01582031138241291, -0.02702636644244194, -0.03427734225988388, -0.04746093600988388, -0.05317382514476776, -0.05976562201976776, -0.06745605170726776, -0.07404784858226776, -0.07668457180261612, -0.08107910305261612, -0.07558593899011612, -0.08085937052965164, -0.07404784858226776, -0.07207030802965164, -0.07053222507238388, -0.06459961086511612, -0.05624999850988388, -0.04921874776482582, -0.0428466796875, -0.03229980543255806, -0.02197265625, -0.01296386681497097, -0.00439453125, 0.006152343470603228, 0.013403319753706455, 0.02219238132238388, 0.02878417819738388, 0.03955078125, 0.04812011495232582, 0.05075683444738388, 0.05756835639476776, 0.06240234151482582, 0.06328124552965164, 0.06547851115465164, 0.06789550930261612, 0.06503906100988388, 0.06174316257238388, 0.0626220703125, 0.05844726413488388, 0.05119628831744194, 0.04548339545726776, 0.0406494140625, 0.03515625, 0.02592773362994194, 0.02131347544491291, 0.014721679501235485, 0.00527343712747097, -0.0013183592818677425, -0.0120849609375, -0.019775390625, -0.02395019493997097, -0.03142089769244194, -0.0384521484375, -0.04152831807732582, -0.04548339545726776, -0.04877929389476776, -0.050537109375, -0.05185546725988388, -0.050537109375, -0.04965820163488388, -0.05031738057732582, -0.04702148213982582, -0.04548339545726776, -0.04328612983226776, -0.03977050632238388, -0.03229980543255806, -0.02373046800494194, -0.0186767578125, -0.01406249962747097, -0.007910155691206455, -0.0046142577193677425, 0.0057128905318677425, 0.010327148251235485, 0.01735839806497097, 0.01911620981991291, 0.02438964694738388, 0.02592773362994194, 0.02900390513241291, 0.03449707105755806, 0.03537597507238388, 0.03603515401482582, 0.03999023512005806, 0.03515625, 0.04108886793255806, 0.03669433668255806, 0.03493652120232582, 0.03339843824505806, 0.02790527231991291, 0.0252685546875, 0.02263183519244194, 0.01823730394244194, 0.014501952566206455, 0.01164550706744194, 0.005932617001235485, 0.001977538922801614, -0.004833984188735485, -0.00527343712747097, -0.0098876953125, -0.0142822265625, -0.015380859375, -0.01889648474752903, -0.01845703087747097, -0.02219238132238388, -0.02153320237994194, -0.02395019493997097, -0.02373046800494194, -0.0230712890625, -0.0263671875, -0.02460937388241291, -0.02658691257238388, -0.02043456956744194, -0.02021484263241291, -0.01582031138241291, -0.01516113243997097, -0.01384277269244194, -0.008129882626235485, -0.008129882626235485, -0.003076171735301614, 0.0, 0.002636718563735485, 0.001977538922801614, 0.0068115233443677425, 0.00856933556497097, 0.0120849609375, 0.01384277269244194, 0.01318359375, 0.01494140550494194, 0.012524413876235485, 0.013623046688735485, 0.0120849609375 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.4444)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ 0.0, -0.0002197265566792339, -0.0004394531133584678, 0.0, -0.002197265625, -0.002636718563735485, -0.001977538922801614, 0.0004394531133584678, -0.0010986328125, 0.0010986328125, 0.0013183592818677425, 0.002636718563735485, 0.0002197265566792339, 0.0008789062267169356, -0.0028564452659338713, 0.0, 0.0006591796409338713, 0.0008789062267169356, -0.0006591796409338713, -0.0002197265566792339, 0.0017578124534338713, -0.0013183592818677425, -0.0004394531133584678, 0.0004394531133584678, 0.0, 0.0006591796409338713, -0.0006591796409338713, -0.0028564452659338713, 0.001977538922801614, -0.0008789062267169356, -0.0006591796409338713, -0.0010986328125, 0.0013183592818677425, 0.002636718563735485, 0.0002197265566792339, 0.0004394531133584678, -0.0024169920943677425, -0.002197265625, 0.0006591796409338713, 0.0, 0.0, 0.0008789062267169356, 0.002197265625, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.002636718563735485, 0.001538085867650807, 0.0006591796409338713, 0.002197265625, 0.001538085867650807, 0.003076171735301614, 0.003735351376235485, 0.004833984188735485, 0.0028564452659338713, 0.0028564452659338713, 0.0013183592818677425, -0.0004394531133584678, 0.0013183592818677425, -0.001538085867650807, -0.0002197265566792339, 0.0, -0.0004394531133584678, -0.005053710658103228, -0.0028564452659338713, -0.005932617001235485, -0.003735351376235485, -0.00637206993997097, -0.00637206993997097, -0.006591796875, -0.008129882626235485, -0.00966796837747097, -0.00856933556497097, -0.00856933556497097, -0.010107421316206455, -0.01076660118997097, -0.008129882626235485, -0.009008788503706455, -0.009228515438735485, -0.008129882626235485, -0.007910155691206455, -0.00527343712747097, -0.0041748047806322575, -0.003735351376235485, -0.0013183592818677425, 0.0024169920943677425, 0.002197265625, 0.00527343712747097, 0.0041748047806322575, 0.011206054128706455, 0.011206054128706455, 0.012524413876235485, 0.01625976525247097, 0.01516113243997097, 0.01801757700741291, 0.01801757700741291, 0.02329101413488388, 0.02043456956744194, 0.02065429650247097, 0.02329101413488388, 0.02021484263241291, 0.01911620981991291, 0.01933593675494194, 0.014501952566206455, 0.014721679501235485, 0.010327148251235485, 0.009448242373764515, 0.003955077845603228, 0.001977538922801614, -0.002197265625, -0.005932617001235485, -0.008129882626235485, -0.0120849609375, -0.01625976525247097, -0.0208740234375, -0.024169921875, -0.02351074106991291, -0.02790527231991291, -0.03098144382238388, -0.03339843824505806, -0.0340576171875, -0.03647460788488388, -0.03339843824505806, -0.03537597507238388, -0.03361816331744194, -0.03054199181497097, -0.02988281100988388, -0.02395019493997097, -0.02395019493997097, -0.0164794921875, -0.013623046688735485, -0.0120849609375, -0.0032958984375, 0.001977538922801614, 0.00747070275247097, 0.01318359375, 0.01889648474752903, 0.024169921875, 0.028564453125, 0.032958984375, 0.04042968526482582, 0.03911132737994194, 0.04768066108226776, 0.04790038987994194, 0.04658202826976776, 0.052734375, 0.04855956882238388, 0.04702148213982582, 0.04460449144244194, 0.04218749701976776, 0.03801269456744194, 0.03493652120232582, 0.02878417819738388, 0.02351074106991291, 0.01999511756002903, 0.01076660118997097, 0.005053710658103228, -0.00439453125, -0.013623046688735485, -0.01669921912252903, -0.02790527231991291, -0.032958984375, -0.03999023512005806, -0.04746093600988388, -0.052734375, -0.05361327901482582, -0.0615234375, -0.06394042819738388, -0.06459961086511612, -0.06569824367761612, -0.06745605170726776, -0.06394042819738388, -0.06020507588982582, -0.05800781026482582, -0.05251464620232582, -0.04526367038488388, -0.04020996019244194, -0.02922363206744194, -0.02702636644244194, -0.01516113243997097, -0.0068115233443677425, 0.0032958984375, 0.01582031138241291, 0.02153320237994194, 0.03032226487994194, 0.04482421651482582, 0.05119628831744194, 0.05844726413488388, 0.06350097805261612, 0.06965331733226776, 0.07602538913488388, 0.0791015625, 0.0823974609375, 0.08041992038488388, 0.08151855319738388, 0.07866210490465164, 0.07294921576976776, 0.06965331733226776, 0.06547851115465164, 0.05515136569738388, 0.04746093600988388, 0.03801269456744194, 0.02768554538488388, 0.01911620981991291, 0.0068115233443677425, -0.002636718563735485, -0.014501952566206455, -0.02768554538488388, -0.04020996019244194, -0.04680175706744194, -0.05954589694738388, -0.06525878608226776, -0.07514648139476776, -0.0823974609375, -0.08701171725988388, -0.09426268935203552, -0.09294433146715164, -0.09711913764476776, -0.09470214694738388, -0.09052734076976776, -0.08723144233226776, -0.07976073771715164, -0.072509765625, -0.0648193359375, -0.05734863132238388, -0.04548339545726776, -0.03054199181497097, -0.02285156212747097, -0.007910155691206455, 0.004833984188735485, 0.01779785193502903, 0.03229980543255806, 0.04460449144244194, 0.0516357421875, 0.0670166015625, 0.07822265475988388, 0.08503417670726776, 0.09162597358226776, 0.10041503608226776, 0.10415038466453552, 0.10634765028953552, 0.10700683295726776, 0.103271484375, 0.10239257663488388, 0.0966796875, 0.08635253459215164, 0.07888183742761612, 0.07053222507238388, 0.06064452975988388, 0.04790038987994194, 0.03361816331744194, 0.02482910081744194, 0.010327148251235485, -0.0046142577193677425, -0.01999511756002903, -0.03317870944738388, -0.04768066108226776, -0.05756835639476776, -0.07207030802965164, -0.08305663615465164, -0.09074706584215164, -0.09953612834215164, -0.10371093451976776, -0.11074218153953552, -0.11359862983226776, -0.11293944716453552, -0.11118163913488388, -0.1043701171875, -0.10524901747703552, -0.0911865234375, -0.08327636867761612, -0.0758056640625, -0.05998535081744194, -0.05251464620232582, -0.0384521484375, -0.02504882775247097, -0.0076904296875, 0.007031249813735485, 0.01911620981991291, 0.03493652120232582, 0.04790038987994194, 0.06350097805261612, 0.07470703125, 0.081298828125, 0.094482421875, 0.10041503608226776, 0.10788574069738388, 0.10942382365465164, 0.11271972209215164, 0.11579589545726776, 0.1109619140625, 0.10788574069738388, 0.10019531100988388, 0.09624022990465164, 0.08657225966453552, 0.07646483927965164, 0.0615234375, 0.050537109375, 0.03471679612994194, 0.01999511756002903, 0.008349609561264515, -0.007031249813735485, -0.02153320237994194, -0.03493652120232582, -0.04921874776482582, -0.06108398362994194, -0.07426757365465164, -0.08217773586511612, -0.08920898288488388, -0.09492187201976776, -0.103271484375, -0.10788574069738388, -0.11140136420726776, -0.11052245646715164, -0.10898437350988388, -0.10590820014476776, -0.10041503608226776, -0.09162597358226776, -0.08393554389476776, -0.06943359225988388, -0.06306152045726776, -0.04899902269244194, -0.03691406175494194, -0.0230712890625, -0.009008788503706455, 0.005053710658103228, 0.01823730394244194, 0.03603515401482582, 0.046142578125, 0.05624999850988388, 0.0692138671875, 0.07514648139476776, 0.08767089247703552, 0.09316405653953552, 0.09514159709215164, 0.1021728515625, 0.10239257663488388, 0.10349120944738388, 0.09843749552965164, 0.09536132216453552, 0.0889892578125, 0.08481445163488388, 0.07163085788488388, 0.06569824367761612, 0.05559081956744194, 0.04526367038488388, 0.03317870944738388, 0.01779785193502903, 0.005932617001235485, -0.00856933556497097, -0.01625976525247097, -0.02900390513241291, -0.04042968526482582, -0.0516357421875, -0.06218261644244194, -0.07053222507238388, -0.07492675632238388, -0.08415526896715164, -0.08437499403953552, -0.09140624850988388, -0.08745116740465164, -0.0867919921875, -0.08833007514476776, -0.08525390177965164, -0.07822265475988388, -0.07426757365465164, -0.06613769382238388, -0.05449218675494194, -0.04899902269244194, -0.03955078125, -0.0274658203125, -0.01823730394244194, -0.0054931640625, 0.0046142577193677425, 0.01384277269244194, 0.02460937388241291, 0.03559570387005806, 0.04130859300494194, 0.05207519233226776, 0.05624999850988388, 0.06218261644244194, 0.06745605170726776, 0.07163085788488388, 0.07712402194738388, 0.07514648139476776, 0.07448730617761612, 0.07229004055261612, 0.06943359225988388, 0.06437987834215164, 0.06196288764476776, 0.05449218675494194, 0.04482421651482582, 0.03757324069738388, 0.0318603515625, 0.02109374850988388, 0.010327148251235485, 0.004833984188735485, -0.003955077845603228, -0.01582031138241291, -0.02175292931497097, -0.03098144382238388, -0.03537597507238388, -0.04240722581744194, -0.04855956882238388, -0.052734375, -0.05734863132238388, -0.05844726413488388, -0.06130370870232582, -0.059326171875, -0.05756835639476776, -0.05690917745232582, -0.0538330078125, -0.05075683444738388, -0.04855956882238388, -0.04328612983226776, -0.03801269456744194, -0.03032226487994194, -0.02768554538488388, -0.01999511756002903, -0.01296386681497097, -0.003076171735301614, 0.002197265625, 0.010107421316206455, 0.01384277269244194, 0.01911620981991291, 0.02460937388241291, 0.03076171875, 0.03339843824505806, 0.03779296949505806, 0.04086913913488388, 0.0439453125, 0.04218749701976776, 0.04372558370232582, 0.04306640475988388, 0.04372558370232582, 0.04218749701976776, 0.03823241963982582, 0.03559570387005806, 0.02922363206744194, 0.02482910081744194, 0.02021484263241291, 0.01889648474752903, 0.010986328125, 0.0057128905318677425, 0.001538085867650807, -0.0017578124534338713, -0.00637206993997097, -0.010986328125, -0.01625976525247097, -0.01604003831744194, -0.02263183519244194, -0.02724609337747097, -0.02395019493997097, -0.02834472618997097, -0.02878417819738388, -0.02988281100988388, -0.03076171875, -0.03120117075741291, -0.028564453125, -0.0263671875, -0.02263183519244194, -0.02438964694738388, -0.02175292931497097, -0.01669921912252903, -0.0142822265625, -0.009008788503706455, -0.0057128905318677425, -0.0032958984375, 0.0006591796409338713, 0.001977538922801614, 0.0054931640625, 0.010327148251235485, 0.011206054128706455, 0.01186523400247097, 0.01384277269244194, 0.015380859375, 0.015600585378706455, 0.015380859375, 0.01494140550494194, 0.01713867112994194 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.5)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x", "y": [ -0.0006591796409338713, -0.0008789062267169356, -0.001538085867650807, 0.002636718563735485, 0.0010986328125, -0.001977538922801614, 0.0, 0.0002197265566792339, -0.0004394531133584678, -0.0017578124534338713, 0.0008789062267169356, 0.0008789062267169356, -0.0010986328125, 0.0, -0.0002197265566792339, -0.0017578124534338713, 0.002197265625, 0.0004394531133584678, 0.0006591796409338713, -0.0004394531133584678, 0.0013183592818677425, 0.0004394531133584678, 0.0004394531133584678, 0.0, 0.003076171735301614, -0.0002197265566792339, -0.002197265625, 0.002197265625, 0.0008789062267169356, -0.002197265625, 0.0004394531133584678, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, 0.0035156249068677425, 0.0024169920943677425, 0.0004394531133584678, 0.0, -0.001538085867650807, -0.0002197265566792339, 0.0004394531133584678, 0.0028564452659338713, 0.0010986328125, 0.0013183592818677425, 0.002197265625, 0.0004394531133584678, 0.0006591796409338713, 0.0010986328125, 0.0008789062267169356, 0.0006591796409338713, 0.001538085867650807, 0.00439453125, 0.0032958984375, 0.0008789062267169356, 0.0006591796409338713, 0.003076171735301614, 0.0004394531133584678, 0.0024169920943677425, 0.0013183592818677425, 0.0032958984375, 0.0, -0.001977538922801614, -0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.005932617001235485, -0.00527343712747097, -0.0076904296875, -0.00637206993997097, -0.00637206993997097, -0.01054687425494194, -0.010327148251235485, -0.01164550706744194, -0.0120849609375, -0.01186523400247097, -0.0120849609375, -0.010107421316206455, -0.010986328125, -0.01186523400247097, -0.01054687425494194, -0.009008788503706455, -0.008349609561264515, -0.0057128905318677425, -0.002197265625, -0.003735351376235485, 0.0006591796409338713, 0.003955077845603228, 0.00856933556497097, 0.0098876953125, 0.01054687425494194, 0.012304686941206455, 0.015380859375, 0.01713867112994194, 0.01933593675494194, 0.02021484263241291, 0.02241210825741291, 0.02241210825741291, 0.02219238132238388, 0.02373046800494194, 0.02263183519244194, 0.02373046800494194, 0.01999511756002903, 0.02153320237994194, 0.0164794921875, 0.0142822265625, 0.010986328125, 0.010107421316206455, 0.005932617001235485, -0.0002197265566792339, -0.001538085867650807, -0.0054931640625, -0.008349609561264515, -0.01691894419491291, -0.0186767578125, -0.02043456956744194, -0.0274658203125, -0.03120117075741291, -0.03120117075741291, -0.03339843824505806, -0.03823241963982582, -0.03757324069738388, -0.03713378682732582, -0.04086913913488388, -0.03779296949505806, -0.037353515625, -0.03383788838982582, -0.03208007663488388, -0.02548827975988388, -0.0252685546875, -0.02175292931497097, -0.01691894419491291, -0.008349609561264515, -0.005053710658103228, 0.001977538922801614, 0.00637206993997097, 0.01494140550494194, 0.02021484263241291, 0.03054199181497097, 0.03427734225988388, 0.03955078125, 0.04108886793255806, 0.04570312425494194, 0.04987792670726776, 0.05119628831744194, 0.05690917745232582, 0.05405273288488388, 0.054931640625, 0.05471191182732582, 0.05141601338982582, 0.04680175706744194, 0.04526367038488388, 0.04108886793255806, 0.032958984375, 0.02702636644244194, 0.019775390625, 0.01318359375, 0.002197265625, -0.00439453125, -0.0142822265625, -0.01955566368997097, -0.028564453125, -0.03427734225988388, -0.04658202826976776, -0.05141601338982582, -0.05668945237994194, -0.06086425483226776, -0.068115234375, -0.07185058295726776, -0.07426757365465164, -0.0703125, -0.07119140774011612, -0.07207030802965164, -0.06767577677965164, -0.06569824367761612, -0.05976562201976776, -0.05031738057732582, -0.04152831807732582, -0.0384521484375, -0.02614746056497097, -0.01625976525247097, -0.00527343712747097, 0.007250976283103228, 0.012524413876235485, 0.02592773362994194, 0.0362548828125, 0.04570312425494194, 0.05778808519244194, 0.063720703125, 0.07097167521715164, 0.07822265475988388, 0.08217773586511612, 0.08657225966453552, 0.09074706584215164, 0.09294433146715164, 0.09140624850988388, 0.0867919921875, 0.08305663615465164, 0.081298828125, 0.07009277492761612, 0.06086425483226776, 0.05251464620232582, 0.0406494140625, 0.03339843824505806, 0.02131347544491291, 0.007031249813735485, -0.0046142577193677425, -0.015380859375, -0.03098144382238388, -0.04130859300494194, -0.05339355394244194, -0.06350097805261612, -0.07294921576976776, -0.08591308444738388, -0.09096679091453552, -0.09711913764476776, -0.10590820014476776, -0.10480956733226776, -0.10590820014476776, -0.10415038466453552, -0.10305175185203552, -0.09580077975988388, -0.09294433146715164, -0.08349609375, -0.0703125, -0.06174316257238388, -0.05295410007238388, -0.037353515625, -0.02109374850988388, -0.0087890625, 0.006152343470603228, 0.02043456956744194, 0.03515625, 0.05009765550494194, 0.06350097805261612, 0.07382812350988388, 0.08613280951976776, 0.0966796875, 0.10634765028953552, 0.11118163913488388, 0.1175537109375, 0.11887206882238388, 0.11953124403953552, 0.11623534560203552, 0.11249999701976776, 0.107666015625, 0.09755858778953552, 0.08833007514476776, 0.07866210490465164, 0.06855468451976776, 0.05515136569738388, 0.04086913913488388, 0.02592773362994194, 0.009008788503706455, -0.005053710658103228, -0.0208740234375, -0.03581542894244194, -0.05339355394244194, -0.06591796875, -0.081298828125, -0.09206542372703552, -0.10107421875, -0.10920409858226776, -0.11887206882238388, -0.12436523288488388, -0.12502440810203552, -0.12128905951976776, -0.12392577528953552, -0.12019042670726776, -0.11162108927965164, -0.10546875, -0.09624022990465164, -0.08349609375, -0.07053222507238388, -0.05449218675494194, -0.04196777194738388, -0.02658691257238388, -0.00856933556497097, 0.00856933556497097, 0.019775390625, 0.037353515625, 0.05471191182732582, 0.06745605170726776, 0.0802001953125, 0.09602050483226776, 0.10568847507238388, 0.11469726264476776, 0.11909179389476776, 0.12502440810203552, 0.12766112387180328, 0.12678222358226776, 0.12766112387180328, 0.12216796725988388, 0.11403807997703552, 0.1065673828125, 0.09360351413488388, 0.0845947265625, 0.0703125, 0.05844726413488388, 0.04130859300494194, 0.02658691257238388, 0.011206054128706455, -0.0046142577193677425, -0.02043456956744194, -0.03713378682732582, -0.05207519233226776, -0.06569824367761612, -0.07866210490465164, -0.09052734076976776, -0.10107421875, -0.10788574069738388, -0.11359862983226776, -0.12348632514476776, -0.12766112387180328, -0.12370605021715164, -0.12128905951976776, -0.1175537109375, -0.11271972209215164, -0.0999755859375, -0.08833007514476776, -0.07778320461511612, -0.06789550930261612, -0.05581054463982582, -0.04130859300494194, -0.02395019493997097, -0.0076904296875, 0.004833984188735485, 0.02285156212747097, 0.03911132737994194, 0.05119628831744194, 0.06350097805261612, 0.0758056640625, 0.08657225966453552, 0.09689941257238388, 0.10502929240465164, 0.11030273139476776, 0.11513671278953552, 0.11381835490465164, 0.11381835490465164, 0.11403807997703552, 0.10480956733226776, 0.10107421875, 0.09052734076976776, 0.08261718600988388, 0.07404784858226776, 0.06174316257238388, 0.04658202826976776, 0.03889160230755806, 0.01955566368997097, 0.0054931640625, -0.006591796875, -0.02241210825741291, -0.03032226487994194, -0.04592284932732582, -0.05910644307732582, -0.06899414211511612, -0.0780029296875, -0.08767089247703552, -0.09140624850988388, -0.09733886271715164, -0.09953612834215164, -0.10019531100988388, -0.09931640326976776, -0.0955810546875, -0.09316405653953552, -0.08964843302965164, -0.08041992038488388, -0.07229004055261612, -0.06569824367761612, -0.05251464620232582, -0.04416503757238388, -0.02834472618997097, -0.01823730394244194, -0.0054931640625, 0.003735351376235485, 0.015380859375, 0.02878417819738388, 0.04020996019244194, 0.05009765550494194, 0.06020507588982582, 0.06306152045726776, 0.07207030802965164, 0.07998047024011612, 0.081298828125, 0.08481445163488388, 0.08371581882238388, 0.08437499403953552, 0.08327636867761612, 0.07822265475988388, 0.07185058295726776, 0.06943359225988388, 0.06284179538488388, 0.05207519233226776, 0.04548339545726776, 0.03559570387005806, 0.0252685546875, 0.01494140550494194, 0.00439453125, -0.004833984188735485, -0.01318359375, -0.02175292931497097, -0.03054199181497097, -0.03999023512005806, -0.04768066108226776, -0.05449218675494194, -0.05910644307732582, -0.063720703125, -0.0648193359375, -0.06657714396715164, -0.06437987834215164, -0.06306152045726776, -0.06174316257238388, -0.06196288764476776, -0.05581054463982582, -0.05141601338982582, -0.04680175706744194, -0.04372558370232582, -0.03251953050494194, -0.02504882775247097, -0.01955566368997097, -0.01186523400247097, -0.002197265625, 0.0032958984375, 0.010107421316206455, 0.01801757700741291, 0.02504882775247097, 0.028564453125, 0.03581542894244194, 0.03801269456744194, 0.041748046875, 0.04328612983226776, 0.04768066108226776, 0.046142578125, 0.04855956882238388, 0.04877929389476776, 0.04460449144244194, 0.04482421651482582, 0.04042968526482582, 0.03801269456744194, 0.03339843824505806, 0.02834472618997097, 0.02614746056497097, 0.0186767578125, 0.0120849609375, 0.00966796837747097, 0.0017578124534338713, -0.0035156249068677425, -0.008349609561264515, -0.01164550706744194, -0.02021484263241291, -0.01955566368997097, -0.02219238132238388, -0.03054199181497097, -0.03054199181497097, -0.03251953050494194, -0.03142089769244194, -0.0340576171875, -0.03229980543255806, -0.03164062276482582, -0.03273925557732582, -0.02988281100988388, -0.02812499925494194, -0.02460937388241291, -0.02438964694738388, -0.01691894419491291, -0.01186523400247097, -0.011206054128706455, -0.010986328125, -0.00527343712747097, -0.001538085867650807, -0.0002197265566792339, 0.0046142577193677425, 0.005932617001235485, 0.01186523400247097, 0.01384277269244194, 0.015600585378706455, 0.01516113243997097, 0.019775390625, 0.02021484263241291, 0.017578125, 0.02131347544491291 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.1768798828125, 0.17600096762180328, 0.16567382216453552, 0.15644530951976776, 0.13974608480930328, 0.12766112387180328, 0.10854491591453552, 0.09624022990465164, 0.076904296875, 0.06064452975988388, 0.041748046875, 0.02614746056497097, 0.009448242373764515, -0.007031249813735485, -0.02175292931497097, -0.03251953050494194, -0.04658202826976776, -0.05141601338982582, -0.06108398362994194, -0.06723632663488388, -0.06899414211511612, -0.06943359225988388, -0.07119140774011612, -0.06943359225988388, -0.06591796875, -0.0626220703125, -0.05910644307732582, -0.04768066108226776, -0.04548339545726776, -0.03867187350988388, -0.02922363206744194, -0.02263183519244194, -0.017578125, -0.014721679501235485, -0.009008788503706455, -0.0017578124534338713, -0.0024169920943677425, 0.003076171735301614, 0.00527343712747097, 0.007910155691206455, 0.0057128905318677425, 0.00637206993997097, 0.005053710658103228, 0.007031249813735485, 0.0013183592818677425, 0.001977538922801614, 0.001538085867650807, 0.0006591796409338713, -0.0006591796409338713, 0.0008789062267169356, -0.001977538922801614, -0.001538085867650807, -0.003076171735301614, -0.0024169920943677425, 0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, 0.001538085867650807, -0.0010986328125, 0.0013183592818677425, 0.0004394531133584678, -0.0006591796409338713, 0.0004394531133584678, -0.001538085867650807, -0.0024169920943677425, -0.003955077845603228, -0.0035156249068677425, 0.0, 0.0010986328125, 0.0017578124534338713, 0.0002197265566792339, -0.0017578124534338713, 0.0004394531133584678, 0.0006591796409338713, 0.0013183592818677425, 0.0002197265566792339, 0.0028564452659338713, -0.0013183592818677425, 0.0013183592818677425, 0.0, -0.0002197265566792339, 0.0041748047806322575, -0.0028564452659338713, 0.0002197265566792339, 0.0004394531133584678, 0.0024169920943677425, 0.0008789062267169356, 0.0002197265566792339, -0.001977538922801614, -0.0006591796409338713, 0.0028564452659338713, 0.0002197265566792339, -0.002636718563735485, 0.0004394531133584678, -0.0010986328125, 0.0, -0.0028564452659338713, -0.001538085867650807, 0.0002197265566792339, -0.0006591796409338713, -0.0017578124534338713, 0.00439453125, -0.0004394531133584678, -0.001538085867650807, 0.0010986328125, -0.0010986328125, 0.0002197265566792339, -0.0006591796409338713, 0.0017578124534338713, 0.0017578124534338713, 0.0, 0.0017578124534338713, -0.0004394531133584678, 0.003735351376235485, 0.0035156249068677425, 0.001538085867650807, 0.0008789062267169356, -0.0017578124534338713, 0.0008789062267169356, -0.0013183592818677425, -0.0017578124534338713, -0.0002197265566792339, 0.0, -0.0008789062267169356, -0.0010986328125, 0.0008789062267169356, 0.0028564452659338713, 0.0013183592818677425, -0.0002197265566792339, -0.0004394531133584678, 0.0002197265566792339, 0.0013183592818677425, 0.0013183592818677425, 0.0032958984375, 0.0, 0.002197265625, -0.0010986328125, 0.0, -0.002636718563735485, -0.0006591796409338713, 0.0, -0.0008789062267169356, -0.0008789062267169356, -0.0006591796409338713, -0.0004394531133584678, 0.001538085867650807, -0.003076171735301614, 0.0, 0.0008789062267169356, 0.0004394531133584678, 0.0028564452659338713, -0.0004394531133584678, -0.0008789062267169356, 0.0, 0.0017578124534338713, 0.0004394531133584678, -0.0024169920943677425, 0.0013183592818677425, -0.0002197265566792339, 0.0006591796409338713, -0.0002197265566792339, 0.0004394531133584678, 0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, 0.0, -0.0008789062267169356, -0.0002197265566792339, 0.0006591796409338713, 0.0, 0.0010986328125, 0.0002197265566792339, -0.0008789062267169356, 0.0010986328125, -0.0006591796409338713, 0.003735351376235485, 0.0, -0.0002197265566792339, 0.001977538922801614, 0.0006591796409338713, 0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.001538085867650807, -0.0004394531133584678, 0.0008789062267169356, -0.0017578124534338713, 0.0004394531133584678, -0.0002197265566792339, 0.0028564452659338713, -0.0002197265566792339, 0.0024169920943677425, -0.0004394531133584678, -0.0010986328125, -0.0004394531133584678, 0.0017578124534338713, 0.0002197265566792339, -0.002197265625, -0.0013183592818677425, -0.0004394531133584678, 0.0008789062267169356, 0.001977538922801614, -0.002636718563735485, 0.0010986328125, 0.0032958984375, 0.0004394531133584678, -0.0013183592818677425, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, 0.0017578124534338713, 0.0006591796409338713, -0.001977538922801614, -0.001977538922801614, -0.0024169920943677425, -0.0028564452659338713, -0.0004394531133584678, 0.0004394531133584678, 0.001977538922801614, -0.001538085867650807, 0.0008789062267169356, 0.0017578124534338713, -0.0013183592818677425, 0.001538085867650807, -0.003076171735301614, 0.0017578124534338713, -0.002636718563735485, -0.0004394531133584678, -0.002636718563735485, -0.003076171735301614, -0.0017578124534338713, 0.0002197265566792339, -0.0004394531133584678, -0.0004394531133584678, 0.0013183592818677425, 0.0010986328125, -0.001538085867650807, 0.0008789062267169356, 0.0013183592818677425, 0.001977538922801614, 0.001538085867650807, -0.0013183592818677425, -0.0004394531133584678, 0.0004394531133584678, 0.0008789062267169356, -0.0017578124534338713, -0.0010986328125, 0.003076171735301614, 0.002197265625, 0.0013183592818677425, 0.0002197265566792339, 0.0004394531133584678, 0.001538085867650807, -0.0004394531133584678, -0.0002197265566792339, 0.0002197265566792339, -0.0008789062267169356, -0.0010986328125, 0.0008789062267169356, -0.001538085867650807, 0.0017578124534338713, 0.0010986328125, 0.001977538922801614, 0.0004394531133584678, 0.0, 0.001977538922801614, 0.0017578124534338713, -0.0008789062267169356, 0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, 0.0, -0.0002197265566792339, 0.0008789062267169356, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.0032958984375, -0.001538085867650807, -0.0004394531133584678, 0.0008789062267169356, -0.0002197265566792339, 0.001977538922801614, -0.0004394531133584678, 0.001538085867650807, 0.0017578124534338713, -0.0024169920943677425, 0.0013183592818677425, 0.0004394531133584678, -0.0004394531133584678, 0.0006591796409338713, -0.0010986328125, 0.0008789062267169356, 0.0006591796409338713, 0.0006591796409338713, 0.0010986328125, 0.002197265625, -0.0006591796409338713, -0.0004394531133584678, -0.0006591796409338713, 0.0004394531133584678, 0.0004394531133584678, -0.0010986328125, -0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.0024169920943677425, 0.0024169920943677425, -0.0013183592818677425, 0.0004394531133584678, 0.0006591796409338713, 0.0013183592818677425, 0.002197265625, 0.001977538922801614, -0.0002197265566792339, 0.0017578124534338713, -0.0010986328125, -0.0004394531133584678, 0.0, -0.0008789062267169356, 0.001977538922801614, 0.0006591796409338713, 0.0006591796409338713, -0.001977538922801614, 0.0013183592818677425, 0.002197265625, 0.0, 0.0006591796409338713, -0.0013183592818677425, 0.0004394531133584678, 0.0006591796409338713, 0.002636718563735485, 0.0010986328125, 0.0002197265566792339, 0.0017578124534338713, -0.0008789062267169356, 0.0006591796409338713, 0.0, 0.001538085867650807, 0.0006591796409338713, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0004394531133584678, 0.0004394531133584678, -0.001538085867650807, 0.002636718563735485, 0.0, -0.001977538922801614, 0.0013183592818677425, -0.001538085867650807, -0.0010986328125, 0.0, 0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, 0.0004394531133584678, 0.0024169920943677425, 0.0017578124534338713, -0.0004394531133584678, 0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, 0.0006591796409338713, 0.002636718563735485, -0.001538085867650807, -0.0013183592818677425, -0.0017578124534338713, 0.0028564452659338713, -0.0028564452659338713, -0.0002197265566792339, 0.0010986328125, -0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0004394531133584678, 0.0004394531133584678, 0.0008789062267169356, 0.0013183592818677425, -0.0004394531133584678, -0.0004394531133584678, 0.0006591796409338713, -0.0013183592818677425, 0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0002197265566792339, -0.0013183592818677425, 0.0008789062267169356, -0.0010986328125, -0.001977538922801614, 0.0004394531133584678, -0.0002197265566792339, 0.0004394531133584678, 0.0, 0.0008789062267169356, 0.0008789062267169356, 0.0028564452659338713, 0.0, -0.0006591796409338713, -0.0004394531133584678, -0.0024169920943677425, -0.0008789062267169356, -0.001538085867650807, 0.0008789062267169356, 0.0008789062267169356, -0.0028564452659338713, 0.0013183592818677425, -0.0010986328125, 0.0004394531133584678, 0.0008789062267169356, -0.0017578124534338713, 0.0002197265566792339, -0.0002197265566792339, -0.002197265625, -0.0002197265566792339, 0.001538085867650807, 0.0028564452659338713, 0.0006591796409338713, -0.001977538922801614, 0.0002197265566792339, -0.0004394531133584678, 0.0002197265566792339, 0.0017578124534338713, 0.0, 0.0004394531133584678, -0.0006591796409338713, 0.0006591796409338713, 0.0, -0.0008789062267169356, -0.0008789062267169356, 0.0002197265566792339, 0.0006591796409338713, 0.0002197265566792339, 0.002636718563735485, 0.0002197265566792339, -0.0028564452659338713, -0.0002197265566792339, 0.0010986328125, 0.002636718563735485, -0.0004394531133584678, 0.0006591796409338713, 0.0002197265566792339, 0.0002197265566792339, 0.001977538922801614, 0.0002197265566792339, 0.0004394531133584678, 0.0008789062267169356, 0.0008789062267169356, -0.003076171735301614, -0.0008789062267169356, 0.0002197265566792339, -0.0002197265566792339, -0.0010986328125, 0.0008789062267169356, -0.001538085867650807, -0.0035156249068677425, 0.0028564452659338713, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, 0.0008789062267169356, 0.0004394531133584678, -0.001538085867650807, 0.0010986328125, 0.0004394531133584678, 0.001977538922801614, 0.001977538922801614, 0.0, 0.001538085867650807, 0.0, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.0002197265566792339, -0.0010986328125, -0.0013183592818677425 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.0556)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.17841796576976776, 0.17534178495407104, 0.16743163764476776, 0.15512694418430328, 0.14084471762180328, 0.12941893935203552, 0.11140136420726776, 0.09360351413488388, 0.07734374701976776, 0.05888671800494194, 0.04086913913488388, 0.02438964694738388, 0.006152343470603228, -0.0076904296875, -0.02043456956744194, -0.03383788838982582, -0.04746093600988388, -0.05581054463982582, -0.06218261644244194, -0.0670166015625, -0.06789550930261612, -0.0714111328125, -0.0692138671875, -0.06657714396715164, -0.0648193359375, -0.06086425483226776, -0.05471191182732582, -0.05251464620232582, -0.04526367038488388, -0.03691406175494194, -0.03010253794491291, -0.02373046800494194, -0.01604003831744194, -0.012304686941206455, -0.00527343712747097, -0.0006591796409338713, 0.0006591796409338713, 0.002636718563735485, 0.003735351376235485, 0.005053710658103228, 0.003735351376235485, 0.00637206993997097, 0.002197265625, 0.003735351376235485, 0.0, -0.002197265625, 0.001538085867650807, -0.0010986328125, 0.0010986328125, 0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.0004394531133584678, -0.0035156249068677425, -0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, 0.0010986328125, -0.0006591796409338713, -0.0010986328125, -0.0028564452659338713, 0.0002197265566792339, -0.0017578124534338713, -0.003735351376235485, 0.0004394531133584678, -0.002197265625, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, 0.0002197265566792339, -0.002197265625, 0.0004394531133584678, -0.0017578124534338713, -0.0002197265566792339, -0.0017578124534338713, -0.0006591796409338713, 0.0004394531133584678, -0.0006591796409338713, 0.0017578124534338713, 0.0017578124534338713, 0.0010986328125, 0.0, 0.0013183592818677425, 0.0008789062267169356, 0.003076171735301614, -0.0008789062267169356, 0.001538085867650807, 0.001977538922801614, 0.002197265625, 0.0013183592818677425, 0.002197265625, 0.003955077845603228, 0.0002197265566792339, -0.0002197265566792339, 0.0024169920943677425, 0.0024169920943677425, 0.0017578124534338713, 0.0017578124534338713, -0.0010986328125, -0.0002197265566792339, -0.0008789062267169356, 0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, 0.0002197265566792339, -0.002197265625, -0.003076171735301614, -0.00527343712747097, -0.0028564452659338713, -0.003955077845603228, -0.0028564452659338713, -0.0035156249068677425, -0.003735351376235485, -0.00637206993997097, -0.003955077845603228, -0.003735351376235485, -0.003076171735301614, -0.0046142577193677425, -0.007250976283103228, -0.003955077845603228, -0.002636718563735485, -0.0010986328125, -0.005053710658103228, -0.0004394531133584678, 0.0004394531133584678, 0.0013183592818677425, 0.0010986328125, 0.001538085867650807, 0.003076171735301614, 0.002636718563735485, 0.003076171735301614, 0.001538085867650807, 0.0046142577193677425, 0.00439453125, 0.004833984188735485, 0.00527343712747097, 0.0076904296875, 0.00637206993997097, 0.007910155691206455, 0.0046142577193677425, 0.0068115233443677425, 0.003955077845603228, 0.00527343712747097, 0.007031249813735485, 0.005932617001235485, 0.003955077845603228, 0.0024169920943677425, 0.001538085867650807, 0.0008789062267169356, -0.0013183592818677425, -0.0008789062267169356, -0.0013183592818677425, -0.00439453125, -0.002197265625, -0.003955077845603228, -0.00439453125, -0.00527343712747097, -0.00637206993997097, -0.005053710658103228, -0.0076904296875, -0.007031249813735485, -0.0087890625, -0.006152343470603228, -0.0068115233443677425, -0.0087890625, -0.006152343470603228, -0.009448242373764515, -0.006591796875, -0.0028564452659338713, -0.0035156249068677425, -0.002636718563735485, -0.002636718563735485, -0.0008789062267169356, -0.001538085867650807, 0.0, -0.0004394531133584678, 0.0017578124534338713, 0.005053710658103228, 0.0054931640625, 0.00527343712747097, 0.008129882626235485, 0.006591796875, 0.012524413876235485, 0.008129882626235485, 0.0098876953125, 0.010327148251235485, 0.00856933556497097, 0.0098876953125, 0.008349609561264515, 0.009228515438735485, 0.00637206993997097, 0.0068115233443677425, 0.007250976283103228, 0.0054931640625, 0.00527343712747097, 0.0032958984375, 0.0017578124534338713, 0.001538085867650807, 0.0010986328125, -0.0013183592818677425, -0.00527343712747097, -0.00439453125, -0.0054931640625, -0.007031249813735485, -0.0068115233443677425, -0.00966796837747097, -0.0098876953125, -0.0120849609375, -0.01054687425494194, -0.0120849609375, -0.01164550706744194, -0.00966796837747097, -0.012304686941206455, -0.010107421316206455, -0.009448242373764515, -0.0098876953125, -0.007910155691206455, -0.0054931640625, -0.0028564452659338713, -0.0041748047806322575, -0.0006591796409338713, -0.0002197265566792339, -0.0006591796409338713, 0.001977538922801614, 0.0032958984375, 0.0046142577193677425, 0.005053710658103228, 0.0087890625, 0.00856933556497097, 0.010327148251235485, 0.0142822265625, 0.011425781063735485, 0.01384277269244194, 0.01054687425494194, 0.01164550706744194, 0.0142822265625, 0.01164550706744194, 0.012524413876235485, 0.009228515438735485, 0.010107421316206455, 0.01076660118997097, 0.0076904296875, 0.0054931640625, 0.00527343712747097, 0.004833984188735485, 0.0008789062267169356, 0.0, -0.005053710658103228, -0.0035156249068677425, -0.005932617001235485, -0.00747070275247097, -0.009448242373764515, -0.0120849609375, -0.01274413987994194, -0.011425781063735485, -0.01604003831744194, -0.01296386681497097, -0.01669921912252903, -0.01318359375, -0.01691894419491291, -0.01384277269244194, -0.01296386681497097, -0.012304686941206455, -0.01076660118997097, -0.01076660118997097, -0.0068115233443677425, -0.006152343470603228, -0.006591796875, -0.0028564452659338713, -0.0024169920943677425, 0.0010986328125, 0.0006591796409338713, 0.0046142577193677425, 0.007031249813735485, 0.009008788503706455, 0.0098876953125, 0.01076660118997097, 0.01164550706744194, 0.0120849609375, 0.0120849609375, 0.01691894419491291, 0.012304686941206455, 0.01406249962747097, 0.014501952566206455, 0.014721679501235485, 0.0142822265625, 0.012524413876235485, 0.008349609561264515, 0.008349609561264515, 0.010986328125, 0.0054931640625, 0.00439453125, 0.0032958984375, -0.0002197265566792339, 0.0004394531133584678, -0.0010986328125, -0.0028564452659338713, -0.0046142577193677425, -0.009228515438735485, -0.011206054128706455, -0.009448242373764515, -0.011206054128706455, -0.01406249962747097, -0.0142822265625, -0.012304686941206455, -0.014721679501235485, -0.013403319753706455, -0.014721679501235485, -0.012304686941206455, -0.01318359375, -0.009228515438735485, -0.0120849609375, -0.009228515438735485, -0.008129882626235485, -0.00527343712747097, -0.005053710658103228, -0.003955077845603228, 0.001538085867650807, 0.0008789062267169356, 0.002197265625, 0.003955077845603228, 0.0041748047806322575, 0.010107421316206455, 0.010107421316206455, 0.011206054128706455, 0.0087890625, 0.010986328125, 0.01164550706744194, 0.012304686941206455, 0.014501952566206455, 0.01384277269244194, 0.01384277269244194, 0.01296386681497097, 0.00966796837747097, 0.00856933556497097, 0.009228515438735485, 0.006591796875, 0.007250976283103228, 0.00439453125, 0.005932617001235485, 0.0013183592818677425, 0.0013183592818677425, -0.001538085867650807, -0.0006591796409338713, -0.0035156249068677425, -0.006152343470603228, -0.00747070275247097, -0.005932617001235485, -0.006152343470603228, -0.010107421316206455, -0.010327148251235485, -0.009228515438735485, -0.011425781063735485, -0.010107421316206455, -0.009228515438735485, -0.013403319753706455, -0.010986328125, -0.009228515438735485, -0.010986328125, -0.007910155691206455, -0.0068115233443677425, -0.00527343712747097, -0.0032958984375, -0.003735351376235485, -0.0041748047806322575, 0.002197265625, 0.002636718563735485, 0.0004394531133584678, 0.0017578124534338713, 0.003076171735301614, 0.00439453125, 0.006152343470603228, 0.009228515438735485, 0.00856933556497097, 0.007031249813735485, 0.007910155691206455, 0.009228515438735485, 0.0087890625, 0.00747070275247097, 0.007910155691206455, 0.0087890625, 0.009228515438735485, 0.009228515438735485, 0.005932617001235485, 0.00527343712747097, 0.005932617001235485, 0.004833984188735485, 0.0004394531133584678, 0.0013183592818677425, -0.0004394531133584678, -0.0006591796409338713, -0.001977538922801614, -0.0024169920943677425, -0.001977538922801614, -0.003076171735301614, -0.0041748047806322575, -0.004833984188735485, -0.0068115233443677425, -0.00747070275247097, -0.0068115233443677425, -0.0054931640625, -0.009448242373764515, -0.009008788503706455, -0.00747070275247097, -0.007910155691206455, -0.006591796875, -0.0046142577193677425, -0.003735351376235485, -0.0046142577193677425, -0.0006591796409338713, -0.001977538922801614, 0.0, -0.0013183592818677425, -0.0002197265566792339, -0.0017578124534338713, -0.001538085867650807, 0.0035156249068677425, 0.0035156249068677425, 0.0032958984375, 0.0041748047806322575, 0.005053710658103228, 0.003735351376235485, 0.005053710658103228, 0.007031249813735485, 0.0054931640625, 0.00637206993997097, 0.005932617001235485, 0.004833984188735485, 0.00439453125, 0.00637206993997097, 0.0046142577193677425, 0.00439453125, 0.00439453125, 0.001977538922801614, 0.001977538922801614, -0.0013183592818677425, 0.0013183592818677425, -0.0006591796409338713, -0.0006591796409338713, -0.0010986328125, -0.003076171735301614, -0.0041748047806322575, -0.0017578124534338713, -0.003076171735301614, -0.00527343712747097, -0.0035156249068677425, -0.0028564452659338713, -0.0054931640625, -0.003076171735301614, -0.0057128905318677425, -0.0046142577193677425, -0.0032958984375, -0.002197265625, -0.0024169920943677425, -0.00439453125, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.003076171735301614, 0.0013183592818677425, 0.0002197265566792339, 0.002197265625, -0.0006591796409338713, -0.0004394531133584678, -0.0002197265566792339, 0.0010986328125, 0.002197265625, 0.001977538922801614, 0.0008789062267169356, 0.001538085867650807, 0.003955077845603228, 0.002197265625, 0.0028564452659338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.1111)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.17863768339157104, 0.17380370199680328, 0.16325683891773224, 0.156005859375, 0.1439208984375, 0.12766112387180328, 0.11381835490465164, 0.09580077975988388, 0.07822265475988388, 0.06416015326976776, 0.04042968526482582, 0.02592773362994194, 0.006591796875, -0.0046142577193677425, -0.01845703087747097, -0.03229980543255806, -0.0439453125, -0.05427245795726776, -0.06108398362994194, -0.06635741889476776, -0.06767577677965164, -0.06833495944738388, -0.0714111328125, -0.06767577677965164, -0.06503906100988388, -0.06174316257238388, -0.05646972358226776, -0.04987792670726776, -0.046142578125, -0.03515625, -0.03032226487994194, -0.0208740234375, -0.01604003831744194, -0.01318359375, -0.006152343470603228, -0.002197265625, 0.003076171735301614, 0.00637206993997097, 0.0054931640625, 0.005932617001235485, 0.0054931640625, 0.00637206993997097, 0.005053710658103228, 0.00527343712747097, 0.00439453125, 0.0013183592818677425, 0.0017578124534338713, -0.0006591796409338713, -0.0004394531133584678, 0.0004394531133584678, -0.0008789062267169356, -0.0008789062267169356, 0.0, -0.0013183592818677425, -0.0006591796409338713, -0.001538085867650807, -0.0006591796409338713, 0.001538085867650807, 0.0013183592818677425, -0.0032958984375, 0.0, -0.002197265625, -0.0024169920943677425, -0.001538085867650807, -0.0013183592818677425, 0.0004394531133584678, -0.0010986328125, -0.001538085867650807, -0.0041748047806322575, -0.002197265625, -0.0024169920943677425, -0.003955077845603228, -0.002197265625, -0.0032958984375, -0.0032958984375, -0.0017578124534338713, -0.0006591796409338713, -0.001538085867650807, -0.0006591796409338713, 0.001538085867650807, -0.0024169920943677425, -0.0008789062267169356, -0.0013183592818677425, -0.0006591796409338713, -0.0024169920943677425, 0.0008789062267169356, 0.0006591796409338713, 0.0010986328125, 0.002197265625, 0.0046142577193677425, 0.00527343712747097, 0.003955077845603228, 0.00527343712747097, 0.005053710658103228, 0.0035156249068677425, 0.0046142577193677425, 0.005053710658103228, 0.007910155691206455, 0.00527343712747097, 0.007250976283103228, 0.0057128905318677425, 0.0087890625, 0.0068115233443677425, 0.0010986328125, 0.006152343470603228, 0.0035156249068677425, 0.0041748047806322575, 0.001538085867650807, -0.0006591796409338713, -0.0004394531133584678, -0.0010986328125, -0.0013183592818677425, -0.001977538922801614, -0.00637206993997097, -0.003955077845603228, -0.007250976283103228, -0.0041748047806322575, -0.005053710658103228, -0.0076904296875, -0.007031249813735485, -0.007250976283103228, -0.009448242373764515, -0.00856933556497097, -0.00637206993997097, -0.0068115233443677425, -0.007031249813735485, -0.006591796875, -0.006152343470603228, -0.006591796875, -0.002636718563735485, -0.0028564452659338713, -0.003076171735301614, -0.0008789062267169356, 0.0010986328125, 0.002197265625, 0.00527343712747097, 0.0024169920943677425, 0.007031249813735485, 0.007031249813735485, 0.009008788503706455, 0.009228515438735485, 0.009008788503706455, 0.012524413876235485, 0.011206054128706455, 0.010327148251235485, 0.01274413987994194, 0.012524413876235485, 0.01164550706744194, 0.014501952566206455, 0.009228515438735485, 0.009448242373764515, 0.006591796875, 0.006591796875, 0.00747070275247097, 0.003735351376235485, -0.001538085867650807, 0.0006591796409338713, -0.0004394531133584678, -0.0035156249068677425, -0.003955077845603228, -0.008349609561264515, -0.00637206993997097, -0.00966796837747097, -0.0120849609375, -0.01076660118997097, -0.013403319753706455, -0.01164550706744194, -0.01604003831744194, -0.012524413876235485, -0.017578125, -0.01801757700741291, -0.01713867112994194, -0.01516113243997097, -0.01494140550494194, -0.011206054128706455, -0.013403319753706455, -0.0098876953125, -0.009448242373764515, -0.00527343712747097, -0.003076171735301614, 0.0004394531133584678, 0.0008789062267169356, 0.00439453125, 0.005932617001235485, 0.009448242373764515, 0.0142822265625, 0.011425781063735485, 0.01625976525247097, 0.015600585378706455, 0.0164794921875, 0.02109374850988388, 0.01735839806497097, 0.02175292931497097, 0.01955566368997097, 0.02021484263241291, 0.02021484263241291, 0.01801757700741291, 0.01669921912252903, 0.0164794921875, 0.013403319753706455, 0.012304686941206455, 0.01164550706744194, 0.00637206993997097, 0.0041748047806322575, 0.0017578124534338713, 0.0008789062267169356, -0.003076171735301614, -0.008129882626235485, -0.009448242373764515, -0.012304686941206455, -0.01384277269244194, -0.014721679501235485, -0.02197265625, -0.0230712890625, -0.02021484263241291, -0.02131347544491291, -0.02329101413488388, -0.02065429650247097, -0.02219238132238388, -0.0208740234375, -0.02329101413488388, -0.02043456956744194, -0.01889648474752903, -0.01691894419491291, -0.012524413876235485, -0.01076660118997097, -0.008129882626235485, -0.003955077845603228, 0.0, 0.0028564452659338713, 0.004833984188735485, 0.007031249813735485, 0.01076660118997097, 0.013403319753706455, 0.01669921912252903, 0.02197265625, 0.019775390625, 0.02438964694738388, 0.02702636644244194, 0.02592773362994194, 0.02614746056497097, 0.02944335900247097, 0.0263671875, 0.02438964694738388, 0.02219238132238388, 0.02438964694738388, 0.02351074106991291, 0.015380859375, 0.01669921912252903, 0.01274413987994194, 0.008349609561264515, 0.005053710658103228, 0.0032958984375, -0.0008789062267169356, -0.006152343470603228, -0.0076904296875, -0.01054687425494194, -0.013403319753706455, -0.01955566368997097, -0.02043456956744194, -0.02197265625, -0.02658691257238388, -0.0252685546875, -0.02702636644244194, -0.02460937388241291, -0.02460937388241291, -0.02658691257238388, -0.02504882775247097, -0.02812499925494194, -0.02482910081744194, -0.02241210825741291, -0.01735839806497097, -0.01604003831744194, -0.01406249962747097, -0.007031249813735485, -0.0032958984375, -0.0028564452659338713, 0.0028564452659338713, 0.007250976283103228, 0.01318359375, 0.014501952566206455, 0.01406249962747097, 0.01801757700741291, 0.01955566368997097, 0.02548827975988388, 0.024169921875, 0.02592773362994194, 0.02922363206744194, 0.02768554538488388, 0.02944335900247097, 0.02614746056497097, 0.028564453125, 0.02702636644244194, 0.02329101413488388, 0.02065429650247097, 0.01933593675494194, 0.014501952566206455, 0.012524413876235485, 0.010327148251235485, 0.00527343712747097, 0.0041748047806322575, -0.0028564452659338713, -0.00527343712747097, -0.01054687425494194, -0.011206054128706455, -0.01735839806497097, -0.01779785193502903, -0.02109374850988388, -0.02504882775247097, -0.02329101413488388, -0.0263671875, -0.02658691257238388, -0.0263671875, -0.02504882775247097, -0.02724609337747097, -0.02680663950741291, -0.024169921875, -0.02329101413488388, -0.02043456956744194, -0.0186767578125, -0.014721679501235485, -0.012304686941206455, -0.007031249813735485, -0.003076171735301614, -0.0017578124534338713, 0.0006591796409338713, 0.0068115233443677425, 0.00637206993997097, 0.012304686941206455, 0.01384277269244194, 0.01516113243997097, 0.02153320237994194, 0.02351074106991291, 0.02504882775247097, 0.02438964694738388, 0.02395019493997097, 0.02614746056497097, 0.02614746056497097, 0.02482910081744194, 0.024169921875, 0.02241210825741291, 0.02285156212747097, 0.01911620981991291, 0.01911620981991291, 0.0142822265625, 0.012304686941206455, 0.007910155691206455, 0.0054931640625, 0.0006591796409338713, -0.002636718563735485, -0.00527343712747097, -0.006591796875, -0.007250976283103228, -0.01318359375, -0.0142822265625, -0.0142822265625, -0.01933593675494194, -0.01801757700741291, -0.02043456956744194, -0.01999511756002903, -0.02153320237994194, -0.02351074106991291, -0.02065429650247097, -0.02153320237994194, -0.01911620981991291, -0.01911620981991291, -0.01516113243997097, -0.01669921912252903, -0.01186523400247097, -0.010107421316206455, -0.0057128905318677425, -0.0046142577193677425, -0.0004394531133584678, -0.0002197265566792339, 0.0046142577193677425, 0.005932617001235485, 0.010107421316206455, 0.01274413987994194, 0.012524413876235485, 0.014721679501235485, 0.01625976525247097, 0.01735839806497097, 0.01801757700741291, 0.0186767578125, 0.02373046800494194, 0.01955566368997097, 0.02065429650247097, 0.01691894419491291, 0.01735839806497097, 0.014501952566206455, 0.0120849609375, 0.01164550706744194, 0.00747070275247097, 0.008129882626235485, 0.008349609561264515, 0.0046142577193677425, 0.0028564452659338713, 0.0008789062267169356, -0.004833984188735485, -0.009008788503706455, -0.00527343712747097, -0.009448242373764515, -0.00966796837747097, -0.01296386681497097, -0.0120849609375, -0.010986328125, -0.0142822265625, -0.014721679501235485, -0.01625976525247097, -0.01494140550494194, -0.01296386681497097, -0.01516113243997097, -0.013403319753706455, -0.0120849609375, -0.0098876953125, -0.007910155691206455, -0.009008788503706455, -0.007031249813735485, -0.0041748047806322575, -0.002636718563735485, -0.0024169920943677425, 0.001538085867650807, 0.003955077845603228, 0.004833984188735485, 0.00637206993997097, 0.007910155691206455, 0.005932617001235485, 0.00966796837747097, 0.010107421316206455, 0.00856933556497097, 0.008349609561264515, 0.01186523400247097, 0.0120849609375, 0.0120849609375, 0.0098876953125, 0.01076660118997097, 0.00966796837747097, 0.0087890625, 0.007250976283103228, 0.0076904296875, 0.006591796875, 0.00527343712747097, 0.0032958984375, 0.0010986328125, 0.0008789062267169356, 0.0006591796409338713, -0.0008789062267169356, -0.0008789062267169356, -0.003735351376235485, -0.0046142577193677425, -0.0046142577193677425, -0.0017578124534338713, -0.0068115233443677425, -0.006591796875, -0.0076904296875, -0.0068115233443677425, -0.007031249813735485, -0.007910155691206455, -0.0057128905318677425, -0.0087890625, -0.005053710658103228, -0.003955077845603228, -0.004833984188735485, -0.003735351376235485, -0.003076171735301614, -0.0046142577193677425, -0.001538085867650807, 0.0010986328125, -0.0004394531133584678, 0.0006591796409338713, 0.002197265625, 0.003735351376235485, 0.002636718563735485, 0.0028564452659338713, 0.00439453125, 0.0024169920943677425, 0.005932617001235485, 0.004833984188735485, 0.0076904296875, 0.0017578124534338713 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.1667)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.17709960043430328, 0.17424315214157104, 0.16874998807907104, 0.15314941108226776, 0.1439208984375, 0.12744140625, 0.11293944716453552, 0.09470214694738388, 0.07646483927965164, 0.05778808519244194, 0.03955078125, 0.02482910081744194, 0.007250976283103228, -0.00527343712747097, -0.02241210825741291, -0.0318603515625, -0.04570312425494194, -0.054931640625, -0.06020507588982582, -0.0648193359375, -0.06855468451976776, -0.07185058295726776, -0.07163085788488388, -0.06767577677965164, -0.063720703125, -0.06064452975988388, -0.05339355394244194, -0.052734375, -0.04262695088982582, -0.03801269456744194, -0.02702636644244194, -0.02570800669491291, -0.01845703087747097, -0.009448242373764515, -0.005932617001235485, -0.0046142577193677425, -0.0002197265566792339, 0.0008789062267169356, 0.00527343712747097, 0.007031249813735485, 0.0054931640625, 0.006591796875, 0.005053710658103228, 0.0041748047806322575, 0.001538085867650807, 0.001977538922801614, -0.0004394531133584678, 0.001977538922801614, -0.0010986328125, 0.0010986328125, -0.0002197265566792339, -0.0002197265566792339, -0.001538085867650807, -0.0002197265566792339, -0.0004394531133584678, 0.0006591796409338713, -0.0002197265566792339, -0.0024169920943677425, -0.0024169920943677425, -0.0028564452659338713, -0.0035156249068677425, 0.0, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0017578124534338713, -0.0013183592818677425, -0.001977538922801614, -0.0028564452659338713, -0.0035156249068677425, -0.0041748047806322575, -0.0046142577193677425, -0.0032958984375, -0.00439453125, -0.0046142577193677425, -0.0041748047806322575, -0.0035156249068677425, -0.0010986328125, -0.0046142577193677425, -0.0046142577193677425, -0.0041748047806322575, -0.0002197265566792339, 0.0006591796409338713, -0.001977538922801614, 0.0, 0.002636718563735485, -0.0002197265566792339, 0.0028564452659338713, 0.0028564452659338713, 0.002636718563735485, 0.0028564452659338713, 0.007910155691206455, 0.00637206993997097, 0.007250976283103228, 0.0068115233443677425, 0.006591796875, 0.0068115233443677425, 0.0076904296875, 0.005932617001235485, 0.007031249813735485, 0.00747070275247097, 0.008349609561264515, 0.006591796875, 0.00439453125, 0.004833984188735485, 0.0032958984375, 0.0041748047806322575, 0.005932617001235485, -0.0024169920943677425, 0.0010986328125, -0.001538085867650807, -0.003076171735301614, -0.0054931640625, -0.006152343470603228, -0.005053710658103228, -0.007031249813735485, -0.009228515438735485, -0.01054687425494194, -0.010107421316206455, -0.0120849609375, -0.01076660118997097, -0.01164550706744194, -0.01406249962747097, -0.014721679501235485, -0.015380859375, -0.009008788503706455, -0.012304686941206455, -0.010327148251235485, -0.0087890625, -0.007250976283103228, -0.006591796875, -0.002197265625, -0.001977538922801614, 0.0006591796409338713, 0.0013183592818677425, 0.0057128905318677425, 0.00527343712747097, 0.01054687425494194, 0.010986328125, 0.013403319753706455, 0.015600585378706455, 0.01604003831744194, 0.015380859375, 0.01604003831744194, 0.01845703087747097, 0.01889648474752903, 0.01801757700741291, 0.01889648474752903, 0.01494140550494194, 0.01801757700741291, 0.01318359375, 0.01516113243997097, 0.00966796837747097, 0.00966796837747097, 0.0087890625, 0.0035156249068677425, 0.0008789062267169356, -0.002636718563735485, -0.00637206993997097, -0.0076904296875, -0.0098876953125, -0.011206054128706455, -0.01582031138241291, -0.01713867112994194, -0.01735839806497097, -0.02153320237994194, -0.02460937388241291, -0.02263183519244194, -0.0263671875, -0.02724609337747097, -0.0252685546875, -0.02263183519244194, -0.0230712890625, -0.02241210825741291, -0.01889648474752903, -0.01604003831744194, -0.0142822265625, -0.013623046688735485, -0.007031249813735485, -0.0054931640625, -0.0008789062267169356, 0.003735351376235485, 0.00527343712747097, 0.005932617001235485, 0.01384277269244194, 0.01516113243997097, 0.019775390625, 0.01955566368997097, 0.02395019493997097, 0.0274658203125, 0.028564453125, 0.03032226487994194, 0.0296630859375, 0.03054199181497097, 0.03098144382238388, 0.02812499925494194, 0.02900390513241291, 0.02482910081744194, 0.02373046800494194, 0.019775390625, 0.01911620981991291, 0.01274413987994194, 0.0098876953125, 0.010107421316206455, 0.0024169920943677425, -0.001977538922801614, -0.007031249813735485, -0.009448242373764515, -0.01823730394244194, -0.019775390625, -0.02351074106991291, -0.02373046800494194, -0.02724609337747097, -0.03010253794491291, -0.03339843824505806, -0.03691406175494194, -0.03471679612994194, -0.0362548828125, -0.03317870944738388, -0.03142089769244194, -0.03142089769244194, -0.02790527231991291, -0.0296630859375, -0.02570800669491291, -0.01999511756002903, -0.0164794921875, -0.010107421316206455, -0.00966796837747097, -0.002636718563735485, 0.0046142577193677425, 0.0076904296875, 0.01186523400247097, 0.01691894419491291, 0.02109374850988388, 0.02460937388241291, 0.03120117075741291, 0.03164062276482582, 0.03339843824505806, 0.0362548828125, 0.037353515625, 0.04152831807732582, 0.0384521484375, 0.03757324069738388, 0.04020996019244194, 0.03317870944738388, 0.032958984375, 0.03120117075741291, 0.02395019493997097, 0.02263183519244194, 0.01955566368997097, 0.01318359375, 0.007910155691206455, 0.0035156249068677425, -0.0041748047806322575, -0.007031249813735485, -0.01274413987994194, -0.01801757700741291, -0.02438964694738388, -0.02922363206744194, -0.03208007663488388, -0.03603515401482582, -0.03691406175494194, -0.03977050632238388, -0.04328612983226776, -0.04438476264476776, -0.04460449144244194, -0.04306640475988388, -0.04130859300494194, -0.03713378682732582, -0.03449707105755806, -0.03164062276482582, -0.03054199181497097, -0.02373046800494194, -0.01933593675494194, -0.012304686941206455, -0.00527343712747097, -0.003955077845603228, 0.002636718563735485, 0.007910155691206455, 0.013403319753706455, 0.01691894419491291, 0.02460937388241291, 0.02658691257238388, 0.03229980543255806, 0.0362548828125, 0.03977050632238388, 0.04152831807732582, 0.04328612983226776, 0.04086913913488388, 0.04262695088982582, 0.04152831807732582, 0.04218749701976776, 0.03823241963982582, 0.03669433668255806, 0.02988281100988388, 0.02702636644244194, 0.02329101413488388, 0.02263183519244194, 0.015380859375, 0.0076904296875, 0.002197265625, -0.0024169920943677425, -0.0068115233443677425, -0.013623046688735485, -0.01604003831744194, -0.02175292931497097, -0.02373046800494194, -0.03273925557732582, -0.03339843824505806, -0.03757324069738388, -0.04042968526482582, -0.03911132737994194, -0.04350585862994194, -0.04086913913488388, -0.04218749701976776, -0.03669433668255806, -0.03449707105755806, -0.03032226487994194, -0.03098144382238388, -0.02724609337747097, -0.02109374850988388, -0.01779785193502903, -0.012304686941206455, -0.010327148251235485, -0.002636718563735485, 0.0024169920943677425, 0.003955077845603228, 0.009228515438735485, 0.014721679501235485, 0.02109374850988388, 0.02373046800494194, 0.0296630859375, 0.03164062276482582, 0.03515625, 0.03471679612994194, 0.03823241963982582, 0.03999023512005806, 0.03999023512005806, 0.0362548828125, 0.03361816331744194, 0.03471679612994194, 0.03383788838982582, 0.028564453125, 0.02373046800494194, 0.02175292931497097, 0.01779785193502903, 0.0142822265625, 0.010107421316206455, -0.0002197265566792339, -0.003735351376235485, -0.00527343712747097, -0.011425781063735485, -0.01801757700741291, -0.02153320237994194, -0.02241210825741291, -0.02680663950741291, -0.02724609337747097, -0.02768554538488388, -0.03383788838982582, -0.03537597507238388, -0.03361816331744194, -0.03142089769244194, -0.0318603515625, -0.02944335900247097, -0.02900390513241291, -0.028564453125, -0.02329101413488388, -0.01933593675494194, -0.01691894419491291, -0.01516113243997097, -0.01054687425494194, -0.0068115233443677425, -0.0006591796409338713, 0.003735351376235485, 0.0046142577193677425, 0.009228515438735485, 0.01274413987994194, 0.01845703087747097, 0.02175292931497097, 0.02482910081744194, 0.02504882775247097, 0.02878417819738388, 0.02482910081744194, 0.03010253794491291, 0.03076171875, 0.0252685546875, 0.02900390513241291, 0.02373046800494194, 0.024169921875, 0.02373046800494194, 0.02065429650247097, 0.0186767578125, 0.01691894419491291, 0.01384277269244194, 0.0087890625, 0.0032958984375, 0.0008789062267169356, 0.0006591796409338713, -0.005053710658103228, -0.009448242373764515, -0.01054687425494194, -0.01296386681497097, -0.01604003831744194, -0.01999511756002903, -0.02043456956744194, -0.0186767578125, -0.02109374850988388, -0.02504882775247097, -0.024169921875, -0.01933593675494194, -0.02241210825741291, -0.02219238132238388, -0.01845703087747097, -0.01582031138241291, -0.015380859375, -0.01054687425494194, -0.011206054128706455, -0.007250976283103228, -0.0057128905318677425, -0.004833984188735485, -0.001538085867650807, 0.002197265625, 0.003076171735301614, 0.0041748047806322575, 0.00637206993997097, 0.010327148251235485, 0.011206054128706455, 0.0142822265625, 0.01582031138241291, 0.01296386681497097, 0.0164794921875, 0.01604003831744194, 0.01625976525247097, 0.015600585378706455, 0.014501952566206455, 0.01582031138241291, 0.01406249962747097, 0.010327148251235485, 0.01164550706744194, 0.00856933556497097, 0.008349609561264515, 0.007031249813735485, 0.005932617001235485, 0.003735351376235485, 0.0013183592818677425, -0.0002197265566792339, -0.0035156249068677425, -0.0024169920943677425, -0.0046142577193677425, -0.006152343470603228, -0.00856933556497097, -0.0098876953125, -0.01164550706744194, -0.01164550706744194, -0.01054687425494194, -0.011425781063735485, -0.0120849609375, -0.01076660118997097, -0.01164550706744194, -0.008349609561264515, -0.009008788503706455, -0.011206054128706455, -0.0087890625, -0.007910155691206455, -0.005053710658103228, -0.0054931640625, -0.0041748047806322575, 0.0006591796409338713, 0.0002197265566792339, -0.0010986328125, 0.001977538922801614, 0.002636718563735485, 0.003735351376235485, 0.005053710658103228, 0.003955077845603228, 0.0046142577193677425, 0.005932617001235485, 0.0054931640625, 0.00637206993997097, 0.0076904296875 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.2222)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.17709960043430328, 0.17138671875, 0.1658935546875, 0.15468749403953552, 0.1439208984375, 0.13029785454273224, 0.11052245646715164, 0.0977783203125, 0.07668457180261612, 0.06020507588982582, 0.04372558370232582, 0.02197265625, 0.01186523400247097, -0.007031249813735485, -0.02175292931497097, -0.03208007663488388, -0.046142578125, -0.05185546725988388, -0.06306152045726776, -0.06591796875, -0.06745605170726776, -0.07097167521715164, -0.06745605170726776, -0.06789550930261612, -0.06328124552965164, -0.0615234375, -0.054931640625, -0.04833984375, -0.04482421651482582, -0.03801269456744194, -0.02878417819738388, -0.02504882775247097, -0.01604003831744194, -0.0142822265625, -0.00527343712747097, -0.003955077845603228, 0.002197265625, 0.001538085867650807, 0.005053710658103228, 0.0032958984375, 0.007910155691206455, 0.006591796875, 0.0032958984375, 0.001538085867650807, 0.0008789062267169356, 0.0024169920943677425, 0.002197265625, 0.0008789062267169356, 0.0013183592818677425, 0.0002197265566792339, -0.0017578124534338713, 0.0010986328125, 0.0013183592818677425, 0.0017578124534338713, 0.0004394531133584678, 0.0, -0.002636718563735485, -0.0006591796409338713, 0.0004394531133584678, 0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.002197265625, -0.003076171735301614, -0.002636718563735485, -0.003076171735301614, -0.0041748047806322575, -0.003076171735301614, -0.0032958984375, -0.00439453125, -0.003955077845603228, -0.003955077845603228, -0.003735351376235485, -0.005932617001235485, -0.00637206993997097, -0.0046142577193677425, -0.005932617001235485, -0.00439453125, -0.00439453125, -0.0046142577193677425, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, 0.0004394531133584678, 0.0008789062267169356, 0.0004394531133584678, 0.0013183592818677425, 0.003735351376235485, 0.004833984188735485, 0.006152343470603228, 0.007910155691206455, 0.00747070275247097, 0.00747070275247097, 0.008349609561264515, 0.01164550706744194, 0.007910155691206455, 0.010986328125, 0.011206054128706455, 0.01186523400247097, 0.007910155691206455, 0.0087890625, 0.009448242373764515, 0.007250976283103228, 0.0046142577193677425, 0.005932617001235485, 0.003955077845603228, 0.0008789062267169356, -0.0028564452659338713, -0.001538085867650807, -0.003735351376235485, -0.00439453125, -0.008129882626235485, -0.00856933556497097, -0.009008788503706455, -0.0120849609375, -0.01274413987994194, -0.01494140550494194, -0.01669921912252903, -0.017578125, -0.01604003831744194, -0.01955566368997097, -0.01516113243997097, -0.01889648474752903, -0.01713867112994194, -0.01406249962747097, -0.014501952566206455, -0.01318359375, -0.01076660118997097, -0.0054931640625, -0.00527343712747097, -0.0008789062267169356, 0.0008789062267169356, 0.0054931640625, 0.008349609561264515, 0.01076660118997097, 0.01076660118997097, 0.0142822265625, 0.01933593675494194, 0.01735839806497097, 0.024169921875, 0.02395019493997097, 0.02460937388241291, 0.02043456956744194, 0.02395019493997097, 0.02197265625, 0.02373046800494194, 0.02263183519244194, 0.01933593675494194, 0.01999511756002903, 0.01889648474752903, 0.01516113243997097, 0.012304686941206455, 0.0087890625, 0.009448242373764515, 0.0024169920943677425, -0.0028564452659338713, -0.00527343712747097, -0.008349609561264515, -0.01076660118997097, -0.017578125, -0.01999511756002903, -0.01955566368997097, -0.0252685546875, -0.0252685546875, -0.02724609337747097, -0.03142089769244194, -0.03449707105755806, -0.03273925557732582, -0.03229980543255806, -0.03208007663488388, -0.02878417819738388, -0.03010253794491291, -0.02373046800494194, -0.02175292931497097, -0.01801757700741291, -0.015600585378706455, -0.010327148251235485, -0.009228515438735485, -0.001977538922801614, 0.003955077845603228, 0.009008788503706455, 0.00966796837747097, 0.0164794921875, 0.01889648474752903, 0.02504882775247097, 0.02768554538488388, 0.03273925557732582, 0.03801269456744194, 0.037353515625, 0.03867187350988388, 0.04020996019244194, 0.04350585862994194, 0.03911132737994194, 0.03911132737994194, 0.03757324069738388, 0.0384521484375, 0.03120117075741291, 0.02878417819738388, 0.0252685546875, 0.02065429650247097, 0.013403319753706455, 0.0087890625, 0.001977538922801614, -0.0017578124534338713, -0.004833984188735485, -0.01516113243997097, -0.01823730394244194, -0.02702636644244194, -0.03010253794491291, -0.03581542894244194, -0.03603515401482582, -0.04262695088982582, -0.04680175706744194, -0.046142578125, -0.04658202826976776, -0.04768066108226776, -0.04548339545726776, -0.04877929389476776, -0.04152831807732582, -0.03955078125, -0.03691406175494194, -0.03317870944738388, -0.02900390513241291, -0.0208740234375, -0.0164794921875, -0.01054687425494194, -0.002197265625, 0.003955077845603228, 0.008129882626235485, 0.01691894419491291, 0.02175292931497097, 0.02790527231991291, 0.03493652120232582, 0.04130859300494194, 0.04328612983226776, 0.04833984375, 0.0494384765625, 0.05097655951976776, 0.050537109375, 0.05317382514476776, 0.05295410007238388, 0.05009765550494194, 0.04768066108226776, 0.04416503757238388, 0.04020996019244194, 0.03779296949505806, 0.02988281100988388, 0.0252685546875, 0.01823730394244194, 0.0120849609375, 0.002197265625, -0.002636718563735485, -0.01164550706744194, -0.02043456956744194, -0.02460937388241291, -0.03054199181497097, -0.03559570387005806, -0.04240722581744194, -0.04855956882238388, -0.04965820163488388, -0.05119628831744194, -0.05295410007238388, -0.05668945237994194, -0.05405273288488388, -0.05624999850988388, -0.05405273288488388, -0.05075683444738388, -0.04768066108226776, -0.04328612983226776, -0.03713378682732582, -0.03208007663488388, -0.0263671875, -0.01823730394244194, -0.0087890625, -0.003735351376235485, 0.003735351376235485, 0.01186523400247097, 0.01516113243997097, 0.02460937388241291, 0.03164062276482582, 0.03713378682732582, 0.04130859300494194, 0.04877929389476776, 0.05361327901482582, 0.05712890625, 0.0560302734375, 0.05844726413488388, 0.05866698920726776, 0.05339355394244194, 0.05537109076976776, 0.04965820163488388, 0.05009765550494194, 0.04328612983226776, 0.03911132737994194, 0.03098144382238388, 0.02548827975988388, 0.01933593675494194, 0.01186523400247097, 0.0028564452659338713, -0.007250976283103228, -0.012524413876235485, -0.01933593675494194, -0.02285156212747097, -0.03164062276482582, -0.03823241963982582, -0.04328612983226776, -0.04460449144244194, -0.05097655951976776, -0.05119628831744194, -0.05690917745232582, -0.05449218675494194, -0.05449218675494194, -0.05449218675494194, -0.05009765550494194, -0.05119628831744194, -0.04592284932732582, -0.03977050632238388, -0.03537597507238388, -0.03164062276482582, -0.02570800669491291, -0.017578125, -0.012304686941206455, -0.005053710658103228, 0.001977538922801614, 0.00856933556497097, 0.01845703087747097, 0.02197265625, 0.028564453125, 0.03493652120232582, 0.03823241963982582, 0.04130859300494194, 0.04526367038488388, 0.04965820163488388, 0.04790038987994194, 0.05339355394244194, 0.04987792670726776, 0.0472412109375, 0.04746093600988388, 0.04592284932732582, 0.03889160230755806, 0.03669433668255806, 0.032958984375, 0.0274658203125, 0.024169921875, 0.013623046688735485, 0.009448242373764515, 0.001977538922801614, -0.006152343470603228, -0.01186523400247097, -0.014721679501235485, -0.01845703087747097, -0.02438964694738388, -0.03142089769244194, -0.03559570387005806, -0.03713378682732582, -0.03933105245232582, -0.04020996019244194, -0.04592284932732582, -0.0450439453125, -0.04702148213982582, -0.04372558370232582, -0.04350585862994194, -0.04020996019244194, -0.03449707105755806, -0.03339843824505806, -0.028564453125, -0.01999511756002903, -0.01779785193502903, -0.0120849609375, -0.007250976283103228, -0.003076171735301614, 0.0004394531133584678, 0.009008788503706455, 0.012524413876235485, 0.01691894419491291, 0.02197265625, 0.02790527231991291, 0.028564453125, 0.032958984375, 0.03867187350988388, 0.03779296949505806, 0.03647460788488388, 0.0362548828125, 0.03647460788488388, 0.03515625, 0.03493652120232582, 0.03164062276482582, 0.02812499925494194, 0.02768554538488388, 0.02285156212747097, 0.0208740234375, 0.01406249962747097, 0.012524413876235485, 0.007910155691206455, 0.0008789062267169356, -0.0017578124534338713, -0.0076904296875, -0.010986328125, -0.0164794921875, -0.02065429650247097, -0.01911620981991291, -0.02373046800494194, -0.0274658203125, -0.02834472618997097, -0.03010253794491291, -0.03120117075741291, -0.02900390513241291, -0.03076171875, -0.028564453125, -0.028564453125, -0.02373046800494194, -0.02153320237994194, -0.02043456956744194, -0.02021484263241291, -0.014721679501235485, -0.013403319753706455, -0.00747070275247097, -0.0087890625, -0.002636718563735485, 0.001538085867650807, 0.005053710658103228, 0.007250976283103228, 0.008129882626235485, 0.01274413987994194, 0.01516113243997097, 0.01625976525247097, 0.019775390625, 0.02285156212747097, 0.02285156212747097, 0.02109374850988388, 0.01889648474752903, 0.01955566368997097, 0.02351074106991291, 0.01779785193502903, 0.01845703087747097, 0.01889648474752903, 0.01713867112994194, 0.013623046688735485, 0.01164550706744194, 0.007031249813735485, 0.004833984188735485, 0.0046142577193677425, 0.002197265625, 0.0004394531133584678, -0.00527343712747097, -0.007910155691206455, -0.00966796837747097, -0.00966796837747097, -0.00966796837747097, -0.01406249962747097, -0.0120849609375, -0.01406249962747097, -0.01406249962747097, -0.01274413987994194, -0.01406249962747097, -0.01494140550494194, -0.01582031138241291, -0.01691894419491291, -0.01296386681497097, -0.00856933556497097, -0.00966796837747097, -0.0098876953125, -0.007031249813735485, -0.006591796875, -0.003955077845603228, -0.002636718563735485, -0.0008789062267169356, 0.0017578124534338713, 0.0028564452659338713, 0.003735351376235485, 0.00439453125, 0.0087890625, 0.008129882626235485, 0.00637206993997097, 0.0076904296875, 0.010327148251235485, 0.0068115233443677425, 0.00747070275247097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.2778)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.17622070014476776, 0.17380370199680328, 0.16435547173023224, 0.156005859375, 0.14348144829273224, 0.12722167372703552, 0.1142578125, 0.09492187201976776, 0.07536620646715164, 0.05778808519244194, 0.04240722581744194, 0.02373046800494194, 0.006152343470603228, -0.007250976283103228, -0.02175292931497097, -0.03867187350988388, -0.04328612983226776, -0.05339355394244194, -0.05954589694738388, -0.06987304240465164, -0.06745605170726776, -0.07097167521715164, -0.06943359225988388, -0.06855468451976776, -0.06635741889476776, -0.06020507588982582, -0.05624999850988388, -0.052734375, -0.0439453125, -0.03867187350988388, -0.02900390513241291, -0.02241210825741291, -0.01933593675494194, -0.01384277269244194, -0.008129882626235485, -0.0028564452659338713, 0.0008789062267169356, 0.0028564452659338713, 0.0046142577193677425, 0.0068115233443677425, 0.007910155691206455, 0.006591796875, 0.003955077845603228, 0.0024169920943677425, 0.0010986328125, 0.001977538922801614, 0.003076171735301614, -0.0006591796409338713, 0.003076171735301614, 0.002197265625, 0.0006591796409338713, -0.0002197265566792339, 0.0, 0.0004394531133584678, 0.0004394531133584678, 0.0032958984375, 0.0028564452659338713, 0.0008789062267169356, -0.001977538922801614, 0.0004394531133584678, 0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.0032958984375, -0.0032958984375, -0.0035156249068677425, -0.0054931640625, -0.00439453125, -0.0046142577193677425, -0.0068115233443677425, -0.00527343712747097, -0.004833984188735485, -0.0054931640625, -0.005932617001235485, -0.0068115233443677425, -0.0032958984375, -0.002636718563735485, -0.0046142577193677425, -0.0024169920943677425, -0.004833984188735485, -0.0028564452659338713, -0.0032958984375, -0.0017578124534338713, 0.0002197265566792339, 0.0028564452659338713, 0.0010986328125, 0.00527343712747097, 0.007910155691206455, 0.0087890625, 0.0098876953125, 0.01076660118997097, 0.010327148251235485, 0.010107421316206455, 0.013403319753706455, 0.01406249962747097, 0.01076660118997097, 0.01516113243997097, 0.0142822265625, 0.01274413987994194, 0.01406249962747097, 0.01164550706744194, 0.010986328125, 0.008349609561264515, 0.00439453125, 0.003955077845603228, 0.003076171735301614, -0.0004394531133584678, -0.001538085867650807, -0.0054931640625, -0.006152343470603228, -0.007910155691206455, -0.00856933556497097, -0.013403319753706455, -0.01296386681497097, -0.0142822265625, -0.01735839806497097, -0.02043456956744194, -0.0208740234375, -0.02219238132238388, -0.02065429650247097, -0.02197265625, -0.02043456956744194, -0.0230712890625, -0.01933593675494194, -0.02065429650247097, -0.01604003831744194, -0.01406249962747097, -0.0120849609375, -0.007031249813735485, -0.008129882626235485, -0.002636718563735485, -0.0008789062267169356, 0.008129882626235485, 0.007031249813735485, 0.01274413987994194, 0.015380859375, 0.0164794921875, 0.02043456956744194, 0.02395019493997097, 0.02460937388241291, 0.02900390513241291, 0.032958984375, 0.03273925557732582, 0.03229980543255806, 0.03164062276482582, 0.02988281100988388, 0.02878417819738388, 0.02834472618997097, 0.02482910081744194, 0.02329101413488388, 0.02021484263241291, 0.0142822265625, 0.010107421316206455, 0.010327148251235485, 0.0028564452659338713, -0.0024169920943677425, -0.009008788503706455, -0.01164550706744194, -0.01691894419491291, -0.019775390625, -0.02395019493997097, -0.03098144382238388, -0.03076171875, -0.03229980543255806, -0.03933105245232582, -0.04042968526482582, -0.04152831807732582, -0.04108886793255806, -0.0384521484375, -0.03867187350988388, -0.03691406175494194, -0.03691406175494194, -0.03273925557732582, -0.03120117075741291, -0.02285156212747097, -0.02043456956744194, -0.01494140550494194, -0.01054687425494194, -0.0046142577193677425, 0.0013183592818677425, 0.00856933556497097, 0.015380859375, 0.02153320237994194, 0.02790527231991291, 0.03120117075741291, 0.0362548828125, 0.04020996019244194, 0.04372558370232582, 0.04636230319738388, 0.04877929389476776, 0.05075683444738388, 0.05141601338982582, 0.05207519233226776, 0.050537109375, 0.04877929389476776, 0.041748046875, 0.03779296949505806, 0.03361816331744194, 0.0296630859375, 0.02570800669491291, 0.01516113243997097, 0.01186523400247097, 0.0054931640625, -0.0032958984375, -0.008129882626235485, -0.01625976525247097, -0.02482910081744194, -0.0318603515625, -0.03449707105755806, -0.04196777194738388, -0.04768066108226776, -0.04855956882238388, -0.054931640625, -0.05668945237994194, -0.05976562201976776, -0.06130370870232582, -0.05976562201976776, -0.05800781026482582, -0.05427245795726776, -0.05075683444738388, -0.04702148213982582, -0.04196777194738388, -0.03361816331744194, -0.02680663950741291, -0.01933593675494194, -0.01296386681497097, -0.0028564452659338713, 0.003955077845603228, 0.012524413876235485, 0.019775390625, 0.02878417819738388, 0.03779296949505806, 0.03867187350988388, 0.04987792670726776, 0.05449218675494194, 0.05668945237994194, 0.06218261644244194, 0.06284179538488388, 0.068115234375, 0.06459961086511612, 0.06679687649011612, 0.06723632663488388, 0.05910644307732582, 0.05800781026482582, 0.04855956882238388, 0.04240722581744194, 0.04130859300494194, 0.03229980543255806, 0.02395019493997097, 0.0120849609375, 0.001977538922801614, -0.0013183592818677425, -0.012304686941206455, -0.01999511756002903, -0.02944335900247097, -0.03713378682732582, -0.04592284932732582, -0.05405273288488388, -0.05624999850988388, -0.06196288764476776, -0.0648193359375, -0.06679687649011612, -0.06943359225988388, -0.07119140774011612, -0.07119140774011612, -0.06767577677965164, -0.06416015326976776, -0.05844726413488388, -0.05229492112994194, -0.046142578125, -0.04130859300494194, -0.03361816331744194, -0.02109374850988388, -0.0164794921875, -0.004833984188735485, 0.0041748047806322575, 0.01516113243997097, 0.02329101413488388, 0.03142089769244194, 0.03603515401482582, 0.04658202826976776, 0.05449218675494194, 0.059326171875, 0.06525878608226776, 0.06943359225988388, 0.0703125, 0.0692138671875, 0.07119140774011612, 0.06767577677965164, 0.07053222507238388, 0.06503906100988388, 0.06108398362994194, 0.05515136569738388, 0.04877929389476776, 0.0384521484375, 0.03098144382238388, 0.02460937388241291, 0.014501952566206455, 0.0068115233443677425, -0.007031249813735485, -0.01494140550494194, -0.01845703087747097, -0.03032226487994194, -0.03779296949505806, -0.04658202826976776, -0.05119628831744194, -0.05624999850988388, -0.06086425483226776, -0.06416015326976776, -0.0703125, -0.06657714396715164, -0.07053222507238388, -0.068115234375, -0.0648193359375, -0.06416015326976776, -0.05756835639476776, -0.05251464620232582, -0.0439453125, -0.03801269456744194, -0.0274658203125, -0.01955566368997097, -0.01582031138241291, -0.005932617001235485, 0.003735351376235485, 0.01274413987994194, 0.01933593675494194, 0.02724609337747097, 0.037353515625, 0.04636230319738388, 0.04658202826976776, 0.05427245795726776, 0.0582275390625, 0.05910644307732582, 0.06196288764476776, 0.06108398362994194, 0.0648193359375, 0.06525878608226776, 0.059326171875, 0.05646972358226776, 0.05471191182732582, 0.04570312425494194, 0.0384521484375, 0.03603515401482582, 0.02614746056497097, 0.019775390625, 0.0087890625, 0.0010986328125, -0.0035156249068677425, -0.011206054128706455, -0.02065429650247097, -0.02504882775247097, -0.03142089769244194, -0.03669433668255806, -0.04548339545726776, -0.04921874776482582, -0.04987792670726776, -0.05185546725988388, -0.054931640625, -0.05581054463982582, -0.05800781026482582, -0.05515136569738388, -0.05251464620232582, -0.05009765550494194, -0.04812011495232582, -0.03867187350988388, -0.03493652120232582, -0.03076171875, -0.02263183519244194, -0.01691894419491291, -0.010107421316206455, -0.005053710658103228, 0.003735351376235485, 0.010986328125, 0.017578125, 0.0230712890625, 0.02922363206744194, 0.03164062276482582, 0.03669433668255806, 0.04020996019244194, 0.04526367038488388, 0.04570312425494194, 0.046142578125, 0.04899902269244194, 0.04746093600988388, 0.04328612983226776, 0.04570312425494194, 0.04020996019244194, 0.03537597507238388, 0.03361816331744194, 0.0274658203125, 0.0263671875, 0.01911620981991291, 0.0164794921875, 0.01076660118997097, 0.00439453125, -0.0017578124534338713, -0.007031249813735485, -0.011425781063735485, -0.01955566368997097, -0.0230712890625, -0.02658691257238388, -0.03208007663488388, -0.0318603515625, -0.03383788838982582, -0.03515625, -0.03757324069738388, -0.03713378682732582, -0.03647460788488388, -0.03713378682732582, -0.03537597507238388, -0.03229980543255806, -0.02900390513241291, -0.02548827975988388, -0.02175292931497097, -0.017578125, -0.01186523400247097, -0.007910155691206455, -0.007250976283103228, -0.004833984188735485, 0.002197265625, 0.005053710658103228, 0.01054687425494194, 0.01296386681497097, 0.01933593675494194, 0.02109374850988388, 0.02351074106991291, 0.02724609337747097, 0.024169921875, 0.0263671875, 0.02900390513241291, 0.02504882775247097, 0.02812499925494194, 0.0252685546875, 0.0263671875, 0.02373046800494194, 0.02197265625, 0.01933593675494194, 0.01779785193502903, 0.01296386681497097, 0.009008788503706455, 0.0057128905318677425, 0.003735351376235485, 0.0017578124534338713, -0.0010986328125, -0.00747070275247097, -0.0068115233443677425, -0.0098876953125, -0.013403319753706455, -0.01516113243997097, -0.017578125, -0.01516113243997097, -0.01669921912252903, -0.01582031138241291, -0.01933593675494194, -0.01801757700741291, -0.02021484263241291, -0.0186767578125, -0.01669921912252903, -0.0164794921875, -0.013403319753706455, -0.010327148251235485, -0.01186523400247097, -0.01076660118997097, -0.00856933556497097, -0.00439453125, -0.00527343712747097, -0.0008789062267169356, 0.0032958984375, 0.0032958984375, 0.004833984188735485, 0.00637206993997097, 0.006152343470603228, 0.008129882626235485, 0.01274413987994194, 0.0098876953125, 0.00966796837747097, 0.01186523400247097, 0.011425781063735485 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.3333)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.17534178495407104, 0.173583984375, 0.16347655653953552, 0.15578612685203552, 0.140625, 0.12941893935203552, 0.11271972209215164, 0.09514159709215164, 0.07316894084215164, 0.05778808519244194, 0.041748046875, 0.02395019493997097, 0.01054687425494194, -0.007250976283103228, -0.02504882775247097, -0.03317870944738388, -0.0439453125, -0.05427245795726776, -0.06196288764476776, -0.06657714396715164, -0.06613769382238388, -0.0714111328125, -0.07053222507238388, -0.06877440959215164, -0.06723632663488388, -0.05998535081744194, -0.05559081956744194, -0.04855956882238388, -0.04108886793255806, -0.03691406175494194, -0.03120117075741291, -0.02285156212747097, -0.01823730394244194, -0.01054687425494194, -0.009448242373764515, -0.0013183592818677425, 0.0010986328125, 0.00637206993997097, 0.0035156249068677425, 0.0035156249068677425, 0.00637206993997097, 0.00439453125, 0.0068115233443677425, 0.003735351376235485, 0.001538085867650807, 0.002197265625, 0.0010986328125, -0.0004394531133584678, 0.0008789062267169356, 0.0008789062267169356, 0.0017578124534338713, -0.0017578124534338713, 0.001977538922801614, 0.0004394531133584678, 0.001977538922801614, 0.0028564452659338713, -0.0006591796409338713, 0.0010986328125, 0.0004394531133584678, -0.0008789062267169356, -0.0032958984375, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.0046142577193677425, -0.003076171735301614, -0.00439453125, -0.0041748047806322575, -0.005053710658103228, -0.0057128905318677425, -0.005053710658103228, -0.00747070275247097, -0.0057128905318677425, -0.006591796875, -0.008129882626235485, -0.007031249813735485, -0.0087890625, -0.007031249813735485, -0.003955077845603228, -0.0035156249068677425, -0.00439453125, -0.003735351376235485, -0.0028564452659338713, -0.0010986328125, 0.0013183592818677425, -0.001977538922801614, 0.0035156249068677425, 0.0035156249068677425, 0.0046142577193677425, 0.0054931640625, 0.009228515438735485, 0.01164550706744194, 0.01318359375, 0.013403319753706455, 0.01604003831744194, 0.014721679501235485, 0.01604003831744194, 0.0164794921875, 0.01384277269244194, 0.015600585378706455, 0.01735839806497097, 0.01582031138241291, 0.013403319753706455, 0.01296386681497097, 0.0120849609375, 0.009448242373764515, 0.007031249813735485, 0.0057128905318677425, 0.0, -0.0008789062267169356, -0.001538085867650807, -0.007910155691206455, -0.008349609561264515, -0.013403319753706455, -0.01318359375, -0.01604003831744194, -0.01801757700741291, -0.02263183519244194, -0.02263183519244194, -0.0252685546875, -0.0274658203125, -0.02878417819738388, -0.02482910081744194, -0.02373046800494194, -0.02351074106991291, -0.02482910081744194, -0.01889648474752903, -0.01999511756002903, -0.017578125, -0.01054687425494194, -0.00856933556497097, -0.007031249813735485, -0.001538085867650807, 0.0032958984375, 0.00747070275247097, 0.0120849609375, 0.013623046688735485, 0.01801757700741291, 0.02219238132238388, 0.0263671875, 0.02658691257238388, 0.02988281100988388, 0.03691406175494194, 0.03955078125, 0.0362548828125, 0.03933105245232582, 0.03911132737994194, 0.03801269456744194, 0.03669433668255806, 0.03471679612994194, 0.03120117075741291, 0.02834472618997097, 0.02109374850988388, 0.01933593675494194, 0.014501952566206455, 0.006152343470603228, 0.002197265625, -0.00439453125, -0.006591796875, -0.01318359375, -0.01933593675494194, -0.02482910081744194, -0.02988281100988388, -0.03493652120232582, -0.03801269456744194, -0.03955078125, -0.0439453125, -0.04482421651482582, -0.04768066108226776, -0.04658202826976776, -0.04965820163488388, -0.04658202826976776, -0.04768066108226776, -0.04152831807732582, -0.03977050632238388, -0.03361816331744194, -0.02790527231991291, -0.02197265625, -0.01911620981991291, -0.01076660118997097, -0.003735351376235485, 0.006591796875, 0.00966796837747097, 0.01713867112994194, 0.02570800669491291, 0.02988281100988388, 0.03823241963982582, 0.04460449144244194, 0.04592284932732582, 0.052734375, 0.05471191182732582, 0.05998535081744194, 0.05954589694738388, 0.05976562201976776, 0.059326171875, 0.06086425483226776, 0.05405273288488388, 0.05229492112994194, 0.050537109375, 0.04262695088982582, 0.03647460788488388, 0.02988281100988388, 0.02043456956744194, 0.0142822265625, 0.00637206993997097, -0.001977538922801614, -0.01076660118997097, -0.019775390625, -0.02724609337747097, -0.03669433668255806, -0.04240722581744194, -0.04987792670726776, -0.05668945237994194, -0.06218261644244194, -0.06591796875, -0.06613769382238388, -0.07272949069738388, -0.07053222507238388, -0.07185058295726776, -0.0692138671875, -0.0626220703125, -0.059326171875, -0.0560302734375, -0.05075683444738388, -0.04240722581744194, -0.03208007663488388, -0.02241210825741291, -0.01384277269244194, -0.0054931640625, 0.008349609561264515, 0.0142822265625, 0.02570800669491291, 0.03208007663488388, 0.04152831807732582, 0.052734375, 0.0582275390625, 0.06437987834215164, 0.06833495944738388, 0.07536620646715164, 0.076904296875, 0.07932128757238388, 0.08063964545726776, 0.07778320461511612, 0.07668457180261612, 0.07163085788488388, 0.06965331733226776, 0.06174316257238388, 0.05427245795726776, 0.04702148213982582, 0.03779296949505806, 0.02614746056497097, 0.0164794921875, 0.006591796875, -0.00527343712747097, -0.01669921912252903, -0.02614746056497097, -0.03669433668255806, -0.0450439453125, -0.05427245795726776, -0.0604248046875, -0.06679687649011612, -0.07382812350988388, -0.07888183742761612, -0.08503417670726776, -0.08525390177965164, -0.08503417670726776, -0.08085937052965164, -0.0802001953125, -0.07646483927965164, -0.06943359225988388, -0.06350097805261612, -0.05778808519244194, -0.04899902269244194, -0.03559570387005806, -0.0296630859375, -0.015380859375, -0.00439453125, 0.0024169920943677425, 0.0164794921875, 0.0296630859375, 0.03383788838982582, 0.04592284932732582, 0.05756835639476776, 0.06437987834215164, 0.07097167521715164, 0.07734374701976776, 0.08371581882238388, 0.08547362685203552, 0.08745116740465164, 0.08393554389476776, 0.08481445163488388, 0.08217773586511612, 0.07558593899011612, 0.07229004055261612, 0.06218261644244194, 0.05668945237994194, 0.04526367038488388, 0.037353515625, 0.02614746056497097, 0.014721679501235485, 0.0041748047806322575, -0.004833984188735485, -0.01516113243997097, -0.02680663950741291, -0.03581542894244194, -0.041748046875, -0.0538330078125, -0.06086425483226776, -0.0703125, -0.07514648139476776, -0.07646483927965164, -0.08085937052965164, -0.08107910305261612, -0.08261718600988388, -0.08195800334215164, -0.07734374701976776, -0.07536620646715164, -0.06899414211511612, -0.05910644307732582, -0.054931640625, -0.04372558370232582, -0.03361816331744194, -0.02658691257238388, -0.015600585378706455, -0.005053710658103228, 0.0041748047806322575, 0.01384277269244194, 0.02241210825741291, 0.03537597507238388, 0.04350585862994194, 0.0494384765625, 0.0615234375, 0.06328124552965164, 0.06965331733226776, 0.0736083984375, 0.07712402194738388, 0.07514648139476776, 0.07602538913488388, 0.07338867336511612, 0.06943359225988388, 0.06723632663488388, 0.06547851115465164, 0.05800781026482582, 0.05141601338982582, 0.03801269456744194, 0.03515625, 0.02351074106991291, 0.01823730394244194, 0.0068115233443677425, -0.003955077845603228, -0.01384277269244194, -0.02548827975988388, -0.02988281100988388, -0.03977050632238388, -0.04526367038488388, -0.05031738057732582, -0.05559081956744194, -0.05888671800494194, -0.06394042819738388, -0.06789550930261612, -0.06767577677965164, -0.06723632663488388, -0.06657714396715164, -0.06284179538488388, -0.05910644307732582, -0.05537109076976776, -0.05031738057732582, -0.04548339545726776, -0.03559570387005806, -0.02768554538488388, -0.01735839806497097, -0.01274413987994194, -0.0032958984375, 0.0028564452659338713, 0.01296386681497097, 0.01735839806497097, 0.02790527231991291, 0.03427734225988388, 0.0384521484375, 0.04570312425494194, 0.04965820163488388, 0.05141601338982582, 0.05646972358226776, 0.05800781026482582, 0.05844726413488388, 0.05537109076976776, 0.05559081956744194, 0.052734375, 0.05075683444738388, 0.04548339545726776, 0.04042968526482582, 0.03669433668255806, 0.02878417819738388, 0.02460937388241291, 0.01669921912252903, 0.010986328125, 0.001977538922801614, -0.0046142577193677425, -0.00966796837747097, -0.01625976525247097, -0.0230712890625, -0.02504882775247097, -0.028564453125, -0.03515625, -0.03933105245232582, -0.04152831807732582, -0.04526367038488388, -0.04416503757238388, -0.04372558370232582, -0.04372558370232582, -0.04240722581744194, -0.03955078125, -0.0362548828125, -0.03317870944738388, -0.03076171875, -0.02702636644244194, -0.02175292931497097, -0.01889648474752903, -0.012524413876235485, -0.00637206993997097, -0.0013183592818677425, 0.0032958984375, 0.006591796875, 0.01076660118997097, 0.0142822265625, 0.01713867112994194, 0.02263183519244194, 0.02834472618997097, 0.03010253794491291, 0.03251953050494194, 0.02878417819738388, 0.03515625, 0.03493652120232582, 0.03339843824505806, 0.03142089769244194, 0.0318603515625, 0.02878417819738388, 0.02680663950741291, 0.02329101413488388, 0.0208740234375, 0.01494140550494194, 0.01318359375, 0.01054687425494194, 0.0046142577193677425, 0.001538085867650807, -0.0017578124534338713, -0.007250976283103228, -0.0087890625, -0.012304686941206455, -0.012524413876235485, -0.0164794921875, -0.0208740234375, -0.01955566368997097, -0.02175292931497097, -0.02241210825741291, -0.02351074106991291, -0.019775390625, -0.02065429650247097, -0.01955566368997097, -0.01713867112994194, -0.01713867112994194, -0.01823730394244194, -0.013403319753706455, -0.01274413987994194, -0.01318359375, -0.010107421316206455, -0.0035156249068677425, -0.001538085867650807, -0.0002197265566792339, 0.0035156249068677425, 0.002636718563735485, 0.006152343470603228, 0.007910155691206455, 0.01076660118997097, 0.01076660118997097, 0.0098876953125, 0.01406249962747097, 0.0142822265625, 0.013403319753706455, 0.01625976525247097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.3889)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.17578125, 0.1746826171875, 0.16457518935203552, 0.15534667670726776, 0.14414061605930328, 0.12766112387180328, 0.112060546875, 0.09492187201976776, 0.07756347209215164, 0.0615234375, 0.0428466796875, 0.02790527231991291, 0.00527343712747097, -0.010107421316206455, -0.01691894419491291, -0.03581542894244194, -0.04416503757238388, -0.05361327901482582, -0.06130370870232582, -0.06789550930261612, -0.06679687649011612, -0.0703125, -0.07119140774011612, -0.06745605170726776, -0.06657714396715164, -0.05866698920726776, -0.0560302734375, -0.05295410007238388, -0.04482421651482582, -0.03581542894244194, -0.02724609337747097, -0.02263183519244194, -0.01779785193502903, -0.011425781063735485, -0.005932617001235485, 0.0008789062267169356, 0.002197265625, 0.0057128905318677425, 0.006591796875, 0.0024169920943677425, 0.006591796875, 0.00637206993997097, 0.004833984188735485, 0.0032958984375, 0.0032958984375, 0.002197265625, 0.0010986328125, 0.0013183592818677425, 0.0013183592818677425, 0.0004394531133584678, 0.0013183592818677425, -0.001538085867650807, 0.0004394531133584678, 0.0010986328125, 0.0008789062267169356, -0.0017578124534338713, 0.0017578124534338713, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, 0.0006591796409338713, -0.0006591796409338713, -0.0035156249068677425, -0.003076171735301614, -0.0006591796409338713, -0.0068115233443677425, -0.005053710658103228, -0.00439453125, -0.0068115233443677425, -0.007250976283103228, -0.01054687425494194, -0.009448242373764515, -0.011206054128706455, -0.008129882626235485, -0.007250976283103228, -0.0087890625, -0.00747070275247097, -0.0098876953125, -0.010107421316206455, -0.006591796875, -0.005053710658103228, -0.003735351376235485, -0.003955077845603228, -0.005053710658103228, -0.002636718563735485, 0.001538085867650807, 0.0017578124534338713, 0.00527343712747097, 0.007910155691206455, 0.0098876953125, 0.010107421316206455, 0.0120849609375, 0.0142822265625, 0.015380859375, 0.01669921912252903, 0.01669921912252903, 0.019775390625, 0.01604003831744194, 0.01955566368997097, 0.0186767578125, 0.01845703087747097, 0.01604003831744194, 0.015600585378706455, 0.01318359375, 0.01186523400247097, 0.009228515438735485, 0.00637206993997097, 0.006152343470603228, 0.0017578124534338713, -0.001977538922801614, -0.005053710658103228, -0.009008788503706455, -0.01164550706744194, -0.01318359375, -0.01911620981991291, -0.01735839806497097, -0.02197265625, -0.02373046800494194, -0.02834472618997097, -0.02812499925494194, -0.02768554538488388, -0.03208007663488388, -0.02988281100988388, -0.03054199181497097, -0.0274658203125, -0.02768554538488388, -0.02504882775247097, -0.02065429650247097, -0.01933593675494194, -0.01625976525247097, -0.011206054128706455, -0.005932617001235485, -0.003735351376235485, 0.0006591796409338713, 0.005932617001235485, 0.010986328125, 0.01735839806497097, 0.02131347544491291, 0.0252685546875, 0.03164062276482582, 0.032958984375, 0.037353515625, 0.04020996019244194, 0.04152831807732582, 0.04196777194738388, 0.04262695088982582, 0.04262695088982582, 0.04262695088982582, 0.0428466796875, 0.0384521484375, 0.03383788838982582, 0.03164062276482582, 0.02768554538488388, 0.02021484263241291, 0.0164794921875, 0.010327148251235485, 0.0028564452659338713, -0.003076171735301614, -0.00856933556497097, -0.014501952566206455, -0.024169921875, -0.0263671875, -0.03383788838982582, -0.03779296949505806, -0.046142578125, -0.04812011495232582, -0.04833984375, -0.0538330078125, -0.05756835639476776, -0.05778808519244194, -0.05581054463982582, -0.05427245795726776, -0.05317382514476776, -0.05141601338982582, -0.04702148213982582, -0.03779296949505806, -0.03559570387005806, -0.02768554538488388, -0.01933593675494194, -0.010327148251235485, -0.00527343712747097, 0.00439453125, 0.01054687425494194, 0.019775390625, 0.03098144382238388, 0.03955078125, 0.04636230319738388, 0.04833984375, 0.05778808519244194, 0.0615234375, 0.06657714396715164, 0.06745605170726776, 0.0692138671875, 0.07185058295726776, 0.06965331733226776, 0.0703125, 0.06525878608226776, 0.06064452975988388, 0.05581054463982582, 0.04833984375, 0.04108886793255806, 0.03537597507238388, 0.02548827975988388, 0.01384277269244194, 0.00637206993997097, -0.0057128905318677425, -0.01735839806497097, -0.0230712890625, -0.03251953050494194, -0.04152831807732582, -0.05207519233226776, -0.05624999850988388, -0.06547851115465164, -0.07229004055261612, -0.07536620646715164, -0.08151855319738388, -0.081298828125, -0.08437499403953552, -0.08393554389476776, -0.07932128757238388, -0.07668457180261612, -0.0736083984375, -0.06394042819738388, -0.05998535081744194, -0.05031738057732582, -0.03713378682732582, -0.02724609337747097, -0.019775390625, -0.00527343712747097, 0.0035156249068677425, 0.013403319753706455, 0.02702636644244194, 0.03977050632238388, 0.04790038987994194, 0.05778808519244194, 0.06745605170726776, 0.072509765625, 0.08305663615465164, 0.08481445163488388, 0.09162597358226776, 0.08942870795726776, 0.09360351413488388, 0.09030761569738388, 0.0867919921875, 0.08415526896715164, 0.07734374701976776, 0.07185058295726776, 0.06306152045726776, 0.05075683444738388, 0.04438476264476776, 0.03361816331744194, 0.01889648474752903, 0.00637206993997097, -0.0035156249068677425, -0.0164794921875, -0.02878417819738388, -0.04086913913488388, -0.05097655951976776, -0.06437987834215164, -0.07075195014476776, -0.07844237983226776, -0.0867919921875, -0.09316405653953552, -0.09865722060203552, -0.09975585341453552, -0.09689941257238388, -0.0966796875, -0.09206542372703552, -0.08767089247703552, -0.08151855319738388, -0.07492675632238388, -0.06613769382238388, -0.05778808519244194, -0.04416503757238388, -0.03537597507238388, -0.01845703087747097, -0.008129882626235485, 0.0057128905318677425, 0.01713867112994194, 0.02812499925494194, 0.041748046875, 0.05317382514476776, 0.06613769382238388, 0.07492675632238388, 0.08151855319738388, 0.087890625, 0.09294433146715164, 0.09843749552965164, 0.10019531100988388, 0.09843749552965164, 0.09711913764476776, 0.09470214694738388, 0.09096679091453552, 0.08437499403953552, 0.07558593899011612, 0.06613769382238388, 0.0560302734375, 0.04570312425494194, 0.03449707105755806, 0.01933593675494194, 0.00856933556497097, -0.007910155691206455, -0.01911620981991291, -0.02922363206744194, -0.0428466796875, -0.05185546725988388, -0.06416015326976776, -0.07382812350988388, -0.07954101264476776, -0.08942870795726776, -0.09228515625, -0.0955810546875, -0.09536132216453552, -0.09645995497703552, -0.09536132216453552, -0.0911865234375, -0.085693359375, -0.07998047024011612, -0.07185058295726776, -0.06284179538488388, -0.050537109375, -0.04350585862994194, -0.02812499925494194, -0.01911620981991291, -0.006591796875, 0.003955077845603228, 0.01669921912252903, 0.02592773362994194, 0.04108886793255806, 0.052734375, 0.059326171875, 0.06987304240465164, 0.0758056640625, 0.07976073771715164, 0.08613280951976776, 0.08811035007238388, 0.08920898288488388, 0.08613280951976776, 0.08481445163488388, 0.08591308444738388, 0.07866210490465164, 0.07207030802965164, 0.06899414211511612, 0.05515136569738388, 0.04877929389476776, 0.04020996019244194, 0.02812499925494194, 0.01889648474752903, 0.005053710658103228, -0.007250976283103228, -0.01735839806497097, -0.024169921875, -0.03537597507238388, -0.04482421651482582, -0.05295410007238388, -0.05690917745232582, -0.06789550930261612, -0.07207030802965164, -0.07602538913488388, -0.07954101264476776, -0.07844237983226776, -0.08151855319738388, -0.076904296875, -0.07382812350988388, -0.06723632663488388, -0.06459961086511612, -0.0582275390625, -0.04921874776482582, -0.04416503757238388, -0.03273925557732582, -0.0252685546875, -0.015380859375, -0.0035156249068677425, 0.0035156249068677425, 0.014721679501235485, 0.02065429650247097, 0.02834472618997097, 0.03955078125, 0.04218749701976776, 0.054931640625, 0.05778808519244194, 0.05844726413488388, 0.06350097805261612, 0.06635741889476776, 0.0670166015625, 0.063720703125, 0.063720703125, 0.06284179538488388, 0.05844726413488388, 0.05317382514476776, 0.04702148213982582, 0.04350585862994194, 0.03691406175494194, 0.02548827975988388, 0.0186767578125, 0.009228515438735485, 0.0032958984375, -0.0024169920943677425, -0.01296386681497097, -0.0186767578125, -0.02373046800494194, -0.02944335900247097, -0.03999023512005806, -0.04416503757238388, -0.04768066108226776, -0.04899902269244194, -0.05207519233226776, -0.05009765550494194, -0.04812011495232582, -0.05075683444738388, -0.05295410007238388, -0.04636230319738388, -0.04658202826976776, -0.0384521484375, -0.03647460788488388, -0.032958984375, -0.0252685546875, -0.02219238132238388, -0.01384277269244194, -0.010327148251235485, -0.0032958984375, 0.0006591796409338713, 0.007031249813735485, 0.012524413876235485, 0.01801757700741291, 0.02373046800494194, 0.02504882775247097, 0.028564453125, 0.03317870944738388, 0.03757324069738388, 0.04020996019244194, 0.03801269456744194, 0.03801269456744194, 0.03713378682732582, 0.03559570387005806, 0.03493652120232582, 0.03273925557732582, 0.02900390513241291, 0.02900390513241291, 0.02263183519244194, 0.01889648474752903, 0.01318359375, 0.0120849609375, 0.006152343470603228, -0.0002197265566792339, -0.001977538922801614, -0.009448242373764515, -0.01186523400247097, -0.0120849609375, -0.01691894419491291, -0.017578125, -0.0208740234375, -0.02482910081744194, -0.02482910081744194, -0.02504882775247097, -0.02812499925494194, -0.02460937388241291, -0.0252685546875, -0.02109374850988388, -0.02263183519244194, -0.02460937388241291, -0.02021484263241291, -0.01911620981991291, -0.013623046688735485, -0.01406249962747097, -0.01186523400247097, -0.0046142577193677425, -0.0046142577193677425, -0.0017578124534338713, 0.0010986328125, 0.007031249813735485, 0.006152343470603228, 0.00856933556497097, 0.0098876953125, 0.010327148251235485, 0.01384277269244194, 0.013623046688735485, 0.013403319753706455, 0.014721679501235485, 0.01604003831744194 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.4444)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.17863768339157104, 0.17182616889476776, 0.16325683891773224, 0.15732420980930328, 0.14501953125, 0.12722167372703552, 0.11140136420726776, 0.09909667819738388, 0.07932128757238388, 0.05866698920726776, 0.04240722581744194, 0.0230712890625, 0.0076904296875, -0.007031249813735485, -0.02021484263241291, -0.03120117075741291, -0.04570312425494194, -0.052734375, -0.06086425483226776, -0.06437987834215164, -0.06833495944738388, -0.07185058295726776, -0.06767577677965164, -0.06877440959215164, -0.06350097805261612, -0.06174316257238388, -0.05668945237994194, -0.05185546725988388, -0.04460449144244194, -0.0362548828125, -0.03142089769244194, -0.02219238132238388, -0.01823730394244194, -0.01054687425494194, -0.00747070275247097, -0.0013183592818677425, 0.002197265625, 0.0046142577193677425, 0.0046142577193677425, 0.007031249813735485, 0.00856933556497097, 0.006152343470603228, 0.005053710658103228, 0.0046142577193677425, 0.0006591796409338713, 0.00439453125, 0.0006591796409338713, 0.0024169920943677425, 0.001977538922801614, 0.0010986328125, 0.0032958984375, -0.0008789062267169356, 0.0013183592818677425, 0.0035156249068677425, 0.0032958984375, 0.0024169920943677425, 0.0035156249068677425, 0.0008789062267169356, -0.0002197265566792339, 0.003076171735301614, -0.0024169920943677425, -0.0008789062267169356, -0.0028564452659338713, -0.002636718563735485, -0.005053710658103228, -0.003955077845603228, -0.006591796875, -0.005932617001235485, -0.009008788503706455, -0.0057128905318677425, -0.008129882626235485, -0.01076660118997097, -0.010327148251235485, -0.0087890625, -0.01076660118997097, -0.01274413987994194, -0.01076660118997097, -0.0098876953125, -0.0087890625, -0.008349609561264515, -0.006591796875, -0.0068115233443677425, -0.0013183592818677425, -0.003735351376235485, -0.0008789062267169356, 0.0008789062267169356, 0.003076171735301614, 0.007910155691206455, 0.007910155691206455, 0.01186523400247097, 0.01186523400247097, 0.013403319753706455, 0.01669921912252903, 0.01625976525247097, 0.02043456956744194, 0.0208740234375, 0.01911620981991291, 0.02285156212747097, 0.01999511756002903, 0.02197265625, 0.02153320237994194, 0.02131347544491291, 0.02021484263241291, 0.02043456956744194, 0.01669921912252903, 0.01494140550494194, 0.009228515438735485, 0.002197265625, 0.0046142577193677425, -0.002636718563735485, -0.005932617001235485, -0.011206054128706455, -0.014501952566206455, -0.01494140550494194, -0.02175292931497097, -0.02153320237994194, -0.02790527231991291, -0.02988281100988388, -0.03120117075741291, -0.03273925557732582, -0.03164062276482582, -0.03691406175494194, -0.03581542894244194, -0.03537597507238388, -0.03273925557732582, -0.03208007663488388, -0.02658691257238388, -0.02548827975988388, -0.02197265625, -0.01933593675494194, -0.01296386681497097, -0.006591796875, -0.003735351376235485, 0.0010986328125, 0.007031249813735485, 0.01625976525247097, 0.015600585378706455, 0.02504882775247097, 0.02834472618997097, 0.03493652120232582, 0.03757324069738388, 0.04262695088982582, 0.04746093600988388, 0.04921874776482582, 0.04680175706744194, 0.04833984375, 0.04877929389476776, 0.04965820163488388, 0.0494384765625, 0.04306640475988388, 0.04020996019244194, 0.03691406175494194, 0.03098144382238388, 0.02460937388241291, 0.01933593675494194, 0.012304686941206455, 0.0054931640625, -0.0017578124534338713, -0.010327148251235485, -0.0208740234375, -0.0252685546875, -0.03449707105755806, -0.04020996019244194, -0.046142578125, -0.05339355394244194, -0.052734375, -0.05844726413488388, -0.06218261644244194, -0.06306152045726776, -0.06569824367761612, -0.0648193359375, -0.06240234151482582, -0.0604248046875, -0.05537109076976776, -0.05119628831744194, -0.04790038987994194, -0.03911132737994194, -0.0318603515625, -0.02351074106991291, -0.0120849609375, -0.00439453125, 0.002636718563735485, 0.013403319753706455, 0.02285156212747097, 0.03120117075741291, 0.04218749701976776, 0.05009765550494194, 0.05866698920726776, 0.06394042819738388, 0.06987304240465164, 0.07229004055261612, 0.07712402194738388, 0.08305663615465164, 0.081298828125, 0.0791015625, 0.07668457180261612, 0.07712402194738388, 0.06855468451976776, 0.06240234151482582, 0.05559081956744194, 0.04526367038488388, 0.03889160230755806, 0.03010253794491291, 0.017578125, 0.0087890625, -0.00527343712747097, -0.014501952566206455, -0.02263183519244194, -0.03581542894244194, -0.05097655951976776, -0.05866698920726776, -0.06547851115465164, -0.07668457180261612, -0.0802001953125, -0.08503417670726776, -0.08986815810203552, -0.09514159709215164, -0.09404296427965164, -0.09536132216453552, -0.0911865234375, -0.08767089247703552, -0.08085937052965164, -0.07492675632238388, -0.06503906100988388, -0.05559081956744194, -0.04636230319738388, -0.03581542894244194, -0.01911620981991291, -0.00747070275247097, 0.0054931640625, 0.01823730394244194, 0.03076171875, 0.0428466796875, 0.05559081956744194, 0.06789550930261612, 0.07602538913488388, 0.08613280951976776, 0.09316405653953552, 0.0999755859375, 0.10239257663488388, 0.10502929240465164, 0.10744628310203552, 0.10480956733226776, 0.10107421875, 0.09602050483226776, 0.08876952528953552, 0.07932128757238388, 0.07053222507238388, 0.06086425483226776, 0.0472412109375, 0.03493652120232582, 0.02460937388241291, 0.0098876953125, -0.00747070275247097, -0.01955566368997097, -0.0340576171875, -0.04636230319738388, -0.05800781026482582, -0.07075195014476776, -0.07932128757238388, -0.087890625, -0.09953612834215164, -0.10415038466453552, -0.10942382365465164, -0.11228027194738388, -0.1131591796875, -0.11008300632238388, -0.10854491591453552, -0.09821777045726776, -0.09184569865465164, -0.08547362685203552, -0.07229004055261612, -0.06394042819738388, -0.04987792670726776, -0.03933105245232582, -0.02285156212747097, -0.0087890625, 0.0046142577193677425, 0.02131347544491291, 0.0362548828125, 0.04768066108226776, 0.06416015326976776, 0.07294921576976776, 0.08261718600988388, 0.09162597358226776, 0.10261230170726776, 0.10744628310203552, 0.112060546875, 0.1131591796875, 0.11052245646715164, 0.11293944716453552, 0.107666015625, 0.10305175185203552, 0.0933837890625, 0.087890625, 0.0758056640625, 0.06240234151482582, 0.05185546725988388, 0.03955078125, 0.02373046800494194, 0.0087890625, -0.003735351376235485, -0.02065429650247097, -0.03427734225988388, -0.04746093600988388, -0.06064452975988388, -0.07119140774011612, -0.07932128757238388, -0.08964843302965164, -0.10041503608226776, -0.1021728515625, -0.10524901747703552, -0.11184081435203552, -0.10810546576976776, -0.10854491591453552, -0.10085448622703552, -0.09711913764476776, -0.08876952528953552, -0.0791015625, -0.07097167521715164, -0.05910644307732582, -0.0494384765625, -0.03273925557732582, -0.02219238132238388, -0.0068115233443677425, 0.005932617001235485, 0.02329101413488388, 0.03098144382238388, 0.04833984375, 0.05866698920726776, 0.06767577677965164, 0.07668457180261612, 0.085693359375, 0.09514159709215164, 0.09689941257238388, 0.09909667819738388, 0.10195311903953552, 0.10151366889476776, 0.10019531100988388, 0.09645995497703552, 0.0911865234375, 0.08151855319738388, 0.072509765625, 0.06459961086511612, 0.05317382514476776, 0.04680175706744194, 0.0318603515625, 0.02263183519244194, 0.00856933556497097, -0.001538085867650807, -0.01625976525247097, -0.02878417819738388, -0.041748046875, -0.0538330078125, -0.06218261644244194, -0.06877440959215164, -0.07712402194738388, -0.08217773586511612, -0.08437499403953552, -0.09074706584215164, -0.090087890625, -0.08701171725988388, -0.085693359375, -0.08371581882238388, -0.07888183742761612, -0.0736083984375, -0.0615234375, -0.05449218675494194, -0.0450439453125, -0.0384521484375, -0.02482910081744194, -0.01604003831744194, -0.0054931640625, 0.005932617001235485, 0.014721679501235485, 0.024169921875, 0.03757324069738388, 0.04526367038488388, 0.04987792670726776, 0.05866698920726776, 0.0670166015625, 0.07185058295726776, 0.07558593899011612, 0.07426757365465164, 0.0758056640625, 0.0758056640625, 0.07338867336511612, 0.07097167521715164, 0.0648193359375, 0.06284179538488388, 0.0560302734375, 0.04636230319738388, 0.03955078125, 0.0318603515625, 0.02263183519244194, 0.012524413876235485, 0.004833984188735485, -0.0035156249068677425, -0.01186523400247097, -0.01735839806497097, -0.02680663950741291, -0.0362548828125, -0.03933105245232582, -0.04526367038488388, -0.05031738057732582, -0.05668945237994194, -0.05646972358226776, -0.05690917745232582, -0.06130370870232582, -0.0582275390625, -0.05515136569738388, -0.05317382514476776, -0.0516357421875, -0.04921874776482582, -0.04042968526482582, -0.03581542894244194, -0.02702636644244194, -0.02548827975988388, -0.01604003831744194, -0.0098876953125, -0.0028564452659338713, 0.00527343712747097, 0.009008788503706455, 0.01582031138241291, 0.02153320237994194, 0.0252685546875, 0.03317870944738388, 0.03801269456744194, 0.0384521484375, 0.04218749701976776, 0.04482421651482582, 0.04592284932732582, 0.04372558370232582, 0.04548339545726776, 0.04152831807732582, 0.03977050632238388, 0.03823241963982582, 0.032958984375, 0.028564453125, 0.02570800669491291, 0.02395019493997097, 0.01669921912252903, 0.009448242373764515, 0.007910155691206455, 0.003076171735301614, -0.0002197265566792339, -0.0068115233443677425, -0.010986328125, -0.01186523400247097, -0.01582031138241291, -0.02109374850988388, -0.0252685546875, -0.02482910081744194, -0.02900390513241291, -0.02680663950741291, -0.02724609337747097, -0.03032226487994194, -0.03032226487994194, -0.02570800669491291, -0.02680663950741291, -0.02175292931497097, -0.01955566368997097, -0.02043456956744194, -0.01296386681497097, -0.0142822265625, -0.013623046688735485, -0.008129882626235485, -0.0046142577193677425, 0.0006591796409338713, 0.003076171735301614, 0.002636718563735485, 0.0076904296875, 0.0076904296875, 0.00966796837747097, 0.01296386681497097, 0.015380859375, 0.015380859375, 0.01516113243997097, 0.01713867112994194, 0.01955566368997097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "ancilla, labels: (2,)", "legendgrouptitle": { "text": "ancilla, labels: (2,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.5)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x", "y": [ 0.17644041776657104, 0.17116698622703552, 0.16435547173023224, 0.15556640923023224, 0.14128418266773224, 0.12897948920726776, 0.11293944716453552, 0.09711913764476776, 0.07624511420726776, 0.05910644307732582, 0.04152831807732582, 0.02482910081744194, 0.007031249813735485, -0.0076904296875, -0.02263183519244194, -0.03098144382238388, -0.046142578125, -0.05339355394244194, -0.06328124552965164, -0.068115234375, -0.06657714396715164, -0.06877440959215164, -0.0703125, -0.06899414211511612, -0.06723632663488388, -0.05800781026482582, -0.05559081956744194, -0.04812011495232582, -0.04306640475988388, -0.03603515401482582, -0.03076171875, -0.02570800669491291, -0.01801757700741291, -0.010986328125, -0.008349609561264515, -0.00439453125, 0.0006591796409338713, 0.003955077845603228, 0.003955077845603228, 0.0057128905318677425, 0.005053710658103228, 0.0068115233443677425, 0.002636718563735485, 0.0035156249068677425, 0.0002197265566792339, -0.0010986328125, -0.0008789062267169356, 0.0008789062267169356, 0.0013183592818677425, -0.0010986328125, 0.0010986328125, -0.001538085867650807, -0.0010986328125, 0.001977538922801614, -0.0013183592818677425, -0.0008789062267169356, 0.0004394531133584678, -0.0013183592818677425, 0.0006591796409338713, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.003735351376235485, -0.004833984188735485, -0.0017578124534338713, -0.003076171735301614, -0.0068115233443677425, -0.00747070275247097, -0.008349609561264515, -0.00637206993997097, -0.010327148251235485, -0.009448242373764515, -0.0098876953125, -0.014721679501235485, -0.010107421316206455, -0.011425781063735485, -0.01164550706744194, -0.009228515438735485, -0.00856933556497097, -0.008349609561264515, -0.0098876953125, -0.003735351376235485, -0.003955077845603228, -0.0024169920943677425, -0.0010986328125, 0.0010986328125, 0.004833984188735485, 0.006591796875, 0.00747070275247097, 0.0120849609375, 0.013623046688735485, 0.01384277269244194, 0.01604003831744194, 0.02263183519244194, 0.0208740234375, 0.02219238132238388, 0.024169921875, 0.02570800669491291, 0.02241210825741291, 0.0230712890625, 0.02285156212747097, 0.02131347544491291, 0.0186767578125, 0.01713867112994194, 0.01625976525247097, 0.01406249962747097, 0.00966796837747097, 0.00527343712747097, -0.0006591796409338713, -0.002636718563735485, -0.0057128905318677425, -0.010107421316206455, -0.013403319753706455, -0.01604003831744194, -0.01911620981991291, -0.02570800669491291, -0.02812499925494194, -0.03251953050494194, -0.03383788838982582, -0.03669433668255806, -0.03889160230755806, -0.04108886793255806, -0.03691406175494194, -0.04020996019244194, -0.03537597507238388, -0.03383788838982582, -0.0340576171875, -0.02988281100988388, -0.02460937388241291, -0.01999511756002903, -0.01516113243997097, -0.00747070275247097, -0.0035156249068677425, 0.003955077845603228, 0.0068115233443677425, 0.01582031138241291, 0.02153320237994194, 0.0274658203125, 0.03383788838982582, 0.03603515401482582, 0.04416503757238388, 0.04636230319738388, 0.04921874776482582, 0.05339355394244194, 0.05141601338982582, 0.05712890625, 0.05712890625, 0.05559081956744194, 0.05185546725988388, 0.050537109375, 0.04833984375, 0.03889160230755806, 0.03515625, 0.02548827975988388, 0.02219238132238388, 0.01274413987994194, 0.0046142577193677425, -0.0028564452659338713, -0.013623046688735485, -0.0208740234375, -0.02702636644244194, -0.03691406175494194, -0.04460449144244194, -0.05119628831744194, -0.054931640625, -0.063720703125, -0.06591796875, -0.07075195014476776, -0.07272949069738388, -0.0736083984375, -0.07448730617761612, -0.07053222507238388, -0.06855468451976776, -0.06503906100988388, -0.059326171875, -0.05251464620232582, -0.04306640475988388, -0.03581542894244194, -0.02460937388241291, -0.014501952566206455, -0.007031249813735485, 0.003735351376235485, 0.01516113243997097, 0.02812499925494194, 0.03581542894244194, 0.04746093600988388, 0.05778808519244194, 0.06503906100988388, 0.07426757365465164, 0.0758056640625, 0.08151855319738388, 0.09096679091453552, 0.09140624850988388, 0.09030761569738388, 0.0911865234375, 0.087890625, 0.08305663615465164, 0.07822265475988388, 0.07075195014476776, 0.06525878608226776, 0.05141601338982582, 0.04548339545726776, 0.03142089769244194, 0.01955566368997097, 0.0087890625, -0.006152343470603228, -0.0186767578125, -0.02834472618997097, -0.04416503757238388, -0.05668945237994194, -0.063720703125, -0.07536620646715164, -0.08547362685203552, -0.0911865234375, -0.09755858778953552, -0.10502929240465164, -0.10195311903953552, -0.10722655802965164, -0.10415038466453552, -0.10283202677965164, -0.09536132216453552, -0.08767089247703552, -0.08305663615465164, -0.07075195014476776, -0.06284179538488388, -0.0494384765625, -0.03823241963982582, -0.02395019493997097, -0.01164550706744194, 0.005932617001235485, 0.01823730394244194, 0.03471679612994194, 0.04636230319738388, 0.06020507588982582, 0.0758056640625, 0.08723144233226776, 0.09602050483226776, 0.10722655802965164, 0.10942382365465164, 0.1153564453125, 0.11865234375, 0.11865234375, 0.11623534560203552, 0.11249999701976776, 0.10722655802965164, 0.098876953125, 0.09140624850988388, 0.07954101264476776, 0.0670166015625, 0.05581054463982582, 0.03801269456744194, 0.02329101413488388, 0.00747070275247097, -0.0035156249068677425, -0.0252685546875, -0.03647460788488388, -0.0538330078125, -0.06679687649011612, -0.08063964545726776, -0.09052734076976776, -0.10173339396715164, -0.10854491591453552, -0.11689452826976776, -0.12150878459215164, -0.12744140625, -0.12722167372703552, -0.12326660007238388, -0.12062987685203552, -0.11337890475988388, -0.10415038466453552, -0.09645995497703552, -0.08217773586511612, -0.07119140774011612, -0.05778808519244194, -0.04108886793255806, -0.02482910081744194, -0.00856933556497097, 0.0068115233443677425, 0.02329101413488388, 0.03911132737994194, 0.054931640625, 0.06943359225988388, 0.07954101264476776, 0.09624022990465164, 0.103271484375, 0.11557617038488388, 0.12106933444738388, 0.123046875, 0.12568359076976776, 0.12678222358226776, 0.12612304091453552, 0.12282714247703552, 0.1142578125, 0.10898437350988388, 0.0955810546875, 0.08393554389476776, 0.07185058295726776, 0.05910644307732582, 0.04196777194738388, 0.02395019493997097, 0.011425781063735485, -0.006152343470603228, -0.02043456956744194, -0.03867187350988388, -0.05251464620232582, -0.06789550930261612, -0.07954101264476776, -0.09074706584215164, -0.10261230170726776, -0.11008300632238388, -0.11667480319738388, -0.12041015177965164, -0.12106933444738388, -0.12216796725988388, -0.12216796725988388, -0.11799316108226776, -0.1109619140625, -0.1021728515625, -0.09184569865465164, -0.08041992038488388, -0.06789550930261612, -0.05537109076976776, -0.03977050632238388, -0.02109374850988388, -0.01054687425494194, 0.0054931640625, 0.02153320237994194, 0.03647460788488388, 0.0516357421875, 0.06569824367761612, 0.0780029296875, 0.08876952528953552, 0.09316405653953552, 0.10590820014476776, 0.10964354872703552, 0.11381835490465164, 0.11403807997703552, 0.11271972209215164, 0.10942382365465164, 0.10810546576976776, 0.10107421875, 0.0933837890625, 0.08371581882238388, 0.07426757365465164, 0.06218261644244194, 0.04877929389476776, 0.03449707105755806, 0.02197265625, 0.0076904296875, -0.0032958984375, -0.02065429650247097, -0.03361816331744194, -0.04855956882238388, -0.05800781026482582, -0.06547851115465164, -0.07734374701976776, -0.08503417670726776, -0.094482421875, -0.09821777045726776, -0.10041503608226776, -0.103271484375, -0.10085448622703552, -0.09865722060203552, -0.09228515625, -0.08767089247703552, -0.08041992038488388, -0.07492675632238388, -0.0648193359375, -0.05075683444738388, -0.04130859300494194, -0.02922363206744194, -0.01823730394244194, -0.0068115233443677425, 0.0057128905318677425, 0.01933593675494194, 0.03076171875, 0.03823241963982582, 0.05119628831744194, 0.05559081956744194, 0.0670166015625, 0.07185058295726776, 0.0802001953125, 0.08547362685203552, 0.08613280951976776, 0.08283691108226776, 0.0845947265625, 0.081298828125, 0.07492675632238388, 0.07426757365465164, 0.06943359225988388, 0.05910644307732582, 0.05251464620232582, 0.04526367038488388, 0.0340576171875, 0.024169921875, 0.01625976525247097, 0.00637206993997097, -0.0035156249068677425, -0.015380859375, -0.02329101413488388, -0.0318603515625, -0.041748046875, -0.04680175706744194, -0.05427245795726776, -0.05734863132238388, -0.0604248046875, -0.06328124552965164, -0.06503906100988388, -0.07009277492761612, -0.06877440959215164, -0.06591796875, -0.06174316257238388, -0.05800781026482582, -0.0538330078125, -0.04526367038488388, -0.03955078125, -0.03164062276482582, -0.02812499925494194, -0.01999511756002903, -0.010327148251235485, -0.001538085867650807, 0.0028564452659338713, 0.010107421316206455, 0.019775390625, 0.0252685546875, 0.0318603515625, 0.03669433668255806, 0.0384521484375, 0.0439453125, 0.04768066108226776, 0.04790038987994194, 0.05009765550494194, 0.04877929389476776, 0.04987792670726776, 0.04658202826976776, 0.04306640475988388, 0.04372558370232582, 0.03647460788488388, 0.03229980543255806, 0.0296630859375, 0.02285156212747097, 0.02021484263241291, 0.0142822265625, 0.0087890625, 0.0041748047806322575, -0.002636718563735485, -0.010107421316206455, -0.01054687425494194, -0.014721679501235485, -0.0208740234375, -0.02504882775247097, -0.0252685546875, -0.028564453125, -0.03471679612994194, -0.03054199181497097, -0.03559570387005806, -0.03229980543255806, -0.03449707105755806, -0.03229980543255806, -0.02922363206744194, -0.02790527231991291, -0.02658691257238388, -0.02065429650247097, -0.01691894419491291, -0.0164794921875, -0.01296386681497097, -0.007250976283103228, -0.0028564452659338713, -0.0010986328125, 0.0057128905318677425, 0.0057128905318677425, 0.0076904296875, 0.01186523400247097, 0.01406249962747097, 0.01494140550494194, 0.014721679501235485, 0.01801757700741291, 0.01713867112994194, 0.01691894419491291, 0.02065429650247097 ], "yaxis": "y" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0032958984375, -0.001977538922801614, 0.0, 0.0, -0.0008789062267169356, -0.002636718563735485, -0.001977538922801614, -0.0004394531133584678, -0.002197265625, -0.001538085867650807, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.003076171735301614, -0.003735351376235485, -0.0004394531133584678, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, -0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.002636718563735485, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, 0.0, -0.001538085867650807, -0.0006591796409338713, 0.001538085867650807, 0.0008789062267169356, 0.0010986328125, -0.0004394531133584678, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0006591796409338713, -0.003735351376235485, -0.005053710658103228, -0.0046142577193677425, -0.005053710658103228, -0.00747070275247097, -0.0068115233443677425, -0.00966796837747097, -0.009008788503706455, -0.0068115233443677425, -0.005932617001235485, -0.006591796875, -0.0076904296875, -0.0054931640625, -0.0032958984375, -0.002636718563735485, -0.0008789062267169356, 0.002197265625, 0.004833984188735485, 0.0046142577193677425, 0.0046142577193677425, 0.0076904296875, 0.009448242373764515, 0.010107421316206455, 0.0098876953125, 0.0087890625, 0.009008788503706455, 0.0098876953125, 0.007250976283103228, 0.003955077845603228, 0.0032958984375, 0.0, -0.0010986328125, -0.0054931640625, -0.007250976283103228, -0.0098876953125, -0.01582031138241291, -0.015380859375, -0.01801757700741291, -0.01801757700741291, -0.01669921912252903, -0.0186767578125, -0.014721679501235485, -0.014501952566206455, -0.015380859375, -0.00966796837747097, -0.007910155691206455, -0.005053710658103228, -0.001538085867650807, 0.002636718563735485, 0.00637206993997097, 0.010327148251235485, 0.01494140550494194, 0.01801757700741291, 0.01713867112994194, 0.01735839806497097, 0.0186767578125, 0.0208740234375, 0.01889648474752903, 0.01604003831744194, 0.011206054128706455, 0.010327148251235485, 0.0057128905318677425, 0.0024169920943677425, -0.0032958984375, -0.006152343470603228, -0.01054687425494194, -0.01735839806497097, -0.02043456956744194, -0.02504882775247097, -0.0263671875, -0.02768554538488388, -0.02812499925494194, -0.02570800669491291, -0.02614746056497097, -0.02460937388241291, -0.0208740234375, -0.01625976525247097, -0.01076660118997097, -0.00527343712747097, 0.0017578124534338713, 0.007031249813735485, 0.0098876953125, 0.015600585378706455, 0.01999511756002903, 0.02351074106991291, 0.02702636644244194, 0.02878417819738388, 0.0274658203125, 0.028564453125, 0.0263671875, 0.024169921875, 0.02021484263241291, 0.01494140550494194, 0.0098876953125, 0.0028564452659338713, -0.0035156249068677425, -0.009448242373764515, -0.01625976525247097, -0.02153320237994194, -0.02570800669491291, -0.03032226487994194, -0.03383788838982582, -0.03647460788488388, -0.03559570387005806, -0.03471679612994194, -0.0318603515625, -0.02944335900247097, -0.0263671875, -0.0208740234375, -0.01406249962747097, -0.006152343470603228, 0.0004394531133584678, 0.007910155691206455, 0.01582031138241291, 0.02021484263241291, 0.02570800669491291, 0.02922363206744194, 0.03515625, 0.0362548828125, 0.03713378682732582, 0.03537597507238388, 0.032958984375, 0.02988281100988388, 0.02438964694738388, 0.01845703087747097, 0.01054687425494194, 0.004833984188735485, -0.003735351376235485, -0.01164550706744194, -0.01933593675494194, -0.02680663950741291, -0.0318603515625, -0.0362548828125, -0.04152831807732582, -0.04086913913488388, -0.04240722581744194, -0.04196777194738388, -0.03933105245232582, -0.03471679612994194, -0.03010253794491291, -0.02351074106991291, -0.0164794921875, -0.008349609561264515, 0.0, 0.008129882626235485, 0.01779785193502903, 0.02373046800494194, 0.02900390513241291, 0.03669433668255806, 0.04020996019244194, 0.041748046875, 0.04240722581744194, 0.041748046875, 0.0362548828125, 0.03427734225988388, 0.02812499925494194, 0.02153320237994194, 0.013403319753706455, 0.004833984188735485, -0.0024169920943677425, -0.011425781063735485, -0.02197265625, -0.0274658203125, -0.03581542894244194, -0.04108886793255806, -0.0450439453125, -0.04790038987994194, -0.04855956882238388, -0.04768066108226776, -0.0450439453125, -0.03999023512005806, -0.03361816331744194, -0.0274658203125, -0.01691894419491291, -0.0087890625, 0.0013183592818677425, 0.009448242373764515, 0.01889648474752903, 0.02790527231991291, 0.03339843824505806, 0.04020996019244194, 0.04438476264476776, 0.04570312425494194, 0.04636230319738388, 0.04790038987994194, 0.04482421651482582, 0.03801269456744194, 0.02922363206744194, 0.02460937388241291, 0.014721679501235485, 0.007250976283103228, -0.003735351376235485, -0.013403319753706455, -0.02109374850988388, -0.03142089769244194, -0.03691406175494194, -0.04460449144244194, -0.04790038987994194, -0.05141601338982582, -0.05295410007238388, -0.05009765550494194, -0.04636230319738388, -0.0428466796875, -0.03537597507238388, -0.0263671875, -0.0186767578125, -0.009008788503706455, 0.001538085867650807, 0.01076660118997097, 0.02043456956744194, 0.02922363206744194, 0.0362548828125, 0.04108886793255806, 0.04548339545726776, 0.04790038987994194, 0.04746093600988388, 0.04768066108226776, 0.04306640475988388, 0.03933105245232582, 0.0340576171875, 0.02570800669491291, 0.0142822265625, 0.005053710658103228, -0.003735351376235485, -0.01318359375, -0.0230712890625, -0.03142089769244194, -0.03801269456744194, -0.04526367038488388, -0.05097655951976776, -0.05207519233226776, -0.05361327901482582, -0.05141601338982582, -0.04790038987994194, -0.04108886793255806, -0.0362548828125, -0.02790527231991291, -0.01955566368997097, -0.01054687425494194, 0.0010986328125, 0.01186523400247097, 0.01933593675494194, 0.02834472618997097, 0.03559570387005806, 0.04196777194738388, 0.04548339545726776, 0.04658202826976776, 0.04790038987994194, 0.04790038987994194, 0.0450439453125, 0.04108886793255806, 0.03120117075741291, 0.024169921875, 0.01494140550494194, 0.00747070275247097, -0.003955077845603228, -0.01318359375, -0.0208740234375, -0.0318603515625, -0.03867187350988388, -0.04218749701976776, -0.04812011495232582, -0.05075683444738388, -0.05185546725988388, -0.0494384765625, -0.04570312425494194, -0.04086913913488388, -0.03383788838982582, -0.02768554538488388, -0.01735839806497097, -0.008129882626235485, 0.0006591796409338713, 0.01054687425494194, 0.01845703087747097, 0.028564453125, 0.03427734225988388, 0.03779296949505806, 0.04482421651482582, 0.04746093600988388, 0.04680175706744194, 0.04526367038488388, 0.04262695088982582, 0.03647460788488388, 0.03076171875, 0.0230712890625, 0.014501952566206455, 0.005053710658103228, -0.00439453125, -0.010986328125, -0.02153320237994194, -0.03120117075741291, -0.03647460788488388, -0.03999023512005806, -0.04306640475988388, -0.04548339545726776, -0.04680175706744194, -0.04570312425494194, -0.0428466796875, -0.03713378682732582, -0.03142089769244194, -0.02504882775247097, -0.01669921912252903, -0.0076904296875, 0.002636718563735485, 0.010107421316206455, 0.01691894419491291, 0.02438964694738388, 0.03120117075741291, 0.0362548828125, 0.0406494140625, 0.04218749701976776, 0.04042968526482582, 0.03999023512005806, 0.037353515625, 0.03273925557732582, 0.02878417819738388, 0.02329101413488388, 0.013623046688735485, 0.005053710658103228, -0.003076171735301614, -0.011425781063735485, -0.01889648474752903, -0.0252685546875, -0.03164062276482582, -0.03669433668255806, -0.04042968526482582, -0.04218749701976776, -0.0428466796875, -0.03977050632238388, -0.03867187350988388, -0.03339843824505806, -0.02614746056497097, -0.02065429650247097, -0.0142822265625, -0.00856933556497097, 0.0, 0.009228515438735485, 0.01516113243997097, 0.02065429650247097, 0.02812499925494194, 0.02944335900247097, 0.03273925557732582, 0.03449707105755806, 0.03449707105755806, 0.03383788838982582, 0.0318603515625, 0.02812499925494194, 0.02219238132238388, 0.01669921912252903, 0.01164550706744194, 0.003955077845603228, -0.0028564452659338713, -0.009448242373764515, -0.01604003831744194, -0.02043456956744194, -0.02614746056497097, -0.0318603515625, -0.03361816331744194, -0.03449707105755806, -0.03361816331744194, -0.03317870944738388, -0.03076171875, -0.02790527231991291, -0.02329101413488388, -0.017578125, -0.01076660118997097, -0.0068115233443677425, 0.0, 0.004833984188735485, 0.00966796837747097, 0.015380859375, 0.02153320237994194, 0.024169921875, 0.02548827975988388, 0.02790527231991291, 0.02768554538488388, 0.02592773362994194, 0.02504882775247097, 0.02285156212747097, 0.0164794921875, 0.0120849609375, 0.009008788503706455, 0.0024169920943677425, -0.0032958984375, -0.005932617001235485, -0.01164550706744194, -0.0164794921875, -0.02109374850988388, -0.02351074106991291, -0.02570800669491291, -0.02482910081744194, -0.02614746056497097, -0.02548827975988388, -0.02570800669491291, -0.02263183519244194, -0.01713867112994194, -0.013403319753706455, -0.0098876953125, -0.005053710658103228, -0.0017578124534338713, 0.0028564452659338713, 0.007910155691206455, 0.009448242373764515, 0.01164550706744194, 0.01582031138241291, 0.01625976525247097, 0.01735839806497097, 0.01801757700741291, 0.01735839806497097, 0.01516113243997097, 0.01296386681497097, 0.011206054128706455, 0.007910155691206455, 0.006591796875, 0.0032958984375, -0.0013183592818677425, -0.00637206993997097, -0.009008788503706455, -0.010986328125, -0.013403319753706455, -0.01516113243997097, -0.015600585378706455, -0.01669921912252903, -0.01625976525247097, -0.0142822265625, -0.01582031138241291, -0.01318359375, -0.009448242373764515, -0.0087890625, -0.005932617001235485, -0.0013183592818677425, -0.0006591796409338713, 0.0002197265566792339, 0.003735351376235485, 0.004833984188735485, 0.0057128905318677425, 0.00856933556497097, 0.008129882626235485, 0.007250976283103228 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.0556)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.0024169920943677425, -0.001538085867650807, -0.0006591796409338713, -0.0008789062267169356, -0.003076171735301614, -0.0013183592818677425, -0.0013183592818677425, 0.0, -0.002636718563735485, -0.0006591796409338713, -0.001538085867650807, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0002197265566792339, -0.0024169920943677425, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.002197265625, 0.0, -0.002636718563735485, -0.0010986328125, -0.0024169920943677425, -0.001538085867650807, -0.0004394531133584678, -0.0024169920943677425, -0.001977538922801614, -0.002197265625, -0.0017578124534338713, -0.0004394531133584678, -0.0002197265566792339, -0.0006591796409338713, 0.0008789062267169356, 0.0010986328125, 0.0002197265566792339, -0.0004394531133584678, -0.0017578124534338713, -0.001538085867650807, -0.0013183592818677425, -0.003076171735301614, -0.002636718563735485, -0.003735351376235485, -0.0057128905318677425, -0.007910155691206455, -0.0068115233443677425, -0.006152343470603228, -0.00747070275247097, -0.008349609561264515, -0.007910155691206455, -0.008349609561264515, -0.00747070275247097, -0.00527343712747097, -0.00439453125, -0.0028564452659338713, 0.0, 0.002197265625, 0.001538085867650807, 0.0057128905318677425, 0.00637206993997097, 0.00747070275247097, 0.0068115233443677425, 0.009448242373764515, 0.009448242373764515, 0.010107421316206455, 0.011206054128706455, 0.00966796837747097, 0.007910155691206455, 0.005053710658103228, 0.0013183592818677425, 0.0002197265566792339, -0.0028564452659338713, -0.005053710658103228, -0.007910155691206455, -0.011206054128706455, -0.01406249962747097, -0.014501952566206455, -0.01625976525247097, -0.015380859375, -0.01823730394244194, -0.01823730394244194, -0.0164794921875, -0.015600585378706455, -0.01384277269244194, -0.0087890625, -0.0068115233443677425, -0.0057128905318677425, -0.0013183592818677425, 0.0028564452659338713, 0.00747070275247097, 0.011425781063735485, 0.013623046688735485, 0.01691894419491291, 0.01801757700741291, 0.019775390625, 0.0208740234375, 0.01911620981991291, 0.01691894419491291, 0.01735839806497097, 0.012524413876235485, 0.009228515438735485, 0.00527343712747097, 0.002636718563735485, -0.001977538922801614, -0.007910155691206455, -0.012304686941206455, -0.01625976525247097, -0.01999511756002903, -0.0230712890625, -0.02548827975988388, -0.02680663950741291, -0.02658691257238388, -0.02548827975988388, -0.02570800669491291, -0.02373046800494194, -0.019775390625, -0.015600585378706455, -0.010107421316206455, -0.004833984188735485, -0.0006591796409338713, 0.0057128905318677425, 0.0098876953125, 0.015380859375, 0.02109374850988388, 0.02460937388241291, 0.0274658203125, 0.02922363206744194, 0.02900390513241291, 0.02944335900247097, 0.02614746056497097, 0.02373046800494194, 0.0208740234375, 0.0142822265625, 0.0087890625, 0.0024169920943677425, -0.003076171735301614, -0.0087890625, -0.01625976525247097, -0.02153320237994194, -0.02614746056497097, -0.03032226487994194, -0.03339843824505806, -0.03383788838982582, -0.03647460788488388, -0.03537597507238388, -0.03120117075741291, -0.02988281100988388, -0.02504882775247097, -0.01955566368997097, -0.012524413876235485, -0.004833984188735485, 0.0010986328125, 0.0087890625, 0.01516113243997097, 0.02263183519244194, 0.02724609337747097, 0.03142089769244194, 0.03361816331744194, 0.03515625, 0.03559570387005806, 0.03581542894244194, 0.0318603515625, 0.02988281100988388, 0.024169921875, 0.01889648474752903, 0.01296386681497097, 0.0032958984375, -0.0024169920943677425, -0.0098876953125, -0.01845703087747097, -0.02570800669491291, -0.03164062276482582, -0.03537597507238388, -0.04130859300494194, -0.04196777194738388, -0.04306640475988388, -0.03977050632238388, -0.03977050632238388, -0.03449707105755806, -0.03076171875, -0.02373046800494194, -0.01801757700741291, -0.008129882626235485, 0.0010986328125, 0.008349609561264515, 0.01625976525247097, 0.02482910081744194, 0.03076171875, 0.03669433668255806, 0.03999023512005806, 0.0428466796875, 0.04218749701976776, 0.04196777194738388, 0.03801269456744194, 0.03581542894244194, 0.02944335900247097, 0.02153320237994194, 0.01384277269244194, 0.0054931640625, -0.0032958984375, -0.0120849609375, -0.019775390625, -0.02878417819738388, -0.0384521484375, -0.04152831807732582, -0.04570312425494194, -0.04855956882238388, -0.04855956882238388, -0.04855956882238388, -0.04460449144244194, -0.03955078125, -0.03383788838982582, -0.02395019493997097, -0.01713867112994194, -0.007031249813735485, 0.0010986328125, 0.010986328125, 0.02043456956744194, 0.02548827975988388, 0.0340576171875, 0.04108886793255806, 0.04372558370232582, 0.04570312425494194, 0.04746093600988388, 0.04526367038488388, 0.04350585862994194, 0.03867187350988388, 0.03076171875, 0.02504882775247097, 0.014501952566206455, 0.004833984188735485, -0.005053710658103228, -0.01384277269244194, -0.02241210825741291, -0.03098144382238388, -0.03713378682732582, -0.04372558370232582, -0.04899902269244194, -0.05141601338982582, -0.05119628831744194, -0.04987792670726776, -0.04812011495232582, -0.04416503757238388, -0.03471679612994194, -0.02680663950741291, -0.01845703087747097, -0.009008788503706455, 0.001538085867650807, 0.010327148251235485, 0.01889648474752903, 0.02724609337747097, 0.03603515401482582, 0.04086913913488388, 0.04548339545726776, 0.04855956882238388, 0.04899902269244194, 0.04812011495232582, 0.04372558370232582, 0.03867187350988388, 0.03076171875, 0.0252685546875, 0.01582031138241291, 0.00637206993997097, -0.003955077845603228, -0.01318359375, -0.02175292931497097, -0.03142089769244194, -0.0406494140625, -0.04460449144244194, -0.04965820163488388, -0.05097655951976776, -0.05207519233226776, -0.0516357421875, -0.04921874776482582, -0.04218749701976776, -0.03449707105755806, -0.02724609337747097, -0.02043456956744194, -0.008129882626235485, 0.0004394531133584678, 0.011425781063735485, 0.0208740234375, 0.02878417819738388, 0.03449707105755806, 0.0406494140625, 0.04482421651482582, 0.04855956882238388, 0.04921874776482582, 0.04790038987994194, 0.04328612983226776, 0.03889160230755806, 0.03229980543255806, 0.02482910081744194, 0.01318359375, 0.005053710658103228, -0.0035156249068677425, -0.012524413876235485, -0.02395019493997097, -0.03032226487994194, -0.04042968526482582, -0.04372558370232582, -0.04833984375, -0.05075683444738388, -0.04987792670726776, -0.050537109375, -0.046142578125, -0.04196777194738388, -0.03559570387005806, -0.02922363206744194, -0.0186767578125, -0.009448242373764515, 0.0013183592818677425, 0.0087890625, 0.01889648474752903, 0.02614746056497097, 0.03493652120232582, 0.03867187350988388, 0.04328612983226776, 0.04592284932732582, 0.04548339545726776, 0.0472412109375, 0.04130859300494194, 0.03537597507238388, 0.02922363206744194, 0.02329101413488388, 0.01384277269244194, 0.00527343712747097, -0.002636718563735485, -0.01164550706744194, -0.02285156212747097, -0.02680663950741291, -0.03647460788488388, -0.04130859300494194, -0.04482421651482582, -0.04702148213982582, -0.046142578125, -0.04636230319738388, -0.04240722581744194, -0.037353515625, -0.03098144382238388, -0.024169921875, -0.01516113243997097, -0.007031249813735485, 0.0, 0.0098876953125, 0.01516113243997097, 0.02482910081744194, 0.03164062276482582, 0.03603515401482582, 0.03999023512005806, 0.041748046875, 0.03999023512005806, 0.03779296949505806, 0.03559570387005806, 0.03273925557732582, 0.02768554538488388, 0.02043456956744194, 0.011425781063735485, 0.006152343470603228, -0.003735351376235485, -0.01054687425494194, -0.019775390625, -0.02680663950741291, -0.03098144382238388, -0.03603515401482582, -0.03955078125, -0.04108886793255806, -0.04196777194738388, -0.041748046875, -0.03867187350988388, -0.03383788838982582, -0.02790527231991291, -0.02175292931497097, -0.01494140550494194, -0.00747070275247097, -0.0010986328125, 0.0076904296875, 0.014721679501235485, 0.02263183519244194, 0.02438964694738388, 0.03076171875, 0.03515625, 0.03647460788488388, 0.03493652120232582, 0.03559570387005806, 0.03076171875, 0.02790527231991291, 0.02373046800494194, 0.01604003831744194, 0.01054687425494194, 0.004833984188735485, -0.0032958984375, -0.009228515438735485, -0.0186767578125, -0.02329101413488388, -0.0263671875, -0.0296630859375, -0.03251953050494194, -0.03515625, -0.03603515401482582, -0.03229980543255806, -0.03032226487994194, -0.0274658203125, -0.02351074106991291, -0.01845703087747097, -0.010327148251235485, -0.005932617001235485, -0.0002197265566792339, 0.006152343470603228, 0.01076660118997097, 0.015600585378706455, 0.019775390625, 0.02395019493997097, 0.02504882775247097, 0.02790527231991291, 0.02790527231991291, 0.02702636644244194, 0.02395019493997097, 0.02219238132238388, 0.0164794921875, 0.01164550706744194, 0.007910155691206455, 0.0035156249068677425, -0.0035156249068677425, -0.0076904296875, -0.01274413987994194, -0.01691894419491291, -0.02175292931497097, -0.02285156212747097, -0.02395019493997097, -0.0230712890625, -0.02329101413488388, -0.02592773362994194, -0.02395019493997097, -0.02021484263241291, -0.01713867112994194, -0.01318359375, -0.009228515438735485, -0.00439453125, -0.0013183592818677425, 0.0028564452659338713, 0.0076904296875, 0.01274413987994194, 0.01384277269244194, 0.0164794921875, 0.01801757700741291, 0.01911620981991291, 0.017578125, 0.01713867112994194, 0.014501952566206455, 0.014501952566206455, 0.010986328125, 0.0098876953125, 0.005053710658103228, 0.001538085867650807, -0.0017578124534338713, -0.0068115233443677425, -0.008349609561264515, -0.010107421316206455, -0.01494140550494194, -0.0142822265625, -0.0164794921875, -0.01669921912252903, -0.01582031138241291, -0.014721679501235485, -0.013403319753706455, -0.010986328125, -0.010327148251235485, -0.009008788503706455, -0.0035156249068677425, -0.0032958984375, -0.0035156249068677425, 0.001977538922801614, 0.00439453125, 0.0046142577193677425, 0.0054931640625, 0.006152343470603228, 0.00637206993997097, 0.008349609561264515 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.1111)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.0024169920943677425, -0.002636718563735485, -0.001538085867650807, 0.0, -0.0035156249068677425, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.001538085867650807, -0.0017578124534338713, -0.003076171735301614, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0006591796409338713, -0.0028564452659338713, -0.0032958984375, 0.0008789062267169356, -0.001538085867650807, -0.0024169920943677425, -0.0024169920943677425, -0.0013183592818677425, -0.0024169920943677425, -0.001538085867650807, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.002636718563735485, -0.0028564452659338713, -0.0017578124534338713, 0.0008789062267169356, -0.0008789062267169356, 0.0013183592818677425, -0.0010986328125, 0.002197265625, 0.0, -0.0013183592818677425, -0.0028564452659338713, -0.0024169920943677425, -0.0028564452659338713, -0.002636718563735485, -0.0041748047806322575, -0.005053710658103228, -0.007250976283103228, -0.0041748047806322575, -0.00637206993997097, -0.00747070275247097, -0.00856933556497097, -0.0076904296875, -0.007910155691206455, -0.006591796875, -0.006591796875, -0.005053710658103228, -0.00439453125, -0.0017578124534338713, -0.002197265625, 0.0028564452659338713, 0.0032958984375, 0.004833984188735485, 0.006591796875, 0.00747070275247097, 0.007910155691206455, 0.009228515438735485, 0.009448242373764515, 0.010986328125, 0.0087890625, 0.0076904296875, 0.0054931640625, 0.003735351376235485, 0.0028564452659338713, 0.0008789062267169356, -0.002197265625, -0.0041748047806322575, -0.01054687425494194, -0.01076660118997097, -0.01296386681497097, -0.01582031138241291, -0.0186767578125, -0.01669921912252903, -0.01779785193502903, -0.017578125, -0.01669921912252903, -0.015600585378706455, -0.012304686941206455, -0.010986328125, -0.010327148251235485, -0.0057128905318677425, -0.0008789062267169356, 0.0032958984375, 0.005932617001235485, 0.010327148251235485, 0.012524413876235485, 0.015600585378706455, 0.0186767578125, 0.02109374850988388, 0.0186767578125, 0.01955566368997097, 0.017578125, 0.01625976525247097, 0.01296386681497097, 0.0098876953125, 0.00747070275247097, 0.0032958984375, -0.003955077845603228, -0.00747070275247097, -0.012304686941206455, -0.01735839806497097, -0.02021484263241291, -0.02395019493997097, -0.02702636644244194, -0.028564453125, -0.02702636644244194, -0.0263671875, -0.02592773362994194, -0.02153320237994194, -0.01911620981991291, -0.01625976525247097, -0.010986328125, -0.0041748047806322575, -0.0004394531133584678, 0.006591796875, 0.011206054128706455, 0.0164794921875, 0.01999511756002903, 0.024169921875, 0.02724609337747097, 0.02900390513241291, 0.02834472618997097, 0.02900390513241291, 0.02724609337747097, 0.02548827975988388, 0.0186767578125, 0.014721679501235485, 0.009448242373764515, 0.002197265625, -0.00439453125, -0.009008788503706455, -0.01406249962747097, -0.02109374850988388, -0.0263671875, -0.03054199181497097, -0.03471679612994194, -0.0362548828125, -0.03581542894244194, -0.03339843824505806, -0.03361816331744194, -0.02878417819738388, -0.02592773362994194, -0.02131347544491291, -0.01406249962747097, -0.006152343470603228, 0.0006591796409338713, 0.00637206993997097, 0.01274413987994194, 0.01999511756002903, 0.02548827975988388, 0.03054199181497097, 0.03383788838982582, 0.03493652120232582, 0.03537597507238388, 0.03647460788488388, 0.03317870944738388, 0.028564453125, 0.02329101413488388, 0.01801757700741291, 0.0098876953125, 0.0028564452659338713, -0.005053710658103228, -0.010986328125, -0.01911620981991291, -0.0274658203125, -0.03251953050494194, -0.03515625, -0.04042968526482582, -0.04130859300494194, -0.0428466796875, -0.04328612983226776, -0.03955078125, -0.03559570387005806, -0.03032226487994194, -0.02504882775247097, -0.015600585378706455, -0.007250976283103228, 0.0008789062267169356, 0.008129882626235485, 0.01779785193502903, 0.0252685546875, 0.03054199181497097, 0.03867187350988388, 0.03867187350988388, 0.04218749701976776, 0.04130859300494194, 0.04108886793255806, 0.0362548828125, 0.03449707105755806, 0.02988281100988388, 0.02131347544491291, 0.014501952566206455, 0.0057128905318677425, -0.00439453125, -0.01054687425494194, -0.02065429650247097, -0.02702636644244194, -0.03779296949505806, -0.041748046875, -0.04570312425494194, -0.0472412109375, -0.04855956882238388, -0.04855956882238388, -0.04548339545726776, -0.03867187350988388, -0.03273925557732582, -0.0252685546875, -0.01779785193502903, -0.0076904296875, 0.001538085867650807, 0.010327148251235485, 0.01779785193502903, 0.02702636644244194, 0.03383788838982582, 0.0406494140625, 0.04262695088982582, 0.04636230319738388, 0.04833984375, 0.04636230319738388, 0.041748046875, 0.0384521484375, 0.03273925557732582, 0.02351074106991291, 0.014501952566206455, 0.005932617001235485, -0.005053710658103228, -0.01318359375, -0.0230712890625, -0.02922363206744194, -0.03691406175494194, -0.04592284932732582, -0.04899902269244194, -0.05031738057732582, -0.05097655951976776, -0.04855956882238388, -0.04526367038488388, -0.0428466796875, -0.03493652120232582, -0.0263671875, -0.01691894419491291, -0.007250976283103228, -0.0002197265566792339, 0.01076660118997097, 0.02065429650247097, 0.02922363206744194, 0.03559570387005806, 0.04262695088982582, 0.046142578125, 0.0494384765625, 0.04921874776482582, 0.04855956882238388, 0.04460449144244194, 0.03933105245232582, 0.03098144382238388, 0.02438964694738388, 0.01604003831744194, 0.007031249813735485, -0.003076171735301614, -0.0120849609375, -0.0230712890625, -0.03120117075741291, -0.03977050632238388, -0.04526367038488388, -0.0494384765625, -0.05141601338982582, -0.052734375, -0.050537109375, -0.04790038987994194, -0.04240722581744194, -0.03647460788488388, -0.02658691257238388, -0.01691894419491291, -0.009448242373764515, 0.0006591796409338713, 0.010107421316206455, 0.01801757700741291, 0.02768554538488388, 0.03559570387005806, 0.04328612983226776, 0.04526367038488388, 0.04790038987994194, 0.04833984375, 0.0472412109375, 0.04350585862994194, 0.03911132737994194, 0.03120117075741291, 0.02482910081744194, 0.01406249962747097, 0.007250976283103228, -0.002636718563735485, -0.011206054128706455, -0.02109374850988388, -0.02878417819738388, -0.03801269456744194, -0.04482421651482582, -0.04877929389476776, -0.05075683444738388, -0.05251464620232582, -0.0494384765625, -0.04636230319738388, -0.03933105245232582, -0.03493652120232582, -0.02504882775247097, -0.01801757700741291, -0.007031249813735485, 0.0002197265566792339, 0.01054687425494194, 0.01823730394244194, 0.0263671875, 0.03559570387005806, 0.0406494140625, 0.0428466796875, 0.04570312425494194, 0.0472412109375, 0.04570312425494194, 0.04020996019244194, 0.0384521484375, 0.028564453125, 0.024169921875, 0.013623046688735485, 0.005932617001235485, -0.0054931640625, -0.012524413876235485, -0.01999511756002903, -0.02900390513241291, -0.03471679612994194, -0.04108886793255806, -0.0439453125, -0.04636230319738388, -0.04833984375, -0.04526367038488388, -0.0428466796875, -0.03911132737994194, -0.03361816331744194, -0.02592773362994194, -0.01625976525247097, -0.0087890625, 0.0008789062267169356, 0.011206054128706455, 0.01735839806497097, 0.02482910081744194, 0.03010253794491291, 0.0362548828125, 0.04086913913488388, 0.04262695088982582, 0.04218749701976776, 0.041748046875, 0.03647460788488388, 0.03339843824505806, 0.02592773362994194, 0.02197265625, 0.01296386681497097, 0.005932617001235485, -0.005053710658103228, -0.01186523400247097, -0.019775390625, -0.02482910081744194, -0.03076171875, -0.03779296949505806, -0.03933105245232582, -0.03977050632238388, -0.04240722581744194, -0.04020996019244194, -0.03757324069738388, -0.03427734225988388, -0.02878417819738388, -0.02109374850988388, -0.01669921912252903, -0.0076904296875, -0.0006591796409338713, 0.0076904296875, 0.013403319753706455, 0.02219238132238388, 0.02724609337747097, 0.02900390513241291, 0.03273925557732582, 0.03581542894244194, 0.0362548828125, 0.03427734225988388, 0.03054199181497097, 0.02790527231991291, 0.02197265625, 0.01823730394244194, 0.011206054128706455, 0.0041748047806322575, -0.004833984188735485, -0.0076904296875, -0.01494140550494194, -0.02131347544491291, -0.02790527231991291, -0.03208007663488388, -0.03273925557732582, -0.03515625, -0.03603515401482582, -0.03317870944738388, -0.03120117075741291, -0.02790527231991291, -0.02329101413488388, -0.01713867112994194, -0.012524413876235485, -0.0054931640625, 0.0004394531133584678, 0.00637206993997097, 0.010986328125, 0.01713867112994194, 0.02153320237994194, 0.02263183519244194, 0.02680663950741291, 0.028564453125, 0.02680663950741291, 0.02768554538488388, 0.02351074106991291, 0.02219238132238388, 0.01604003831744194, 0.013403319753706455, 0.0068115233443677425, 0.002636718563735485, -0.003076171735301614, -0.007031249813735485, -0.01406249962747097, -0.017578125, -0.02065429650247097, -0.02175292931497097, -0.02395019493997097, -0.02482910081744194, -0.02570800669491291, -0.02702636644244194, -0.0230712890625, -0.01999511756002903, -0.01801757700741291, -0.0120849609375, -0.0087890625, -0.0041748047806322575, -0.0010986328125, 0.0046142577193677425, 0.00856933556497097, 0.01164550706744194, 0.015600585378706455, 0.017578125, 0.01691894419491291, 0.019775390625, 0.01735839806497097, 0.01669921912252903, 0.013623046688735485, 0.014501952566206455, 0.01164550706744194, 0.009228515438735485, 0.004833984188735485, 0.0017578124534338713, -0.0024169920943677425, -0.005053710658103228, -0.009448242373764515, -0.01186523400247097, -0.0142822265625, -0.014721679501235485, -0.01604003831744194, -0.01516113243997097, -0.01625976525247097, -0.01494140550494194, -0.01494140550494194, -0.01296386681497097, -0.0120849609375, -0.009228515438735485, -0.0054931640625, -0.0028564452659338713, -0.0010986328125, 0.002636718563735485, 0.002636718563735485, 0.0057128905318677425, 0.00527343712747097, 0.00747070275247097, 0.006591796875, 0.008349609561264515 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.1667)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.002636718563735485, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.001538085867650807, -0.0017578124534338713, -0.0017578124534338713, -0.0017578124534338713, 0.0006591796409338713, -0.0002197265566792339, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0006591796409338713, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.0024169920943677425, -0.001538085867650807, -0.0010986328125, -0.0028564452659338713, -0.0024169920943677425, -0.0013183592818677425, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.001538085867650807, -0.0004394531133584678, -0.001538085867650807, -0.0006591796409338713, 0.001538085867650807, -0.0010986328125, 0.0, -0.0006591796409338713, 0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.004833984188735485, -0.0041748047806322575, -0.0054931640625, -0.0068115233443677425, -0.0068115233443677425, -0.0076904296875, -0.009008788503706455, -0.0087890625, -0.008349609561264515, -0.007250976283103228, -0.005053710658103228, -0.0046142577193677425, -0.003735351376235485, -0.0024169920943677425, 0.0002197265566792339, 0.0010986328125, 0.00527343712747097, 0.005932617001235485, 0.0054931640625, 0.0076904296875, 0.008349609561264515, 0.0098876953125, 0.010327148251235485, 0.0098876953125, 0.00856933556497097, 0.009228515438735485, 0.006591796875, 0.0054931640625, 0.002197265625, -0.0006591796409338713, -0.0028564452659338713, -0.004833984188735485, -0.006591796875, -0.0098876953125, -0.012304686941206455, -0.015380859375, -0.017578125, -0.01911620981991291, -0.01845703087747097, -0.01604003831744194, -0.01713867112994194, -0.01625976525247097, -0.01318359375, -0.01076660118997097, -0.008349609561264515, -0.0032958984375, -0.0010986328125, 0.0017578124534338713, 0.0076904296875, 0.01076660118997097, 0.013403319753706455, 0.015380859375, 0.01823730394244194, 0.019775390625, 0.01889648474752903, 0.01889648474752903, 0.0186767578125, 0.01582031138241291, 0.013403319753706455, 0.010107421316206455, 0.00637206993997097, 0.001977538922801614, -0.003735351376235485, -0.008349609561264515, -0.01296386681497097, -0.01779785193502903, -0.01889648474752903, -0.02351074106991291, -0.02614746056497097, -0.028564453125, -0.0274658203125, -0.02592773362994194, -0.02614746056497097, -0.02504882775247097, -0.01911620981991291, -0.01582031138241291, -0.010107421316206455, -0.0041748047806322575, 0.0006591796409338713, 0.004833984188735485, 0.010107421316206455, 0.01582031138241291, 0.0208740234375, 0.0252685546875, 0.02812499925494194, 0.02944335900247097, 0.02834472618997097, 0.02790527231991291, 0.0263671875, 0.02438964694738388, 0.01933593675494194, 0.014501952566206455, 0.010107421316206455, 0.005053710658103228, -0.003076171735301614, -0.0098876953125, -0.01713867112994194, -0.02131347544491291, -0.0263671875, -0.03076171875, -0.03317870944738388, -0.03471679612994194, -0.03647460788488388, -0.03493652120232582, -0.03229980543255806, -0.03164062276482582, -0.02460937388241291, -0.01999511756002903, -0.01406249962747097, -0.0076904296875, 0.0013183592818677425, 0.008349609561264515, 0.0142822265625, 0.02153320237994194, 0.02768554538488388, 0.03098144382238388, 0.03361816331744194, 0.03889160230755806, 0.03647460788488388, 0.03427734225988388, 0.0318603515625, 0.02944335900247097, 0.02438964694738388, 0.01779785193502903, 0.01274413987994194, 0.005053710658103228, -0.004833984188735485, -0.011425781063735485, -0.01779785193502903, -0.02395019493997097, -0.032958984375, -0.03691406175494194, -0.03867187350988388, -0.04086913913488388, -0.04350585862994194, -0.041748046875, -0.03889160230755806, -0.03449707105755806, -0.02922363206744194, -0.02263183519244194, -0.0142822265625, -0.00966796837747097, 0.0004394531133584678, 0.0087890625, 0.01713867112994194, 0.024169921875, 0.02988281100988388, 0.03669433668255806, 0.0384521484375, 0.041748046875, 0.04328612983226776, 0.03999023512005806, 0.03867187350988388, 0.03471679612994194, 0.02812499925494194, 0.02197265625, 0.013403319753706455, 0.0068115233443677425, -0.002197265625, -0.01186523400247097, -0.02021484263241291, -0.02834472618997097, -0.03581542894244194, -0.03911132737994194, -0.04460449144244194, -0.04746093600988388, -0.04812011495232582, -0.04833984375, -0.04350585862994194, -0.03867187350988388, -0.03208007663488388, -0.02592773362994194, -0.01735839806497097, -0.007031249813735485, 0.001538085867650807, 0.009228515438735485, 0.01911620981991291, 0.02834472618997097, 0.03229980543255806, 0.03911132737994194, 0.046142578125, 0.04680175706744194, 0.04658202826976776, 0.04482421651482582, 0.04262695088982582, 0.03999023512005806, 0.03142089769244194, 0.02241210825741291, 0.014721679501235485, 0.0068115233443677425, -0.002197265625, -0.01274413987994194, -0.02263183519244194, -0.03120117075741291, -0.037353515625, -0.041748046875, -0.0494384765625, -0.05031738057732582, -0.05185546725988388, -0.05009765550494194, -0.04592284932732582, -0.04130859300494194, -0.03559570387005806, -0.02680663950741291, -0.017578125, -0.00747070275247097, 0.001538085867650807, 0.010986328125, 0.02043456956744194, 0.02658691257238388, 0.0340576171875, 0.04086913913488388, 0.04372558370232582, 0.04746093600988388, 0.04812011495232582, 0.04636230319738388, 0.04328612983226776, 0.037353515625, 0.03142089769244194, 0.02351074106991291, 0.014721679501235485, 0.007250976283103228, -0.0032958984375, -0.01296386681497097, -0.02241210825741291, -0.03339843824505806, -0.04020996019244194, -0.0450439453125, -0.050537109375, -0.05075683444738388, -0.05339355394244194, -0.05009765550494194, -0.04658202826976776, -0.041748046875, -0.03427734225988388, -0.02922363206744194, -0.01845703087747097, -0.009448242373764515, -0.0006591796409338713, 0.010327148251235485, 0.02043456956744194, 0.02790527231991291, 0.03449707105755806, 0.04130859300494194, 0.04702148213982582, 0.04855956882238388, 0.04702148213982582, 0.04636230319738388, 0.04350585862994194, 0.03889160230755806, 0.03076171875, 0.02482910081744194, 0.014501952566206455, 0.0068115233443677425, -0.0032958984375, -0.01318359375, -0.02241210825741291, -0.03032226487994194, -0.03669433668255806, -0.04438476264476776, -0.04768066108226776, -0.04921874776482582, -0.04899902269244194, -0.04877929389476776, -0.04658202826976776, -0.04108886793255806, -0.03427734225988388, -0.02658691257238388, -0.019775390625, -0.007250976283103228, 0.0013183592818677425, 0.0098876953125, 0.019775390625, 0.02790527231991291, 0.0340576171875, 0.03955078125, 0.04350585862994194, 0.04680175706744194, 0.04548339545726776, 0.04592284932732582, 0.04130859300494194, 0.037353515625, 0.02900390513241291, 0.0230712890625, 0.014721679501235485, 0.0057128905318677425, -0.003076171735301614, -0.012304686941206455, -0.019775390625, -0.02900390513241291, -0.03647460788488388, -0.04196777194738388, -0.0450439453125, -0.04702148213982582, -0.04636230319738388, -0.04658202826976776, -0.04438476264476776, -0.03691406175494194, -0.0318603515625, -0.02570800669491291, -0.0164794921875, -0.008129882626235485, 0.002197265625, 0.010327148251235485, 0.01801757700741291, 0.02592773362994194, 0.03317870944738388, 0.0362548828125, 0.03889160230755806, 0.041748046875, 0.04086913913488388, 0.03999023512005806, 0.03889160230755806, 0.03471679612994194, 0.0263671875, 0.02043456956744194, 0.01318359375, 0.0057128905318677425, -0.003955077845603228, -0.012524413876235485, -0.01999511756002903, -0.02592773362994194, -0.032958984375, -0.03581542894244194, -0.04020996019244194, -0.04130859300494194, -0.04130859300494194, -0.04020996019244194, -0.03867187350988388, -0.03383788838982582, -0.02790527231991291, -0.02043456956744194, -0.013403319753706455, -0.00856933556497097, 0.0006591796409338713, 0.007250976283103228, 0.01494140550494194, 0.02285156212747097, 0.0252685546875, 0.03010253794491291, 0.03361816331744194, 0.03669433668255806, 0.0362548828125, 0.0340576171875, 0.03273925557732582, 0.0274658203125, 0.0230712890625, 0.01823730394244194, 0.010107421316206455, 0.0035156249068677425, -0.0024169920943677425, -0.00856933556497097, -0.01494140550494194, -0.02021484263241291, -0.02812499925494194, -0.0318603515625, -0.03339843824505806, -0.03449707105755806, -0.03515625, -0.03383788838982582, -0.0296630859375, -0.0296630859375, -0.02263183519244194, -0.01582031138241291, -0.012304686941206455, -0.007250976283103228, -0.0002197265566792339, 0.0068115233443677425, 0.01054687425494194, 0.01625976525247097, 0.02109374850988388, 0.02504882775247097, 0.02614746056497097, 0.02724609337747097, 0.02790527231991291, 0.0274658203125, 0.0252685546875, 0.02197265625, 0.015600585378706455, 0.011425781063735485, 0.0076904296875, 0.001538085867650807, -0.0032958984375, -0.00856933556497097, -0.01274413987994194, -0.01406249962747097, -0.01911620981991291, -0.02241210825741291, -0.02351074106991291, -0.02570800669491291, -0.02680663950741291, -0.0252685546875, -0.02329101413488388, -0.02175292931497097, -0.01779785193502903, -0.01384277269244194, -0.008349609561264515, -0.003955077845603228, -0.0024169920943677425, 0.0024169920943677425, 0.007031249813735485, 0.010986328125, 0.0142822265625, 0.01604003831744194, 0.01516113243997097, 0.01801757700741291, 0.01801757700741291, 0.01669921912252903, 0.014721679501235485, 0.01186523400247097, 0.0120849609375, 0.00747070275247097, 0.0041748047806322575, 0.001538085867650807, -0.0028564452659338713, -0.00527343712747097, -0.010107421316206455, -0.01054687425494194, -0.01318359375, -0.014501952566206455, -0.01582031138241291, -0.01582031138241291, -0.014501952566206455, -0.01384277269244194, -0.01494140550494194, -0.01384277269244194, -0.010327148251235485, -0.00747070275247097, -0.007250976283103228, -0.003735351376235485, -0.0017578124534338713, 0.0013183592818677425, 0.003076171735301614, 0.003076171735301614, 0.0057128905318677425, 0.008349609561264515, 0.007910155691206455, 0.009008788503706455 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.2222)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.001538085867650807, -0.0028564452659338713, -0.0041748047806322575, -0.001538085867650807, -0.002197265625, -0.0004394531133584678, -0.0002197265566792339, -0.001977538922801614, -0.0017578124534338713, -0.002636718563735485, -0.0008789062267169356, 0.0002197265566792339, -0.0004394531133584678, -0.0017578124534338713, -0.0013183592818677425, -0.0017578124534338713, -0.0024169920943677425, -0.0008789062267169356, -0.0010986328125, -0.002197265625, -0.002197265625, -0.0028564452659338713, -0.003076171735301614, -0.003076171735301614, -0.0010986328125, -0.0013183592818677425, -0.0024169920943677425, -0.0013183592818677425, -0.0013183592818677425, -0.0002197265566792339, -0.001538085867650807, -0.0008789062267169356, -0.0010986328125, -0.0008789062267169356, -0.0004394531133584678, -0.0008789062267169356, 0.0004394531133584678, 0.0010986328125, -0.0008789062267169356, -0.0013183592818677425, -0.0010986328125, -0.002636718563735485, -0.004833984188735485, -0.00527343712747097, -0.005932617001235485, -0.0046142577193677425, -0.008129882626235485, -0.006591796875, -0.008129882626235485, -0.0087890625, -0.008349609561264515, -0.0076904296875, -0.006591796875, -0.00439453125, -0.0046142577193677425, -0.0028564452659338713, -0.002197265625, -0.0004394531133584678, 0.0008789062267169356, 0.0057128905318677425, 0.0068115233443677425, 0.0087890625, 0.007250976283103228, 0.009228515438735485, 0.00966796837747097, 0.0098876953125, 0.009448242373764515, 0.0076904296875, 0.005932617001235485, 0.006591796875, 0.0017578124534338713, 0.0002197265566792339, -0.0013183592818677425, -0.0041748047806322575, -0.00856933556497097, -0.01076660118997097, -0.01406249962747097, -0.015380859375, -0.01713867112994194, -0.01582031138241291, -0.01779785193502903, -0.01713867112994194, -0.017578125, -0.015600585378706455, -0.013403319753706455, -0.010107421316206455, -0.009448242373764515, -0.003076171735301614, -0.0013183592818677425, 0.0017578124534338713, 0.007031249813735485, 0.009228515438735485, 0.01186523400247097, 0.01604003831744194, 0.017578125, 0.019775390625, 0.01933593675494194, 0.019775390625, 0.01823730394244194, 0.01582031138241291, 0.01296386681497097, 0.010327148251235485, 0.004833984188735485, 0.0010986328125, -0.004833984188735485, -0.0054931640625, -0.010327148251235485, -0.01604003831744194, -0.02021484263241291, -0.02285156212747097, -0.02548827975988388, -0.02790527231991291, -0.03120117075741291, -0.028564453125, -0.02460937388241291, -0.02219238132238388, -0.019775390625, -0.01516113243997097, -0.00966796837747097, -0.007031249813735485, 0.0002197265566792339, 0.0068115233443677425, 0.011425781063735485, 0.01516113243997097, 0.02065429650247097, 0.0252685546875, 0.028564453125, 0.02900390513241291, 0.02834472618997097, 0.02812499925494194, 0.02614746056497097, 0.0230712890625, 0.02021484263241291, 0.0164794921875, 0.0098876953125, 0.00439453125, -0.004833984188735485, -0.0098876953125, -0.01516113243997097, -0.02175292931497097, -0.02658691257238388, -0.03032226487994194, -0.03339843824505806, -0.03691406175494194, -0.03691406175494194, -0.03383788838982582, -0.032958984375, -0.02878417819738388, -0.02548827975988388, -0.01933593675494194, -0.013403319753706455, -0.005932617001235485, 0.0004394531133584678, 0.0068115233443677425, 0.01494140550494194, 0.01999511756002903, 0.02702636644244194, 0.03317870944738388, 0.03339843824505806, 0.03581542894244194, 0.03779296949505806, 0.03647460788488388, 0.03076171875, 0.03032226487994194, 0.0252685546875, 0.01779785193502903, 0.011425781063735485, 0.0054931640625, -0.0032958984375, -0.01076660118997097, -0.01955566368997097, -0.02570800669491291, -0.032958984375, -0.03603515401482582, -0.0406494140625, -0.04240722581744194, -0.04152831807732582, -0.04020996019244194, -0.03889160230755806, -0.03449707105755806, -0.03098144382238388, -0.02285156212747097, -0.01625976525247097, -0.0076904296875, -0.0002197265566792339, 0.009008788503706455, 0.017578125, 0.02614746056497097, 0.03076171875, 0.03427734225988388, 0.03999023512005806, 0.04152831807732582, 0.04196777194738388, 0.0428466796875, 0.03889160230755806, 0.03273925557732582, 0.02944335900247097, 0.02109374850988388, 0.01296386681497097, 0.0032958984375, -0.0035156249068677425, -0.011206054128706455, -0.02109374850988388, -0.02900390513241291, -0.03691406175494194, -0.03999023512005806, -0.04570312425494194, -0.04746093600988388, -0.04921874776482582, -0.04702148213982582, -0.04328612983226776, -0.03977050632238388, -0.03361816331744194, -0.02395019493997097, -0.01845703087747097, -0.009448242373764515, -0.0004394531133584678, 0.011206054128706455, 0.01999511756002903, 0.02724609337747097, 0.03383788838982582, 0.04020996019244194, 0.04240722581744194, 0.04636230319738388, 0.04702148213982582, 0.046142578125, 0.04218749701976776, 0.0362548828125, 0.02922363206744194, 0.02460937388241291, 0.01406249962747097, 0.004833984188735485, -0.006152343470603228, -0.012304686941206455, -0.02197265625, -0.03076171875, -0.03911132737994194, -0.04350585862994194, -0.04833984375, -0.05229492112994194, -0.05229492112994194, -0.05119628831744194, -0.04921874776482582, -0.04152831807732582, -0.03647460788488388, -0.02900390513241291, -0.01801757700741291, -0.009448242373764515, 0.0008789062267169356, 0.01076660118997097, 0.01801757700741291, 0.0296630859375, 0.03713378682732582, 0.04020996019244194, 0.04548339545726776, 0.04965820163488388, 0.04812011495232582, 0.04965820163488388, 0.04438476264476776, 0.04042968526482582, 0.03208007663488388, 0.02438964694738388, 0.01516113243997097, 0.00637206993997097, -0.00637206993997097, -0.01406249962747097, -0.02219238132238388, -0.03098144382238388, -0.03955078125, -0.04570312425494194, -0.0494384765625, -0.0494384765625, -0.05097655951976776, -0.050537109375, -0.04768066108226776, -0.03933105245232582, -0.03493652120232582, -0.02900390513241291, -0.01911620981991291, -0.011206054128706455, 0.0004394531133584678, 0.01054687425494194, 0.01889648474752903, 0.02922363206744194, 0.03427734225988388, 0.04108886793255806, 0.04570312425494194, 0.04855956882238388, 0.0494384765625, 0.04855956882238388, 0.0450439453125, 0.03955078125, 0.03032226487994194, 0.024169921875, 0.01494140550494194, 0.00637206993997097, -0.003735351376235485, -0.01186523400247097, -0.02175292931497097, -0.03054199181497097, -0.03669433668255806, -0.04306640475988388, -0.04702148213982582, -0.05185546725988388, -0.05317382514476776, -0.0494384765625, -0.04526367038488388, -0.0406494140625, -0.03471679612994194, -0.02768554538488388, -0.01801757700741291, -0.009228515438735485, -0.0002197265566792339, 0.010107421316206455, 0.01955566368997097, 0.02944335900247097, 0.03361816331744194, 0.03757324069738388, 0.041748046875, 0.04548339545726776, 0.04833984375, 0.04570312425494194, 0.04240722581744194, 0.03823241963982582, 0.02922363206744194, 0.0208740234375, 0.01296386681497097, 0.006591796875, -0.0041748047806322575, -0.012524413876235485, -0.02219238132238388, -0.02790527231991291, -0.03427734225988388, -0.04130859300494194, -0.04482421651482582, -0.04877929389476776, -0.04899902269244194, -0.04680175706744194, -0.0450439453125, -0.04152831807732582, -0.032958984375, -0.02482910081744194, -0.0164794921875, -0.008349609561264515, 0.0010986328125, 0.009448242373764515, 0.017578125, 0.02329101413488388, 0.03120117075741291, 0.03669433668255806, 0.03823241963982582, 0.03911132737994194, 0.03977050632238388, 0.03955078125, 0.03713378682732582, 0.0340576171875, 0.02614746056497097, 0.0208740234375, 0.0142822265625, 0.00439453125, -0.0028564452659338713, -0.012304686941206455, -0.02021484263241291, -0.02460937388241291, -0.03208007663488388, -0.037353515625, -0.04130859300494194, -0.03999023512005806, -0.04196777194738388, -0.04042968526482582, -0.037353515625, -0.03273925557732582, -0.02790527231991291, -0.02263183519244194, -0.01516113243997097, -0.00637206993997097, -0.0002197265566792339, 0.00527343712747097, 0.01406249962747097, 0.02219238132238388, 0.02790527231991291, 0.03317870944738388, 0.03581542894244194, 0.0362548828125, 0.03537597507238388, 0.03603515401482582, 0.03142089769244194, 0.0263671875, 0.02241210825741291, 0.01691894419491291, 0.011206054128706455, 0.006152343470603228, -0.0035156249068677425, -0.011206054128706455, -0.01713867112994194, -0.02153320237994194, -0.02504882775247097, -0.03076171875, -0.03339843824505806, -0.03383788838982582, -0.03713378682732582, -0.03427734225988388, -0.03098144382238388, -0.03054199181497097, -0.02329101413488388, -0.01625976525247097, -0.012524413876235485, -0.0068115233443677425, -0.0013183592818677425, 0.005932617001235485, 0.0120849609375, 0.01669921912252903, 0.01999511756002903, 0.02395019493997097, 0.02504882775247097, 0.0274658203125, 0.02878417819738388, 0.02724609337747097, 0.02482910081744194, 0.02175292931497097, 0.01516113243997097, 0.01274413987994194, 0.007910155691206455, 0.002197265625, -0.003076171735301614, -0.0054931640625, -0.012304686941206455, -0.015600585378706455, -0.019775390625, -0.0230712890625, -0.02438964694738388, -0.02768554538488388, -0.02680663950741291, -0.02570800669491291, -0.02285156212747097, -0.01999511756002903, -0.017578125, -0.014501952566206455, -0.00966796837747097, -0.00527343712747097, -0.0013183592818677425, 0.001977538922801614, 0.008349609561264515, 0.01076660118997097, 0.012304686941206455, 0.01669921912252903, 0.01823730394244194, 0.01801757700741291, 0.01713867112994194, 0.01713867112994194, 0.01604003831744194, 0.014721679501235485, 0.00856933556497097, 0.009008788503706455, 0.0054931640625, 0.003076171735301614, -0.001538085867650807, -0.007031249813735485, -0.0087890625, -0.01054687425494194, -0.013403319753706455, -0.01625976525247097, -0.01779785193502903, -0.01735839806497097, -0.01625976525247097, -0.015380859375, -0.014721679501235485, -0.012524413876235485, -0.01186523400247097, -0.009448242373764515, -0.006591796875, -0.00439453125, -0.0006591796409338713, 0.0002197265566792339, 0.0028564452659338713, 0.0041748047806322575, 0.00637206993997097, 0.0068115233443677425, 0.007031249813735485, 0.008129882626235485 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.2778)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.002197265625, -0.001977538922801614, -0.0002197265566792339, -0.0004394531133584678, -0.002197265625, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, 0.0, -0.0010986328125, -0.0008789062267169356, 0.0, -0.0006591796409338713, -0.002197265625, -0.002636718563735485, -0.001538085867650807, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.0024169920943677425, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.0008789062267169356, -0.002197265625, -0.0008789062267169356, -0.0028564452659338713, -0.0024169920943677425, -0.0004394531133584678, -0.0002197265566792339, 0.0002197265566792339, -0.001977538922801614, -0.0006591796409338713, -0.0008789062267169356, -0.001977538922801614, -0.0004394531133584678, 0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.001538085867650807, -0.0035156249068677425, -0.00439453125, -0.005053710658103228, -0.0046142577193677425, -0.006591796875, -0.0057128905318677425, -0.0068115233443677425, -0.0076904296875, -0.008129882626235485, -0.008129882626235485, -0.007910155691206455, -0.007910155691206455, -0.005053710658103228, -0.0041748047806322575, -0.003076171735301614, -0.0004394531133584678, 0.001538085867650807, 0.0035156249068677425, 0.004833984188735485, 0.005053710658103228, 0.00747070275247097, 0.009008788503706455, 0.009008788503706455, 0.00747070275247097, 0.010107421316206455, 0.008349609561264515, 0.0076904296875, 0.007031249813735485, 0.0054931640625, 0.0028564452659338713, 0.0006591796409338713, -0.002636718563735485, -0.0054931640625, -0.009008788503706455, -0.01054687425494194, -0.012304686941206455, -0.01494140550494194, -0.01669921912252903, -0.0164794921875, -0.01735839806497097, -0.017578125, -0.01801757700741291, -0.015380859375, -0.01384277269244194, -0.009448242373764515, -0.00856933556497097, -0.003076171735301614, -0.0002197265566792339, 0.0035156249068677425, 0.00856933556497097, 0.01054687425494194, 0.0142822265625, 0.01582031138241291, 0.01691894419491291, 0.019775390625, 0.02065429650247097, 0.01955566368997097, 0.01823730394244194, 0.01735839806497097, 0.01406249962747097, 0.010327148251235485, 0.005053710658103228, 0.0008789062267169356, -0.0028564452659338713, -0.006152343470603228, -0.012524413876235485, -0.014501952566206455, -0.02131347544491291, -0.02241210825741291, -0.02504882775247097, -0.02592773362994194, -0.02790527231991291, -0.02658691257238388, -0.0252685546875, -0.02395019493997097, -0.01933593675494194, -0.01604003831744194, -0.011425781063735485, -0.00439453125, 0.0, 0.0054931640625, 0.01164550706744194, 0.01691894419491291, 0.02131347544491291, 0.02395019493997097, 0.0263671875, 0.02922363206744194, 0.02878417819738388, 0.02944335900247097, 0.02548827975988388, 0.02285156212747097, 0.01823730394244194, 0.01582031138241291, 0.009008788503706455, 0.001977538922801614, -0.005053710658103228, -0.0098876953125, -0.0164794921875, -0.02065429650247097, -0.02702636644244194, -0.02900390513241291, -0.0340576171875, -0.03449707105755806, -0.03669433668255806, -0.03493652120232582, -0.03449707105755806, -0.03032226487994194, -0.02482910081744194, -0.01999511756002903, -0.014501952566206455, -0.007250976283103228, 0.002636718563735485, 0.0098876953125, 0.015380859375, 0.0186767578125, 0.02548827975988388, 0.03164062276482582, 0.03581542894244194, 0.03603515401482582, 0.0362548828125, 0.03713378682732582, 0.03229980543255806, 0.02878417819738388, 0.02460937388241291, 0.01845703087747097, 0.012524413876235485, 0.00527343712747097, -0.003735351376235485, -0.01054687425494194, -0.01801757700741291, -0.02504882775247097, -0.03251953050494194, -0.03559570387005806, -0.03955078125, -0.04196777194738388, -0.04196777194738388, -0.04020996019244194, -0.03955078125, -0.03515625, -0.03054199181497097, -0.02241210825741291, -0.01516113243997097, -0.0087890625, -0.0002197265566792339, 0.00966796837747097, 0.0164794921875, 0.02504882775247097, 0.03142089769244194, 0.03801269456744194, 0.03889160230755806, 0.04438476264476776, 0.04196777194738388, 0.04218749701976776, 0.03955078125, 0.03515625, 0.02812499925494194, 0.019775390625, 0.015600585378706455, 0.00637206993997097, -0.0032958984375, -0.014501952566206455, -0.02197265625, -0.02680663950741291, -0.03581542894244194, -0.04152831807732582, -0.0439453125, -0.04570312425494194, -0.04855956882238388, -0.046142578125, -0.04328612983226776, -0.03801269456744194, -0.03208007663488388, -0.02614746056497097, -0.01911620981991291, -0.007910155691206455, 0.0006591796409338713, 0.010327148251235485, 0.017578125, 0.02702636644244194, 0.03603515401482582, 0.03955078125, 0.04438476264476776, 0.04702148213982582, 0.04790038987994194, 0.04636230319738388, 0.0428466796875, 0.04020996019244194, 0.03098144382238388, 0.02241210825741291, 0.014721679501235485, 0.006152343470603228, -0.004833984188735485, -0.012524413876235485, -0.02263183519244194, -0.03076171875, -0.0384521484375, -0.04218749701976776, -0.046142578125, -0.05009765550494194, -0.05251464620232582, -0.05031738057732582, -0.04746093600988388, -0.04020996019244194, -0.03361816331744194, -0.02768554538488388, -0.01845703087747097, -0.0076904296875, 0.0017578124534338713, 0.011206054128706455, 0.02153320237994194, 0.02878417819738388, 0.0362548828125, 0.04108886793255806, 0.0450439453125, 0.04921874776482582, 0.04921874776482582, 0.04790038987994194, 0.04416503757238388, 0.03955078125, 0.03208007663488388, 0.02219238132238388, 0.015380859375, 0.00747070275247097, -0.0032958984375, -0.011206054128706455, -0.02285156212747097, -0.0318603515625, -0.03757324069738388, -0.04482421651482582, -0.05031738057732582, -0.050537109375, -0.05251464620232582, -0.0494384765625, -0.04790038987994194, -0.04152831807732582, -0.03537597507238388, -0.02922363206744194, -0.01911620981991291, -0.01054687425494194, 0.0013183592818677425, 0.0098876953125, 0.02021484263241291, 0.02878417819738388, 0.03427734225988388, 0.04130859300494194, 0.04482421651482582, 0.04855956882238388, 0.050537109375, 0.04768066108226776, 0.0428466796875, 0.03999023512005806, 0.03229980543255806, 0.02548827975988388, 0.01604003831744194, 0.007250976283103228, -0.00439453125, -0.01296386681497097, -0.0208740234375, -0.03076171875, -0.03889160230755806, -0.04416503757238388, -0.04768066108226776, -0.04987792670726776, -0.05097655951976776, -0.05009765550494194, -0.04746093600988388, -0.04152831807732582, -0.03449707105755806, -0.02570800669491291, -0.017578125, -0.007910155691206455, 0.0013183592818677425, 0.010107421316206455, 0.01955566368997097, 0.02790527231991291, 0.03383788838982582, 0.04130859300494194, 0.04306640475988388, 0.046142578125, 0.04702148213982582, 0.04570312425494194, 0.04218749701976776, 0.03669433668255806, 0.02988281100988388, 0.024169921875, 0.01516113243997097, 0.007031249813735485, -0.003955077845603228, -0.01318359375, -0.02131347544491291, -0.02834472618997097, -0.03515625, -0.04152831807732582, -0.04658202826976776, -0.0472412109375, -0.04768066108226776, -0.04548339545726776, -0.04196777194738388, -0.03999023512005806, -0.032958984375, -0.0252685546875, -0.01713867112994194, -0.0098876953125, -0.0008789062267169356, 0.010327148251235485, 0.017578125, 0.02482910081744194, 0.03032226487994194, 0.03471679612994194, 0.04086913913488388, 0.04240722581744194, 0.04152831807732582, 0.04108886793255806, 0.03823241963982582, 0.03493652120232582, 0.02680663950741291, 0.02021484263241291, 0.01406249962747097, 0.003955077845603228, -0.003076171735301614, -0.01186523400247097, -0.01911620981991291, -0.02438964694738388, -0.03339843824505806, -0.03647460788488388, -0.0384521484375, -0.04130859300494194, -0.04262695088982582, -0.0384521484375, -0.03801269456744194, -0.03273925557732582, -0.02768554538488388, -0.0208740234375, -0.013623046688735485, -0.008129882626235485, -0.0010986328125, 0.007910155691206455, 0.015380859375, 0.0208740234375, 0.02658691257238388, 0.03208007663488388, 0.03251953050494194, 0.03581542894244194, 0.03515625, 0.03559570387005806, 0.03164062276482582, 0.02658691257238388, 0.02285156212747097, 0.01735839806497097, 0.01274413987994194, 0.00527343712747097, -0.0046142577193677425, -0.010107421316206455, -0.01516113243997097, -0.02219238132238388, -0.0274658203125, -0.03120117075741291, -0.03317870944738388, -0.03361816331744194, -0.03537597507238388, -0.03427734225988388, -0.02900390513241291, -0.02768554538488388, -0.02351074106991291, -0.01669921912252903, -0.012304686941206455, -0.005053710658103228, 0.0004394531133584678, 0.004833984188735485, 0.0120849609375, 0.01691894419491291, 0.019775390625, 0.02175292931497097, 0.02570800669491291, 0.028564453125, 0.028564453125, 0.0263671875, 0.0230712890625, 0.02043456956744194, 0.015380859375, 0.012304686941206455, 0.0076904296875, 0.001538085867650807, -0.0028564452659338713, -0.0068115233443677425, -0.012524413876235485, -0.017578125, -0.02043456956744194, -0.02263183519244194, -0.02285156212747097, -0.0252685546875, -0.02570800669491291, -0.02482910081744194, -0.02438964694738388, -0.02197265625, -0.01911620981991291, -0.013623046688735485, -0.010107421316206455, -0.0046142577193677425, -0.0002197265566792339, 0.003955077845603228, 0.006591796875, 0.010327148251235485, 0.015600585378706455, 0.017578125, 0.01845703087747097, 0.01889648474752903, 0.01735839806497097, 0.01713867112994194, 0.015600585378706455, 0.015600585378706455, 0.0098876953125, 0.008349609561264515, 0.004833984188735485, 0.0013183592818677425, -0.0028564452659338713, -0.00637206993997097, -0.009448242373764515, -0.01076660118997097, -0.012524413876235485, -0.0142822265625, -0.015380859375, -0.01494140550494194, -0.01604003831744194, -0.01494140550494194, -0.01406249962747097, -0.013623046688735485, -0.010986328125, -0.008349609561264515, -0.007910155691206455, -0.003735351376235485, -0.0002197265566792339, 0.0028564452659338713, 0.003955077845603228, 0.004833984188735485, 0.0068115233443677425, 0.00637206993997097, 0.0076904296875, 0.0087890625 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.3333)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.0004394531133584678, -0.0006591796409338713, -0.0013183592818677425, 0.0, -0.0004394531133584678, -0.0006591796409338713, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.0004394531133584678, -0.0010986328125, -0.0010986328125, -0.001977538922801614, -0.0028564452659338713, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0017578124534338713, -0.002197265625, 0.0004394531133584678, -0.0002197265566792339, -0.0041748047806322575, -0.0008789062267169356, -0.0006591796409338713, -0.0002197265566792339, -0.0004394531133584678, -0.0002197265566792339, 0.0002197265566792339, -0.001538085867650807, 0.0, 0.0006591796409338713, -0.0002197265566792339, 0.001538085867650807, 0.0006591796409338713, 0.0010986328125, -0.0004394531133584678, 0.0, -0.0006591796409338713, -0.001538085867650807, -0.0046142577193677425, -0.0054931640625, -0.0041748047806322575, -0.0054931640625, -0.005053710658103228, -0.00747070275247097, -0.0076904296875, -0.009228515438735485, -0.0076904296875, -0.00527343712747097, -0.0068115233443677425, -0.005932617001235485, -0.0057128905318677425, -0.0032958984375, -0.002197265625, -0.0010986328125, -0.0006591796409338713, 0.003076171735301614, 0.00527343712747097, 0.0068115233443677425, 0.008129882626235485, 0.008129882626235485, 0.009448242373764515, 0.01076660118997097, 0.010986328125, 0.0098876953125, 0.009228515438735485, 0.008129882626235485, 0.00637206993997097, 0.003076171735301614, 0.002197265625, -0.001538085867650807, -0.00527343712747097, -0.007910155691206455, -0.010986328125, -0.011206054128706455, -0.014501952566206455, -0.0186767578125, -0.01713867112994194, -0.01669921912252903, -0.01801757700741291, -0.01779785193502903, -0.0164794921875, -0.01296386681497097, -0.010986328125, -0.00856933556497097, -0.0046142577193677425, -0.0006591796409338713, 0.003955077845603228, 0.007250976283103228, 0.011206054128706455, 0.012524413876235485, 0.015600585378706455, 0.01845703087747097, 0.02021484263241291, 0.02043456956744194, 0.01823730394244194, 0.01779785193502903, 0.01516113243997097, 0.01164550706744194, 0.00856933556497097, 0.0068115233443677425, 0.0017578124534338713, -0.0024169920943677425, -0.007250976283103228, -0.0120849609375, -0.01625976525247097, -0.019775390625, -0.02285156212747097, -0.02614746056497097, -0.02614746056497097, -0.02768554538488388, -0.02724609337747097, -0.02592773362994194, -0.02285156212747097, -0.02021484263241291, -0.014501952566206455, -0.01076660118997097, -0.0046142577193677425, 0.0002197265566792339, 0.00527343712747097, 0.012524413876235485, 0.01625976525247097, 0.02131347544491291, 0.02351074106991291, 0.02834472618997097, 0.03076171875, 0.02922363206744194, 0.02878417819738388, 0.02504882775247097, 0.024169921875, 0.01955566368997097, 0.01516113243997097, 0.009228515438735485, 0.0032958984375, -0.003735351376235485, -0.0098876953125, -0.01604003831744194, -0.02175292931497097, -0.02812499925494194, -0.03076171875, -0.03339843824505806, -0.03515625, -0.03669433668255806, -0.03713378682732582, -0.03515625, -0.0296630859375, -0.02570800669491291, -0.02065429650247097, -0.0142822265625, -0.007031249813735485, -0.0006591796409338713, 0.009228515438735485, 0.01494140550494194, 0.019775390625, 0.02680663950741291, 0.03120117075741291, 0.03361816331744194, 0.037353515625, 0.0362548828125, 0.03471679612994194, 0.03339843824505806, 0.0296630859375, 0.02395019493997097, 0.02043456956744194, 0.01296386681497097, 0.00527343712747097, -0.004833984188735485, -0.0120849609375, -0.01933593675494194, -0.0263671875, -0.03164062276482582, -0.03339843824505806, -0.0406494140625, -0.04152831807732582, -0.04086913913488388, -0.04196777194738388, -0.04020996019244194, -0.03669433668255806, -0.02900390513241291, -0.02065429650247097, -0.015600585378706455, -0.0076904296875, 0.0010986328125, 0.0098876953125, 0.01604003831744194, 0.02570800669491291, 0.03076171875, 0.03581542894244194, 0.03933105245232582, 0.04306640475988388, 0.04328612983226776, 0.04240722581744194, 0.03977050632238388, 0.0340576171875, 0.02878417819738388, 0.02285156212747097, 0.0142822265625, 0.0057128905318677425, -0.0041748047806322575, -0.01054687425494194, -0.019775390625, -0.02724609337747097, -0.03493652120232582, -0.04086913913488388, -0.04636230319738388, -0.04790038987994194, -0.04790038987994194, -0.04680175706744194, -0.04306640475988388, -0.03933105245232582, -0.03229980543255806, -0.024169921875, -0.01691894419491291, -0.007910155691206455, 0.0, 0.010327148251235485, 0.019775390625, 0.0274658203125, 0.03361816331744194, 0.04020996019244194, 0.04350585862994194, 0.04855956882238388, 0.04812011495232582, 0.04768066108226776, 0.04328612983226776, 0.0384521484375, 0.0318603515625, 0.02373046800494194, 0.014501952566206455, 0.005932617001235485, -0.004833984188735485, -0.0120849609375, -0.02329101413488388, -0.03076171875, -0.03713378682732582, -0.04526367038488388, -0.04812011495232582, -0.04790038987994194, -0.05229492112994194, -0.04965820163488388, -0.04680175706744194, -0.04020996019244194, -0.03515625, -0.02834472618997097, -0.01779785193502903, -0.009448242373764515, 0.002197265625, 0.00966796837747097, 0.01911620981991291, 0.02812499925494194, 0.03449707105755806, 0.04152831807732582, 0.04526367038488388, 0.04812011495232582, 0.04746093600988388, 0.0472412109375, 0.0450439453125, 0.04086913913488388, 0.03142089769244194, 0.024169921875, 0.01669921912252903, 0.006591796875, -0.004833984188735485, -0.01318359375, -0.024169921875, -0.03208007663488388, -0.03955078125, -0.0450439453125, -0.04965820163488388, -0.05207519233226776, -0.05361327901482582, -0.05075683444738388, -0.04702148213982582, -0.04152831807732582, -0.03537597507238388, -0.02548827975988388, -0.01933593675494194, -0.009008788503706455, 0.0, 0.0087890625, 0.02153320237994194, 0.02900390513241291, 0.03361816331744194, 0.04262695088982582, 0.04790038987994194, 0.05009765550494194, 0.04899902269244194, 0.04746093600988388, 0.04306640475988388, 0.03999023512005806, 0.03229980543255806, 0.02548827975988388, 0.01582031138241291, 0.0068115233443677425, -0.0024169920943677425, -0.013623046688735485, -0.02175292931497097, -0.0296630859375, -0.03801269456744194, -0.04306640475988388, -0.04636230319738388, -0.05141601338982582, -0.05207519233226776, -0.05075683444738388, -0.04570312425494194, -0.04218749701976776, -0.03515625, -0.02812499925494194, -0.01889648474752903, -0.006152343470603228, 0.0008789062267169356, 0.00966796837747097, 0.02043456956744194, 0.02812499925494194, 0.03581542894244194, 0.04152831807732582, 0.04372558370232582, 0.04746093600988388, 0.04680175706744194, 0.0439453125, 0.04240722581744194, 0.03779296949505806, 0.0296630859375, 0.02351074106991291, 0.01296386681497097, 0.00527343712747097, -0.003955077845603228, -0.0120849609375, -0.02241210825741291, -0.02922363206744194, -0.03691406175494194, -0.04020996019244194, -0.04416503757238388, -0.04768066108226776, -0.04790038987994194, -0.0450439453125, -0.04328612983226776, -0.03691406175494194, -0.03361816331744194, -0.02592773362994194, -0.015600585378706455, -0.007910155691206455, -0.001538085867650807, 0.009008788503706455, 0.01933593675494194, 0.02482910081744194, 0.03032226487994194, 0.03647460788488388, 0.03933105245232582, 0.04108886793255806, 0.04350585862994194, 0.04020996019244194, 0.03779296949505806, 0.03361816331744194, 0.02702636644244194, 0.01933593675494194, 0.01318359375, 0.0041748047806322575, -0.0032958984375, -0.010107421316206455, -0.01801757700741291, -0.02702636644244194, -0.032958984375, -0.03493652120232582, -0.04086913913488388, -0.04350585862994194, -0.041748046875, -0.04086913913488388, -0.03779296949505806, -0.03251953050494194, -0.02768554538488388, -0.02241210825741291, -0.015380859375, -0.007910155691206455, 0.0013183592818677425, 0.007910155691206455, 0.01274413987994194, 0.02175292931497097, 0.02504882775247097, 0.03120117075741291, 0.03251953050494194, 0.03581542894244194, 0.03537597507238388, 0.03471679612994194, 0.03054199181497097, 0.0274658203125, 0.02175292931497097, 0.01604003831744194, 0.010107421316206455, 0.005053710658103228, -0.00527343712747097, -0.0087890625, -0.015600585378706455, -0.02175292931497097, -0.0263671875, -0.03229980543255806, -0.03427734225988388, -0.03559570387005806, -0.03559570387005806, -0.03427734225988388, -0.03120117075741291, -0.02680663950741291, -0.02219238132238388, -0.01911620981991291, -0.01274413987994194, -0.005053710658103228, 0.001977538922801614, 0.0054931640625, 0.01186523400247097, 0.01669921912252903, 0.02131347544491291, 0.02373046800494194, 0.02724609337747097, 0.02878417819738388, 0.0263671875, 0.02548827975988388, 0.02460937388241291, 0.02197265625, 0.01669921912252903, 0.013623046688735485, 0.0076904296875, 0.0054931640625, -0.0024169920943677425, -0.0076904296875, -0.01318359375, -0.01691894419491291, -0.02131347544491291, -0.0263671875, -0.02548827975988388, -0.02504882775247097, -0.02438964694738388, -0.02395019493997097, -0.02329101413488388, -0.019775390625, -0.01691894419491291, -0.013623046688735485, -0.00966796837747097, -0.00439453125, -0.0010986328125, 0.003735351376235485, 0.0076904296875, 0.011425781063735485, 0.01186523400247097, 0.015600585378706455, 0.01779785193502903, 0.01845703087747097, 0.01669921912252903, 0.01669921912252903, 0.01494140550494194, 0.01296386681497097, 0.01164550706744194, 0.010107421316206455, 0.0028564452659338713, 0.001977538922801614, -0.002636718563735485, -0.005932617001235485, -0.009008788503706455, -0.0098876953125, -0.013623046688735485, -0.01406249962747097, -0.01625976525247097, -0.01516113243997097, -0.01779785193502903, -0.01494140550494194, -0.01318359375, -0.010986328125, -0.010986328125, -0.00856933556497097, -0.00747070275247097, -0.0041748047806322575, -0.001538085867650807, 0.001977538922801614, 0.0008789062267169356, 0.0046142577193677425, 0.006152343470603228, 0.005932617001235485, 0.006152343470603228, 0.007250976283103228 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.3889)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, 0.0002197265566792339, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.0017578124534338713, -0.0032958984375, 0.0002197265566792339, -0.0010986328125, -0.002197265625, -0.0017578124534338713, -0.0010986328125, -0.0013183592818677425, -0.0010986328125, -0.0008789062267169356, -0.001538085867650807, -0.0041748047806322575, -0.0017578124534338713, -0.0010986328125, -0.0024169920943677425, -0.002197265625, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.0006591796409338713, 0.0008789062267169356, 0.0004394531133584678, -0.0006591796409338713, 0.0008789062267169356, 0.0, -0.0006591796409338713, -0.0013183592818677425, -0.0024169920943677425, -0.0035156249068677425, -0.003735351376235485, -0.00527343712747097, -0.006152343470603228, -0.00527343712747097, -0.007031249813735485, -0.006591796875, -0.007031249813735485, -0.008129882626235485, -0.00856933556497097, -0.0076904296875, -0.006591796875, -0.004833984188735485, -0.003076171735301614, -0.0028564452659338713, -0.0002197265566792339, 0.001538085867650807, 0.0024169920943677425, 0.0041748047806322575, 0.006591796875, 0.008129882626235485, 0.007910155691206455, 0.010107421316206455, 0.011425781063735485, 0.00966796837747097, 0.009448242373764515, 0.009228515438735485, 0.0068115233443677425, 0.0035156249068677425, 0.0032958984375, -0.0006591796409338713, -0.003955077845603228, -0.004833984188735485, -0.00856933556497097, -0.011206054128706455, -0.01494140550494194, -0.017578125, -0.01801757700741291, -0.01691894419491291, -0.01691894419491291, -0.0186767578125, -0.01604003831744194, -0.01516113243997097, -0.013623046688735485, -0.01076660118997097, -0.009228515438735485, -0.0046142577193677425, -0.001538085867650807, 0.003955077845603228, 0.00637206993997097, 0.011425781063735485, 0.014501952566206455, 0.015380859375, 0.01713867112994194, 0.01911620981991291, 0.02021484263241291, 0.0186767578125, 0.01779785193502903, 0.01691894419491291, 0.01186523400247097, 0.009448242373764515, 0.006591796875, 0.0013183592818677425, -0.003076171735301614, -0.008349609561264515, -0.01296386681497097, -0.01801757700741291, -0.02109374850988388, -0.0230712890625, -0.02460937388241291, -0.02834472618997097, -0.02922363206744194, -0.0263671875, -0.0263671875, -0.02373046800494194, -0.01933593675494194, -0.01625976525247097, -0.0087890625, -0.0054931640625, -0.001977538922801614, 0.005053710658103228, 0.01186523400247097, 0.01669921912252903, 0.01845703087747097, 0.02548827975988388, 0.02592773362994194, 0.02790527231991291, 0.02922363206744194, 0.02834472618997097, 0.0263671875, 0.02438964694738388, 0.01999511756002903, 0.01494140550494194, 0.008129882626235485, 0.002197265625, -0.0041748047806322575, -0.010986328125, -0.01801757700741291, -0.02219238132238388, -0.02812499925494194, -0.03361816331744194, -0.03383788838982582, -0.03449707105755806, -0.03647460788488388, -0.03669433668255806, -0.03427734225988388, -0.02834472618997097, -0.0263671875, -0.019775390625, -0.01318359375, -0.0068115233443677425, 0.0010986328125, 0.0068115233443677425, 0.014501952566206455, 0.02153320237994194, 0.02592773362994194, 0.03120117075741291, 0.03273925557732582, 0.03471679612994194, 0.03559570387005806, 0.03669433668255806, 0.03120117075741291, 0.02922363206744194, 0.02373046800494194, 0.019775390625, 0.01318359375, 0.00439453125, -0.0035156249068677425, -0.011425781063735485, -0.01889648474752903, -0.02658691257238388, -0.03164062276482582, -0.03669433668255806, -0.04196777194738388, -0.0406494140625, -0.04152831807732582, -0.04152831807732582, -0.04042968526482582, -0.0362548828125, -0.02878417819738388, -0.02263183519244194, -0.0164794921875, -0.00856933556497097, -0.0008789062267169356, 0.008349609561264515, 0.01625976525247097, 0.02504882775247097, 0.03229980543255806, 0.03471679612994194, 0.04020996019244194, 0.04350585862994194, 0.04438476264476776, 0.041748046875, 0.03823241963982582, 0.03471679612994194, 0.02790527231991291, 0.02175292931497097, 0.01318359375, 0.007250976283103228, -0.002636718563735485, -0.01318359375, -0.02175292931497097, -0.0296630859375, -0.03581542894244194, -0.041748046875, -0.04592284932732582, -0.04768066108226776, -0.04768066108226776, -0.04746093600988388, -0.04350585862994194, -0.04086913913488388, -0.03383788838982582, -0.02460937388241291, -0.017578125, -0.007250976283103228, 0.0006591796409338713, 0.009448242373764515, 0.01889648474752903, 0.02790527231991291, 0.0318603515625, 0.03867187350988388, 0.0428466796875, 0.04680175706744194, 0.046142578125, 0.04570312425494194, 0.04196777194738388, 0.03801269456744194, 0.03076171875, 0.02548827975988388, 0.014721679501235485, 0.00747070275247097, -0.00439453125, -0.0142822265625, -0.0230712890625, -0.03054199181497097, -0.03603515401482582, -0.041748046875, -0.0472412109375, -0.04965820163488388, -0.05229492112994194, -0.0494384765625, -0.04548339545726776, -0.03977050632238388, -0.0340576171875, -0.02504882775247097, -0.017578125, -0.007910155691206455, 0.0008789062267169356, 0.009448242373764515, 0.02043456956744194, 0.02812499925494194, 0.0362548828125, 0.04328612983226776, 0.04548339545726776, 0.04768066108226776, 0.04965820163488388, 0.05009765550494194, 0.04460449144244194, 0.03867187350988388, 0.03317870944738388, 0.0263671875, 0.01604003831744194, 0.0076904296875, -0.0032958984375, -0.01164550706744194, -0.02285156212747097, -0.03076171875, -0.03823241963982582, -0.04416503757238388, -0.05009765550494194, -0.05031738057732582, -0.05075683444738388, -0.050537109375, -0.04702148213982582, -0.04240722581744194, -0.03647460788488388, -0.02790527231991291, -0.01955566368997097, -0.0087890625, 0.0004394531133584678, 0.011206054128706455, 0.02021484263241291, 0.02900390513241291, 0.03691406175494194, 0.04262695088982582, 0.04658202826976776, 0.04899902269244194, 0.04855956882238388, 0.04855956882238388, 0.0428466796875, 0.0384521484375, 0.03229980543255806, 0.02482910081744194, 0.013403319753706455, 0.00747070275247097, -0.001538085867650807, -0.01296386681497097, -0.02329101413488388, -0.03032226487994194, -0.037353515625, -0.04526367038488388, -0.04855956882238388, -0.05207519233226776, -0.052734375, -0.05097655951976776, -0.04570312425494194, -0.03977050632238388, -0.03449707105755806, -0.0263671875, -0.0164794921875, -0.008129882626235485, 0.001977538922801614, 0.01076660118997097, 0.019775390625, 0.02790527231991291, 0.0340576171875, 0.03999023512005806, 0.041748046875, 0.04658202826976776, 0.04702148213982582, 0.04416503757238388, 0.04130859300494194, 0.03537597507238388, 0.03208007663488388, 0.0252685546875, 0.01494140550494194, 0.0054931640625, -0.005053710658103228, -0.011206054128706455, -0.02241210825741291, -0.02834472618997097, -0.03383788838982582, -0.04152831807732582, -0.0439453125, -0.04768066108226776, -0.0450439453125, -0.04460449144244194, -0.04196777194738388, -0.037353515625, -0.03098144382238388, -0.02395019493997097, -0.015600585378706455, -0.008349609561264515, 0.0004394531133584678, 0.00856933556497097, 0.017578125, 0.02548827975988388, 0.03098144382238388, 0.03691406175494194, 0.0384521484375, 0.04130859300494194, 0.0406494140625, 0.04020996019244194, 0.0384521484375, 0.03339843824505806, 0.02702636644244194, 0.0208740234375, 0.01318359375, 0.00637206993997097, -0.003955077845603228, -0.010327148251235485, -0.01779785193502903, -0.02482910081744194, -0.03164062276482582, -0.0340576171875, -0.04130859300494194, -0.04240722581744194, -0.0406494140625, -0.041748046875, -0.03757324069738388, -0.03208007663488388, -0.0274658203125, -0.02219238132238388, -0.014721679501235485, -0.007031249813735485, -0.0013183592818677425, 0.009008788503706455, 0.014721679501235485, 0.02065429650247097, 0.0274658203125, 0.03076171875, 0.03493652120232582, 0.0340576171875, 0.03647460788488388, 0.03449707105755806, 0.03076171875, 0.028564453125, 0.02153320237994194, 0.017578125, 0.01076660118997097, 0.0041748047806322575, -0.0024169920943677425, -0.009228515438735485, -0.0164794921875, -0.02219238132238388, -0.0274658203125, -0.0296630859375, -0.03229980543255806, -0.03493652120232582, -0.03669433668255806, -0.0340576171875, -0.03010253794491291, -0.02878417819738388, -0.02329101413488388, -0.02043456956744194, -0.013623046688735485, -0.00637206993997097, -0.0010986328125, 0.003076171735301614, 0.01054687425494194, 0.01604003831744194, 0.0208740234375, 0.02395019493997097, 0.02614746056497097, 0.02834472618997097, 0.02812499925494194, 0.02812499925494194, 0.024169921875, 0.02197265625, 0.01779785193502903, 0.013403319753706455, 0.00856933556497097, 0.003076171735301614, -0.0017578124534338713, -0.0057128905318677425, -0.012524413876235485, -0.01735839806497097, -0.02043456956744194, -0.02285156212747097, -0.02460937388241291, -0.02724609337747097, -0.02658691257238388, -0.02504882775247097, -0.02175292931497097, -0.02131347544491291, -0.01955566368997097, -0.01406249962747097, -0.009008788503706455, -0.005932617001235485, -0.0004394531133584678, 0.0024169920943677425, 0.005932617001235485, 0.01054687425494194, 0.014501952566206455, 0.0164794921875, 0.01691894419491291, 0.015600585378706455, 0.01604003831744194, 0.01713867112994194, 0.01516113243997097, 0.01494140550494194, 0.0120849609375, 0.007031249813735485, 0.0046142577193677425, 0.001977538922801614, -0.001977538922801614, -0.0041748047806322575, -0.008129882626235485, -0.01054687425494194, -0.01406249962747097, -0.014501952566206455, -0.01625976525247097, -0.01779785193502903, -0.017578125, -0.01582031138241291, -0.01494140550494194, -0.01274413987994194, -0.010327148251235485, -0.01054687425494194, -0.00856933556497097, -0.003955077845603228, -0.001977538922801614, 0.0010986328125, 0.002636718563735485, 0.003735351376235485, 0.006152343470603228, 0.007250976283103228, 0.007250976283103228, 0.008349609561264515 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.4444)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.001538085867650807, -0.001977538922801614, -0.0028564452659338713, -0.002197265625, -0.0010986328125, -0.0004394531133584678, 0.0, -0.0010986328125, -0.0004394531133584678, 0.0008789062267169356, -0.0024169920943677425, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.0006591796409338713, -0.0010986328125, -0.0008789062267169356, -0.001977538922801614, 0.0, -0.0004394531133584678, -0.002197265625, -0.0008789062267169356, -0.001538085867650807, -0.0004394531133584678, 0.0004394531133584678, -0.0002197265566792339, -0.0002197265566792339, -0.002197265625, -0.001977538922801614, 0.0002197265566792339, -0.0002197265566792339, 0.0004394531133584678, 0.0006591796409338713, 0.0, -0.0004394531133584678, 0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, -0.0004394531133584678, -0.0017578124534338713, -0.002197265625, -0.0017578124534338713, -0.003735351376235485, -0.00439453125, -0.00637206993997097, -0.0076904296875, -0.00747070275247097, -0.0076904296875, -0.007031249813735485, -0.00747070275247097, -0.008129882626235485, -0.0068115233443677425, -0.006152343470603228, -0.00439453125, -0.0046142577193677425, -0.0032958984375, -0.0008789062267169356, 0.0010986328125, 0.002197265625, 0.0041748047806322575, 0.0057128905318677425, 0.007031249813735485, 0.008349609561264515, 0.009448242373764515, 0.00966796837747097, 0.009448242373764515, 0.0068115233443677425, 0.0087890625, 0.005932617001235485, 0.0057128905318677425, 0.003735351376235485, 0.0008789062267169356, -0.002197265625, -0.00637206993997097, -0.00856933556497097, -0.01054687425494194, -0.0120849609375, -0.01384277269244194, -0.01779785193502903, -0.0164794921875, -0.01779785193502903, -0.017578125, -0.01779785193502903, -0.01516113243997097, -0.01274413987994194, -0.01076660118997097, -0.007910155691206455, -0.004833984188735485, 0.0002197265566792339, 0.003076171735301614, 0.0076904296875, 0.011206054128706455, 0.013403319753706455, 0.01625976525247097, 0.01889648474752903, 0.019775390625, 0.01955566368997097, 0.01735839806497097, 0.01801757700741291, 0.01516113243997097, 0.013403319753706455, 0.010327148251235485, 0.005932617001235485, 0.0010986328125, -0.003955077845603228, -0.008349609561264515, -0.0120849609375, -0.014501952566206455, -0.02021484263241291, -0.02395019493997097, -0.02482910081744194, -0.02724609337747097, -0.02768554538488388, -0.02878417819738388, -0.02614746056497097, -0.02219238132238388, -0.019775390625, -0.01516113243997097, -0.01186523400247097, -0.00527343712747097, 0.0010986328125, 0.006152343470603228, 0.010327148251235485, 0.01604003831744194, 0.02065429650247097, 0.024169921875, 0.0274658203125, 0.02900390513241291, 0.02878417819738388, 0.02790527231991291, 0.02548827975988388, 0.02329101413488388, 0.02175292931497097, 0.01516113243997097, 0.010107421316206455, 0.004833984188735485, -0.0041748047806322575, -0.008349609561264515, -0.01494140550494194, -0.02131347544491291, -0.02922363206744194, -0.0318603515625, -0.03427734225988388, -0.0362548828125, -0.03537597507238388, -0.03669433668255806, -0.032958984375, -0.02944335900247097, -0.02548827975988388, -0.019775390625, -0.0142822265625, -0.006152343470603228, 0.0010986328125, 0.008349609561264515, 0.014721679501235485, 0.01999511756002903, 0.0252685546875, 0.0296630859375, 0.03427734225988388, 0.03449707105755806, 0.03603515401482582, 0.03713378682732582, 0.03273925557732582, 0.03098144382238388, 0.02395019493997097, 0.01933593675494194, 0.010986328125, 0.0035156249068677425, -0.003735351376235485, -0.0098876953125, -0.01999511756002903, -0.02482910081744194, -0.03142089769244194, -0.03713378682732582, -0.04240722581744194, -0.04262695088982582, -0.04240722581744194, -0.04108886793255806, -0.03911132737994194, -0.03603515401482582, -0.028564453125, -0.02153320237994194, -0.01779785193502903, -0.010107421316206455, -0.0002197265566792339, 0.00856933556497097, 0.01801757700741291, 0.02438964694738388, 0.03098144382238388, 0.03691406175494194, 0.04042968526482582, 0.04152831807732582, 0.04328612983226776, 0.04218749701976776, 0.03977050632238388, 0.03515625, 0.02680663950741291, 0.0230712890625, 0.013403319753706455, 0.0054931640625, -0.00527343712747097, -0.011206054128706455, -0.01933593675494194, -0.02812499925494194, -0.03603515401482582, -0.03955078125, -0.04570312425494194, -0.04790038987994194, -0.04855956882238388, -0.0472412109375, -0.04482421651482582, -0.0384521484375, -0.03251953050494194, -0.02768554538488388, -0.0186767578125, -0.009228515438735485, 0.001538085867650807, 0.01054687425494194, 0.01801757700741291, 0.02724609337747097, 0.03383788838982582, 0.03867187350988388, 0.04438476264476776, 0.04570312425494194, 0.04570312425494194, 0.04306640475988388, 0.04262695088982582, 0.04042968526482582, 0.03010253794491291, 0.02395019493997097, 0.01406249962747097, 0.007031249813735485, -0.003735351376235485, -0.012524413876235485, -0.02175292931497097, -0.03229980543255806, -0.03867187350988388, -0.04416503757238388, -0.04812011495232582, -0.05097655951976776, -0.050537109375, -0.04790038987994194, -0.0450439453125, -0.04196777194738388, -0.03515625, -0.02614746056497097, -0.01669921912252903, -0.008129882626235485, 0.0010986328125, 0.01054687425494194, 0.02131347544491291, 0.02878417819738388, 0.03713378682732582, 0.04240722581744194, 0.04702148213982582, 0.04987792670726776, 0.0472412109375, 0.04768066108226776, 0.04372558370232582, 0.04042968526482582, 0.0340576171875, 0.02504882775247097, 0.01713867112994194, 0.0076904296875, -0.003955077845603228, -0.013403319753706455, -0.02197265625, -0.03317870944738388, -0.04042968526482582, -0.04570312425494194, -0.05119628831744194, -0.05075683444738388, -0.05185546725988388, -0.04965820163488388, -0.04548339545726776, -0.04328612983226776, -0.03603515401482582, -0.0274658203125, -0.01889648474752903, -0.00966796837747097, 0.0002197265566792339, 0.0098876953125, 0.02109374850988388, 0.02812499925494194, 0.03537597507238388, 0.041748046875, 0.0450439453125, 0.04855956882238388, 0.04790038987994194, 0.04812011495232582, 0.04262695088982582, 0.0384521484375, 0.03120117075741291, 0.02504882775247097, 0.014501952566206455, 0.005053710658103228, -0.00439453125, -0.012304686941206455, -0.02197265625, -0.03142089769244194, -0.03889160230755806, -0.04306640475988388, -0.04899902269244194, -0.05075683444738388, -0.050537109375, -0.04833984375, -0.04526367038488388, -0.04086913913488388, -0.03493652120232582, -0.0252685546875, -0.01845703087747097, -0.009228515438735485, 0.0013183592818677425, 0.010986328125, 0.01889648474752903, 0.02812499925494194, 0.03383788838982582, 0.03911132737994194, 0.04130859300494194, 0.046142578125, 0.04658202826976776, 0.04416503757238388, 0.04108886793255806, 0.03603515401482582, 0.02900390513241291, 0.02219238132238388, 0.01406249962747097, 0.00527343712747097, -0.0046142577193677425, -0.01186523400247097, -0.0208740234375, -0.0296630859375, -0.03691406175494194, -0.041748046875, -0.04526367038488388, -0.04790038987994194, -0.04833984375, -0.04570312425494194, -0.04306640475988388, -0.03911132737994194, -0.03383788838982582, -0.02592773362994194, -0.01779785193502903, -0.007250976283103228, 0.0004394531133584678, 0.008129882626235485, 0.017578125, 0.02285156212747097, 0.03054199181497097, 0.03537597507238388, 0.03779296949505806, 0.03933105245232582, 0.04042968526482582, 0.04020996019244194, 0.03669433668255806, 0.03427734225988388, 0.02834472618997097, 0.02043456956744194, 0.01296386681497097, 0.00527343712747097, -0.00439453125, -0.011206054128706455, -0.01823730394244194, -0.02570800669491291, -0.03164062276482582, -0.03559570387005806, -0.0406494140625, -0.04262695088982582, -0.04196777194738388, -0.04108886793255806, -0.03691406175494194, -0.03361816331744194, -0.02812499925494194, -0.0230712890625, -0.014501952566206455, -0.009008788503706455, -0.0013183592818677425, 0.007250976283103228, 0.015600585378706455, 0.01911620981991291, 0.02504882775247097, 0.03032226487994194, 0.03515625, 0.03493652120232582, 0.03361816331744194, 0.03339843824505806, 0.03098144382238388, 0.02702636644244194, 0.02175292931497097, 0.01669921912252903, 0.011206054128706455, 0.005932617001235485, -0.0028564452659338713, -0.009228515438735485, -0.015380859375, -0.02153320237994194, -0.0252685546875, -0.02878417819738388, -0.03361816331744194, -0.03471679612994194, -0.03471679612994194, -0.0340576171875, -0.03120117075741291, -0.02834472618997097, -0.0208740234375, -0.01933593675494194, -0.012524413876235485, -0.0057128905318677425, 0.0, 0.005053710658103228, 0.01164550706744194, 0.01779785193502903, 0.019775390625, 0.02131347544491291, 0.0263671875, 0.0263671875, 0.02680663950741291, 0.02680663950741291, 0.0252685546875, 0.02219238132238388, 0.0164794921875, 0.01186523400247097, 0.009228515438735485, 0.003735351376235485, -0.0028564452659338713, -0.0076904296875, -0.01318359375, -0.0164794921875, -0.019775390625, -0.02219238132238388, -0.02570800669491291, -0.02680663950741291, -0.02548827975988388, -0.02482910081744194, -0.02197265625, -0.01999511756002903, -0.017578125, -0.01318359375, -0.0098876953125, -0.0076904296875, -0.0004394531133584678, 0.0032958984375, 0.00747070275247097, 0.01076660118997097, 0.01296386681497097, 0.01713867112994194, 0.01669921912252903, 0.01823730394244194, 0.01735839806497097, 0.01713867112994194, 0.01691894419491291, 0.01406249962747097, 0.01186523400247097, 0.008349609561264515, 0.003735351376235485, 0.0, -0.0013183592818677425, -0.0041748047806322575, -0.009228515438735485, -0.010986328125, -0.013623046688735485, -0.015600585378706455, -0.01604003831744194, -0.01582031138241291, -0.01625976525247097, -0.015600585378706455, -0.01406249962747097, -0.013403319753706455, -0.010986328125, -0.008129882626235485, -0.0054931640625, -0.0041748047806322575, -0.0013183592818677425, 0.0004394531133584678, 0.0035156249068677425, 0.003076171735301614, 0.004833984188735485, 0.006152343470603228, 0.0076904296875, 0.008349609561264515 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.5)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x2", "y": [ -0.002636718563735485, -0.002636718563735485, -0.0002197265566792339, 0.0, -0.0032958984375, -0.001538085867650807, -0.002197265625, -0.0013183592818677425, 0.0004394531133584678, -0.0013183592818677425, -0.0017578124534338713, -0.0010986328125, -0.002636718563735485, -0.0010986328125, -0.0017578124534338713, -0.002197265625, -0.0006591796409338713, -0.0013183592818677425, -0.0017578124534338713, -0.002197265625, -0.001977538922801614, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, 0.0, -0.0035156249068677425, -0.0017578124534338713, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.001977538922801614, 0.0004394531133584678, 0.001977538922801614, -0.0006591796409338713, -0.0006591796409338713, 0.0004394531133584678, 0.0002197265566792339, -0.0010986328125, -0.0010986328125, -0.001538085867650807, -0.0028564452659338713, -0.0035156249068677425, -0.00439453125, -0.0057128905318677425, -0.00747070275247097, -0.00747070275247097, -0.005932617001235485, -0.00637206993997097, -0.007250976283103228, -0.007910155691206455, -0.005053710658103228, -0.00747070275247097, -0.00527343712747097, -0.004833984188735485, -0.003076171735301614, -0.002197265625, 0.0028564452659338713, 0.003955077845603228, 0.003735351376235485, 0.00439453125, 0.00747070275247097, 0.007031249813735485, 0.009448242373764515, 0.00856933556497097, 0.010107421316206455, 0.009228515438735485, 0.00747070275247097, 0.00527343712747097, 0.0057128905318677425, 0.0032958984375, 0.0013183592818677425, 0.0, -0.0046142577193677425, -0.009448242373764515, -0.009448242373764515, -0.012524413876235485, -0.015380859375, -0.01691894419491291, -0.017578125, -0.01955566368997097, -0.017578125, -0.01713867112994194, -0.01516113243997097, -0.01406249962747097, -0.01054687425494194, -0.00747070275247097, -0.005053710658103228, -0.001977538922801614, 0.00527343712747097, 0.008349609561264515, 0.009008788503706455, 0.01318359375, 0.0164794921875, 0.01801757700741291, 0.02131347544491291, 0.01955566368997097, 0.02109374850988388, 0.01845703087747097, 0.01516113243997097, 0.01406249962747097, 0.00966796837747097, 0.006152343470603228, 0.001977538922801614, -0.0028564452659338713, -0.00637206993997097, -0.01384277269244194, -0.0164794921875, -0.019775390625, -0.02241210825741291, -0.02614746056497097, -0.02900390513241291, -0.02724609337747097, -0.02768554538488388, -0.02614746056497097, -0.02351074106991291, -0.02153320237994194, -0.015600585378706455, -0.01054687425494194, -0.0057128905318677425, -0.001538085867650807, 0.0046142577193677425, 0.010327148251235485, 0.01735839806497097, 0.02197265625, 0.02373046800494194, 0.02658691257238388, 0.02988281100988388, 0.02988281100988388, 0.03032226487994194, 0.02900390513241291, 0.02351074106991291, 0.019775390625, 0.014501952566206455, 0.008129882626235485, 0.00439453125, -0.003735351376235485, -0.0087890625, -0.015380859375, -0.01999511756002903, -0.0274658203125, -0.03251953050494194, -0.03164062276482582, -0.03515625, -0.03647460788488388, -0.03757324069738388, -0.03273925557732582, -0.03098144382238388, -0.02395019493997097, -0.0208740234375, -0.01406249962747097, -0.00747070275247097, 0.0, 0.006591796875, 0.01406249962747097, 0.02021484263241291, 0.0263671875, 0.02988281100988388, 0.03317870944738388, 0.03537597507238388, 0.03647460788488388, 0.03603515401482582, 0.03383788838982582, 0.03164062276482582, 0.02482910081744194, 0.01845703087747097, 0.010986328125, 0.0028564452659338713, -0.0017578124534338713, -0.011425781063735485, -0.02065429650247097, -0.02702636644244194, -0.03317870944738388, -0.03647460788488388, -0.04108886793255806, -0.04240722581744194, -0.04240722581744194, -0.04130859300494194, -0.03933105245232582, -0.0340576171875, -0.02988281100988388, -0.02109374850988388, -0.017578125, -0.007910155691206455, 0.0013183592818677425, 0.007910155691206455, 0.017578125, 0.02263183519244194, 0.0318603515625, 0.03713378682732582, 0.03955078125, 0.04328612983226776, 0.0406494140625, 0.04086913913488388, 0.03823241963982582, 0.03449707105755806, 0.02812499925494194, 0.02109374850988388, 0.01274413987994194, 0.0041748047806322575, -0.004833984188735485, -0.01274413987994194, -0.0208740234375, -0.0296630859375, -0.037353515625, -0.041748046875, -0.04702148213982582, -0.046142578125, -0.046142578125, -0.04658202826976776, -0.04328612983226776, -0.03933105245232582, -0.03383788838982582, -0.02592773362994194, -0.01713867112994194, -0.00856933556497097, 0.0002197265566792339, 0.010107421316206455, 0.01845703087747097, 0.02768554538488388, 0.03339843824505806, 0.03977050632238388, 0.0428466796875, 0.04702148213982582, 0.046142578125, 0.04702148213982582, 0.04108886793255806, 0.03889160230755806, 0.03054199181497097, 0.02395019493997097, 0.015600585378706455, 0.005932617001235485, -0.0046142577193677425, -0.01406249962747097, -0.0230712890625, -0.03010253794491291, -0.03955078125, -0.04482421651482582, -0.04790038987994194, -0.04965820163488388, -0.05185546725988388, -0.04965820163488388, -0.04987792670726776, -0.04152831807732582, -0.03691406175494194, -0.028564453125, -0.01735839806497097, -0.007910155691206455, 0.0017578124534338713, 0.010107421316206455, 0.01911620981991291, 0.028564453125, 0.03669433668255806, 0.041748046875, 0.04438476264476776, 0.04987792670726776, 0.04877929389476776, 0.04636230319738388, 0.04240722581744194, 0.03823241963982582, 0.03317870944738388, 0.02373046800494194, 0.01384277269244194, 0.006591796875, -0.002197265625, -0.013623046688735485, -0.02395019493997097, -0.03076171875, -0.03911132737994194, -0.04592284932732582, -0.04812011495232582, -0.05295410007238388, -0.052734375, -0.050537109375, -0.04768066108226776, -0.0428466796875, -0.03427734225988388, -0.028564453125, -0.017578125, -0.00856933556497097, -0.0004394531133584678, 0.011206054128706455, 0.01933593675494194, 0.02878417819738388, 0.03537597507238388, 0.04196777194738388, 0.04680175706744194, 0.04855956882238388, 0.04833984375, 0.04790038987994194, 0.04416503757238388, 0.03933105245232582, 0.03164062276482582, 0.0263671875, 0.015380859375, 0.0068115233443677425, -0.003955077845603228, -0.013623046688735485, -0.02197265625, -0.03098144382238388, -0.03999023512005806, -0.04460449144244194, -0.04899902269244194, -0.050537109375, -0.05251464620232582, -0.0516357421875, -0.04526367038488388, -0.0406494140625, -0.03317870944738388, -0.02724609337747097, -0.01911620981991291, -0.00966796837747097, -0.0006591796409338713, 0.011425781063735485, 0.01955566368997097, 0.02680663950741291, 0.0340576171875, 0.03867187350988388, 0.04416503757238388, 0.04833984375, 0.046142578125, 0.046142578125, 0.041748046875, 0.03801269456744194, 0.0296630859375, 0.02460937388241291, 0.01406249962747097, 0.0054931640625, -0.0041748047806322575, -0.011425781063735485, -0.02263183519244194, -0.02790527231991291, -0.0362548828125, -0.03933105245232582, -0.04592284932732582, -0.0472412109375, -0.0494384765625, -0.04746093600988388, -0.04240722581744194, -0.03867187350988388, -0.03317870944738388, -0.02504882775247097, -0.01713867112994194, -0.00966796837747097, 0.0002197265566792339, 0.0098876953125, 0.01669921912252903, 0.02504882775247097, 0.03142089769244194, 0.0362548828125, 0.03713378682732582, 0.04086913913488388, 0.0406494140625, 0.04020996019244194, 0.03647460788488388, 0.03383788838982582, 0.02790527231991291, 0.01933593675494194, 0.0120849609375, 0.00439453125, -0.0035156249068677425, -0.011206054128706455, -0.01999511756002903, -0.02614746056497097, -0.03317870944738388, -0.03691406175494194, -0.03977050632238388, -0.04152831807732582, -0.0439453125, -0.04196777194738388, -0.03933105245232582, -0.03361816331744194, -0.02724609337747097, -0.0230712890625, -0.01582031138241291, -0.00856933556497097, -0.0013183592818677425, 0.007250976283103228, 0.013623046688735485, 0.02153320237994194, 0.02482910081744194, 0.0296630859375, 0.0340576171875, 0.03537597507238388, 0.03383788838982582, 0.03559570387005806, 0.03142089769244194, 0.028564453125, 0.02285156212747097, 0.01669921912252903, 0.01054687425494194, 0.003076171735301614, -0.0028564452659338713, -0.00966796837747097, -0.01691894419491291, -0.0208740234375, -0.02680663950741291, -0.03010253794491291, -0.03251953050494194, -0.03361816331744194, -0.0340576171875, -0.03317870944738388, -0.03120117075741291, -0.02680663950741291, -0.0230712890625, -0.02021484263241291, -0.012304686941206455, -0.007031249813735485, -0.0013183592818677425, 0.0057128905318677425, 0.011425781063735485, 0.01625976525247097, 0.02065429650247097, 0.02395019493997097, 0.0252685546875, 0.02812499925494194, 0.02724609337747097, 0.02548827975988388, 0.02438964694738388, 0.02395019493997097, 0.0186767578125, 0.01186523400247097, 0.007031249813735485, 0.002636718563735485, -0.003076171735301614, -0.00747070275247097, -0.012304686941206455, -0.015600585378706455, -0.02043456956744194, -0.024169921875, -0.02592773362994194, -0.02592773362994194, -0.02812499925494194, -0.02329101413488388, -0.02395019493997097, -0.0208740234375, -0.01604003831744194, -0.013623046688735485, -0.0087890625, -0.005053710658103228, -0.0013183592818677425, 0.005053710658103228, 0.008129882626235485, 0.0120849609375, 0.01186523400247097, 0.01691894419491291, 0.01801757700741291, 0.01823730394244194, 0.01669921912252903, 0.0164794921875, 0.0164794921875, 0.014721679501235485, 0.009448242373764515, 0.00747070275247097, 0.003076171735301614, 0.001538085867650807, -0.0013183592818677425, -0.00439453125, -0.0087890625, -0.01054687425494194, -0.01318359375, -0.013623046688735485, -0.01779785193502903, -0.01779785193502903, -0.01582031138241291, -0.014721679501235485, -0.01494140550494194, -0.01186523400247097, -0.011206054128706455, -0.0087890625, -0.0076904296875, -0.0035156249068677425, -0.001977538922801614, 0.0006591796409338713, 0.0032958984375, 0.005053710658103228, 0.007031249813735485, 0.009008788503706455, 0.00637206993997097, 0.009228515438735485 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ -0.001977538922801614, -0.0008789062267169356, -0.001538085867650807, -0.001538085867650807, -0.002197265625, 0.0, -0.001538085867650807, -0.0013183592818677425, -0.0008789062267169356, -0.0002197265566792339, -0.0017578124534338713, -0.0004394531133584678, -0.001977538922801614, -0.002197265625, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.001538085867650807, -0.0017578124534338713, -0.0010986328125, -0.001538085867650807, -0.0013183592818677425, 0.0, -0.0010986328125, -0.0035156249068677425, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.0017578124534338713, -0.0017578124534338713, -0.0024169920943677425, -0.0032958984375, 0.0004394531133584678, 0.002197265625, -0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0004394531133584678, -0.001538085867650807, -0.0002197265566792339, -0.002636718563735485, -0.002636718563735485, -0.0028564452659338713, -0.003955077845603228, -0.00439453125, -0.00527343712747097, -0.00747070275247097, -0.007910155691206455, -0.0076904296875, -0.006591796875, -0.00856933556497097, -0.007031249813735485, -0.0068115233443677425, -0.00637206993997097, -0.006152343470603228, -0.002197265625, -0.0002197265566792339, 0.002636718563735485, 0.002636718563735485, 0.00527343712747097, 0.00527343712747097, 0.009008788503706455, 0.0098876953125, 0.010986328125, 0.010327148251235485, 0.010327148251235485, 0.009008788503706455, 0.009008788503706455, 0.00637206993997097, 0.004833984188735485, 0.0028564452659338713, 0.0010986328125, -0.002636718563735485, -0.003955077845603228, -0.008129882626235485, -0.012524413876235485, -0.013623046688735485, -0.012524413876235485, -0.01604003831744194, -0.01779785193502903, -0.01889648474752903, -0.01625976525247097, -0.01713867112994194, -0.01516113243997097, -0.012524413876235485, -0.010107421316206455, -0.00747070275247097, -0.005053710658103228, -0.001538085867650807, 0.0035156249068677425, 0.007031249813735485, 0.01076660118997097, 0.013403319753706455, 0.01625976525247097, 0.0186767578125, 0.02021484263241291, 0.02065429650247097, 0.02131347544491291, 0.01735839806497097, 0.015600585378706455, 0.01318359375, 0.009448242373764515, 0.005932617001235485, 0.002197265625, -0.0006591796409338713, -0.0068115233443677425, -0.01274413987994194, -0.014721679501235485, -0.01999511756002903, -0.02438964694738388, -0.02438964694738388, -0.02812499925494194, -0.0274658203125, -0.02768554538488388, -0.02724609337747097, -0.02153320237994194, -0.01933593675494194, -0.01823730394244194, -0.011425781063735485, -0.005053710658103228, -0.0008789062267169356, 0.005932617001235485, 0.0120849609375, 0.01625976525247097, 0.01999511756002903, 0.02482910081744194, 0.02680663950741291, 0.02944335900247097, 0.02878417819738388, 0.028564453125, 0.02570800669491291, 0.02329101413488388, 0.01955566368997097, 0.015380859375, 0.009228515438735485, 0.0024169920943677425, -0.002636718563735485, -0.01054687425494194, -0.015600585378706455, -0.02109374850988388, -0.02790527231991291, -0.02988281100988388, -0.03449707105755806, -0.03669433668255806, -0.03559570387005806, -0.03647460788488388, -0.03361816331744194, -0.02878417819738388, -0.02351074106991291, -0.01933593675494194, -0.012524413876235485, -0.0054931640625, -0.0006591796409338713, 0.007910155691206455, 0.0164794921875, 0.02219238132238388, 0.02768554538488388, 0.03098144382238388, 0.032958984375, 0.03581542894244194, 0.03779296949505806, 0.03713378682732582, 0.03142089769244194, 0.03054199181497097, 0.02592773362994194, 0.01823730394244194, 0.009448242373764515, 0.005053710658103228, -0.0024169920943677425, -0.01054687425494194, -0.01889648474752903, -0.02614746056497097, -0.0318603515625, -0.0362548828125, -0.04086913913488388, -0.0406494140625, -0.04218749701976776, -0.04086913913488388, -0.03955078125, -0.03669433668255806, -0.03076171875, -0.0230712890625, -0.0164794921875, -0.008349609561264515, 0.0, 0.009008788503706455, 0.01604003831744194, 0.02395019493997097, 0.03098144382238388, 0.03515625, 0.0406494140625, 0.0428466796875, 0.0428466796875, 0.04108886793255806, 0.037353515625, 0.03515625, 0.02570800669491291, 0.02175292931497097, 0.01164550706744194, 0.0041748047806322575, -0.0046142577193677425, -0.01186523400247097, -0.0230712890625, -0.02570800669491291, -0.03471679612994194, -0.03977050632238388, -0.04438476264476776, -0.04921874776482582, -0.0472412109375, -0.04812011495232582, -0.04438476264476776, -0.03889160230755806, -0.032958984375, -0.02614746056497097, -0.01801757700741291, -0.0087890625, 0.0013183592818677425, 0.0120849609375, 0.01823730394244194, 0.02922363206744194, 0.03515625, 0.03801269456744194, 0.0450439453125, 0.04702148213982582, 0.0439453125, 0.04548339545726776, 0.04372558370232582, 0.03691406175494194, 0.0318603515625, 0.02241210825741291, 0.01186523400247097, 0.006152343470603228, -0.003076171735301614, -0.013403319753706455, -0.02263183519244194, -0.03229980543255806, -0.03955078125, -0.04460449144244194, -0.04877929389476776, -0.05229492112994194, -0.0516357421875, -0.05075683444738388, -0.046142578125, -0.04218749701976776, -0.03581542894244194, -0.02790527231991291, -0.01669921912252903, -0.00747070275247097, 0.0008789062267169356, 0.01164550706744194, 0.01911620981991291, 0.02878417819738388, 0.03427734225988388, 0.04262695088982582, 0.04658202826976776, 0.04746093600988388, 0.04833984375, 0.04812011495232582, 0.04086913913488388, 0.03977050632238388, 0.03339843824505806, 0.02438964694738388, 0.014721679501235485, 0.0076904296875, -0.0046142577193677425, -0.013403319753706455, -0.02351074106991291, -0.03339843824505806, -0.03955078125, -0.04592284932732582, -0.04965820163488388, -0.05295410007238388, -0.0538330078125, -0.05009765550494194, -0.04702148213982582, -0.04262695088982582, -0.03779296949505806, -0.02944335900247097, -0.0186767578125, -0.008349609561264515, 0.0004394531133584678, 0.01054687425494194, 0.0186767578125, 0.02834472618997097, 0.03515625, 0.041748046875, 0.04548339545726776, 0.04833984375, 0.04877929389476776, 0.04702148213982582, 0.04350585862994194, 0.03955078125, 0.03098144382238388, 0.02351074106991291, 0.014721679501235485, 0.005932617001235485, -0.00439453125, -0.014501952566206455, -0.02395019493997097, -0.03164062276482582, -0.03867187350988388, -0.0439453125, -0.04921874776482582, -0.04812011495232582, -0.04965820163488388, -0.05009765550494194, -0.04790038987994194, -0.04328612983226776, -0.03603515401482582, -0.02614746056497097, -0.01801757700741291, -0.009228515438735485, 0.0006591796409338713, 0.009448242373764515, 0.01999511756002903, 0.02900390513241291, 0.03471679612994194, 0.03977050632238388, 0.04372558370232582, 0.04548339545726776, 0.0472412109375, 0.04570312425494194, 0.04042968526482582, 0.03757324069738388, 0.02988281100988388, 0.02329101413488388, 0.01296386681497097, 0.005932617001235485, -0.0035156249068677425, -0.0142822265625, -0.0230712890625, -0.02988281100988388, -0.03647460788488388, -0.03955078125, -0.04438476264476776, -0.04746093600988388, -0.04855956882238388, -0.04570312425494194, -0.04218749701976776, -0.037353515625, -0.03273925557732582, -0.02680663950741291, -0.01691894419491291, -0.0076904296875, -0.0028564452659338713, 0.007250976283103228, 0.01801757700741291, 0.02548827975988388, 0.03142089769244194, 0.03691406175494194, 0.0384521484375, 0.03955078125, 0.03977050632238388, 0.04020996019244194, 0.03713378682732582, 0.03229980543255806, 0.02658691257238388, 0.02109374850988388, 0.011425781063735485, 0.0032958984375, -0.003735351376235485, -0.010986328125, -0.01911620981991291, -0.02592773362994194, -0.03273925557732582, -0.03647460788488388, -0.0406494140625, -0.04086913913488388, -0.04108886793255806, -0.03955078125, -0.03757324069738388, -0.03383788838982582, -0.028564453125, -0.0208740234375, -0.01625976525247097, -0.007031249813735485, 0.0006591796409338713, 0.00856933556497097, 0.014721679501235485, 0.01999511756002903, 0.0263671875, 0.0318603515625, 0.03317870944738388, 0.03537597507238388, 0.0362548828125, 0.03449707105755806, 0.03010253794491291, 0.02702636644244194, 0.02131347544491291, 0.015380859375, 0.011425781063735485, 0.005053710658103228, -0.0028564452659338713, -0.010107421316206455, -0.01516113243997097, -0.02263183519244194, -0.02702636644244194, -0.0318603515625, -0.03361816331744194, -0.03383788838982582, -0.03515625, -0.03229980543255806, -0.03251953050494194, -0.02812499925494194, -0.02329101413488388, -0.01933593675494194, -0.012304686941206455, -0.0076904296875, -0.0008789062267169356, 0.0046142577193677425, 0.009448242373764515, 0.01713867112994194, 0.02065429650247097, 0.02263183519244194, 0.0274658203125, 0.02878417819738388, 0.02614746056497097, 0.02482910081744194, 0.02438964694738388, 0.02241210825741291, 0.0164794921875, 0.01274413987994194, 0.006152343470603228, 0.001977538922801614, -0.002636718563735485, -0.007910155691206455, -0.013623046688735485, -0.01691894419491291, -0.02109374850988388, -0.02219238132238388, -0.02395019493997097, -0.02548827975988388, -0.02680663950741291, -0.02482910081744194, -0.02219238132238388, -0.02131347544491291, -0.01911620981991291, -0.013403319753706455, -0.00966796837747097, -0.0057128905318677425, -0.001538085867650807, 0.0035156249068677425, 0.008129882626235485, 0.012304686941206455, 0.01384277269244194, 0.01274413987994194, 0.014501952566206455, 0.02021484263241291, 0.01625976525247097, 0.01735839806497097, 0.0164794921875, 0.013403319753706455, 0.01318359375, 0.009008788503706455, 0.00439453125, 0.0013183592818677425, -0.0028564452659338713, -0.003955077845603228, -0.0076904296875, -0.01186523400247097, -0.01406249962747097, -0.015600585378706455, -0.01494140550494194, -0.015380859375, -0.01823730394244194, -0.01494140550494194, -0.015600585378706455, -0.013623046688735485, -0.010327148251235485, -0.00856933556497097, -0.00856933556497097, -0.003955077845603228, -0.001538085867650807, 0.0008789062267169356, 0.003955077845603228, 0.0028564452659338713, 0.0046142577193677425, 0.0068115233443677425, 0.009228515438735485, 0.009448242373764515 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.0556)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.001977538922801614, -0.0035156249068677425, -0.0006591796409338713, -0.003955077845603228, -0.003076171735301614, -0.0002197265566792339, -0.0008789062267169356, -0.0024169920943677425, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.001538085867650807, -0.0013183592818677425, -0.002636718563735485, -0.002197265625, -0.0008789062267169356, -0.0028564452659338713, -0.0010986328125, -0.002197265625, -0.002636718563735485, -0.0008789062267169356, -0.0008789062267169356, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.0013183592818677425, -0.0008789062267169356, 0.0008789062267169356, 0.0013183592818677425, -0.0010986328125, -0.0002197265566792339, -0.0006591796409338713, -0.0006591796409338713, -0.0017578124534338713, -0.0041748047806322575, -0.0008789062267169356, -0.0010986328125, -0.0046142577193677425, -0.0054931640625, -0.00637206993997097, -0.00637206993997097, -0.0068115233443677425, -0.0087890625, -0.0076904296875, -0.008129882626235485, -0.006152343470603228, -0.00637206993997097, -0.0054931640625, -0.00439453125, -0.0004394531133584678, 0.0002197265566792339, 0.0006591796409338713, 0.0017578124534338713, 0.00637206993997097, 0.0068115233443677425, 0.009008788503706455, 0.009448242373764515, 0.008129882626235485, 0.007250976283103228, 0.0098876953125, 0.008349609561264515, 0.00747070275247097, 0.0046142577193677425, 0.0035156249068677425, 0.0008789062267169356, 0.0013183592818677425, -0.0032958984375, -0.00637206993997097, -0.00747070275247097, -0.010327148251235485, -0.013403319753706455, -0.01582031138241291, -0.01604003831744194, -0.01669921912252903, -0.0186767578125, -0.01625976525247097, -0.01691894419491291, -0.01494140550494194, -0.01494140550494194, -0.01076660118997097, -0.0076904296875, -0.004833984188735485, -0.001538085867650807, 0.0035156249068677425, 0.007910155691206455, 0.01186523400247097, 0.01274413987994194, 0.01669921912252903, 0.01845703087747097, 0.01933593675494194, 0.02043456956744194, 0.02065429650247097, 0.01713867112994194, 0.01691894419491291, 0.01274413987994194, 0.010327148251235485, 0.005053710658103228, 0.001538085867650807, -0.0028564452659338713, -0.0068115233443677425, -0.0142822265625, -0.01669921912252903, -0.02043456956744194, -0.02197265625, -0.02680663950741291, -0.02812499925494194, -0.02944335900247097, -0.0274658203125, -0.02504882775247097, -0.0252685546875, -0.02065429650247097, -0.01494140550494194, -0.011425781063735485, -0.00527343712747097, -0.0002197265566792339, 0.0054931640625, 0.010107421316206455, 0.01713867112994194, 0.0208740234375, 0.02548827975988388, 0.02790527231991291, 0.02878417819738388, 0.02768554538488388, 0.02922363206744194, 0.02724609337747097, 0.02460937388241291, 0.01955566368997097, 0.015600585378706455, 0.0087890625, 0.0028564452659338713, -0.004833984188735485, -0.010107421316206455, -0.01516113243997097, -0.02153320237994194, -0.02724609337747097, -0.03076171875, -0.03537597507238388, -0.03603515401482582, -0.03757324069738388, -0.03471679612994194, -0.03493652120232582, -0.0296630859375, -0.0274658203125, -0.02021484263241291, -0.013623046688735485, -0.007031249813735485, 0.001538085867650807, 0.009228515438735485, 0.013623046688735485, 0.02197265625, 0.02702636644244194, 0.03076171875, 0.03361816331744194, 0.03823241963982582, 0.0362548828125, 0.03493652120232582, 0.03076171875, 0.02944335900247097, 0.0252685546875, 0.01933593675494194, 0.01076660118997097, 0.00439453125, -0.003076171735301614, -0.00966796837747097, -0.01779785193502903, -0.02680663950741291, -0.03142089769244194, -0.03691406175494194, -0.04416503757238388, -0.04218749701976776, -0.04130859300494194, -0.03911132737994194, -0.04086913913488388, -0.03515625, -0.0296630859375, -0.0252685546875, -0.015600585378706455, -0.006152343470603228, -0.0004394531133584678, 0.0098876953125, 0.01713867112994194, 0.0252685546875, 0.03032226487994194, 0.037353515625, 0.04130859300494194, 0.0428466796875, 0.04350585862994194, 0.04328612983226776, 0.03911132737994194, 0.03273925557732582, 0.02790527231991291, 0.02329101413488388, 0.01186523400247097, 0.00527343712747097, -0.003735351376235485, -0.012304686941206455, -0.02153320237994194, -0.02922363206744194, -0.03537597507238388, -0.04152831807732582, -0.04658202826976776, -0.04921874776482582, -0.05031738057732582, -0.04680175706744194, -0.04526367038488388, -0.03911132737994194, -0.0318603515625, -0.02548827975988388, -0.01889648474752903, -0.0087890625, -0.0017578124534338713, 0.01054687425494194, 0.02065429650247097, 0.02570800669491291, 0.03339843824505806, 0.03911132737994194, 0.04328612983226776, 0.04658202826976776, 0.0472412109375, 0.04570312425494194, 0.04130859300494194, 0.03867187350988388, 0.03120117075741291, 0.02395019493997097, 0.01296386681497097, 0.005932617001235485, -0.003955077845603228, -0.014721679501235485, -0.02351074106991291, -0.0318603515625, -0.0384521484375, -0.0439453125, -0.04899902269244194, -0.0516357421875, -0.05097655951976776, -0.04987792670726776, -0.04877929389476776, -0.04086913913488388, -0.03537597507238388, -0.02570800669491291, -0.01801757700741291, -0.008349609561264515, 0.001538085867650807, 0.01164550706744194, 0.02109374850988388, 0.02922363206744194, 0.03581542894244194, 0.04130859300494194, 0.0439453125, 0.04965820163488388, 0.04921874776482582, 0.0472412109375, 0.04460449144244194, 0.03867187350988388, 0.03229980543255806, 0.02460937388241291, 0.015600585378706455, 0.006591796875, -0.0032958984375, -0.013623046688735485, -0.02329101413488388, -0.03032226487994194, -0.03977050632238388, -0.04526367038488388, -0.04899902269244194, -0.05141601338982582, -0.05207519233226776, -0.04965820163488388, -0.04833984375, -0.04262695088982582, -0.03647460788488388, -0.02702636644244194, -0.019775390625, -0.010327148251235485, 0.0013183592818677425, 0.010327148251235485, 0.01933593675494194, 0.02834472618997097, 0.03449707105755806, 0.041748046875, 0.04636230319738388, 0.04812011495232582, 0.04921874776482582, 0.04768066108226776, 0.04372558370232582, 0.03955078125, 0.03076171875, 0.02482910081744194, 0.01494140550494194, 0.00527343712747097, -0.0032958984375, -0.0120849609375, -0.02351074106991291, -0.03098144382238388, -0.03867187350988388, -0.0439453125, -0.05009765550494194, -0.05251464620232582, -0.05097655951976776, -0.05075683444738388, -0.04768066108226776, -0.04262695088982582, -0.03383788838982582, -0.0263671875, -0.02043456956744194, -0.009008788503706455, 0.0004394531133584678, 0.010107421316206455, 0.02065429650247097, 0.0274658203125, 0.03471679612994194, 0.04086913913488388, 0.04460449144244194, 0.04680175706744194, 0.04746093600988388, 0.046142578125, 0.04042968526482582, 0.03647460788488388, 0.0296630859375, 0.02329101413488388, 0.014501952566206455, 0.007910155691206455, -0.003735351376235485, -0.01164550706744194, -0.02109374850988388, -0.0296630859375, -0.03669433668255806, -0.04152831807732582, -0.04482421651482582, -0.0450439453125, -0.04921874776482582, -0.04636230319738388, -0.04306640475988388, -0.03911132737994194, -0.03383788838982582, -0.02592773362994194, -0.01516113243997097, -0.00637206993997097, 0.0010986328125, 0.008349609561264515, 0.01669921912252903, 0.02592773362994194, 0.03120117075741291, 0.03559570387005806, 0.03823241963982582, 0.04306640475988388, 0.0428466796875, 0.04042968526482582, 0.03515625, 0.03142089769244194, 0.0263671875, 0.02131347544491291, 0.01406249962747097, 0.004833984188735485, -0.0024169920943677425, -0.010986328125, -0.01933593675494194, -0.02658691257238388, -0.03361816331744194, -0.03559570387005806, -0.04218749701976776, -0.04042968526482582, -0.04152831807732582, -0.03999023512005806, -0.03867187350988388, -0.03164062276482582, -0.02878417819738388, -0.02131347544491291, -0.01625976525247097, -0.009008788503706455, 0.0002197265566792339, 0.007250976283103228, 0.01186523400247097, 0.02131347544491291, 0.02812499925494194, 0.03164062276482582, 0.03515625, 0.03537597507238388, 0.03603515401482582, 0.03537597507238388, 0.03098144382238388, 0.02614746056497097, 0.02329101413488388, 0.01625976525247097, 0.0098876953125, 0.00527343712747097, -0.003076171735301614, -0.009228515438735485, -0.01779785193502903, -0.02175292931497097, -0.02570800669491291, -0.02922363206744194, -0.03273925557732582, -0.03537597507238388, -0.03537597507238388, -0.03537597507238388, -0.03449707105755806, -0.02812499925494194, -0.02438964694738388, -0.01845703087747097, -0.01076660118997097, -0.00527343712747097, -0.0004394531133584678, 0.0057128905318677425, 0.010107421316206455, 0.01494140550494194, 0.01999511756002903, 0.02548827975988388, 0.0274658203125, 0.0296630859375, 0.02922363206744194, 0.02724609337747097, 0.02548827975988388, 0.0230712890625, 0.01779785193502903, 0.01274413987994194, 0.0068115233443677425, 0.001538085867650807, -0.0024169920943677425, -0.00637206993997097, -0.01318359375, -0.01889648474752903, -0.02197265625, -0.02175292931497097, -0.02658691257238388, -0.024169921875, -0.02702636644244194, -0.02504882775247097, -0.02329101413488388, -0.02241210825741291, -0.01669921912252903, -0.01274413987994194, -0.0098876953125, -0.004833984188735485, -0.002197265625, 0.00439453125, 0.0087890625, 0.0120849609375, 0.01384277269244194, 0.01801757700741291, 0.01735839806497097, 0.01691894419491291, 0.01582031138241291, 0.01823730394244194, 0.01582031138241291, 0.01318359375, 0.01054687425494194, 0.0076904296875, 0.004833984188735485, 0.0010986328125, -0.0024169920943677425, -0.0046142577193677425, -0.009448242373764515, -0.01054687425494194, -0.01406249962747097, -0.0142822265625, -0.01823730394244194, -0.01779785193502903, -0.01625976525247097, -0.01604003831744194, -0.01582031138241291, -0.01186523400247097, -0.011206054128706455, -0.0068115233443677425, -0.00439453125, -0.003955077845603228, -0.003735351376235485, 0.0017578124534338713, 0.002636718563735485, 0.005053710658103228, 0.0068115233443677425, 0.007910155691206455, 0.007910155691206455, 0.00856933556497097 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.1111)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ -0.003076171735301614, -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.0010986328125, -0.0032958984375, -0.0028564452659338713, -0.0006591796409338713, -0.001538085867650807, 0.0, -0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, -0.0010986328125, -0.001538085867650807, -0.002197265625, -0.001538085867650807, 0.0002197265566792339, -0.0006591796409338713, -0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.0010986328125, -0.003735351376235485, -0.001977538922801614, -0.0013183592818677425, -0.0004394531133584678, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.0002197265566792339, -0.0004394531133584678, -0.0002197265566792339, 0.0004394531133584678, 0.0004394531133584678, 0.0004394531133584678, -0.0006591796409338713, -0.0024169920943677425, -0.0004394531133584678, -0.0024169920943677425, -0.0035156249068677425, -0.005053710658103228, -0.0041748047806322575, -0.0068115233443677425, -0.0057128905318677425, -0.00856933556497097, -0.007250976283103228, -0.008349609561264515, -0.00966796837747097, -0.007250976283103228, -0.007250976283103228, -0.008129882626235485, -0.005053710658103228, -0.005053710658103228, -0.001977538922801614, -0.002197265625, 0.001538085867650807, 0.0035156249068677425, 0.00527343712747097, 0.00637206993997097, 0.0076904296875, 0.008349609561264515, 0.009228515438735485, 0.0098876953125, 0.01076660118997097, 0.008349609561264515, 0.007910155691206455, 0.007031249813735485, 0.0046142577193677425, 0.003076171735301614, 0.0017578124534338713, -0.0041748047806322575, -0.00439453125, -0.00856933556497097, -0.011206054128706455, -0.01318359375, -0.013623046688735485, -0.01582031138241291, -0.01889648474752903, -0.01933593675494194, -0.0164794921875, -0.01582031138241291, -0.015380859375, -0.01318359375, -0.00966796837747097, -0.008349609561264515, -0.00439453125, 0.0002197265566792339, 0.0046142577193677425, 0.0068115233443677425, 0.011206054128706455, 0.0142822265625, 0.01735839806497097, 0.0186767578125, 0.0208740234375, 0.019775390625, 0.01955566368997097, 0.01691894419491291, 0.0164794921875, 0.01318359375, 0.009228515438735485, 0.005053710658103228, 0.002197265625, -0.0041748047806322575, -0.0057128905318677425, -0.010986328125, -0.01582031138241291, -0.01911620981991291, -0.02219238132238388, -0.02724609337747097, -0.028564453125, -0.02878417819738388, -0.02702636644244194, -0.02680663950741291, -0.02263183519244194, -0.01801757700741291, -0.014721679501235485, -0.010107421316206455, -0.00527343712747097, 0.0008789062267169356, 0.004833984188735485, 0.010327148251235485, 0.01604003831744194, 0.02065429650247097, 0.02438964694738388, 0.0252685546875, 0.02790527231991291, 0.02812499925494194, 0.03032226487994194, 0.0252685546875, 0.0230712890625, 0.02153320237994194, 0.015600585378706455, 0.008349609561264515, 0.003076171735301614, -0.005053710658103228, -0.010107421316206455, -0.01691894419491291, -0.02109374850988388, -0.02724609337747097, -0.02922363206744194, -0.03427734225988388, -0.03713378682732582, -0.03603515401482582, -0.03559570387005806, -0.03339843824505806, -0.02768554538488388, -0.0230712890625, -0.01801757700741291, -0.0142822265625, -0.007910155691206455, -0.0006591796409338713, 0.008129882626235485, 0.01406249962747097, 0.01999511756002903, 0.02724609337747097, 0.03317870944738388, 0.03559570387005806, 0.03559570387005806, 0.03493652120232582, 0.03757324069738388, 0.0340576171875, 0.03164062276482582, 0.02438964694738388, 0.017578125, 0.013403319753706455, 0.006591796875, -0.00527343712747097, -0.01076660118997097, -0.019775390625, -0.0252685546875, -0.03032226487994194, -0.03559570387005806, -0.04240722581744194, -0.04328612983226776, -0.04218749701976776, -0.04196777194738388, -0.03911132737994194, -0.03581542894244194, -0.02944335900247097, -0.02263183519244194, -0.01625976525247097, -0.0068115233443677425, -0.0008789062267169356, 0.0087890625, 0.01625976525247097, 0.02241210825741291, 0.0296630859375, 0.037353515625, 0.0406494140625, 0.04306640475988388, 0.0428466796875, 0.04218749701976776, 0.037353515625, 0.03603515401482582, 0.02724609337747097, 0.02219238132238388, 0.01186523400247097, 0.0054931640625, -0.0046142577193677425, -0.01186523400247097, -0.019775390625, -0.02812499925494194, -0.03515625, -0.041748046875, -0.0439453125, -0.04746093600988388, -0.04768066108226776, -0.04570312425494194, -0.0428466796875, -0.03757324069738388, -0.03449707105755806, -0.0252685546875, -0.01955566368997097, -0.0076904296875, 0.0004394531133584678, 0.010327148251235485, 0.0186767578125, 0.0252685546875, 0.0318603515625, 0.03955078125, 0.04438476264476776, 0.04658202826976776, 0.04680175706744194, 0.04746093600988388, 0.041748046875, 0.03867187350988388, 0.03098144382238388, 0.0252685546875, 0.014721679501235485, 0.006152343470603228, -0.00439453125, -0.014721679501235485, -0.02351074106991291, -0.03120117075741291, -0.0362548828125, -0.04482421651482582, -0.04833984375, -0.05075683444738388, -0.05185546725988388, -0.05009765550494194, -0.04526367038488388, -0.041748046875, -0.03537597507238388, -0.02790527231991291, -0.0186767578125, -0.0068115233443677425, 0.001538085867650807, 0.01054687425494194, 0.01889648474752903, 0.02768554538488388, 0.0340576171875, 0.04130859300494194, 0.046142578125, 0.04833984375, 0.04680175706744194, 0.04921874776482582, 0.04218749701976776, 0.04152831807732582, 0.03273925557732582, 0.02570800669491291, 0.0142822265625, 0.005053710658103228, -0.00527343712747097, -0.014721679501235485, -0.02263183519244194, -0.03076171875, -0.03867187350988388, -0.04460449144244194, -0.05097655951976776, -0.0516357421875, -0.05317382514476776, -0.050537109375, -0.0472412109375, -0.04240722581744194, -0.03537597507238388, -0.02878417819738388, -0.0186767578125, -0.0087890625, -0.0002197265566792339, 0.01076660118997097, 0.01801757700741291, 0.02812499925494194, 0.03383788838982582, 0.04020996019244194, 0.04482421651482582, 0.04899902269244194, 0.05185546725988388, 0.04746093600988388, 0.04372558370232582, 0.03889160230755806, 0.03032226487994194, 0.02438964694738388, 0.01494140550494194, 0.006591796875, -0.003735351376235485, -0.012524413876235485, -0.02373046800494194, -0.0318603515625, -0.03955078125, -0.04240722581744194, -0.04658202826976776, -0.0516357421875, -0.05119628831744194, -0.05009765550494194, -0.04636230319738388, -0.04086913913488388, -0.03537597507238388, -0.02482910081744194, -0.01911620981991291, -0.0087890625, -0.0002197265566792339, 0.009228515438735485, 0.01801757700741291, 0.0296630859375, 0.03339843824505806, 0.03823241963982582, 0.04438476264476776, 0.04680175706744194, 0.04548339545726776, 0.04526367038488388, 0.04262695088982582, 0.037353515625, 0.03098144382238388, 0.02329101413488388, 0.0142822265625, 0.00527343712747097, -0.0054931640625, -0.01054687425494194, -0.0208740234375, -0.02834472618997097, -0.03537597507238388, -0.0428466796875, -0.046142578125, -0.046142578125, -0.04768066108226776, -0.04438476264476776, -0.04262695088982582, -0.0362548828125, -0.03251953050494194, -0.02548827975988388, -0.01625976525247097, -0.00856933556497097, 0.0002197265566792339, 0.0087890625, 0.0164794921875, 0.02548827975988388, 0.028564453125, 0.0384521484375, 0.04042968526482582, 0.03999023512005806, 0.03955078125, 0.04108886793255806, 0.03559570387005806, 0.03471679612994194, 0.02614746056497097, 0.02065429650247097, 0.01384277269244194, 0.00527343712747097, -0.003735351376235485, -0.012524413876235485, -0.02153320237994194, -0.02548827975988388, -0.03142089769244194, -0.03581542894244194, -0.04240722581744194, -0.0428466796875, -0.04350585862994194, -0.04130859300494194, -0.03669433668255806, -0.03339843824505806, -0.02834472618997097, -0.02263183519244194, -0.01384277269244194, -0.0046142577193677425, 0.0002197265566792339, 0.00637206993997097, 0.013623046688735485, 0.02109374850988388, 0.0263671875, 0.03054199181497097, 0.03449707105755806, 0.03647460788488388, 0.03383788838982582, 0.03713378682732582, 0.03120117075741291, 0.02812499925494194, 0.02065429650247097, 0.01735839806497097, 0.009448242373764515, 0.004833984188735485, -0.0008789062267169356, -0.009228515438735485, -0.01823730394244194, -0.02153320237994194, -0.0263671875, -0.03076171875, -0.03537597507238388, -0.03449707105755806, -0.037353515625, -0.03493652120232582, -0.0318603515625, -0.02812499925494194, -0.02351074106991291, -0.01801757700741291, -0.01076660118997097, -0.005932617001235485, 0.0008789062267169356, 0.0068115233443677425, 0.01076660118997097, 0.01625976525247097, 0.01955566368997097, 0.02438964694738388, 0.0252685546875, 0.0274658203125, 0.02658691257238388, 0.02658691257238388, 0.02482910081744194, 0.02241210825741291, 0.01779785193502903, 0.01384277269244194, 0.00637206993997097, 0.003076171735301614, -0.0017578124534338713, -0.008349609561264515, -0.013623046688735485, -0.015380859375, -0.01955566368997097, -0.0230712890625, -0.02614746056497097, -0.0263671875, -0.02482910081744194, -0.02570800669491291, -0.02438964694738388, -0.02131347544491291, -0.01691894419491291, -0.01384277269244194, -0.01054687425494194, -0.003955077845603228, -0.002197265625, 0.0035156249068677425, 0.006152343470603228, 0.01164550706744194, 0.014721679501235485, 0.015600585378706455, 0.01801757700741291, 0.01955566368997097, 0.01735839806497097, 0.017578125, 0.015600585378706455, 0.012524413876235485, 0.0098876953125, 0.007910155691206455, 0.0041748047806322575, 0.0008789062267169356, -0.003076171735301614, -0.00439453125, -0.010327148251235485, -0.01054687425494194, -0.012524413876235485, -0.012304686941206455, -0.015600585378706455, -0.01604003831744194, -0.01582031138241291, -0.014501952566206455, -0.015380859375, -0.012304686941206455, -0.012524413876235485, -0.008129882626235485, -0.0054931640625, -0.003076171735301614, -0.002197265625, 0.0010986328125, 0.003955077845603228, 0.005053710658103228, 0.00527343712747097, 0.007031249813735485, 0.00637206993997097, 0.009448242373764515 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.1667)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ -0.0032958984375, -0.0002197265566792339, -0.0010986328125, -0.002636718563735485, -0.001977538922801614, -0.0004394531133584678, -0.001538085867650807, -0.001538085867650807, -0.0002197265566792339, -0.0010986328125, -0.0024169920943677425, -0.0010986328125, -0.0008789062267169356, -0.003076171735301614, -0.0024169920943677425, -0.0004394531133584678, -0.0010986328125, -0.0006591796409338713, -0.0017578124534338713, -0.001977538922801614, -0.0006591796409338713, -0.001538085867650807, -0.001977538922801614, -0.0017578124534338713, -0.0013183592818677425, -0.0010986328125, -0.001977538922801614, -0.002197265625, -0.001977538922801614, -0.0028564452659338713, -0.001977538922801614, -0.001977538922801614, 0.0004394531133584678, 0.0013183592818677425, -0.0006591796409338713, 0.0, 0.0, -0.0006591796409338713, 0.0008789062267169356, 0.0002197265566792339, -0.001977538922801614, -0.001538085867650807, -0.0041748047806322575, -0.004833984188735485, -0.0068115233443677425, -0.005053710658103228, -0.008349609561264515, -0.008349609561264515, -0.0068115233443677425, -0.008349609561264515, -0.0076904296875, -0.007910155691206455, -0.00637206993997097, -0.0046142577193677425, -0.003955077845603228, -0.003955077845603228, -0.0008789062267169356, 0.001977538922801614, 0.002197265625, 0.00439453125, 0.005053710658103228, 0.007910155691206455, 0.007910155691206455, 0.00966796837747097, 0.010107421316206455, 0.00966796837747097, 0.009008788503706455, 0.009008788503706455, 0.007031249813735485, 0.006152343470603228, 0.0041748047806322575, 0.0, -0.002636718563735485, -0.00439453125, -0.008349609561264515, -0.010986328125, -0.0142822265625, -0.015380859375, -0.014721679501235485, -0.01779785193502903, -0.01669921912252903, -0.0164794921875, -0.01669921912252903, -0.015600585378706455, -0.01318359375, -0.01054687425494194, -0.00856933556497097, -0.0041748047806322575, -0.0017578124534338713, 0.0024169920943677425, 0.005932617001235485, 0.01076660118997097, 0.01384277269244194, 0.014721679501235485, 0.017578125, 0.02175292931497097, 0.019775390625, 0.02065429650247097, 0.01823730394244194, 0.015380859375, 0.01296386681497097, 0.010327148251235485, 0.0054931640625, 0.0004394531133584678, -0.003076171735301614, -0.008349609561264515, -0.012304686941206455, -0.014501952566206455, -0.01845703087747097, -0.02373046800494194, -0.02614746056497097, -0.02614746056497097, -0.02812499925494194, -0.0274658203125, -0.02702636644244194, -0.02438964694738388, -0.01933593675494194, -0.01516113243997097, -0.011206054128706455, -0.0054931640625, 0.0006591796409338713, 0.0057128905318677425, 0.01054687425494194, 0.0164794921875, 0.02131347544491291, 0.02351074106991291, 0.02790527231991291, 0.02944335900247097, 0.0296630859375, 0.02790527231991291, 0.024169921875, 0.02592773362994194, 0.01955566368997097, 0.01669921912252903, 0.010327148251235485, 0.003735351376235485, -0.0024169920943677425, -0.00856933556497097, -0.014721679501235485, -0.02197265625, -0.02680663950741291, -0.0296630859375, -0.03229980543255806, -0.03493652120232582, -0.0362548828125, -0.03493652120232582, -0.03361816331744194, -0.02812499925494194, -0.02504882775247097, -0.01889648474752903, -0.012524413876235485, -0.006152343470603228, 0.0017578124534338713, 0.00856933556497097, 0.01494140550494194, 0.02153320237994194, 0.0252685546875, 0.03120117075741291, 0.032958984375, 0.03383788838982582, 0.03471679612994194, 0.0362548828125, 0.0340576171875, 0.03032226487994194, 0.024169921875, 0.02043456956744194, 0.01186523400247097, 0.0054931640625, -0.0028564452659338713, -0.01186523400247097, -0.019775390625, -0.0252685546875, -0.03229980543255806, -0.03581542894244194, -0.0428466796875, -0.04240722581744194, -0.04240722581744194, -0.04108886793255806, -0.0384521484375, -0.03317870944738388, -0.0296630859375, -0.02131347544491291, -0.01823730394244194, -0.009008788503706455, -0.0006591796409338713, 0.0087890625, 0.01625976525247097, 0.02329101413488388, 0.03010253794491291, 0.03647460788488388, 0.03999023512005806, 0.04372558370232582, 0.04240722581744194, 0.04086913913488388, 0.03691406175494194, 0.03317870944738388, 0.028564453125, 0.02153320237994194, 0.013623046688735485, 0.007250976283103228, -0.002636718563735485, -0.01274413987994194, -0.02131347544491291, -0.028564453125, -0.03581542894244194, -0.041748046875, -0.04658202826976776, -0.0472412109375, -0.0494384765625, -0.04746093600988388, -0.04438476264476776, -0.04042968526482582, -0.03273925557732582, -0.024169921875, -0.017578125, -0.009448242373764515, 0.002197265625, 0.01054687425494194, 0.01933593675494194, 0.02438964694738388, 0.03251953050494194, 0.03911132737994194, 0.04482421651482582, 0.046142578125, 0.04658202826976776, 0.04570312425494194, 0.04086913913488388, 0.03691406175494194, 0.0296630859375, 0.02504882775247097, 0.014501952566206455, 0.00637206993997097, -0.005053710658103228, -0.01164550706744194, -0.02197265625, -0.03076171875, -0.03757324069738388, -0.04636230319738388, -0.04899902269244194, -0.050537109375, -0.05317382514476776, -0.05009765550494194, -0.04592284932732582, -0.0406494140625, -0.03559570387005806, -0.02790527231991291, -0.01735839806497097, -0.007910155691206455, -0.0002197265566792339, 0.011206054128706455, 0.02021484263241291, 0.02812499925494194, 0.03537597507238388, 0.04196777194738388, 0.04526367038488388, 0.04899902269244194, 0.04812011495232582, 0.04746093600988388, 0.04372558370232582, 0.03977050632238388, 0.03098144382238388, 0.02482910081744194, 0.014721679501235485, 0.005053710658103228, -0.003735351376235485, -0.01274413987994194, -0.02438964694738388, -0.03164062276482582, -0.03713378682732582, -0.04438476264476776, -0.04899902269244194, -0.05185546725988388, -0.05207519233226776, -0.04987792670726776, -0.04702148213982582, -0.0428466796875, -0.03515625, -0.02768554538488388, -0.02131347544491291, -0.01054687425494194, -0.0008789062267169356, 0.010327148251235485, 0.01911620981991291, 0.02812499925494194, 0.03427734225988388, 0.04196777194738388, 0.04548339545726776, 0.05009765550494194, 0.04812011495232582, 0.04570312425494194, 0.04350585862994194, 0.03669433668255806, 0.03076171875, 0.02351074106991291, 0.015380859375, 0.00637206993997097, -0.003735351376235485, -0.01406249962747097, -0.02065429650247097, -0.03208007663488388, -0.03955078125, -0.04460449144244194, -0.04987792670726776, -0.05207519233226776, -0.05075683444738388, -0.04921874776482582, -0.046142578125, -0.04196777194738388, -0.03449707105755806, -0.0252685546875, -0.01713867112994194, -0.007250976283103228, -0.0010986328125, 0.010107421316206455, 0.01845703087747097, 0.02680663950741291, 0.03559570387005806, 0.03955078125, 0.04350585862994194, 0.04592284932732582, 0.04702148213982582, 0.0439453125, 0.041748046875, 0.03757324069738388, 0.0296630859375, 0.02460937388241291, 0.01494140550494194, 0.007910155691206455, -0.0041748047806322575, -0.0142822265625, -0.02043456956744194, -0.02790527231991291, -0.0362548828125, -0.0406494140625, -0.04460449144244194, -0.046142578125, -0.0472412109375, -0.04658202826976776, -0.04218749701976776, -0.0384521484375, -0.0318603515625, -0.02570800669491291, -0.01625976525247097, -0.007910155691206455, 0.0002197265566792339, 0.008349609561264515, 0.01604003831744194, 0.02329101413488388, 0.03076171875, 0.037353515625, 0.03911132737994194, 0.04020996019244194, 0.04042968526482582, 0.03999023512005806, 0.03713378682732582, 0.03383788838982582, 0.02790527231991291, 0.02219238132238388, 0.012304686941206455, 0.005932617001235485, -0.0046142577193677425, -0.01164550706744194, -0.01735839806497097, -0.02504882775247097, -0.03339843824505806, -0.03537597507238388, -0.03933105245232582, -0.03999023512005806, -0.04108886793255806, -0.03955078125, -0.03823241963982582, -0.03317870944738388, -0.02812499925494194, -0.02285156212747097, -0.01713867112994194, -0.00747070275247097, -0.0002197265566792339, 0.0076904296875, 0.014721679501235485, 0.02043456956744194, 0.02482910081744194, 0.02988281100988388, 0.03515625, 0.03581542894244194, 0.0362548828125, 0.03449707105755806, 0.0318603515625, 0.028564453125, 0.02285156212747097, 0.01889648474752903, 0.009228515438735485, 0.0054931640625, -0.0035156249068677425, -0.0098876953125, -0.01604003831744194, -0.02263183519244194, -0.0274658203125, -0.02900390513241291, -0.03339843824505806, -0.03449707105755806, -0.03603515401482582, -0.03229980543255806, -0.03383788838982582, -0.02790527231991291, -0.02241210825741291, -0.01779785193502903, -0.01274413987994194, -0.00527343712747097, -0.0002197265566792339, 0.00527343712747097, 0.01164550706744194, 0.01779785193502903, 0.02153320237994194, 0.02680663950741291, 0.0252685546875, 0.02878417819738388, 0.02790527231991291, 0.02680663950741291, 0.02373046800494194, 0.02263183519244194, 0.01779785193502903, 0.01296386681497097, 0.0076904296875, 0.0024169920943677425, -0.002636718563735485, -0.0076904296875, -0.011206054128706455, -0.01691894419491291, -0.019775390625, -0.024169921875, -0.0252685546875, -0.02658691257238388, -0.0263671875, -0.024169921875, -0.02438964694738388, -0.02021484263241291, -0.01691894419491291, -0.01384277269244194, -0.010107421316206455, -0.0046142577193677425, 0.0, 0.0057128905318677425, 0.006591796875, 0.011425781063735485, 0.013403319753706455, 0.01604003831744194, 0.01625976525247097, 0.01735839806497097, 0.01516113243997097, 0.01604003831744194, 0.014501952566206455, 0.0142822265625, 0.01164550706744194, 0.008349609561264515, 0.00527343712747097, 0.0010986328125, -0.0028564452659338713, -0.0041748047806322575, -0.0087890625, -0.01076660118997097, -0.014721679501235485, -0.01384277269244194, -0.01494140550494194, -0.01604003831744194, -0.014721679501235485, -0.014721679501235485, -0.01494140550494194, -0.014721679501235485, -0.013623046688735485, -0.0087890625, -0.0054931640625, -0.003735351376235485, -0.0017578124534338713, 0.0008789062267169356, 0.002636718563735485, 0.003076171735301614, 0.0057128905318677425, 0.007250976283103228, 0.009448242373764515, 0.00966796837747097 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.2222)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ 0.0002197265566792339, -0.0008789062267169356, -0.0024169920943677425, -0.0013183592818677425, -0.0006591796409338713, -0.0013183592818677425, -0.003955077845603228, -0.001538085867650807, -0.0008789062267169356, -0.0017578124534338713, -0.0008789062267169356, -0.001538085867650807, -0.0002197265566792339, -0.0008789062267169356, -0.002197265625, -0.002197265625, -0.002197265625, -0.0002197265566792339, -0.0024169920943677425, -0.002197265625, 0.0, -0.0006591796409338713, -0.001538085867650807, -0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.002197265625, -0.0008789062267169356, -0.0032958984375, -0.001977538922801614, -0.001977538922801614, -0.0006591796409338713, 0.0006591796409338713, -0.0006591796409338713, 0.0008789062267169356, 0.0008789062267169356, -0.0013183592818677425, 0.0, -0.002197265625, -0.0010986328125, -0.002197265625, -0.0024169920943677425, -0.00439453125, -0.0057128905318677425, -0.00439453125, -0.004833984188735485, -0.006152343470603228, -0.006152343470603228, -0.008129882626235485, -0.007250976283103228, -0.00856933556497097, -0.0076904296875, -0.0057128905318677425, -0.003955077845603228, -0.0028564452659338713, -0.001977538922801614, 0.0004394531133584678, 0.0010986328125, 0.001977538922801614, 0.0046142577193677425, 0.0054931640625, 0.00637206993997097, 0.008129882626235485, 0.01054687425494194, 0.010107421316206455, 0.009448242373764515, 0.0087890625, 0.00637206993997097, 0.00637206993997097, 0.0057128905318677425, 0.001977538922801614, 0.0024169920943677425, -0.001977538922801614, -0.005932617001235485, -0.007031249813735485, -0.011425781063735485, -0.013623046688735485, -0.014501952566206455, -0.01713867112994194, -0.01955566368997097, -0.01801757700741291, -0.01801757700741291, -0.01669921912252903, -0.01516113243997097, -0.01186523400247097, -0.010327148251235485, -0.009008788503706455, -0.0035156249068677425, -0.0013183592818677425, 0.003735351376235485, 0.007910155691206455, 0.010986328125, 0.01494140550494194, 0.01625976525247097, 0.01933593675494194, 0.017578125, 0.01911620981991291, 0.02043456956744194, 0.01713867112994194, 0.014721679501235485, 0.012524413876235485, 0.009008788503706455, 0.0046142577193677425, 0.0028564452659338713, -0.003735351376235485, -0.0076904296875, -0.01384277269244194, -0.01735839806497097, -0.02043456956744194, -0.02285156212747097, -0.02614746056497097, -0.02680663950741291, -0.02834472618997097, -0.02812499925494194, -0.02680663950741291, -0.0230712890625, -0.01955566368997097, -0.01582031138241291, -0.009448242373764515, -0.005053710658103228, 0.0006591796409338713, 0.00527343712747097, 0.011425781063735485, 0.01604003831744194, 0.01999511756002903, 0.02373046800494194, 0.02570800669491291, 0.02922363206744194, 0.02834472618997097, 0.03010253794491291, 0.02658691257238388, 0.0230712890625, 0.01779785193502903, 0.015380859375, 0.009228515438735485, 0.0057128905318677425, -0.0024169920943677425, -0.010107421316206455, -0.01823730394244194, -0.02197265625, -0.02768554538488388, -0.02834472618997097, -0.03098144382238388, -0.03559570387005806, -0.0362548828125, -0.03647460788488388, -0.032958984375, -0.02988281100988388, -0.02570800669491291, -0.01823730394244194, -0.014721679501235485, -0.006591796875, 0.0, 0.007031249813735485, 0.01384277269244194, 0.02021484263241291, 0.02592773362994194, 0.03164062276482582, 0.0340576171875, 0.03713378682732582, 0.03757324069738388, 0.03713378682732582, 0.03361816331744194, 0.0296630859375, 0.02504882775247097, 0.01933593675494194, 0.01076660118997097, 0.0041748047806322575, -0.0041748047806322575, -0.01186523400247097, -0.01779785193502903, -0.02592773362994194, -0.0318603515625, -0.03779296949505806, -0.04042968526482582, -0.04020996019244194, -0.04350585862994194, -0.04262695088982582, -0.03955078125, -0.03691406175494194, -0.02944335900247097, -0.02219238132238388, -0.01625976525247097, -0.0076904296875, 0.001538085867650807, 0.00856933556497097, 0.01516113243997097, 0.02263183519244194, 0.03120117075741291, 0.03779296949505806, 0.03999023512005806, 0.04240722581744194, 0.04350585862994194, 0.04262695088982582, 0.04042968526482582, 0.03493652120232582, 0.02790527231991291, 0.02241210825741291, 0.01516113243997097, 0.00637206993997097, -0.00439453125, -0.01164550706744194, -0.02065429650247097, -0.02900390513241291, -0.037353515625, -0.04152831807732582, -0.04680175706744194, -0.04965820163488388, -0.04833984375, -0.04790038987994194, -0.04482421651482582, -0.04086913913488388, -0.0340576171875, -0.02504882775247097, -0.01669921912252903, -0.0076904296875, -0.0008789062267169356, 0.009008788503706455, 0.01999511756002903, 0.02702636644244194, 0.03361816331744194, 0.03713378682732582, 0.04350585862994194, 0.04877929389476776, 0.04592284932732582, 0.046142578125, 0.041748046875, 0.03779296949505806, 0.03098144382238388, 0.0230712890625, 0.01516113243997097, 0.0057128905318677425, -0.0035156249068677425, -0.01296386681497097, -0.02373046800494194, -0.02988281100988388, -0.03823241963982582, -0.04262695088982582, -0.04921874776482582, -0.05075683444738388, -0.05097655951976776, -0.04899902269244194, -0.0450439453125, -0.04020996019244194, -0.03471679612994194, -0.02790527231991291, -0.01845703087747097, -0.009008788503706455, 0.001977538922801614, 0.01186523400247097, 0.01911620981991291, 0.02702636644244194, 0.03471679612994194, 0.04262695088982582, 0.04570312425494194, 0.04877929389476776, 0.04812011495232582, 0.04746093600988388, 0.04438476264476776, 0.04108886793255806, 0.03208007663488388, 0.02438964694738388, 0.01691894419491291, 0.005053710658103228, -0.003076171735301614, -0.013623046688735485, -0.02329101413488388, -0.03076171875, -0.03999023512005806, -0.04416503757238388, -0.04987792670726776, -0.05097655951976776, -0.0516357421875, -0.0516357421875, -0.04833984375, -0.04130859300494194, -0.03537597507238388, -0.02944335900247097, -0.02109374850988388, -0.00747070275247097, 0.0010986328125, 0.009448242373764515, 0.02021484263241291, 0.03032226487994194, 0.03361816331744194, 0.04240722581744194, 0.04548339545726776, 0.04812011495232582, 0.04965820163488388, 0.04833984375, 0.0428466796875, 0.03999023512005806, 0.03339843824505806, 0.02548827975988388, 0.015600585378706455, 0.0054931640625, -0.004833984188735485, -0.01186523400247097, -0.02263183519244194, -0.03120117075741291, -0.03823241963982582, -0.04020996019244194, -0.04768066108226776, -0.05185546725988388, -0.05009765550494194, -0.05009765550494194, -0.0472412109375, -0.04130859300494194, -0.03339843824505806, -0.02680663950741291, -0.02175292931497097, -0.0087890625, 0.0010986328125, 0.011425781063735485, 0.01955566368997097, 0.02702636644244194, 0.03471679612994194, 0.03867187350988388, 0.04240722581744194, 0.04680175706744194, 0.04746093600988388, 0.04460449144244194, 0.03999023512005806, 0.03801269456744194, 0.02878417819738388, 0.0230712890625, 0.01296386681497097, 0.005932617001235485, -0.0035156249068677425, -0.012304686941206455, -0.02021484263241291, -0.02988281100988388, -0.03515625, -0.041748046875, -0.04526367038488388, -0.04592284932732582, -0.04790038987994194, -0.04482421651482582, -0.04306640475988388, -0.037353515625, -0.03251953050494194, -0.02702636644244194, -0.01889648474752903, -0.009008788503706455, 0.0004394531133584678, 0.010107421316206455, 0.01735839806497097, 0.02395019493997097, 0.03208007663488388, 0.03603515401482582, 0.03823241963982582, 0.04130859300494194, 0.0406494140625, 0.04042968526482582, 0.0384521484375, 0.032958984375, 0.02658691257238388, 0.02219238132238388, 0.01318359375, 0.005932617001235485, -0.003735351376235485, -0.0098876953125, -0.01801757700741291, -0.02482910081744194, -0.03229980543255806, -0.03757324069738388, -0.04020996019244194, -0.04152831807732582, -0.04108886793255806, -0.041748046875, -0.03691406175494194, -0.03361816331744194, -0.02658691257238388, -0.02175292931497097, -0.015600585378706455, -0.006152343470603228, 0.0008789062267169356, 0.00747070275247097, 0.0142822265625, 0.0230712890625, 0.02658691257238388, 0.02944335900247097, 0.03449707105755806, 0.03537597507238388, 0.03361816331744194, 0.03493652120232582, 0.03164062276482582, 0.02922363206744194, 0.02373046800494194, 0.01713867112994194, 0.010986328125, 0.0041748047806322575, -0.0054931640625, -0.010107421316206455, -0.01713867112994194, -0.02065429650247097, -0.02768554538488388, -0.03032226487994194, -0.03537597507238388, -0.0362548828125, -0.03339843824505806, -0.032958984375, -0.03208007663488388, -0.02768554538488388, -0.02395019493997097, -0.01801757700741291, -0.012304686941206455, -0.004833984188735485, -0.001977538922801614, 0.0057128905318677425, 0.01318359375, 0.01669921912252903, 0.019775390625, 0.02373046800494194, 0.02504882775247097, 0.02790527231991291, 0.02680663950741291, 0.0263671875, 0.02373046800494194, 0.0208740234375, 0.01713867112994194, 0.0120849609375, 0.00747070275247097, 0.003735351376235485, -0.003735351376235485, -0.007910155691206455, -0.01186523400247097, -0.01801757700741291, -0.01955566368997097, -0.02065429650247097, -0.02592773362994194, -0.02570800669491291, -0.0263671875, -0.02548827975988388, -0.02285156212747097, -0.02021484263241291, -0.01845703087747097, -0.0120849609375, -0.008129882626235485, -0.0041748047806322575, -0.0017578124534338713, 0.003735351376235485, 0.009448242373764515, 0.011206054128706455, 0.01384277269244194, 0.01516113243997097, 0.017578125, 0.01911620981991291, 0.01889648474752903, 0.01911620981991291, 0.01625976525247097, 0.014501952566206455, 0.011425781063735485, 0.008129882626235485, 0.0057128905318677425, 0.0024169920943677425, -0.0024169920943677425, -0.00439453125, -0.009008788503706455, -0.01076660118997097, -0.01296386681497097, -0.01625976525247097, -0.01691894419491291, -0.015600585378706455, -0.01604003831744194, -0.0142822265625, -0.014721679501235485, -0.01164550706744194, -0.01076660118997097, -0.009008788503706455, -0.005932617001235485, -0.0032958984375, -0.0013183592818677425, 0.001538085867650807, 0.0035156249068677425, 0.003955077845603228, 0.006152343470603228, 0.0087890625, 0.00747070275247097, 0.007031249813735485 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.2778)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ -0.0013183592818677425, -0.0017578124534338713, -0.001977538922801614, -0.001977538922801614, -0.001977538922801614, -0.0013183592818677425, -0.001538085867650807, 0.0002197265566792339, -0.0002197265566792339, -0.0028564452659338713, -0.003076171735301614, -0.0004394531133584678, -0.001977538922801614, -0.0013183592818677425, -0.0013183592818677425, -0.0024169920943677425, -0.003076171735301614, -0.0024169920943677425, -0.002197265625, -0.002636718563735485, -0.0024169920943677425, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.002197265625, -0.0008789062267169356, -0.0017578124534338713, -0.0017578124534338713, -0.001538085867650807, -0.0028564452659338713, -0.0010986328125, -0.0010986328125, -0.0017578124534338713, 0.0004394531133584678, -0.0010986328125, 0.0010986328125, 0.0002197265566792339, 0.0002197265566792339, -0.0010986328125, -0.0008789062267169356, -0.0017578124534338713, -0.0028564452659338713, -0.005932617001235485, -0.00439453125, -0.00527343712747097, -0.0054931640625, -0.007031249813735485, -0.007910155691206455, -0.007910155691206455, -0.007910155691206455, -0.007910155691206455, -0.008129882626235485, -0.00747070275247097, -0.006591796875, -0.006152343470603228, -0.002636718563735485, -0.0004394531133584678, 0.0008789062267169356, 0.001538085867650807, 0.004833984188735485, 0.006591796875, 0.00966796837747097, 0.009448242373764515, 0.0098876953125, 0.011425781063735485, 0.011425781063735485, 0.00856933556497097, 0.009228515438735485, 0.007910155691206455, 0.00527343712747097, 0.001977538922801614, 0.0006591796409338713, -0.0035156249068677425, -0.006591796875, -0.008349609561264515, -0.010986328125, -0.01296386681497097, -0.0142822265625, -0.015600585378706455, -0.0164794921875, -0.02021484263241291, -0.01735839806497097, -0.017578125, -0.01516113243997097, -0.0120849609375, -0.011206054128706455, -0.008349609561264515, -0.0057128905318677425, -0.0017578124534338713, 0.001538085867650807, 0.0057128905318677425, 0.01054687425494194, 0.01296386681497097, 0.01604003831744194, 0.01801757700741291, 0.02109374850988388, 0.019775390625, 0.01999511756002903, 0.01625976525247097, 0.01625976525247097, 0.013623046688735485, 0.011206054128706455, 0.00637206993997097, 0.0028564452659338713, -0.003955077845603228, -0.007250976283103228, -0.01296386681497097, -0.01735839806497097, -0.019775390625, -0.02504882775247097, -0.02724609337747097, -0.02834472618997097, -0.02878417819738388, -0.02724609337747097, -0.02592773362994194, -0.02351074106991291, -0.019775390625, -0.01582031138241291, -0.009228515438735485, -0.003955077845603228, 0.0004394531133584678, 0.00637206993997097, 0.009008788503706455, 0.015380859375, 0.02043456956744194, 0.02395019493997097, 0.02614746056497097, 0.02790527231991291, 0.03120117075741291, 0.02988281100988388, 0.02570800669491291, 0.02373046800494194, 0.02109374850988388, 0.01296386681497097, 0.007250976283103228, 0.0024169920943677425, -0.005053710658103228, -0.010107421316206455, -0.01801757700741291, -0.02285156212747097, -0.02680663950741291, -0.03120117075741291, -0.03427734225988388, -0.0362548828125, -0.03603515401482582, -0.03581542894244194, -0.03471679612994194, -0.02944335900247097, -0.02570800669491291, -0.01955566368997097, -0.01406249962747097, -0.00527343712747097, 0.0010986328125, 0.007031249813735485, 0.014721679501235485, 0.02175292931497097, 0.0263671875, 0.03098144382238388, 0.03383788838982582, 0.0362548828125, 0.032958984375, 0.03515625, 0.032958984375, 0.03010253794491291, 0.02438964694738388, 0.017578125, 0.01164550706744194, 0.00439453125, -0.005932617001235485, -0.012304686941206455, -0.01911620981991291, -0.02768554538488388, -0.0318603515625, -0.03669433668255806, -0.0428466796875, -0.04372558370232582, -0.04262695088982582, -0.04240722581744194, -0.03911132737994194, -0.03537597507238388, -0.03054199181497097, -0.02373046800494194, -0.01735839806497097, -0.007910155691206455, -0.001538085867650807, 0.0076904296875, 0.01713867112994194, 0.024169921875, 0.03032226487994194, 0.03581542894244194, 0.03999023512005806, 0.04306640475988388, 0.04108886793255806, 0.04306640475988388, 0.03801269456744194, 0.03537597507238388, 0.02922363206744194, 0.02175292931497097, 0.014721679501235485, 0.0046142577193677425, -0.00439453125, -0.01164550706744194, -0.02219238132238388, -0.028564453125, -0.03713378682732582, -0.04152831807732582, -0.04636230319738388, -0.05009765550494194, -0.04768066108226776, -0.0472412109375, -0.04592284932732582, -0.03911132737994194, -0.03339843824505806, -0.0274658203125, -0.01735839806497097, -0.0087890625, 0.001977538922801614, 0.010327148251235485, 0.01823730394244194, 0.02680663950741291, 0.03515625, 0.03867187350988388, 0.04372558370232582, 0.04833984375, 0.0472412109375, 0.04570312425494194, 0.04152831807732582, 0.03823241963982582, 0.03054199181497097, 0.02351074106991291, 0.014501952566206455, 0.00637206993997097, -0.0057128905318677425, -0.01274413987994194, -0.02329101413488388, -0.0318603515625, -0.03823241963982582, -0.0428466796875, -0.04877929389476776, -0.04987792670726776, -0.05097655951976776, -0.04987792670726776, -0.04833984375, -0.04328612983226776, -0.03427734225988388, -0.02790527231991291, -0.017578125, -0.006152343470603228, 0.001538085867650807, 0.012304686941206455, 0.0208740234375, 0.02680663950741291, 0.03581542894244194, 0.04306640475988388, 0.04372558370232582, 0.04877929389476776, 0.04790038987994194, 0.04746093600988388, 0.04196777194738388, 0.03669433668255806, 0.03164062276482582, 0.02395019493997097, 0.015380859375, 0.003735351376235485, -0.005932617001235485, -0.012524413876235485, -0.02263183519244194, -0.03361816331744194, -0.04042968526482582, -0.04636230319738388, -0.05031738057732582, -0.05207519233226776, -0.05075683444738388, -0.05097655951976776, -0.04636230319738388, -0.0406494140625, -0.03559570387005806, -0.02680663950741291, -0.01845703087747097, -0.010107421316206455, -0.0004394531133584678, 0.009008788503706455, 0.0208740234375, 0.02768554538488388, 0.03471679612994194, 0.0439453125, 0.04592284932732582, 0.04812011495232582, 0.04790038987994194, 0.04812011495232582, 0.04196777194738388, 0.03977050632238388, 0.03449707105755806, 0.02460937388241291, 0.0142822265625, 0.008129882626235485, -0.0041748047806322575, -0.013623046688735485, -0.02329101413488388, -0.03120117075741291, -0.03933105245232582, -0.04416503757238388, -0.04877929389476776, -0.05207519233226776, -0.05229492112994194, -0.05097655951976776, -0.04636230319738388, -0.04108886793255806, -0.03427734225988388, -0.02614746056497097, -0.0186767578125, -0.007250976283103228, 0.0017578124534338713, 0.010327148251235485, 0.019775390625, 0.0274658203125, 0.032958984375, 0.04020996019244194, 0.04460449144244194, 0.046142578125, 0.046142578125, 0.04548339545726776, 0.03999023512005806, 0.03801269456744194, 0.03098144382238388, 0.02351074106991291, 0.0142822265625, 0.006591796875, -0.00439453125, -0.012304686941206455, -0.019775390625, -0.02878417819738388, -0.03603515401482582, -0.04130859300494194, -0.04702148213982582, -0.04899902269244194, -0.04921874776482582, -0.0472412109375, -0.04218749701976776, -0.03757324069738388, -0.03142089769244194, -0.02438964694738388, -0.01582031138241291, -0.007910155691206455, -0.0004394531133584678, 0.01054687425494194, 0.01823730394244194, 0.02482910081744194, 0.02988281100988388, 0.03757324069738388, 0.04042968526482582, 0.04218749701976776, 0.04130859300494194, 0.04086913913488388, 0.03779296949505806, 0.03273925557732582, 0.02680663950741291, 0.02065429650247097, 0.012524413876235485, 0.0054931640625, -0.005053710658103228, -0.010107421316206455, -0.01779785193502903, -0.02504882775247097, -0.03339843824505806, -0.03669433668255806, -0.04152831807732582, -0.04130859300494194, -0.04262695088982582, -0.04042968526482582, -0.03713378682732582, -0.03339843824505806, -0.028564453125, -0.02109374850988388, -0.01625976525247097, -0.007250976283103228, -0.0006591796409338713, 0.00747070275247097, 0.01318359375, 0.02131347544491291, 0.02548827975988388, 0.03054199181497097, 0.032958984375, 0.03669433668255806, 0.03603515401482582, 0.03383788838982582, 0.03120117075741291, 0.0274658203125, 0.02263183519244194, 0.01823730394244194, 0.011425781063735485, 0.003076171735301614, -0.003076171735301614, -0.008129882626235485, -0.01582031138241291, -0.02131347544491291, -0.02878417819738388, -0.03010253794491291, -0.032958984375, -0.03471679612994194, -0.03559570387005806, -0.03383788838982582, -0.03098144382238388, -0.02922363206744194, -0.02373046800494194, -0.01779785193502903, -0.01274413987994194, -0.0076904296875, 0.0002197265566792339, 0.00747070275247097, 0.0098876953125, 0.015380859375, 0.019775390625, 0.02504882775247097, 0.02812499925494194, 0.02812499925494194, 0.02834472618997097, 0.02790527231991291, 0.02570800669491291, 0.02153320237994194, 0.0164794921875, 0.012524413876235485, 0.0068115233443677425, 0.003076171735301614, -0.0032958984375, -0.0068115233443677425, -0.013623046688735485, -0.01604003831744194, -0.019775390625, -0.02329101413488388, -0.02548827975988388, -0.02592773362994194, -0.02570800669491291, -0.02504882775247097, -0.02329101413488388, -0.0208740234375, -0.01735839806497097, -0.014501952566206455, -0.00966796837747097, -0.0046142577193677425, -0.0008789062267169356, 0.0046142577193677425, 0.0076904296875, 0.010986328125, 0.013623046688735485, 0.01604003831744194, 0.01823730394244194, 0.01669921912252903, 0.01823730394244194, 0.017578125, 0.01384277269244194, 0.013403319753706455, 0.01076660118997097, 0.008129882626235485, 0.0041748047806322575, 0.001538085867650807, -0.0035156249068677425, -0.0057128905318677425, -0.00747070275247097, -0.011425781063735485, -0.01406249962747097, -0.013623046688735485, -0.01516113243997097, -0.015600585378706455, -0.01713867112994194, -0.01516113243997097, -0.0142822265625, -0.010986328125, -0.010986328125, -0.0098876953125, -0.007250976283103228, -0.0032958984375, 0.0002197265566792339, -0.0010986328125, 0.0024169920943677425, 0.0057128905318677425, 0.00527343712747097, 0.00747070275247097, 0.00637206993997097, 0.0087890625 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.3333)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ -0.002197265625, -0.0008789062267169356, -0.0013183592818677425, -0.0013183592818677425, -0.0032958984375, -0.002197265625, -0.0006591796409338713, 0.0002197265566792339, -0.0004394531133584678, -0.0008789062267169356, -0.0010986328125, -0.0017578124534338713, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.0010986328125, -0.0017578124534338713, -0.0008789062267169356, -0.0006591796409338713, -0.0028564452659338713, -0.002636718563735485, 0.0006591796409338713, -0.001538085867650807, -0.0004394531133584678, -0.002197265625, -0.0013183592818677425, -0.001538085867650807, -0.002197265625, -0.0024169920943677425, -0.001977538922801614, -0.0002197265566792339, 0.0002197265566792339, 0.0008789062267169356, 0.0, -0.0017578124534338713, 0.0006591796409338713, -0.0004394531133584678, 0.0002197265566792339, -0.0002197265566792339, 0.0, -0.001977538922801614, -0.003735351376235485, -0.002636718563735485, -0.002636718563735485, -0.003955077845603228, -0.008129882626235485, -0.0068115233443677425, -0.0068115233443677425, -0.00637206993997097, -0.006591796875, -0.008129882626235485, -0.006152343470603228, -0.004833984188735485, -0.004833984188735485, -0.00439453125, -0.0024169920943677425, -0.0002197265566792339, 0.0017578124534338713, 0.0028564452659338713, 0.005053710658103228, 0.007031249813735485, 0.006152343470603228, 0.008129882626235485, 0.007250976283103228, 0.00966796837747097, 0.01054687425494194, 0.010327148251235485, 0.0087890625, 0.007910155691206455, 0.005053710658103228, 0.0028564452659338713, 0.0, -0.003735351376235485, -0.005932617001235485, -0.007250976283103228, -0.009008788503706455, -0.01274413987994194, -0.01516113243997097, -0.01713867112994194, -0.01735839806497097, -0.01779785193502903, -0.01823730394244194, -0.01779785193502903, -0.015600585378706455, -0.01164550706744194, -0.01164550706744194, -0.009448242373764515, -0.0041748047806322575, -0.0008789062267169356, 0.0028564452659338713, 0.00637206993997097, 0.01186523400247097, 0.01406249962747097, 0.017578125, 0.01823730394244194, 0.019775390625, 0.01911620981991291, 0.01933593675494194, 0.01933593675494194, 0.01625976525247097, 0.01318359375, 0.01076660118997097, 0.0068115233443677425, 0.0032958984375, -0.001538085867650807, -0.008129882626235485, -0.014501952566206455, -0.014721679501235485, -0.0186767578125, -0.02329101413488388, -0.02790527231991291, -0.02878417819738388, -0.0274658203125, -0.02658691257238388, -0.02658691257238388, -0.024169921875, -0.02109374850988388, -0.01582031138241291, -0.0098876953125, -0.0046142577193677425, 0.0002197265566792339, 0.0041748047806322575, 0.011206054128706455, 0.0164794921875, 0.019775390625, 0.02285156212747097, 0.02702636644244194, 0.0296630859375, 0.02812499925494194, 0.0296630859375, 0.02548827975988388, 0.02285156212747097, 0.01955566368997097, 0.01625976525247097, 0.009228515438735485, 0.003735351376235485, -0.00439453125, -0.00966796837747097, -0.015380859375, -0.02241210825741291, -0.02724609337747097, -0.02944335900247097, -0.032958984375, -0.03383788838982582, -0.03603515401482582, -0.03515625, -0.03229980543255806, -0.03120117075741291, -0.02658691257238388, -0.01801757700741291, -0.01296386681497097, -0.006152343470603228, -0.0002197265566792339, 0.00527343712747097, 0.013623046688735485, 0.02065429650247097, 0.02702636644244194, 0.03098144382238388, 0.03317870944738388, 0.0340576171875, 0.03603515401482582, 0.03669433668255806, 0.03427734225988388, 0.0296630859375, 0.02351074106991291, 0.02021484263241291, 0.01054687425494194, 0.00527343712747097, -0.003076171735301614, -0.01296386681497097, -0.019775390625, -0.02614746056497097, -0.03208007663488388, -0.03713378682732582, -0.03955078125, -0.03999023512005806, -0.04240722581744194, -0.04086913913488388, -0.03867187350988388, -0.03427734225988388, -0.028564453125, -0.02329101413488388, -0.01735839806497097, -0.0076904296875, -0.0006591796409338713, 0.0076904296875, 0.0164794921875, 0.02373046800494194, 0.03032226487994194, 0.03669433668255806, 0.04020996019244194, 0.0428466796875, 0.04350585862994194, 0.04130859300494194, 0.03955078125, 0.03515625, 0.02878417819738388, 0.02131347544491291, 0.01384277269244194, 0.004833984188735485, -0.003955077845603228, -0.01186523400247097, -0.02131347544491291, -0.02878417819738388, -0.03493652120232582, -0.03977050632238388, -0.04636230319738388, -0.04833984375, -0.04921874776482582, -0.04987792670726776, -0.04438476264476776, -0.04152831807732582, -0.03361816331744194, -0.0274658203125, -0.01735839806497097, -0.007250976283103228, 0.001977538922801614, 0.011425781063735485, 0.01845703087747097, 0.02592773362994194, 0.03449707105755806, 0.04196777194738388, 0.04372558370232582, 0.04548339545726776, 0.0472412109375, 0.04526367038488388, 0.04196777194738388, 0.03911132737994194, 0.03164062276482582, 0.02329101413488388, 0.01516113243997097, 0.007031249813735485, -0.0041748047806322575, -0.013623046688735485, -0.02241210825741291, -0.03120117075741291, -0.03779296949505806, -0.04328612983226776, -0.04855956882238388, -0.04921874776482582, -0.05097655951976776, -0.050537109375, -0.04746093600988388, -0.0428466796875, -0.03581542894244194, -0.02812499925494194, -0.01669921912252903, -0.008349609561264515, 0.0010986328125, 0.011206054128706455, 0.02241210825741291, 0.02812499925494194, 0.03647460788488388, 0.04196777194738388, 0.04636230319738388, 0.04899902269244194, 0.04812011495232582, 0.04877929389476776, 0.04438476264476776, 0.03955078125, 0.03076171875, 0.02504882775247097, 0.01735839806497097, 0.008129882626235485, -0.0035156249068677425, -0.01494140550494194, -0.02197265625, -0.03120117075741291, -0.03955078125, -0.04438476264476776, -0.04702148213982582, -0.05031738057732582, -0.04965820163488388, -0.04987792670726776, -0.04570312425494194, -0.04306640475988388, -0.03515625, -0.02658691257238388, -0.017578125, -0.0076904296875, 0.0008789062267169356, 0.0098876953125, 0.0186767578125, 0.02878417819738388, 0.03493652120232582, 0.04086913913488388, 0.04416503757238388, 0.04899902269244194, 0.05075683444738388, 0.04899902269244194, 0.0450439453125, 0.03955078125, 0.03164062276482582, 0.02614746056497097, 0.015380859375, 0.0054931640625, -0.0041748047806322575, -0.01296386681497097, -0.02153320237994194, -0.03142089769244194, -0.03691406175494194, -0.041748046875, -0.04921874776482582, -0.05141601338982582, -0.05229492112994194, -0.0516357421875, -0.04702148213982582, -0.041748046875, -0.03383788838982582, -0.02570800669491291, -0.01735839806497097, -0.008129882626235485, 0.0013183592818677425, 0.01164550706744194, 0.01911620981991291, 0.02702636644244194, 0.0340576171875, 0.04196777194738388, 0.0439453125, 0.04570312425494194, 0.046142578125, 0.04526367038488388, 0.04306640475988388, 0.03691406175494194, 0.03076171875, 0.02329101413488388, 0.014721679501235485, 0.005932617001235485, -0.0028564452659338713, -0.01186523400247097, -0.019775390625, -0.0296630859375, -0.0362548828125, -0.041748046875, -0.04526367038488388, -0.04526367038488388, -0.0472412109375, -0.04460449144244194, -0.04460449144244194, -0.03867187350988388, -0.03208007663488388, -0.02570800669491291, -0.01604003831744194, -0.009448242373764515, 0.002636718563735485, 0.009008788503706455, 0.01604003831744194, 0.02438964694738388, 0.03142089769244194, 0.0362548828125, 0.03867187350988388, 0.04218749701976776, 0.04130859300494194, 0.03977050632238388, 0.03647460788488388, 0.03493652120232582, 0.02680663950741291, 0.0208740234375, 0.01274413987994194, 0.005053710658103228, -0.003735351376235485, -0.011206054128706455, -0.019775390625, -0.02658691257238388, -0.03142089769244194, -0.03537597507238388, -0.03955078125, -0.04350585862994194, -0.04196777194738388, -0.03977050632238388, -0.03955078125, -0.03361816331744194, -0.02944335900247097, -0.02241210825741291, -0.0142822265625, -0.007031249813735485, -0.0002197265566792339, 0.005932617001235485, 0.014721679501235485, 0.02175292931497097, 0.02768554538488388, 0.03032226487994194, 0.0318603515625, 0.03383788838982582, 0.03581542894244194, 0.03603515401482582, 0.03120117075741291, 0.02922363206744194, 0.02153320237994194, 0.01669921912252903, 0.010986328125, 0.0041748047806322575, -0.002636718563735485, -0.0098876953125, -0.01669921912252903, -0.02241210825741291, -0.02702636644244194, -0.03098144382238388, -0.03339843824505806, -0.03515625, -0.03603515401482582, -0.03229980543255806, -0.03208007663488388, -0.0296630859375, -0.02285156212747097, -0.017578125, -0.01384277269244194, -0.004833984188735485, 0.0008789062267169356, 0.0057128905318677425, 0.01318359375, 0.01735839806497097, 0.02065429650247097, 0.02373046800494194, 0.0252685546875, 0.02834472618997097, 0.02790527231991291, 0.0274658203125, 0.0252685546875, 0.02021484263241291, 0.01691894419491291, 0.013623046688735485, 0.00856933556497097, 0.0035156249068677425, -0.0024169920943677425, -0.008349609561264515, -0.0142822265625, -0.015600585378706455, -0.01779785193502903, -0.02175292931497097, -0.02460937388241291, -0.02482910081744194, -0.0252685546875, -0.02285156212747097, -0.02482910081744194, -0.02131347544491291, -0.017578125, -0.01296386681497097, -0.009008788503706455, -0.006152343470603228, -0.001538085867650807, 0.003076171735301614, 0.00856933556497097, 0.01076660118997097, 0.0142822265625, 0.01691894419491291, 0.01669921912252903, 0.01933593675494194, 0.017578125, 0.0164794921875, 0.01516113243997097, 0.013403319753706455, 0.01054687425494194, 0.008349609561264515, 0.0068115233443677425, 0.0017578124534338713, -0.0024169920943677425, -0.0054931640625, -0.009228515438735485, -0.011206054128706455, -0.01164550706744194, -0.01494140550494194, -0.01604003831744194, -0.015380859375, -0.01735839806497097, -0.015380859375, -0.013403319753706455, -0.01274413987994194, -0.010107421316206455, -0.009008788503706455, -0.006591796875, -0.0035156249068677425, -0.001538085867650807, 0.0002197265566792339, 0.0032958984375, 0.00439453125, 0.0068115233443677425, 0.009228515438735485, 0.007910155691206455, 0.0057128905318677425 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.3889)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ -0.0013183592818677425, -0.001538085867650807, -0.0028564452659338713, -0.001977538922801614, -0.0032958984375, -0.0024169920943677425, -0.0032958984375, -0.0035156249068677425, -0.0028564452659338713, -0.001977538922801614, -0.002197265625, -0.0004394531133584678, -0.0017578124534338713, -0.003076171735301614, -0.001538085867650807, -0.0017578124534338713, -0.003076171735301614, -0.0028564452659338713, -0.0028564452659338713, -0.0024169920943677425, -0.0024169920943677425, -0.0010986328125, -0.002197265625, -0.0004394531133584678, -0.003076171735301614, -0.0010986328125, -0.001538085867650807, -0.0017578124534338713, -0.0004394531133584678, -0.0002197265566792339, -0.001538085867650807, -0.0010986328125, -0.001538085867650807, -0.0004394531133584678, -0.0002197265566792339, -0.0002197265566792339, 0.0002197265566792339, 0.0002197265566792339, -0.0013183592818677425, -0.002197265625, -0.003735351376235485, -0.0041748047806322575, -0.0046142577193677425, -0.0032958984375, -0.0054931640625, -0.0057128905318677425, -0.008349609561264515, -0.009008788503706455, -0.0087890625, -0.00856933556497097, -0.00856933556497097, -0.0068115233443677425, -0.00527343712747097, -0.0041748047806322575, -0.005053710658103228, -0.0032958984375, -0.0010986328125, 0.0002197265566792339, 0.0017578124534338713, 0.00439453125, 0.0057128905318677425, 0.0068115233443677425, 0.008349609561264515, 0.0087890625, 0.009228515438735485, 0.009448242373764515, 0.007250976283103228, 0.010327148251235485, 0.007250976283103228, 0.004833984188735485, 0.0032958984375, -0.0004394531133584678, -0.0024169920943677425, -0.005053710658103228, -0.0087890625, -0.010327148251235485, -0.01406249962747097, -0.014721679501235485, -0.017578125, -0.0164794921875, -0.017578125, -0.01713867112994194, -0.01845703087747097, -0.01604003831744194, -0.014721679501235485, -0.010107421316206455, -0.0057128905318677425, -0.004833984188735485, -0.001977538922801614, 0.0004394531133584678, 0.00527343712747097, 0.012304686941206455, 0.0142822265625, 0.01604003831744194, 0.01845703087747097, 0.01911620981991291, 0.01823730394244194, 0.02065429650247097, 0.01735839806497097, 0.01604003831744194, 0.013403319753706455, 0.010986328125, 0.0032958984375, 0.0017578124534338713, -0.001538085867650807, -0.008129882626235485, -0.01296386681497097, -0.01604003831744194, -0.02131347544491291, -0.02460937388241291, -0.02790527231991291, -0.02768554538488388, -0.02658691257238388, -0.02790527231991291, -0.02658691257238388, -0.024169921875, -0.01933593675494194, -0.01384277269244194, -0.01186523400247097, -0.0057128905318677425, 0.0006591796409338713, 0.003955077845603228, 0.01054687425494194, 0.015600585378706455, 0.01889648474752903, 0.02504882775247097, 0.02548827975988388, 0.028564453125, 0.02768554538488388, 0.02812499925494194, 0.02702636644244194, 0.02614746056497097, 0.01911620981991291, 0.0164794921875, 0.00856933556497097, 0.00439453125, -0.0032958984375, -0.010327148251235485, -0.01516113243997097, -0.02373046800494194, -0.02790527231991291, -0.03164062276482582, -0.03537597507238388, -0.0362548828125, -0.03779296949505806, -0.03383788838982582, -0.03471679612994194, -0.03010253794491291, -0.02548827975988388, -0.02021484263241291, -0.013623046688735485, -0.0076904296875, -0.0002197265566792339, 0.0068115233443677425, 0.01296386681497097, 0.02043456956744194, 0.02482910081744194, 0.03208007663488388, 0.0340576171875, 0.03383788838982582, 0.03691406175494194, 0.03603515401482582, 0.03317870944738388, 0.02944335900247097, 0.02263183519244194, 0.01955566368997097, 0.011425781063735485, 0.005932617001235485, -0.003735351376235485, -0.011425781063735485, -0.01999511756002903, -0.02570800669491291, -0.03208007663488388, -0.03559570387005806, -0.04042968526482582, -0.04196777194738388, -0.04372558370232582, -0.04262695088982582, -0.04108886793255806, -0.03383788838982582, -0.03010253794491291, -0.02373046800494194, -0.01516113243997097, -0.009008788503706455, -0.0010986328125, 0.008129882626235485, 0.015600585378706455, 0.02460937388241291, 0.0296630859375, 0.0362548828125, 0.03867187350988388, 0.04372558370232582, 0.0428466796875, 0.04130859300494194, 0.0384521484375, 0.03493652120232582, 0.02834472618997097, 0.02329101413488388, 0.01318359375, 0.004833984188735485, -0.004833984188735485, -0.012304686941206455, -0.02175292931497097, -0.02790527231991291, -0.03559570387005806, -0.0439453125, -0.04570312425494194, -0.0472412109375, -0.04658202826976776, -0.04746093600988388, -0.0439453125, -0.03867187350988388, -0.03361816331744194, -0.02680663950741291, -0.01845703087747097, -0.00856933556497097, 0.0004394531133584678, 0.009008788503706455, 0.01823730394244194, 0.02812499925494194, 0.03229980543255806, 0.03867187350988388, 0.04372558370232582, 0.046142578125, 0.04768066108226776, 0.04746093600988388, 0.04086913913488388, 0.03955078125, 0.03142089769244194, 0.02373046800494194, 0.0120849609375, 0.006152343470603228, -0.004833984188735485, -0.01318359375, -0.02395019493997097, -0.03054199181497097, -0.03933105245232582, -0.04548339545726776, -0.04965820163488388, -0.05075683444738388, -0.05229492112994194, -0.05075683444738388, -0.04921874776482582, -0.04218749701976776, -0.03471679612994194, -0.028564453125, -0.0186767578125, -0.0098876953125, -0.0006591796409338713, 0.00966796837747097, 0.01933593675494194, 0.028564453125, 0.03603515401482582, 0.04086913913488388, 0.04592284932732582, 0.04855956882238388, 0.0472412109375, 0.04921874776482582, 0.04328612983226776, 0.03955078125, 0.03383788838982582, 0.02482910081744194, 0.01384277269244194, 0.005932617001235485, -0.003076171735301614, -0.01384277269244194, -0.02329101413488388, -0.03273925557732582, -0.03911132737994194, -0.04328612983226776, -0.04921874776482582, -0.0516357421875, -0.052734375, -0.05317382514476776, -0.04790038987994194, -0.04152831807732582, -0.0362548828125, -0.02834472618997097, -0.01933593675494194, -0.0076904296875, 0.0008789062267169356, 0.010986328125, 0.02021484263241291, 0.02922363206744194, 0.03515625, 0.04240722581744194, 0.04790038987994194, 0.05009765550494194, 0.04921874776482582, 0.04921874776482582, 0.04306640475988388, 0.03823241963982582, 0.03251953050494194, 0.02504882775247097, 0.015380859375, 0.005932617001235485, -0.0054931640625, -0.012524413876235485, -0.02395019493997097, -0.03208007663488388, -0.03889160230755806, -0.04328612983226776, -0.0494384765625, -0.05031738057732582, -0.05119628831744194, -0.04987792670726776, -0.046142578125, -0.04130859300494194, -0.03449707105755806, -0.02768554538488388, -0.01735839806497097, -0.00856933556497097, 0.0004394531133584678, 0.00966796837747097, 0.017578125, 0.028564453125, 0.0340576171875, 0.03911132737994194, 0.04328612983226776, 0.04658202826976776, 0.04592284932732582, 0.04460449144244194, 0.04086913913488388, 0.03867187350988388, 0.0296630859375, 0.02373046800494194, 0.01384277269244194, 0.0046142577193677425, -0.0041748047806322575, -0.01296386681497097, -0.02219238132238388, -0.03076171875, -0.03713378682732582, -0.04108886793255806, -0.0439453125, -0.04746093600988388, -0.04899902269244194, -0.0450439453125, -0.04240722581744194, -0.03889160230755806, -0.03098144382238388, -0.02351074106991291, -0.0164794921875, -0.00856933556497097, 0.0008789062267169356, 0.0068115233443677425, 0.015380859375, 0.02614746056497097, 0.03076171875, 0.03823241963982582, 0.03911132737994194, 0.04130859300494194, 0.04020996019244194, 0.0406494140625, 0.03647460788488388, 0.03383788838982582, 0.02680663950741291, 0.02175292931497097, 0.012524413876235485, 0.006152343470603228, -0.0032958984375, -0.010107421316206455, -0.01933593675494194, -0.02790527231991291, -0.03273925557732582, -0.0362548828125, -0.04196777194738388, -0.041748046875, -0.04240722581744194, -0.04086913913488388, -0.03515625, -0.03208007663488388, -0.02878417819738388, -0.02285156212747097, -0.014721679501235485, -0.0068115233443677425, -0.0006591796409338713, 0.008349609561264515, 0.01318359375, 0.019775390625, 0.02680663950741291, 0.03229980543255806, 0.0340576171875, 0.03449707105755806, 0.03493652120232582, 0.0362548828125, 0.03098144382238388, 0.02768554538488388, 0.02197265625, 0.01669921912252903, 0.011425781063735485, 0.00439453125, -0.003955077845603228, -0.00747070275247097, -0.01735839806497097, -0.02285156212747097, -0.02790527231991291, -0.03076171875, -0.03383788838982582, -0.03427734225988388, -0.0362548828125, -0.03317870944738388, -0.03142089769244194, -0.02570800669491291, -0.02241210825741291, -0.01823730394244194, -0.013403319753706455, -0.00747070275247097, -0.0002197265566792339, 0.0054931640625, 0.01076660118997097, 0.0186767578125, 0.02043456956744194, 0.02329101413488388, 0.02702636644244194, 0.02768554538488388, 0.02680663950741291, 0.02724609337747097, 0.024169921875, 0.02241210825741291, 0.01779785193502903, 0.014721679501235485, 0.0076904296875, 0.003076171735301614, -0.0032958984375, -0.00856933556497097, -0.013403319753706455, -0.01582031138241291, -0.01955566368997097, -0.02153320237994194, -0.02658691257238388, -0.0252685546875, -0.02658691257238388, -0.02482910081744194, -0.0230712890625, -0.02219238132238388, -0.01845703087747097, -0.01318359375, -0.009448242373764515, -0.004833984188735485, 0.0, 0.0057128905318677425, 0.006591796875, 0.01186523400247097, 0.014721679501235485, 0.017578125, 0.01669921912252903, 0.01669921912252903, 0.01713867112994194, 0.01604003831744194, 0.01516113243997097, 0.0142822265625, 0.011206054128706455, 0.009448242373764515, 0.003955077845603228, 0.0024169920943677425, -0.0032958984375, -0.007250976283103228, -0.009448242373764515, -0.011425781063735485, -0.01494140550494194, -0.014721679501235485, -0.01669921912252903, -0.014501952566206455, -0.0164794921875, -0.01516113243997097, -0.015380859375, -0.012304686941206455, -0.00966796837747097, -0.00856933556497097, -0.0068115233443677425, -0.003955077845603228, -0.002197265625, 0.002636718563735485, 0.0028564452659338713, 0.004833984188735485, 0.00637206993997097, 0.007031249813735485, 0.008349609561264515, 0.008349609561264515 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.4444)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ -0.0028564452659338713, -0.002197265625, -0.0008789062267169356, -0.0008789062267169356, -0.0013183592818677425, -0.001538085867650807, -0.0024169920943677425, -0.0004394531133584678, -0.0006591796409338713, -0.0008789062267169356, -0.0008789062267169356, -0.0010986328125, -0.0013183592818677425, -0.001538085867650807, -0.001977538922801614, -0.0008789062267169356, -0.0004394531133584678, -0.0013183592818677425, 0.0, -0.001977538922801614, -0.002636718563735485, -0.001538085867650807, -0.0010986328125, -0.0035156249068677425, -0.0006591796409338713, -0.0010986328125, -0.001538085867650807, -0.0035156249068677425, -0.002636718563735485, 0.0002197265566792339, -0.0017578124534338713, -0.0013183592818677425, -0.0006591796409338713, -0.0004394531133584678, -0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, 0.0004394531133584678, 0.0, -0.0013183592818677425, -0.0028564452659338713, -0.002636718563735485, -0.0035156249068677425, -0.003955077845603228, -0.005932617001235485, -0.007031249813735485, -0.007031249813735485, -0.006152343470603228, -0.00856933556497097, -0.007910155691206455, -0.0087890625, -0.007250976283103228, -0.007031249813735485, -0.0054931640625, -0.003955077845603228, -0.0028564452659338713, -0.0017578124534338713, -0.0008789062267169356, 0.0028564452659338713, 0.0046142577193677425, 0.0046142577193677425, 0.00747070275247097, 0.008129882626235485, 0.00856933556497097, 0.008349609561264515, 0.0087890625, 0.009008788503706455, 0.009228515438735485, 0.006152343470603228, 0.0054931640625, 0.003076171735301614, -0.0008789062267169356, -0.0028564452659338713, -0.003076171735301614, -0.007031249813735485, -0.01076660118997097, -0.01406249962747097, -0.014501952566206455, -0.01604003831744194, -0.01801757700741291, -0.01911620981991291, -0.01713867112994194, -0.01779785193502903, -0.01406249962747097, -0.013403319753706455, -0.00966796837747097, -0.0076904296875, -0.0035156249068677425, -0.0008789062267169356, 0.00527343712747097, 0.00856933556497097, 0.010327148251235485, 0.01406249962747097, 0.01669921912252903, 0.01911620981991291, 0.0186767578125, 0.01713867112994194, 0.01933593675494194, 0.017578125, 0.01669921912252903, 0.014501952566206455, 0.01054687425494194, 0.0068115233443677425, 0.001538085867650807, -0.0035156249068677425, -0.007910155691206455, -0.01318359375, -0.01494140550494194, -0.01911620981991291, -0.02460937388241291, -0.02395019493997097, -0.02548827975988388, -0.02944335900247097, -0.02702636644244194, -0.02460937388241291, -0.02197265625, -0.01911620981991291, -0.015600585378706455, -0.010107421316206455, -0.0046142577193677425, 0.0008789062267169356, 0.008349609561264515, 0.00966796837747097, 0.014721679501235485, 0.02263183519244194, 0.024169921875, 0.02614746056497097, 0.02988281100988388, 0.03032226487994194, 0.03164062276482582, 0.02834472618997097, 0.02504882775247097, 0.01911620981991291, 0.015380859375, 0.007910155691206455, 0.00527343712747097, -0.003735351376235485, -0.00966796837747097, -0.01669921912252903, -0.02285156212747097, -0.02702636644244194, -0.02988281100988388, -0.03339843824505806, -0.03449707105755806, -0.03559570387005806, -0.03537597507238388, -0.03229980543255806, -0.02900390513241291, -0.0252685546875, -0.0186767578125, -0.01406249962747097, -0.0068115233443677425, -0.0006591796409338713, 0.008349609561264515, 0.015380859375, 0.02175292931497097, 0.02592773362994194, 0.03120117075741291, 0.03273925557732582, 0.03691406175494194, 0.03713378682732582, 0.03691406175494194, 0.03273925557732582, 0.03032226487994194, 0.02373046800494194, 0.02175292931497097, 0.01054687425494194, 0.00439453125, -0.002197265625, -0.012304686941206455, -0.01933593675494194, -0.02614746056497097, -0.03164062276482582, -0.03647460788488388, -0.04152831807732582, -0.04020996019244194, -0.0428466796875, -0.04086913913488388, -0.03999023512005806, -0.03581542894244194, -0.03010253794491291, -0.02351074106991291, -0.01625976525247097, -0.00747070275247097, 0.0006591796409338713, 0.00747070275247097, 0.01582031138241291, 0.024169921875, 0.02988281100988388, 0.03691406175494194, 0.03955078125, 0.04130859300494194, 0.04196777194738388, 0.04218749701976776, 0.03757324069738388, 0.03537597507238388, 0.02812499925494194, 0.02175292931497097, 0.01296386681497097, 0.0057128905318677425, -0.0035156249068677425, -0.013403319753706455, -0.02153320237994194, -0.02680663950741291, -0.0340576171875, -0.04020996019244194, -0.0428466796875, -0.04680175706744194, -0.04899902269244194, -0.04746093600988388, -0.04240722581744194, -0.04020996019244194, -0.03339843824505806, -0.02570800669491291, -0.0164794921875, -0.007910155691206455, 0.0013183592818677425, 0.010327148251235485, 0.017578125, 0.02592773362994194, 0.03317870944738388, 0.03889160230755806, 0.0439453125, 0.04570312425494194, 0.04768066108226776, 0.04658202826976776, 0.0406494140625, 0.03889160230755806, 0.03120117075741291, 0.024169921875, 0.0142822265625, 0.0041748047806322575, -0.0046142577193677425, -0.012524413876235485, -0.02329101413488388, -0.02900390513241291, -0.03669433668255806, -0.0450439453125, -0.04855956882238388, -0.0494384765625, -0.05119628831744194, -0.05185546725988388, -0.04702148213982582, -0.041748046875, -0.03537597507238388, -0.02614746056497097, -0.01779785193502903, -0.009008788503706455, 0.0008789062267169356, 0.01054687425494194, 0.01779785193502903, 0.02724609337747097, 0.0362548828125, 0.04306640475988388, 0.04438476264476776, 0.05009765550494194, 0.05031738057732582, 0.04790038987994194, 0.04350585862994194, 0.03955078125, 0.03361816331744194, 0.02504882775247097, 0.014721679501235485, 0.004833984188735485, -0.0024169920943677425, -0.0142822265625, -0.02351074106991291, -0.0318603515625, -0.04086913913488388, -0.04416503757238388, -0.04899902269244194, -0.05119628831744194, -0.05075683444738388, -0.05031738057732582, -0.04790038987994194, -0.04130859300494194, -0.03559570387005806, -0.0274658203125, -0.01823730394244194, -0.010107421316206455, 0.0002197265566792339, 0.0098876953125, 0.02065429650247097, 0.02834472618997097, 0.03559570387005806, 0.04196777194738388, 0.04438476264476776, 0.04965820163488388, 0.04877929389476776, 0.04790038987994194, 0.04262695088982582, 0.04042968526482582, 0.03164062276482582, 0.02395019493997097, 0.014501952566206455, 0.003735351376235485, -0.005053710658103228, -0.01318359375, -0.0208740234375, -0.02944335900247097, -0.04020996019244194, -0.04372558370232582, -0.04833984375, -0.05009765550494194, -0.05031738057732582, -0.05009765550494194, -0.04702148213982582, -0.04218749701976776, -0.03383788838982582, -0.02724609337747097, -0.01933593675494194, -0.0087890625, 0.0008789062267169356, 0.01076660118997097, 0.02021484263241291, 0.02570800669491291, 0.03273925557732582, 0.03889160230755806, 0.04086913913488388, 0.04812011495232582, 0.046142578125, 0.0439453125, 0.04020996019244194, 0.03691406175494194, 0.03054199181497097, 0.02285156212747097, 0.014501952566206455, 0.005053710658103228, -0.004833984188735485, -0.0120849609375, -0.02219238132238388, -0.03010253794491291, -0.03515625, -0.0406494140625, -0.04482421651482582, -0.04855956882238388, -0.04746093600988388, -0.04548339545726776, -0.04262695088982582, -0.0362548828125, -0.03361816331744194, -0.024169921875, -0.01494140550494194, -0.00637206993997097, 0.0008789062267169356, 0.009448242373764515, 0.01625976525247097, 0.02504882775247097, 0.03164062276482582, 0.0362548828125, 0.03867187350988388, 0.041748046875, 0.04218749701976776, 0.04416503757238388, 0.03691406175494194, 0.03251953050494194, 0.02768554538488388, 0.01889648474752903, 0.011206054128706455, 0.00637206993997097, -0.002197265625, -0.011206054128706455, -0.0186767578125, -0.02592773362994194, -0.03229980543255806, -0.03603515401482582, -0.04042968526482582, -0.04086913913488388, -0.04240722581744194, -0.04020996019244194, -0.03757324069738388, -0.03493652120232582, -0.02702636644244194, -0.02153320237994194, -0.01669921912252903, -0.00637206993997097, 0.0002197265566792339, 0.0076904296875, 0.01384277269244194, 0.01999511756002903, 0.02592773362994194, 0.0296630859375, 0.03383788838982582, 0.03493652120232582, 0.03361816331744194, 0.03427734225988388, 0.02922363206744194, 0.02548827975988388, 0.0208740234375, 0.01669921912252903, 0.01076660118997097, 0.0041748047806322575, -0.00439453125, -0.01054687425494194, -0.01604003831744194, -0.01999511756002903, -0.02812499925494194, -0.0296630859375, -0.03229980543255806, -0.03471679612994194, -0.03581542894244194, -0.03229980543255806, -0.03098144382238388, -0.02548827975988388, -0.02395019493997097, -0.019775390625, -0.0120849609375, -0.00637206993997097, -0.001538085867650807, 0.006152343470603228, 0.01054687425494194, 0.01735839806497097, 0.02043456956744194, 0.0230712890625, 0.02570800669491291, 0.02944335900247097, 0.02702636644244194, 0.0274658203125, 0.0230712890625, 0.02263183519244194, 0.01735839806497097, 0.01384277269244194, 0.009008788503706455, 0.003955077845603228, -0.0028564452659338713, -0.007910155691206455, -0.01296386681497097, -0.01735839806497097, -0.01955566368997097, -0.02285156212747097, -0.02570800669491291, -0.02570800669491291, -0.02570800669491291, -0.02592773362994194, -0.0230712890625, -0.02109374850988388, -0.01955566368997097, -0.014721679501235485, -0.010327148251235485, -0.005932617001235485, 0.0, 0.003076171735301614, 0.007910155691206455, 0.012524413876235485, 0.014501952566206455, 0.015600585378706455, 0.01713867112994194, 0.01845703087747097, 0.01735839806497097, 0.01625976525247097, 0.013403319753706455, 0.012524413876235485, 0.011206054128706455, 0.011206054128706455, 0.0041748047806322575, 0.001977538922801614, -0.001977538922801614, -0.006152343470603228, -0.0076904296875, -0.01186523400247097, -0.01384277269244194, -0.014501952566206455, -0.01604003831744194, -0.01494140550494194, -0.01516113243997097, -0.014501952566206455, -0.015600585378706455, -0.01318359375, -0.009448242373764515, -0.009228515438735485, -0.005932617001235485, -0.0032958984375, -0.0002197265566792339, 0.0017578124534338713, 0.002636718563735485, 0.005932617001235485, 0.0076904296875, 0.006591796875, 0.0087890625, 0.010107421316206455 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (0,)", "legendgrouptitle": { "text": "qudits, labels: (0,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.5)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x2", "y": [ -0.0010986328125, -0.0004394531133584678, -0.001538085867650807, -0.0008789062267169356, -0.002197265625, -0.0024169920943677425, -0.0024169920943677425, -0.0008789062267169356, -0.001977538922801614, -0.001977538922801614, -0.0004394531133584678, -0.0008789062267169356, -0.0006591796409338713, -0.002197265625, -0.001538085867650807, -0.0006591796409338713, -0.0013183592818677425, -0.001977538922801614, -0.001538085867650807, -0.002636718563735485, -0.0032958984375, -0.002636718563735485, -0.0017578124534338713, -0.0010986328125, -0.0008789062267169356, 0.0, -0.0006591796409338713, -0.0013183592818677425, -0.0013183592818677425, -0.002197265625, 0.0004394531133584678, -0.0006591796409338713, -0.0004394531133584678, 0.0004394531133584678, 0.0017578124534338713, 0.0010986328125, -0.0010986328125, 0.001538085867650807, 0.0, -0.001977538922801614, -0.0013183592818677425, -0.0017578124534338713, -0.002636718563735485, -0.004833984188735485, -0.0057128905318677425, -0.006591796875, -0.006591796875, -0.0076904296875, -0.008349609561264515, -0.006591796875, -0.007250976283103228, -0.009008788503706455, -0.0057128905318677425, -0.006591796875, -0.00439453125, -0.001977538922801614, -0.0002197265566792339, 0.002197265625, 0.0017578124534338713, 0.004833984188735485, 0.00637206993997097, 0.0076904296875, 0.009448242373764515, 0.0098876953125, 0.008349609561264515, 0.009448242373764515, 0.0098876953125, 0.008349609561264515, 0.00439453125, 0.0046142577193677425, 0.001538085867650807, -0.0010986328125, -0.0010986328125, -0.005053710658103228, -0.00747070275247097, -0.010107421316206455, -0.012304686941206455, -0.014721679501235485, -0.01691894419491291, -0.01735839806497097, -0.0164794921875, -0.017578125, -0.01669921912252903, -0.01494140550494194, -0.013623046688735485, -0.010986328125, -0.0087890625, -0.0035156249068677425, -0.0006591796409338713, 0.003735351376235485, 0.008349609561264515, 0.01054687425494194, 0.014501952566206455, 0.0164794921875, 0.01691894419491291, 0.01999511756002903, 0.019775390625, 0.01955566368997097, 0.01779785193502903, 0.014501952566206455, 0.014501952566206455, 0.01076660118997097, 0.007031249813735485, 0.0028564452659338713, -0.0024169920943677425, -0.0076904296875, -0.011425781063735485, -0.014721679501235485, -0.02043456956744194, -0.02373046800494194, -0.02658691257238388, -0.0274658203125, -0.02790527231991291, -0.02702636644244194, -0.0252685546875, -0.02241210825741291, -0.02131347544491291, -0.01691894419491291, -0.0087890625, -0.0054931640625, 0.0004394531133584678, 0.005932617001235485, 0.01164550706744194, 0.0142822265625, 0.01911620981991291, 0.02438964694738388, 0.02548827975988388, 0.02900390513241291, 0.02812499925494194, 0.0274658203125, 0.02702636644244194, 0.02548827975988388, 0.01933593675494194, 0.01296386681497097, 0.00856933556497097, 0.0028564452659338713, -0.003735351376235485, -0.00747070275247097, -0.01582031138241291, -0.02285156212747097, -0.0274658203125, -0.02900390513241291, -0.03339843824505806, -0.03581542894244194, -0.03581542894244194, -0.03713378682732582, -0.03339843824505806, -0.02922363206744194, -0.024169921875, -0.01955566368997097, -0.014501952566206455, -0.006591796875, 0.0013183592818677425, 0.010107421316206455, 0.01494140550494194, 0.02065429650247097, 0.0263671875, 0.03229980543255806, 0.03361816331744194, 0.03471679612994194, 0.03537597507238388, 0.03603515401482582, 0.03361816331744194, 0.02900390513241291, 0.02548827975988388, 0.0208740234375, 0.011206054128706455, 0.005053710658103228, -0.0041748047806322575, -0.010327148251235485, -0.01933593675494194, -0.02592773362994194, -0.03208007663488388, -0.03581542894244194, -0.03977050632238388, -0.04240722581744194, -0.04328612983226776, -0.04042968526482582, -0.03933105245232582, -0.03449707105755806, -0.0296630859375, -0.024169921875, -0.01691894419491291, -0.00856933556497097, 0.0006591796409338713, 0.010327148251235485, 0.015600585378706455, 0.02263183519244194, 0.0296630859375, 0.03603515401482582, 0.0406494140625, 0.04328612983226776, 0.04262695088982582, 0.0439453125, 0.03889160230755806, 0.03317870944738388, 0.02680663950741291, 0.01999511756002903, 0.01318359375, 0.006152343470603228, -0.0046142577193677425, -0.012304686941206455, -0.02021484263241291, -0.02922363206744194, -0.03647460788488388, -0.04086913913488388, -0.04526367038488388, -0.04877929389476776, -0.04965820163488388, -0.04658202826976776, -0.0450439453125, -0.03801269456744194, -0.0318603515625, -0.02592773362994194, -0.01669921912252903, -0.0068115233443677425, 0.0017578124534338713, 0.009228515438735485, 0.01933593675494194, 0.02614746056497097, 0.03229980543255806, 0.03911132737994194, 0.04438476264476776, 0.046142578125, 0.04702148213982582, 0.04658202826976776, 0.04306640475988388, 0.03779296949505806, 0.03032226487994194, 0.024169921875, 0.013403319753706455, 0.006152343470603228, -0.003076171735301614, -0.013403319753706455, -0.024169921875, -0.0296630859375, -0.0384521484375, -0.0439453125, -0.04812011495232582, -0.04965820163488388, -0.05185546725988388, -0.050537109375, -0.0450439453125, -0.04152831807732582, -0.03559570387005806, -0.0274658203125, -0.01713867112994194, -0.009228515438735485, -0.0002197265566792339, 0.011425781063735485, 0.02043456956744194, 0.03010253794491291, 0.03471679612994194, 0.0428466796875, 0.04680175706744194, 0.04877929389476776, 0.04812011495232582, 0.0494384765625, 0.04460449144244194, 0.03999023512005806, 0.03339843824505806, 0.02395019493997097, 0.014721679501235485, 0.0057128905318677425, -0.0046142577193677425, -0.01384277269244194, -0.02329101413488388, -0.03098144382238388, -0.03933105245232582, -0.0450439453125, -0.04899902269244194, -0.05119628831744194, -0.05097655951976776, -0.0516357421875, -0.04680175706744194, -0.0428466796875, -0.03449707105755806, -0.02548827975988388, -0.0186767578125, -0.011206054128706455, 0.0010986328125, 0.0087890625, 0.01823730394244194, 0.02922363206744194, 0.03713378682732582, 0.04372558370232582, 0.04526367038488388, 0.04987792670726776, 0.04790038987994194, 0.04702148213982582, 0.04350585862994194, 0.03669433668255806, 0.03054199181497097, 0.024169921875, 0.01604003831744194, 0.0046142577193677425, -0.003955077845603228, -0.012524413876235485, -0.02153320237994194, -0.02944335900247097, -0.04020996019244194, -0.04372558370232582, -0.04899902269244194, -0.05031738057732582, -0.05075683444738388, -0.05097655951976776, -0.04658202826976776, -0.04218749701976776, -0.03339843824505806, -0.02724609337747097, -0.01713867112994194, -0.008129882626235485, 0.0, 0.010327148251235485, 0.01779785193502903, 0.02834472618997097, 0.0340576171875, 0.03889160230755806, 0.0439453125, 0.0472412109375, 0.04768066108226776, 0.04702148213982582, 0.04240722581744194, 0.03977050632238388, 0.0296630859375, 0.02329101413488388, 0.01582031138241291, 0.007031249813735485, -0.0024169920943677425, -0.01186523400247097, -0.02065429650247097, -0.02878417819738388, -0.0362548828125, -0.0406494140625, -0.04482421651482582, -0.04680175706744194, -0.04702148213982582, -0.04680175706744194, -0.04196777194738388, -0.03779296949505806, -0.03142089769244194, -0.02482910081744194, -0.0164794921875, -0.006591796875, 0.0004394531133584678, 0.01076660118997097, 0.01823730394244194, 0.02460937388241291, 0.03229980543255806, 0.03581542894244194, 0.03933105245232582, 0.04262695088982582, 0.041748046875, 0.04020996019244194, 0.03779296949505806, 0.03208007663488388, 0.02658691257238388, 0.02285156212747097, 0.01318359375, 0.0046142577193677425, -0.0032958984375, -0.010327148251235485, -0.01735839806497097, -0.02570800669491291, -0.03208007663488388, -0.03691406175494194, -0.0406494140625, -0.04020996019244194, -0.04108886793255806, -0.04130859300494194, -0.03911132737994194, -0.03449707105755806, -0.02702636644244194, -0.02153320237994194, -0.01669921912252903, -0.0076904296875, -0.0006591796409338713, 0.008349609561264515, 0.013623046688735485, 0.02219238132238388, 0.02724609337747097, 0.02944335900247097, 0.03427734225988388, 0.03537597507238388, 0.0340576171875, 0.03603515401482582, 0.03427734225988388, 0.02790527231991291, 0.02153320237994194, 0.01691894419491291, 0.0098876953125, 0.004833984188735485, -0.003076171735301614, -0.00966796837747097, -0.014721679501235485, -0.02329101413488388, -0.02680663950741291, -0.03032226487994194, -0.03251953050494194, -0.03361816331744194, -0.03449707105755806, -0.03361816331744194, -0.03164062276482582, -0.02768554538488388, -0.02395019493997097, -0.01845703087747097, -0.01186523400247097, -0.005932617001235485, 0.0, 0.006591796875, 0.0098876953125, 0.01669921912252903, 0.02021484263241291, 0.02395019493997097, 0.02658691257238388, 0.02768554538488388, 0.028564453125, 0.02680663950741291, 0.0252685546875, 0.02153320237994194, 0.01713867112994194, 0.01406249962747097, 0.006591796875, 0.003076171735301614, -0.0017578124534338713, -0.00856933556497097, -0.01164550706744194, -0.017578125, -0.02065429650247097, -0.02263183519244194, -0.02395019493997097, -0.02592773362994194, -0.02658691257238388, -0.02482910081744194, -0.02285156212747097, -0.02153320237994194, -0.01713867112994194, -0.013403319753706455, -0.008349609561264515, -0.0041748047806322575, 0.0, 0.0028564452659338713, 0.006591796875, 0.00966796837747097, 0.01318359375, 0.017578125, 0.01669921912252903, 0.01779785193502903, 0.01691894419491291, 0.01779785193502903, 0.0164794921875, 0.013403319753706455, 0.0120849609375, 0.008129882626235485, 0.0041748047806322575, 0.0017578124534338713, -0.002197265625, -0.0035156249068677425, -0.007910155691206455, -0.011206054128706455, -0.01318359375, -0.015380859375, -0.0164794921875, -0.01604003831744194, -0.01713867112994194, -0.01406249962747097, -0.015600585378706455, -0.013623046688735485, -0.011425781063735485, -0.010107421316206455, -0.007031249813735485, -0.002636718563735485, -0.0013183592818677425, 0.0, 0.0017578124534338713, 0.00527343712747097, 0.00637206993997097, 0.00747070275247097, 0.0076904296875, 0.008129882626235485 ], "yaxis": "y2" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ 0.0, 0.0028564452659338713, -0.002197265625, -0.0017578124534338713, 0.0032958984375, -0.0032958984375, 0.0035156249068677425, 0.0032958984375, -0.0010986328125, 0.0068115233443677425, 0.004833984188735485, 0.0041748047806322575, -0.002197265625, 0.003076171735301614, 0.001538085867650807, 0.0046142577193677425, 0.001538085867650807, 0.0017578124534338713, -0.0006591796409338713, 0.0035156249068677425, 0.0010986328125, -0.0013183592818677425, 0.007250976283103228, 0.00527343712747097, 0.0046142577193677425, 0.0017578124534338713, 0.001977538922801614, -0.0035156249068677425, 0.002636718563735485, -0.0004394531133584678, 0.0054931640625, 0.004833984188735485, -0.00439453125, 0.0024169920943677425, 0.0010986328125, -0.0017578124534338713, 0.0008789062267169356, -0.003076171735301614, -0.002636718563735485, 0.005053710658103228, 0.0035156249068677425, 0.007250976283103228, 0.001977538922801614, 0.008129882626235485, 0.00637206993997097, 0.006152343470603228, 0.006152343470603228, 0.01274413987994194, 0.006591796875, 0.01384277269244194, 0.0041748047806322575, 0.008129882626235485, -0.0008789062267169356, 0.0008789062267169356, 0.0, 0.0028564452659338713, -0.0006591796409338713, -0.0041748047806322575, -0.0057128905318677425, -0.009448242373764515, -0.01164550706744194, -0.01274413987994194, -0.010107421316206455, -0.010327148251235485, -0.013403319753706455, -0.00527343712747097, -0.00966796837747097, -0.008349609561264515, -0.0028564452659338713, 0.0004394531133584678, 0.002197265625, 0.0032958984375, 0.0028564452659338713, 0.006591796875, 0.010986328125, 0.0186767578125, 0.02065429650247097, 0.01516113243997097, 0.0230712890625, 0.0142822265625, 0.01516113243997097, 0.01582031138241291, 0.010986328125, 0.01911620981991291, 0.01296386681497097, 0.009008788503706455, -0.002197265625, -0.0013183592818677425, -0.003076171735301614, -0.012304686941206455, -0.01604003831744194, -0.01911620981991291, -0.01911620981991291, -0.01604003831744194, -0.019775390625, -0.02043456956744194, -0.0252685546875, -0.01516113243997097, -0.01801757700741291, -0.0164794921875, -0.008349609561264515, -0.00856933556497097, -0.0054931640625, 0.00527343712747097, 0.00637206993997097, 0.01823730394244194, 0.014501952566206455, 0.02438964694738388, 0.02285156212747097, 0.02878417819738388, 0.02658691257238388, 0.03076171875, 0.02922363206744194, 0.02263183519244194, 0.0263671875, 0.01801757700741291, 0.0120849609375, 0.0098876953125, 0.005932617001235485, -0.001977538922801614, -0.0035156249068677425, -0.0186767578125, -0.014721679501235485, -0.02658691257238388, -0.02658691257238388, -0.03076171875, -0.02944335900247097, -0.03076171875, -0.03603515401482582, -0.02878417819738388, -0.02351074106991291, -0.017578125, -0.01669921912252903, -0.005932617001235485, -0.002197265625, 0.006152343470603228, 0.009008788503706455, 0.015600585378706455, 0.02592773362994194, 0.02944335900247097, 0.03076171875, 0.0340576171875, 0.04196777194738388, 0.03427734225988388, 0.032958984375, 0.0318603515625, 0.02944335900247097, 0.0252685546875, 0.01516113243997097, 0.01384277269244194, 0.0024169920943677425, -0.002636718563735485, -0.012524413876235485, -0.0186767578125, -0.0263671875, -0.03471679612994194, -0.03669433668255806, -0.03889160230755806, -0.03757324069738388, -0.03515625, -0.03537597507238388, -0.0318603515625, -0.03559570387005806, -0.024169921875, -0.01779785193502903, -0.00637206993997097, 0.0002197265566792339, 0.008349609561264515, 0.0120849609375, 0.02043456956744194, 0.03010253794491291, 0.03713378682732582, 0.03691406175494194, 0.0428466796875, 0.04570312425494194, 0.04240722581744194, 0.04482421651482582, 0.03823241963982582, 0.03251953050494194, 0.02768554538488388, 0.02065429650247097, 0.01582031138241291, 0.0057128905318677425, -0.004833984188735485, -0.012524413876235485, -0.01845703087747097, -0.02658691257238388, -0.03273925557732582, -0.03911132737994194, -0.04020996019244194, -0.04262695088982582, -0.04526367038488388, -0.03933105245232582, -0.04262695088982582, -0.03779296949505806, -0.02768554538488388, -0.01955566368997097, -0.01713867112994194, -0.001538085867650807, 0.003955077845603228, 0.01801757700741291, 0.02197265625, 0.03823241963982582, 0.037353515625, 0.0494384765625, 0.04987792670726776, 0.05668945237994194, 0.04812011495232582, 0.04987792670726776, 0.05009765550494194, 0.04306640475988388, 0.03713378682732582, 0.02548827975988388, 0.02043456956744194, 0.0054931640625, -0.007250976283103228, -0.011425781063735485, -0.01999511756002903, -0.03537597507238388, -0.03471679612994194, -0.04438476264476776, -0.04548339545726776, -0.04790038987994194, -0.04987792670726776, -0.05119628831744194, -0.04592284932732582, -0.03823241963982582, -0.03076171875, -0.02131347544491291, -0.01933593675494194, -0.0013183592818677425, 0.005932617001235485, 0.015380859375, 0.02702636644244194, 0.03537597507238388, 0.04196777194738388, 0.05097655951976776, 0.05119628831744194, 0.0538330078125, 0.05537109076976776, 0.05031738057732582, 0.04592284932732582, 0.04702148213982582, 0.03317870944738388, 0.028564453125, 0.01823730394244194, 0.010986328125, -0.002636718563735485, -0.0087890625, -0.02812499925494194, -0.03493652120232582, -0.04086913913488388, -0.0450439453125, -0.04965820163488388, -0.05229492112994194, -0.05712890625, -0.04746093600988388, -0.04877929389476776, -0.03757324069738388, -0.03164062276482582, -0.02592773362994194, -0.01801757700741291, -0.0010986328125, 0.008129882626235485, 0.02021484263241291, 0.03032226487994194, 0.04108886793255806, 0.04768066108226776, 0.04460449144244194, 0.054931640625, 0.05998535081744194, 0.05998535081744194, 0.05185546725988388, 0.05251464620232582, 0.04020996019244194, 0.03273925557732582, 0.0252685546875, 0.02065429650247097, 0.00527343712747097, -0.0024169920943677425, -0.0164794921875, -0.02153320237994194, -0.0296630859375, -0.0450439453125, -0.04790038987994194, -0.04746093600988388, -0.0538330078125, -0.05317382514476776, -0.04987792670726776, -0.04812011495232582, -0.037353515625, -0.03559570387005806, -0.02790527231991291, -0.01384277269244194, -0.00856933556497097, 0.006591796875, 0.01494140550494194, 0.02878417819738388, 0.03581542894244194, 0.04482421651482582, 0.05339355394244194, 0.05712890625, 0.05405273288488388, 0.05229492112994194, 0.04812011495232582, 0.04855956882238388, 0.03801269456744194, 0.03713378682732582, 0.0296630859375, 0.01604003831744194, 0.009008788503706455, -0.0054931640625, -0.010986328125, -0.02395019493997097, -0.028564453125, -0.03779296949505806, -0.04416503757238388, -0.05229492112994194, -0.05471191182732582, -0.05207519233226776, -0.04658202826976776, -0.04987792670726776, -0.04196777194738388, -0.032958984375, -0.02768554538488388, -0.009228515438735485, -0.0046142577193677425, 0.0087890625, 0.011425781063735485, 0.02065429650247097, 0.03361816331744194, 0.03955078125, 0.04833984375, 0.04965820163488388, 0.05515136569738388, 0.04965820163488388, 0.05009765550494194, 0.04328612983226776, 0.04262695088982582, 0.03339843824505806, 0.02922363206744194, 0.01384277269244194, 0.0068115233443677425, 0.0006591796409338713, -0.01296386681497097, -0.02065429650247097, -0.02702636644244194, -0.03339843824505806, -0.0428466796875, -0.0428466796875, -0.04790038987994194, -0.04921874776482582, -0.03713378682732582, -0.0439453125, -0.03164062276482582, -0.02395019493997097, -0.01669921912252903, -0.01582031138241291, -0.0076904296875, 0.00747070275247097, 0.01823730394244194, 0.01955566368997097, 0.02988281100988388, 0.03120117075741291, 0.03493652120232582, 0.04746093600988388, 0.04086913913488388, 0.04680175706744194, 0.04306640475988388, 0.04262695088982582, 0.03142089769244194, 0.02614746056497097, 0.02373046800494194, 0.01076660118997097, 0.0041748047806322575, -0.0024169920943677425, -0.014501952566206455, -0.01845703087747097, -0.028564453125, -0.03120117075741291, -0.03427734225988388, -0.03999023512005806, -0.03779296949505806, -0.0362548828125, -0.03537597507238388, -0.03559570387005806, -0.02614746056497097, -0.024169921875, -0.0186767578125, -0.01296386681497097, 0.0017578124534338713, 0.0054931640625, 0.01164550706744194, 0.02263183519244194, 0.02482910081744194, 0.02570800669491291, 0.0318603515625, 0.03493652120232582, 0.03449707105755806, 0.03251953050494194, 0.03559570387005806, 0.02724609337747097, 0.03273925557732582, 0.02065429650247097, 0.01801757700741291, 0.01296386681497097, 0.0035156249068677425, -0.0032958984375, -0.0087890625, -0.015380859375, -0.017578125, -0.02373046800494194, -0.03142089769244194, -0.03120117075741291, -0.032958984375, -0.03493652120232582, -0.03164062276482582, -0.02504882775247097, -0.02351074106991291, -0.02131347544491291, -0.010986328125, -0.001977538922801614, 0.0004394531133584678, 0.0068115233443677425, 0.0054931640625, 0.012524413876235485, 0.01384277269244194, 0.019775390625, 0.02922363206744194, 0.02768554538488388, 0.03164062276482582, 0.03229980543255806, 0.02988281100988388, 0.02175292931497097, 0.0230712890625, 0.02175292931497097, 0.0164794921875, 0.0098876953125, 0.0054931640625, -0.001538085867650807, -0.0087890625, -0.01406249962747097, -0.009448242373764515, -0.012524413876235485, -0.01823730394244194, -0.02197265625, -0.02329101413488388, -0.02329101413488388, -0.024169921875, -0.02175292931497097, -0.0120849609375, -0.01384277269244194, -0.0054931640625, -0.0008789062267169356, 0.0002197265566792339, 0.006591796875, 0.005053710658103228, 0.012304686941206455, 0.015380859375, 0.01406249962747097, 0.014501952566206455, 0.01889648474752903, 0.01845703087747097, 0.01384277269244194, 0.01406249962747097, 0.01713867112994194, 0.013623046688735485, 0.015380859375, 0.011206054128706455, 0.0024169920943677425, 0.00439453125, 0.0046142577193677425, -0.0010986328125, -0.002636718563735485, -0.00637206993997097, -0.003955077845603228, -0.01186523400247097, -0.0120849609375, -0.01296386681497097, -0.009008788503706455 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.0556)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ 0.0041748047806322575, -0.0013183592818677425, 0.0017578124534338713, -0.002636718563735485, -0.0010986328125, -0.001977538922801614, 0.003735351376235485, -0.0024169920943677425, -0.003076171735301614, 0.0010986328125, -0.0017578124534338713, 0.004833984188735485, -0.0028564452659338713, 0.004833984188735485, -0.0032958984375, 0.005053710658103228, 0.00439453125, 0.002636718563735485, -0.0013183592818677425, 0.00527343712747097, 0.0006591796409338713, 0.005932617001235485, -0.0035156249068677425, 0.007910155691206455, 0.002197265625, 0.0010986328125, 0.0028564452659338713, 0.0054931640625, -0.0008789062267169356, 0.002636718563735485, 0.003735351376235485, -0.001538085867650807, -0.0024169920943677425, 0.0024169920943677425, -0.0046142577193677425, -0.0041748047806322575, -0.0046142577193677425, -0.002197265625, 0.0008789062267169356, 0.0054931640625, 0.0046142577193677425, 0.001977538922801614, 0.006591796875, 0.011425781063735485, 0.003955077845603228, 0.003955077845603228, 0.007031249813735485, 0.009228515438735485, 0.0068115233443677425, 0.00439453125, 0.0054931640625, 0.002636718563735485, 0.007910155691206455, 0.003735351376235485, 0.001538085867650807, -0.00527343712747097, -0.001538085867650807, -0.003735351376235485, -0.0087890625, -0.012524413876235485, -0.010986328125, -0.008129882626235485, -0.010107421316206455, -0.0098876953125, -0.014721679501235485, -0.014501952566206455, -0.010107421316206455, -0.009228515438735485, -0.005053710658103228, -0.00856933556497097, -0.0028564452659338713, -0.0004394531133584678, 0.0046142577193677425, 0.010986328125, 0.01406249962747097, 0.01516113243997097, 0.02065429650247097, 0.01691894419491291, 0.0142822265625, 0.01889648474752903, 0.0142822265625, 0.015600585378706455, 0.015600585378706455, 0.012524413876235485, 0.0068115233443677425, 0.005053710658103228, 0.00637206993997097, 0.003735351376235485, -0.005932617001235485, -0.010327148251235485, -0.012524413876235485, -0.01164550706744194, -0.02065429650247097, -0.01955566368997097, -0.02175292931497097, -0.02482910081744194, -0.01691894419491291, -0.02153320237994194, -0.015380859375, -0.011425781063735485, -0.014501952566206455, -0.009008788503706455, -0.00527343712747097, 0.006152343470603228, 0.011206054128706455, 0.01604003831744194, 0.01494140550494194, 0.02043456956744194, 0.02373046800494194, 0.024169921875, 0.03098144382238388, 0.02548827975988388, 0.02438964694738388, 0.0230712890625, 0.02878417819738388, 0.02570800669491291, 0.013623046688735485, 0.01076660118997097, 0.0017578124534338713, 0.0002197265566792339, -0.008129882626235485, -0.017578125, -0.01604003831744194, -0.02658691257238388, -0.02878417819738388, -0.02570800669491291, -0.03383788838982582, -0.03208007663488388, -0.03098144382238388, -0.02548827975988388, -0.02395019493997097, -0.02373046800494194, -0.01889648474752903, -0.004833984188735485, -0.003955077845603228, 0.009228515438735485, 0.015380859375, 0.0142822265625, 0.02065429650247097, 0.0263671875, 0.03120117075741291, 0.03713378682732582, 0.03515625, 0.03955078125, 0.03515625, 0.03032226487994194, 0.0252685546875, 0.02834472618997097, 0.01911620981991291, 0.0120849609375, -0.0013183592818677425, -0.001538085867650807, -0.009448242373764515, -0.0142822265625, -0.02197265625, -0.02768554538488388, -0.03559570387005806, -0.03823241963982582, -0.03669433668255806, -0.04042968526482582, -0.04306640475988388, -0.03383788838982582, -0.0296630859375, -0.02329101413488388, -0.015600585378706455, -0.010986328125, -0.0068115233443677425, 0.0057128905318677425, 0.01669921912252903, 0.02021484263241291, 0.02900390513241291, 0.04042968526482582, 0.03889160230755806, 0.04262695088982582, 0.0450439453125, 0.0494384765625, 0.04152831807732582, 0.037353515625, 0.037353515625, 0.02790527231991291, 0.02043456956744194, 0.014721679501235485, 0.00856933556497097, -0.0076904296875, -0.007910155691206455, -0.01625976525247097, -0.032958984375, -0.03383788838982582, -0.03889160230755806, -0.04482421651482582, -0.041748046875, -0.04790038987994194, -0.04592284932732582, -0.04306640475988388, -0.03977050632238388, -0.02482910081744194, -0.01889648474752903, -0.012304686941206455, 0.0008789062267169356, 0.0076904296875, 0.01911620981991291, 0.02175292931497097, 0.03361816331744194, 0.04548339545726776, 0.04965820163488388, 0.04899902269244194, 0.052734375, 0.04746093600988388, 0.04877929389476776, 0.04240722581744194, 0.04526367038488388, 0.03713378682732582, 0.02351074106991291, 0.01625976525247097, 0.0068115233443677425, -0.0002197265566792339, -0.01384277269244194, -0.02614746056497097, -0.03273925557732582, -0.03911132737994194, -0.04196777194738388, -0.046142578125, -0.05075683444738388, -0.05405273288488388, -0.04877929389476776, -0.0494384765625, -0.0406494140625, -0.03647460788488388, -0.02790527231991291, -0.01582031138241291, -0.001977538922801614, 0.007910155691206455, 0.014721679501235485, 0.028564453125, 0.03933105245232582, 0.04108886793255806, 0.05097655951976776, 0.05734863132238388, 0.0560302734375, 0.05756835639476776, 0.0516357421875, 0.04899902269244194, 0.03867187350988388, 0.03120117075741291, 0.02922363206744194, 0.01779785193502903, 0.006591796875, -0.0098876953125, -0.015600585378706455, -0.02460937388241291, -0.0340576171875, -0.037353515625, -0.05009765550494194, -0.05119628831744194, -0.05471191182732582, -0.054931640625, -0.04855956882238388, -0.05229492112994194, -0.0406494140625, -0.02944335900247097, -0.02548827975988388, -0.010107421316206455, -0.00439453125, 0.010327148251235485, 0.01296386681497097, 0.0263671875, 0.03977050632238388, 0.04482421651482582, 0.0494384765625, 0.05471191182732582, 0.05998535081744194, 0.05866698920726776, 0.05317382514476776, 0.04636230319738388, 0.04592284932732582, 0.03427734225988388, 0.02482910081744194, 0.019775390625, 0.0024169920943677425, -0.0017578124534338713, -0.01889648474752903, -0.024169921875, -0.03010253794491291, -0.04438476264476776, -0.04592284932732582, -0.0538330078125, -0.05251464620232582, -0.0516357421875, -0.05295410007238388, -0.0406494140625, -0.04042968526482582, -0.03010253794491291, -0.02395019493997097, -0.01625976525247097, -0.0068115233443677425, 0.0028564452659338713, 0.015380859375, 0.0263671875, 0.03054199181497097, 0.03977050632238388, 0.04746093600988388, 0.0538330078125, 0.05207519233226776, 0.05800781026482582, 0.052734375, 0.0516357421875, 0.04196777194738388, 0.03471679612994194, 0.0208740234375, 0.01999511756002903, 0.010107421316206455, -0.007250976283103228, -0.01318359375, -0.02329101413488388, -0.03010253794491291, -0.04328612983226776, -0.0472412109375, -0.05009765550494194, -0.05229492112994194, -0.04636230319738388, -0.05075683444738388, -0.04702148213982582, -0.03867187350988388, -0.03427734225988388, -0.0252685546875, -0.01516113243997097, -0.0017578124534338713, 0.00439453125, 0.01186523400247097, 0.02438964694738388, 0.03208007663488388, 0.03581542894244194, 0.0428466796875, 0.04526367038488388, 0.04768066108226776, 0.05031738057732582, 0.05141601338982582, 0.04812011495232582, 0.04306640475988388, 0.03603515401482582, 0.02680663950741291, 0.012524413876235485, 0.0024169920943677425, -0.008349609561264515, -0.006591796875, -0.01735839806497097, -0.02592773362994194, -0.03933105245232582, -0.04262695088982582, -0.03955078125, -0.04790038987994194, -0.04921874776482582, -0.0439453125, -0.04196777194738388, -0.03054199181497097, -0.02790527231991291, -0.015380859375, -0.01384277269244194, -0.0013183592818677425, -0.0004394531133584678, 0.01516113243997097, 0.02175292931497097, 0.03098144382238388, 0.03515625, 0.03801269456744194, 0.04812011495232582, 0.041748046875, 0.04152831807732582, 0.04020996019244194, 0.04482421651482582, 0.03889160230755806, 0.03120117075741291, 0.02153320237994194, 0.01384277269244194, 0.008349609561264515, -0.00856933556497097, -0.010986328125, -0.01955566368997097, -0.02460937388241291, -0.03076171875, -0.03669433668255806, -0.0340576171875, -0.03911132737994194, -0.04218749701976776, -0.03098144382238388, -0.02944335900247097, -0.02878417819738388, -0.0230712890625, -0.013623046688735485, -0.0087890625, 0.0002197265566792339, 0.0024169920943677425, 0.010986328125, 0.01582031138241291, 0.028564453125, 0.02702636644244194, 0.03779296949505806, 0.03515625, 0.04020996019244194, 0.0340576171875, 0.03273925557732582, 0.03471679612994194, 0.03208007663488388, 0.01845703087747097, 0.015380859375, 0.0142822265625, 0.0041748047806322575, 0.0041748047806322575, -0.009228515438735485, -0.01889648474752903, -0.02175292931497097, -0.02878417819738388, -0.0296630859375, -0.02878417819738388, -0.0318603515625, -0.03273925557732582, -0.02548827975988388, -0.02548827975988388, -0.02175292931497097, -0.01625976525247097, -0.01296386681497097, -0.01054687425494194, -0.005932617001235485, 0.0057128905318677425, 0.0076904296875, 0.01076660118997097, 0.01582031138241291, 0.02065429650247097, 0.02241210825741291, 0.03032226487994194, 0.03317870944738388, 0.0263671875, 0.02922363206744194, 0.02131347544491291, 0.02460937388241291, 0.01735839806497097, 0.00856933556497097, 0.009228515438735485, 0.008129882626235485, 0.0010986328125, -0.0035156249068677425, -0.01076660118997097, -0.01691894419491291, -0.014721679501235485, -0.01823730394244194, -0.02482910081744194, -0.02065429650247097, -0.01604003831744194, -0.02285156212747097, -0.0142822265625, -0.01713867112994194, -0.01406249962747097, -0.005932617001235485, -0.00527343712747097, -0.0013183592818677425, 0.0017578124534338713, 0.0057128905318677425, 0.006152343470603228, 0.0087890625, 0.01164550706744194, 0.01779785193502903, 0.02131347544491291, 0.0208740234375, 0.015600585378706455, 0.01713867112994194, 0.0186767578125, 0.01318359375, 0.01318359375, 0.007031249813735485, 0.003076171735301614, 0.0, -0.001977538922801614, 0.0002197265566792339, -0.0057128905318677425, -0.0087890625, -0.008129882626235485, -0.010986328125, -0.0057128905318677425, -0.009448242373764515, -0.011425781063735485 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.1111)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ -0.0024169920943677425, -0.002636718563735485, -0.0035156249068677425, 0.0046142577193677425, -0.0008789062267169356, 0.0008789062267169356, 0.0002197265566792339, 0.0024169920943677425, 0.001538085867650807, -0.0004394531133584678, -0.003735351376235485, -0.001538085867650807, 0.0004394531133584678, 0.003735351376235485, 0.0017578124534338713, 0.00439453125, -0.0013183592818677425, 0.0046142577193677425, -0.0008789062267169356, -0.001977538922801614, 0.00637206993997097, 0.0041748047806322575, 0.003735351376235485, 0.0010986328125, 0.0004394531133584678, -0.001538085867650807, 0.0004394531133584678, -0.0008789062267169356, -0.0013183592818677425, 0.0, 0.0032958984375, 0.0028564452659338713, -0.0035156249068677425, -0.005053710658103228, -0.003735351376235485, 0.0035156249068677425, -0.001538085867650807, 0.0010986328125, -0.0002197265566792339, -0.0002197265566792339, 0.001538085867650807, 0.0013183592818677425, 0.0028564452659338713, 0.0002197265566792339, 0.0057128905318677425, 0.006591796875, 0.007910155691206455, 0.006591796875, 0.009228515438735485, 0.01186523400247097, 0.0032958984375, 0.009448242373764515, 0.001977538922801614, 0.0032958984375, -0.002636718563735485, -0.0035156249068677425, -0.006152343470603228, -0.002636718563735485, -0.00637206993997097, -0.01274413987994194, -0.008349609561264515, -0.01054687425494194, -0.0120849609375, -0.01076660118997097, -0.006591796875, -0.013403319753706455, -0.0120849609375, -0.009448242373764515, -0.009448242373764515, -0.0013183592818677425, 0.002636718563735485, -0.002197265625, 0.0041748047806322575, 0.0041748047806322575, 0.01625976525247097, 0.01054687425494194, 0.00966796837747097, 0.01274413987994194, 0.02263183519244194, 0.02021484263241291, 0.015380859375, 0.01845703087747097, 0.010986328125, 0.01625976525247097, 0.00747070275247097, 0.00856933556497097, 0.0028564452659338713, -0.005053710658103228, -0.002197265625, -0.0032958984375, -0.009448242373764515, -0.01625976525247097, -0.01933593675494194, -0.01911620981991291, -0.02482910081744194, -0.02460937388241291, -0.01845703087747097, -0.01406249962747097, -0.013403319753706455, -0.01516113243997097, -0.005932617001235485, -0.002636718563735485, 0.0, -0.002197265625, 0.01296386681497097, 0.0142822265625, 0.02175292931497097, 0.0186767578125, 0.02197265625, 0.02219238132238388, 0.03273925557732582, 0.02548827975988388, 0.03273925557732582, 0.02988281100988388, 0.02285156212747097, 0.02285156212747097, 0.01164550706744194, 0.007910155691206455, 0.00747070275247097, -0.007250976283103228, -0.00439453125, -0.00966796837747097, -0.01691894419491291, -0.02460937388241291, -0.03120117075741291, -0.03427734225988388, -0.02724609337747097, -0.03098144382238388, -0.0263671875, -0.0263671875, -0.0263671875, -0.01516113243997097, -0.01779785193502903, -0.008129882626235485, -0.0010986328125, 0.0041748047806322575, 0.01296386681497097, 0.02241210825741291, 0.02460937388241291, 0.02724609337747097, 0.03889160230755806, 0.03889160230755806, 0.03251953050494194, 0.03889160230755806, 0.03251953050494194, 0.032958984375, 0.03493652120232582, 0.02109374850988388, 0.01494140550494194, 0.014721679501235485, 0.005053710658103228, -0.0032958984375, -0.01406249962747097, -0.01384277269244194, -0.0186767578125, -0.03251953050494194, -0.0340576171875, -0.03449707105755806, -0.0406494140625, -0.04262695088982582, -0.04262695088982582, -0.03757324069738388, -0.03515625, -0.02614746056497097, -0.01801757700741291, -0.0120849609375, -0.0032958984375, 0.0028564452659338713, 0.01384277269244194, 0.01999511756002903, 0.03317870944738388, 0.0340576171875, 0.03977050632238388, 0.04636230319738388, 0.04130859300494194, 0.04482421651482582, 0.04570312425494194, 0.04196777194738388, 0.04020996019244194, 0.028564453125, 0.0274658203125, 0.01516113243997097, 0.0057128905318677425, -0.001977538922801614, -0.0087890625, -0.02680663950741291, -0.03164062276482582, -0.037353515625, -0.0428466796875, -0.04658202826976776, -0.046142578125, -0.04877929389476776, -0.04306640475988388, -0.0384521484375, -0.03801269456744194, -0.02790527231991291, -0.01911620981991291, -0.009448242373764515, -0.007250976283103228, 0.003955077845603228, 0.013623046688735485, 0.02131347544491291, 0.03757324069738388, 0.04152831807732582, 0.04526367038488388, 0.04877929389476776, 0.04833984375, 0.05471191182732582, 0.0494384765625, 0.04482421651482582, 0.04416503757238388, 0.03493652120232582, 0.02175292931497097, 0.01604003831744194, 0.006591796875, -0.0017578124534338713, -0.01691894419491291, -0.017578125, -0.03208007663488388, -0.03647460788488388, -0.0450439453125, -0.04921874776482582, -0.04702148213982582, -0.04899902269244194, -0.04965820163488388, -0.04790038987994194, -0.03977050632238388, -0.03164062276482582, -0.02438964694738388, -0.015380859375, -0.00637206993997097, 0.003955077845603228, 0.01625976525247097, 0.03076171875, 0.0362548828125, 0.04328612983226776, 0.04921874776482582, 0.05207519233226776, 0.05009765550494194, 0.04965820163488388, 0.05295410007238388, 0.0472412109375, 0.04658202826976776, 0.03208007663488388, 0.02504882775247097, 0.01296386681497097, 0.006152343470603228, -0.004833984188735485, -0.017578125, -0.0230712890625, -0.02944335900247097, -0.03713378682732582, -0.04987792670726776, -0.04790038987994194, -0.0560302734375, -0.05119628831744194, -0.05339355394244194, -0.0439453125, -0.04262695088982582, -0.02988281100988388, -0.02570800669491291, -0.019775390625, -0.0010986328125, 0.00747070275247097, 0.01384277269244194, 0.02900390513241291, 0.03823241963982582, 0.0406494140625, 0.04899902269244194, 0.05471191182732582, 0.05097655951976776, 0.05097655951976776, 0.05339355394244194, 0.04833984375, 0.04702148213982582, 0.0362548828125, 0.03120117075741291, 0.014501952566206455, 0.002636718563735485, -0.004833984188735485, -0.01713867112994194, -0.0186767578125, -0.032958984375, -0.03757324069738388, -0.050537109375, -0.05317382514476776, -0.05624999850988388, -0.05427245795726776, -0.05009765550494194, -0.04592284932732582, -0.04108886793255806, -0.03142089769244194, -0.02482910081744194, -0.019775390625, -0.0035156249068677425, 0.00856933556497097, 0.01669921912252903, 0.02878417819738388, 0.03647460788488388, 0.03889160230755806, 0.04790038987994194, 0.05712890625, 0.0494384765625, 0.05800781026482582, 0.05031738057732582, 0.04262695088982582, 0.04438476264476776, 0.032958984375, 0.0263671875, 0.017578125, 0.010327148251235485, -0.01076660118997097, -0.0087890625, -0.02395019493997097, -0.0318603515625, -0.037353515625, -0.04526367038488388, -0.04877929389476776, -0.04702148213982582, -0.05339355394244194, -0.04592284932732582, -0.041748046875, -0.03449707105755806, -0.03208007663488388, -0.02043456956744194, -0.01713867112994194, 0.0008789062267169356, 0.005053710658103228, 0.01933593675494194, 0.02329101413488388, 0.02944335900247097, 0.03713378682732582, 0.05097655951976776, 0.04636230319738388, 0.05361327901482582, 0.05581054463982582, 0.0472412109375, 0.04218749701976776, 0.03427734225988388, 0.03339843824505806, 0.02131347544491291, 0.01054687425494194, 0.00966796837747097, -0.0024169920943677425, -0.01296386681497097, -0.01691894419491291, -0.03054199181497097, -0.0384521484375, -0.0406494140625, -0.041748046875, -0.05031738057732582, -0.04240722581744194, -0.04262695088982582, -0.04042968526482582, -0.04020996019244194, -0.02658691257238388, -0.01845703087747097, -0.0087890625, 0.0, 0.0087890625, 0.0142822265625, 0.02570800669491291, 0.03273925557732582, 0.03669433668255806, 0.04416503757238388, 0.04350585862994194, 0.05031738057732582, 0.04372558370232582, 0.0472412109375, 0.03537597507238388, 0.03977050632238388, 0.02702636644244194, 0.0274658203125, 0.01516113243997097, 0.006591796875, 0.0024169920943677425, -0.005932617001235485, -0.01911620981991291, -0.02065429650247097, -0.03054199181497097, -0.0384521484375, -0.03669433668255806, -0.03537597507238388, -0.03493652120232582, -0.03273925557732582, -0.03164062276482582, -0.03251953050494194, -0.02724609337747097, -0.0186767578125, -0.010107421316206455, 0.0010986328125, 0.002636718563735485, 0.009448242373764515, 0.01713867112994194, 0.02241210825741291, 0.03361816331744194, 0.03142089769244194, 0.03779296949505806, 0.04152831807732582, 0.037353515625, 0.03581542894244194, 0.028564453125, 0.02878417819738388, 0.02395019493997097, 0.013623046688735485, 0.011425781063735485, 0.0054931640625, -0.007031249813735485, -0.004833984188735485, -0.01582031138241291, -0.02131347544491291, -0.01999511756002903, -0.02329101413488388, -0.03317870944738388, -0.02592773362994194, -0.03493652120232582, -0.02658691257238388, -0.03142089769244194, -0.0274658203125, -0.01779785193502903, -0.009448242373764515, -0.0046142577193677425, 0.002636718563735485, 0.007910155691206455, 0.01054687425494194, 0.009448242373764515, 0.01669921912252903, 0.02065429650247097, 0.02724609337747097, 0.03076171875, 0.03317870944738388, 0.02702636644244194, 0.024169921875, 0.02109374850988388, 0.02219238132238388, 0.014501952566206455, 0.01494140550494194, 0.01076660118997097, 0.0057128905318677425, 0.0041748047806322575, -0.005932617001235485, -0.010327148251235485, -0.014501952566206455, -0.01582031138241291, -0.01911620981991291, -0.01604003831744194, -0.01933593675494194, -0.01933593675494194, -0.015600585378706455, -0.01582031138241291, -0.00966796837747097, -0.01164550706744194, -0.00439453125, -0.008349609561264515, 0.003955077845603228, 0.0002197265566792339, 0.0076904296875, 0.0076904296875, 0.015600585378706455, 0.012524413876235485, 0.0186767578125, 0.02241210825741291, 0.013623046688735485, 0.01713867112994194, 0.015600585378706455, 0.0164794921875, 0.012524413876235485, 0.003735351376235485, 0.00439453125, 0.01076660118997097, 0.00439453125, 0.0008789062267169356, 0.0008789062267169356, -0.008129882626235485, -0.007031249813735485, -0.009008788503706455, -0.008349609561264515, -0.0120849609375, -0.00856933556497097, -0.012304686941206455 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.1667)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ 0.001977538922801614, 0.0057128905318677425, 0.0013183592818677425, 0.005932617001235485, 0.002197265625, 0.0, -0.0024169920943677425, 0.005053710658103228, -0.0013183592818677425, 0.0041748047806322575, -0.0024169920943677425, 0.001538085867650807, -0.002636718563735485, -0.0006591796409338713, 0.00439453125, 0.0017578124534338713, 0.001538085867650807, 0.0002197265566792339, 0.003735351376235485, -0.0010986328125, 0.001977538922801614, 0.002636718563735485, 0.001538085867650807, 0.005053710658103228, 0.0035156249068677425, -0.001538085867650807, 0.006152343470603228, 0.002636718563735485, -0.002197265625, 0.0017578124534338713, -0.003735351376235485, -0.002197265625, 0.0024169920943677425, 0.0028564452659338713, -0.0032958984375, -0.0004394531133584678, -0.0013183592818677425, 0.00439453125, 0.0017578124534338713, 0.0054931640625, 0.005932617001235485, 0.00527343712747097, 0.0046142577193677425, 0.001977538922801614, 0.005932617001235485, 0.011206054128706455, 0.010327148251235485, 0.010986328125, 0.0054931640625, 0.0076904296875, 0.01054687425494194, 0.0028564452659338713, 0.003076171735301614, 0.0004394531133584678, 0.0046142577193677425, 0.00527343712747097, -0.0035156249068677425, -0.006591796875, -0.0035156249068677425, -0.006591796875, -0.0098876953125, -0.01384277269244194, -0.009008788503706455, -0.00856933556497097, -0.00966796837747097, -0.007250976283103228, -0.006591796875, -0.007031249813735485, -0.002636718563735485, -0.002636718563735485, -0.001977538922801614, 0.0057128905318677425, 0.0041748047806322575, 0.01274413987994194, 0.01274413987994194, 0.009448242373764515, 0.02109374850988388, 0.01669921912252903, 0.01911620981991291, 0.01911620981991291, 0.02263183519244194, 0.01406249962747097, 0.01582031138241291, 0.01604003831744194, 0.008129882626235485, 0.00637206993997097, 0.0057128905318677425, -0.003955077845603228, -0.006152343470603228, -0.010986328125, -0.011425781063735485, -0.013623046688735485, -0.01779785193502903, -0.02460937388241291, -0.02131347544491291, -0.01823730394244194, -0.02438964694738388, -0.0164794921875, -0.01779785193502903, -0.013623046688735485, -0.009448242373764515, -0.008129882626235485, 0.0010986328125, 0.002197265625, 0.0054931640625, 0.01494140550494194, 0.02131347544491291, 0.01889648474752903, 0.02438964694738388, 0.02768554538488388, 0.02438964694738388, 0.03054199181497097, 0.02570800669491291, 0.02482910081744194, 0.0252685546875, 0.02263183519244194, 0.0186767578125, 0.01296386681497097, -0.0004394531133584678, 0.001977538922801614, -0.008349609561264515, -0.01516113243997097, -0.014501952566206455, -0.02109374850988388, -0.0263671875, -0.02724609337747097, -0.03691406175494194, -0.02812499925494194, -0.03208007663488388, -0.02790527231991291, -0.019775390625, -0.02285156212747097, -0.014721679501235485, -0.00439453125, -0.0028564452659338713, 0.0008789062267169356, 0.007250976283103228, 0.015600585378706455, 0.02197265625, 0.02724609337747097, 0.03471679612994194, 0.0362548828125, 0.037353515625, 0.03867187350988388, 0.03493652120232582, 0.03647460788488388, 0.03471679612994194, 0.02175292931497097, 0.01801757700741291, 0.01318359375, 0.00966796837747097, -0.0041748047806322575, -0.014501952566206455, -0.02241210825741291, -0.02153320237994194, -0.03010253794491291, -0.03823241963982582, -0.03471679612994194, -0.04306640475988388, -0.041748046875, -0.03559570387005806, -0.03515625, -0.0340576171875, -0.03032226487994194, -0.02021484263241291, -0.0164794921875, -0.0046142577193677425, 0.00439453125, 0.013623046688735485, 0.02329101413488388, 0.02812499925494194, 0.03911132737994194, 0.04416503757238388, 0.041748046875, 0.04526367038488388, 0.04526367038488388, 0.03955078125, 0.0384521484375, 0.03361816331744194, 0.02988281100988388, 0.02263183519244194, 0.01823730394244194, 0.00747070275247097, 0.0017578124534338713, -0.012304686941206455, -0.02592773362994194, -0.02373046800494194, -0.03559570387005806, -0.04372558370232582, -0.04086913913488388, -0.04899902269244194, -0.04855956882238388, -0.04130859300494194, -0.04262695088982582, -0.03713378682732582, -0.03098144382238388, -0.02570800669491291, -0.012304686941206455, -0.0024169920943677425, 0.009228515438735485, 0.017578125, 0.02219238132238388, 0.03713378682732582, 0.03581542894244194, 0.0406494140625, 0.04548339545726776, 0.04877929389476776, 0.04526367038488388, 0.05229492112994194, 0.04746093600988388, 0.03581542894244194, 0.03493652120232582, 0.02109374850988388, 0.01999511756002903, 0.0057128905318677425, -0.001977538922801614, -0.01691894419491291, -0.01691894419491291, -0.03098144382238388, -0.03449707105755806, -0.04548339545726776, -0.04636230319738388, -0.04592284932732582, -0.04790038987994194, -0.04768066108226776, -0.04086913913488388, -0.03383788838982582, -0.03691406175494194, -0.02592773362994194, -0.012524413876235485, -0.0035156249068677425, 0.009228515438735485, 0.02043456956744194, 0.02175292931497097, 0.03054199181497097, 0.03999023512005806, 0.04921874776482582, 0.05515136569738388, 0.052734375, 0.05976562201976776, 0.05207519233226776, 0.05075683444738388, 0.04548339545726776, 0.03691406175494194, 0.02790527231991291, 0.01625976525247097, 0.005053710658103228, -0.003955077845603228, -0.01735839806497097, -0.02944335900247097, -0.032958984375, -0.0439453125, -0.04790038987994194, -0.04548339545726776, -0.04812011495232582, -0.05119628831744194, -0.05449218675494194, -0.04570312425494194, -0.04240722581744194, -0.0296630859375, -0.02614746056497097, -0.01823730394244194, -0.0057128905318677425, 0.007250976283103228, 0.01582031138241291, 0.0296630859375, 0.03449707105755806, 0.04108886793255806, 0.04965820163488388, 0.05207519233226776, 0.05251464620232582, 0.05141601338982582, 0.05251464620232582, 0.04636230319738388, 0.0472412109375, 0.03208007663488388, 0.028564453125, 0.01845703087747097, 0.005932617001235485, -0.008349609561264515, -0.01735839806497097, -0.02109374850988388, -0.03559570387005806, -0.03911132737994194, -0.04592284932732582, -0.05427245795726776, -0.05515136569738388, -0.05778808519244194, -0.05141601338982582, -0.04921874776482582, -0.03647460788488388, -0.03339843824505806, -0.02900390513241291, -0.0142822265625, -0.001538085867650807, 0.01164550706744194, 0.01691894419491291, 0.01999511756002903, 0.0296630859375, 0.04350585862994194, 0.04833984375, 0.05229492112994194, 0.05229492112994194, 0.05251464620232582, 0.04768066108226776, 0.04438476264476776, 0.04218749701976776, 0.03076171875, 0.0230712890625, 0.015600585378706455, 0.007250976283103228, -0.0004394531133584678, -0.01845703087747097, -0.02197265625, -0.02988281100988388, -0.03581542894244194, -0.04020996019244194, -0.04855956882238388, -0.05405273288488388, -0.05427245795726776, -0.052734375, -0.04218749701976776, -0.03493652120232582, -0.03515625, -0.02263183519244194, -0.01516113243997097, -0.002636718563735485, 0.008349609561264515, 0.012524413876235485, 0.02153320237994194, 0.03493652120232582, 0.03493652120232582, 0.04570312425494194, 0.04855956882238388, 0.04636230319738388, 0.04921874776482582, 0.04592284932732582, 0.04438476264476776, 0.03669433668255806, 0.02790527231991291, 0.02197265625, 0.01274413987994194, 0.008129882626235485, -0.0010986328125, -0.012524413876235485, -0.02175292931497097, -0.03208007663488388, -0.03142089769244194, -0.03999023512005806, -0.04570312425494194, -0.04987792670726776, -0.04328612983226776, -0.04833984375, -0.04196777194738388, -0.03889160230755806, -0.02504882775247097, -0.01801757700741291, -0.010327148251235485, -0.002197265625, 0.003076171735301614, 0.01494140550494194, 0.02021484263241291, 0.03164062276482582, 0.03229980543255806, 0.04086913913488388, 0.04812011495232582, 0.04108886793255806, 0.04460449144244194, 0.04020996019244194, 0.03999023512005806, 0.03757324069738388, 0.02790527231991291, 0.02482910081744194, 0.019775390625, 0.006152343470603228, 0.0017578124534338713, -0.014501952566206455, -0.017578125, -0.01999511756002903, -0.02878417819738388, -0.03757324069738388, -0.0384521484375, -0.04218749701976776, -0.04262695088982582, -0.03823241963982582, -0.02790527231991291, -0.03208007663488388, -0.02241210825741291, -0.02109374850988388, -0.012304686941206455, -0.002197265625, 0.0041748047806322575, 0.01625976525247097, 0.01669921912252903, 0.02812499925494194, 0.02614746056497097, 0.03317870944738388, 0.03471679612994194, 0.04042968526482582, 0.04152831807732582, 0.03713378682732582, 0.03273925557732582, 0.02702636644244194, 0.02351074106991291, 0.01516113243997097, 0.010107421316206455, 0.0035156249068677425, -0.0024169920943677425, -0.009008788503706455, -0.01779785193502903, -0.01604003831744194, -0.0230712890625, -0.03208007663488388, -0.03251953050494194, -0.02900390513241291, -0.02570800669491291, -0.03054199181497097, -0.02460937388241291, -0.02614746056497097, -0.014501952566206455, -0.015380859375, -0.01494140550494194, -0.005053710658103228, 0.0010986328125, 0.01384277269244194, 0.01823730394244194, 0.014721679501235485, 0.0186767578125, 0.02834472618997097, 0.028564453125, 0.02658691257238388, 0.0252685546875, 0.02153320237994194, 0.01911620981991291, 0.02065429650247097, 0.01845703087747097, 0.01669921912252903, 0.011425781063735485, 0.00637206993997097, 0.0013183592818677425, -0.007910155691206455, -0.009228515438735485, -0.01823730394244194, -0.01625976525247097, -0.02021484263241291, -0.01691894419491291, -0.02109374850988388, -0.02109374850988388, -0.015600585378706455, -0.013403319753706455, -0.01494140550494194, -0.01494140550494194, -0.0068115233443677425, -0.0046142577193677425, -0.002636718563735485, 0.0006591796409338713, 0.0098876953125, 0.0054931640625, 0.008349609561264515, 0.01713867112994194, 0.013623046688735485, 0.01494140550494194, 0.015600585378706455, 0.01801757700741291, 0.01318359375, 0.01384277269244194, 0.00856933556497097, 0.005932617001235485, 0.0057128905318677425, 0.009008788503706455, 0.0054931640625, -0.0006591796409338713, -0.0028564452659338713, -0.006152343470603228, -0.007250976283103228, -0.011425781063735485, -0.01274413987994194, -0.010327148251235485, -0.013403319753706455, -0.01054687425494194 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.2222)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ 0.0006591796409338713, 0.001538085867650807, -0.0004394531133584678, 0.0, -0.0002197265566792339, 0.0028564452659338713, -0.0024169920943677425, 0.002197265625, -0.003735351376235485, -0.0008789062267169356, -0.003735351376235485, 0.0006591796409338713, 0.003735351376235485, -0.002636718563735485, 0.001538085867650807, -0.0010986328125, 0.0, -0.002636718563735485, -0.0010986328125, 0.005053710658103228, 0.0002197265566792339, 0.0002197265566792339, -0.0024169920943677425, 0.0035156249068677425, 0.003735351376235485, -0.0028564452659338713, 0.0004394531133584678, 0.001538085867650807, 0.0035156249068677425, 0.0046142577193677425, 0.0004394531133584678, -0.003955077845603228, 0.0013183592818677425, 0.0017578124534338713, 0.0, 0.0004394531133584678, 0.0006591796409338713, -0.0017578124534338713, -0.0017578124534338713, 0.005053710658103228, 0.0010986328125, -0.0002197265566792339, 0.0028564452659338713, 0.001538085867650807, 0.003076171735301614, 0.006152343470603228, 0.006152343470603228, 0.008129882626235485, 0.006152343470603228, 0.008349609561264515, 0.003735351376235485, 0.00439453125, -0.0006591796409338713, -0.0004394531133584678, -0.0004394531133584678, 0.0046142577193677425, 0.0017578124534338713, -0.0024169920943677425, -0.001538085867650807, -0.00747070275247097, -0.009008788503706455, -0.012524413876235485, -0.013403319753706455, -0.009228515438735485, -0.009228515438735485, -0.01274413987994194, -0.0068115233443677425, -0.008129882626235485, -0.0076904296875, 0.0010986328125, -0.0006591796409338713, 0.0024169920943677425, 0.00856933556497097, 0.008129882626235485, 0.01494140550494194, 0.01296386681497097, 0.01186523400247097, 0.01911620981991291, 0.01625976525247097, 0.01911620981991291, 0.02109374850988388, 0.014501952566206455, 0.00966796837747097, 0.01296386681497097, 0.010107421316206455, 0.007250976283103228, -0.0013183592818677425, -0.0041748047806322575, -0.0028564452659338713, -0.0098876953125, -0.010327148251235485, -0.02065429650247097, -0.01845703087747097, -0.01801757700741291, -0.02351074106991291, -0.02329101413488388, -0.0230712890625, -0.015600585378706455, -0.01494140550494194, -0.013623046688735485, -0.012304686941206455, -0.0028564452659338713, -0.0057128905318677425, 0.0002197265566792339, 0.012524413876235485, 0.012304686941206455, 0.01779785193502903, 0.0252685546875, 0.02109374850988388, 0.03032226487994194, 0.02834472618997097, 0.02944335900247097, 0.02373046800494194, 0.0252685546875, 0.01845703087747097, 0.02153320237994194, 0.01186523400247097, 0.010986328125, 0.007910155691206455, -0.0057128905318677425, -0.0032958984375, -0.0142822265625, -0.01625976525247097, -0.02109374850988388, -0.0296630859375, -0.03251953050494194, -0.03010253794491291, -0.03559570387005806, -0.03427734225988388, -0.02724609337747097, -0.02944335900247097, -0.019775390625, -0.01318359375, -0.0054931640625, -0.001538085867650807, 0.00966796837747097, 0.01625976525247097, 0.015380859375, 0.02373046800494194, 0.03427734225988388, 0.03449707105755806, 0.03999023512005806, 0.03449707105755806, 0.0406494140625, 0.03647460788488388, 0.0296630859375, 0.0362548828125, 0.02438964694738388, 0.0186767578125, 0.010327148251235485, 0.00856933556497097, -0.0068115233443677425, -0.0087890625, -0.01494140550494194, -0.02153320237994194, -0.03120117075741291, -0.03647460788488388, -0.037353515625, -0.04306640475988388, -0.03427734225988388, -0.03647460788488388, -0.03383788838982582, -0.02834472618997097, -0.02263183519244194, -0.017578125, -0.008349609561264515, -0.001977538922801614, 0.007910155691206455, 0.01889648474752903, 0.02109374850988388, 0.02812499925494194, 0.03933105245232582, 0.04328612983226776, 0.041748046875, 0.04350585862994194, 0.05185546725988388, 0.04482421651482582, 0.03977050632238388, 0.03032226487994194, 0.0340576171875, 0.02197265625, 0.009448242373764515, 0.008129882626235485, -0.003076171735301614, -0.014721679501235485, -0.02329101413488388, -0.02944335900247097, -0.03977050632238388, -0.04086913913488388, -0.0439453125, -0.04416503757238388, -0.0428466796875, -0.0472412109375, -0.03669433668255806, -0.03977050632238388, -0.02922363206744194, -0.02482910081744194, -0.01054687425494194, 0.0010986328125, 0.0008789062267169356, 0.01494140550494194, 0.02153320237994194, 0.03054199181497097, 0.03537597507238388, 0.04240722581744194, 0.0450439453125, 0.04965820163488388, 0.0538330078125, 0.04921874776482582, 0.04702148213982582, 0.03889160230755806, 0.03251953050494194, 0.02197265625, 0.01318359375, 0.005932617001235485, -0.0041748047806322575, -0.009228515438735485, -0.02592773362994194, -0.02900390513241291, -0.0439453125, -0.0428466796875, -0.04965820163488388, -0.050537109375, -0.04746093600988388, -0.05141601338982582, -0.04130859300494194, -0.04240722581744194, -0.02724609337747097, -0.02834472618997097, -0.015600585378706455, -0.006591796875, 0.01076660118997097, 0.02021484263241291, 0.02834472618997097, 0.03581542894244194, 0.04262695088982582, 0.04416503757238388, 0.04965820163488388, 0.054931640625, 0.0538330078125, 0.04899902269244194, 0.04877929389476776, 0.0362548828125, 0.03383788838982582, 0.024169921875, 0.014721679501235485, 0.00527343712747097, -0.004833984188735485, -0.012524413876235485, -0.02658691257238388, -0.03713378682732582, -0.03955078125, -0.04790038987994194, -0.05449218675494194, -0.0538330078125, -0.0538330078125, -0.05449218675494194, -0.046142578125, -0.04020996019244194, -0.03339843824505806, -0.02504882775247097, -0.019775390625, -0.0008789062267169356, 0.009228515438735485, 0.0208740234375, 0.03098144382238388, 0.03999023512005806, 0.04746093600988388, 0.04372558370232582, 0.04833984375, 0.05668945237994194, 0.05581054463982582, 0.05295410007238388, 0.0494384765625, 0.04108886793255806, 0.03383788838982582, 0.02658691257238388, 0.02043456956744194, 0.004833984188735485, -0.0054931640625, -0.01823730394244194, -0.02153320237994194, -0.03032226487994194, -0.03647460788488388, -0.046142578125, -0.0516357421875, -0.05031738057732582, -0.05361327901482582, -0.05361327901482582, -0.04680175706744194, -0.04152831807732582, -0.03537597507238388, -0.02395019493997097, -0.01318359375, 0.0008789062267169356, 0.0087890625, 0.01691894419491291, 0.02109374850988388, 0.03713378682732582, 0.0439453125, 0.0494384765625, 0.04833984375, 0.05559081956744194, 0.05537109076976776, 0.05207519233226776, 0.05141601338982582, 0.0406494140625, 0.03999023512005806, 0.02131347544491291, 0.01318359375, 0.00856933556497097, -0.0017578124534338713, -0.01494140550494194, -0.02131347544491291, -0.03164062276482582, -0.0406494140625, -0.04680175706744194, -0.05317382514476776, -0.05339355394244194, -0.04921874776482582, -0.04790038987994194, -0.04086913913488388, -0.03427734225988388, -0.02790527231991291, -0.02263183519244194, -0.01318359375, 0.0002197265566792339, 0.007910155691206455, 0.01999511756002903, 0.02460937388241291, 0.03669433668255806, 0.03757324069738388, 0.04152831807732582, 0.04877929389476776, 0.0516357421875, 0.04592284932732582, 0.05185546725988388, 0.04438476264476776, 0.03493652120232582, 0.03164062276482582, 0.02373046800494194, 0.01713867112994194, 0.003076171735301614, -0.0076904296875, -0.014501952566206455, -0.02395019493997097, -0.02482910081744194, -0.03032226487994194, -0.04130859300494194, -0.04833984375, -0.04833984375, -0.04592284932732582, -0.04768066108226776, -0.04350585862994194, -0.037353515625, -0.03208007663488388, -0.02329101413488388, -0.0076904296875, 0.0013183592818677425, 0.006591796875, 0.009448242373764515, 0.02548827975988388, 0.03120117075741291, 0.03317870944738388, 0.03823241963982582, 0.04086913913488388, 0.04372558370232582, 0.04746093600988388, 0.04460449144244194, 0.0428466796875, 0.03273925557732582, 0.02614746056497097, 0.0186767578125, 0.01406249962747097, 0.0041748047806322575, -0.004833984188735485, -0.017578125, -0.02351074106991291, -0.024169921875, -0.03493652120232582, -0.037353515625, -0.03911132737994194, -0.03889160230755806, -0.03603515401482582, -0.03603515401482582, -0.03098144382238388, -0.02768554538488388, -0.02658691257238388, -0.01406249962747097, -0.0142822265625, 0.0, 0.0087890625, 0.007910155691206455, 0.017578125, 0.02592773362994194, 0.03361816331744194, 0.03581542894244194, 0.03273925557732582, 0.03317870944738388, 0.04306640475988388, 0.0362548828125, 0.02922363206744194, 0.0340576171875, 0.01801757700741291, 0.01516113243997097, 0.005932617001235485, 0.0046142577193677425, -0.0032958984375, -0.0068115233443677425, -0.01582031138241291, -0.02109374850988388, -0.02197265625, -0.02285156212747097, -0.03208007663488388, -0.03449707105755806, -0.02878417819738388, -0.03054199181497097, -0.03010253794491291, -0.02197265625, -0.01801757700741291, -0.01186523400247097, -0.0032958984375, -0.00439453125, 0.002636718563735485, 0.013403319753706455, 0.013403319753706455, 0.01889648474752903, 0.0208740234375, 0.02043456956744194, 0.02482910081744194, 0.02197265625, 0.02460937388241291, 0.02944335900247097, 0.019775390625, 0.01955566368997097, 0.02021484263241291, 0.01735839806497097, 0.01054687425494194, 0.0002197265566792339, 0.0002197265566792339, -0.0017578124534338713, -0.01318359375, -0.014501952566206455, -0.01625976525247097, -0.01955566368997097, -0.01779785193502903, -0.0208740234375, -0.02219238132238388, -0.01713867112994194, -0.02065429650247097, -0.01516113243997097, -0.009228515438735485, -0.01076660118997097, -0.005932617001235485, -0.0024169920943677425, 0.00856933556497097, 0.007250976283103228, 0.010327148251235485, 0.01186523400247097, 0.01713867112994194, 0.01933593675494194, 0.01582031138241291, 0.017578125, 0.013403319753706455, 0.02109374850988388, 0.01164550706744194, 0.006591796875, 0.0087890625, 0.01164550706744194, 0.009008788503706455, 0.0013183592818677425, 0.001538085867650807, -0.00637206993997097, -0.003076171735301614, -0.010327148251235485, -0.01274413987994194, -0.008129882626235485, -0.01274413987994194, -0.0087890625, -0.006152343470603228 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.2778)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ -0.0028564452659338713, -0.001977538922801614, 0.004833984188735485, 0.004833984188735485, 0.0004394531133584678, -0.003955077845603228, -0.0013183592818677425, -0.003076171735301614, -0.003735351376235485, -0.0024169920943677425, 0.00527343712747097, -0.0010986328125, -0.0024169920943677425, 0.006591796875, 0.003076171735301614, 0.006152343470603228, -0.0041748047806322575, 0.0024169920943677425, 0.001977538922801614, 0.0013183592818677425, 0.00637206993997097, 0.0057128905318677425, 0.0002197265566792339, -0.0013183592818677425, 0.002197265625, 0.001538085867650807, 0.00527343712747097, -0.0024169920943677425, 0.0046142577193677425, 0.0010986328125, 0.002197265625, 0.003735351376235485, -0.003955077845603228, -0.003735351376235485, -0.0006591796409338713, -0.0010986328125, -0.0041748047806322575, -0.003076171735301614, -0.0013183592818677425, -0.0017578124534338713, 0.0057128905318677425, -0.0004394531133584678, 0.0028564452659338713, 0.007031249813735485, 0.0032958984375, 0.0098876953125, 0.002197265625, 0.01076660118997097, 0.0041748047806322575, 0.01274413987994194, 0.0046142577193677425, 0.007910155691206455, 0.00637206993997097, 0.008349609561264515, 0.003735351376235485, 0.004833984188735485, 0.0028564452659338713, -0.005932617001235485, -0.0013183592818677425, -0.00856933556497097, -0.007250976283103228, -0.005053710658103228, -0.010327148251235485, -0.013403319753706455, -0.01054687425494194, -0.00856933556497097, -0.0087890625, -0.003076171735301614, -0.003735351376235485, 0.0002197265566792339, -0.0017578124534338713, 0.0054931640625, 0.003955077845603228, 0.012304686941206455, 0.008349609561264515, 0.01691894419491291, 0.017578125, 0.01164550706744194, 0.01516113243997097, 0.02263183519244194, 0.01933593675494194, 0.0208740234375, 0.0164794921875, 0.011206054128706455, 0.009228515438735485, 0.0057128905318677425, 0.0024169920943677425, -0.0004394531133584678, -0.007910155691206455, -0.00439453125, -0.008349609561264515, -0.02065429650247097, -0.02043456956744194, -0.01999511756002903, -0.02043456956744194, -0.02482910081744194, -0.01801757700741291, -0.02175292931497097, -0.0142822265625, -0.01384277269244194, -0.008129882626235485, -0.0028564452659338713, -0.002636718563735485, 0.0046142577193677425, 0.011206054128706455, 0.0186767578125, 0.01406249962747097, 0.01911620981991291, 0.03010253794491291, 0.02329101413488388, 0.02460937388241291, 0.03164062276482582, 0.02548827975988388, 0.02944335900247097, 0.02021484263241291, 0.0208740234375, 0.013403319753706455, 0.007250976283103228, 0.00439453125, -0.0002197265566792339, -0.007031249813735485, -0.01911620981991291, -0.01625976525247097, -0.0186767578125, -0.03010253794491291, -0.0274658203125, -0.03383788838982582, -0.03493652120232582, -0.03120117075741291, -0.0318603515625, -0.0263671875, -0.013623046688735485, -0.009228515438735485, -0.00747070275247097, -0.002636718563735485, 0.0046142577193677425, 0.0142822265625, 0.014501952566206455, 0.02153320237994194, 0.02658691257238388, 0.03823241963982582, 0.03537597507238388, 0.0362548828125, 0.03449707105755806, 0.03273925557732582, 0.03713378682732582, 0.02988281100988388, 0.02614746056497097, 0.01999511756002903, 0.011425781063735485, 0.01054687425494194, -0.006152343470603228, -0.01164550706744194, -0.01384277269244194, -0.01889648474752903, -0.02658691257238388, -0.03251953050494194, -0.03933105245232582, -0.03823241963982582, -0.0406494140625, -0.04042968526482582, -0.03779296949505806, -0.03427734225988388, -0.0296630859375, -0.02131347544491291, -0.009448242373764515, -0.0006591796409338713, 0.003955077845603228, 0.01076660118997097, 0.02438964694738388, 0.028564453125, 0.03801269456744194, 0.0362548828125, 0.04438476264476776, 0.04833984375, 0.04855956882238388, 0.04042968526482582, 0.03977050632238388, 0.03867187350988388, 0.02702636644244194, 0.017578125, 0.0186767578125, 0.005932617001235485, -0.00637206993997097, -0.013623046688735485, -0.02021484263241291, -0.03383788838982582, -0.03889160230755806, -0.04460449144244194, -0.03933105245232582, -0.04812011495232582, -0.0428466796875, -0.03955078125, -0.04240722581744194, -0.0318603515625, -0.03010253794491291, -0.01801757700741291, -0.01054687425494194, -0.0032958984375, 0.00747070275247097, 0.01845703087747097, 0.02263183519244194, 0.03581542894244194, 0.0384521484375, 0.04899902269244194, 0.04833984375, 0.04746093600988388, 0.0516357421875, 0.05031738057732582, 0.046142578125, 0.04262695088982582, 0.03317870944738388, 0.02219238132238388, 0.013403319753706455, 0.0028564452659338713, -0.006152343470603228, -0.015380859375, -0.02460937388241291, -0.03010253794491291, -0.04240722581744194, -0.04240722581744194, -0.04570312425494194, -0.052734375, -0.052734375, -0.05317382514476776, -0.04218749701976776, -0.03537597507238388, -0.03361816331744194, -0.01999511756002903, -0.012304686941206455, -0.0032958984375, 0.0057128905318677425, 0.01625976525247097, 0.02351074106991291, 0.03779296949505806, 0.04262695088982582, 0.0472412109375, 0.05449218675494194, 0.05888671800494194, 0.0582275390625, 0.04899902269244194, 0.04658202826976776, 0.0439453125, 0.0318603515625, 0.02175292931497097, 0.02285156212747097, 0.00747070275247097, -0.0028564452659338713, -0.01582031138241291, -0.02109374850988388, -0.03691406175494194, -0.04372558370232582, -0.04899902269244194, -0.052734375, -0.05251464620232582, -0.04899902269244194, -0.05207519233226776, -0.04680175706744194, -0.03823241963982582, -0.0340576171875, -0.0263671875, -0.014501952566206455, -0.0006591796409338713, 0.00637206993997097, 0.01801757700741291, 0.02702636644244194, 0.0362548828125, 0.04240722581744194, 0.0472412109375, 0.05185546725988388, 0.0560302734375, 0.05778808519244194, 0.05295410007238388, 0.05581054463982582, 0.03933105245232582, 0.03251953050494194, 0.02680663950741291, 0.01691894419491291, 0.005053710658103228, -0.0010986328125, -0.0120849609375, -0.02482910081744194, -0.0362548828125, -0.03889160230755806, -0.04526367038488388, -0.0560302734375, -0.05317382514476776, -0.04812011495232582, -0.05141601338982582, -0.04702148213982582, -0.04152831807732582, -0.03471679612994194, -0.02504882775247097, -0.01801757700741291, -0.0054931640625, 0.011206054128706455, 0.01933593675494194, 0.02395019493997097, 0.03647460788488388, 0.04350585862994194, 0.04460449144244194, 0.05141601338982582, 0.05778808519244194, 0.05339355394244194, 0.05075683444738388, 0.04921874776482582, 0.03955078125, 0.03229980543255806, 0.02021484263241291, 0.01713867112994194, 0.0017578124534338713, -0.003076171735301614, -0.01384277269244194, -0.02504882775247097, -0.02812499925494194, -0.04196777194738388, -0.04262695088982582, -0.052734375, -0.04812011495232582, -0.04570312425494194, -0.04548339545726776, -0.04152831807732582, -0.0406494140625, -0.02922363206744194, -0.01999511756002903, -0.01669921912252903, -0.009448242373764515, 0.006591796875, 0.02175292931497097, 0.01889648474752903, 0.03251953050494194, 0.0428466796875, 0.04306640475988388, 0.05097655951976776, 0.04987792670726776, 0.0494384765625, 0.04877929389476776, 0.04548339545726776, 0.03515625, 0.03449707105755806, 0.02021484263241291, 0.02043456956744194, 0.001538085867650807, -0.0068115233443677425, -0.015600585378706455, -0.01999511756002903, -0.02812499925494194, -0.03229980543255806, -0.03999023512005806, -0.04636230319738388, -0.04482421651482582, -0.04680175706744194, -0.03911132737994194, -0.03867187350988388, -0.03471679612994194, -0.02614746056497097, -0.02241210825741291, -0.01604003831744194, -0.002197265625, 0.00966796837747097, 0.01516113243997097, 0.02021484263241291, 0.02592773362994194, 0.03339843824505806, 0.04240722581744194, 0.03933105245232582, 0.03977050632238388, 0.04592284932732582, 0.03911132737994194, 0.04020996019244194, 0.03647460788488388, 0.02834472618997097, 0.01801757700741291, 0.01164550706744194, 0.0057128905318677425, -0.004833984188735485, -0.009448242373764515, -0.01516113243997097, -0.02812499925494194, -0.0340576171875, -0.03208007663488388, -0.03427734225988388, -0.03581542894244194, -0.04262695088982582, -0.0384521484375, -0.03691406175494194, -0.03010253794491291, -0.02438964694738388, -0.01494140550494194, -0.01186523400247097, -0.0002197265566792339, 0.001977538922801614, 0.011206054128706455, 0.01713867112994194, 0.02065429650247097, 0.03251953050494194, 0.03669433668255806, 0.0384521484375, 0.03977050632238388, 0.03361816331744194, 0.03889160230755806, 0.03317870944738388, 0.02812499925494194, 0.02592773362994194, 0.015600585378706455, 0.008349609561264515, 0.00966796837747097, -0.0035156249068677425, -0.013623046688735485, -0.0164794921875, -0.01845703087747097, -0.02373046800494194, -0.03032226487994194, -0.03032226487994194, -0.03361816331744194, -0.03647460788488388, -0.028564453125, -0.028564453125, -0.024169921875, -0.01845703087747097, -0.007250976283103228, -0.0046142577193677425, 0.0004394531133584678, 0.0010986328125, 0.010986328125, 0.01494140550494194, 0.0186767578125, 0.02241210825741291, 0.02592773362994194, 0.02680663950741291, 0.02658691257238388, 0.02790527231991291, 0.02900390513241291, 0.02021484263241291, 0.0263671875, 0.015600585378706455, 0.01955566368997097, 0.00856933556497097, 0.00637206993997097, 0.0028564452659338713, -0.003076171735301614, -0.01076660118997097, -0.011425781063735485, -0.02263183519244194, -0.02175292931497097, -0.02329101413488388, -0.02241210825741291, -0.017578125, -0.01933593675494194, -0.01625976525247097, -0.014721679501235485, -0.008349609561264515, -0.010986328125, -0.0035156249068677425, 0.0, 0.0006591796409338713, 0.005053710658103228, 0.011206054128706455, 0.008129882626235485, 0.01076660118997097, 0.02065429650247097, 0.014721679501235485, 0.01801757700741291, 0.01735839806497097, 0.01494140550494194, 0.00966796837747097, 0.01054687425494194, 0.011425781063735485, 0.003955077845603228, 0.010107421316206455, -0.0008789062267169356, -0.0013183592818677425, -0.0002197265566792339, -0.008349609561264515, -0.003076171735301614, -0.011425781063735485, -0.007910155691206455, -0.0098876953125, -0.0076904296875, -0.006591796875 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.3333)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ 0.0041748047806322575, -0.0002197265566792339, 0.003735351376235485, -0.002197265625, 0.003955077845603228, -0.0010986328125, 0.00637206993997097, 0.0, -0.002636718563735485, 0.003076171735301614, 0.001977538922801614, 0.0004394531133584678, 0.0006591796409338713, 0.004833984188735485, -0.0013183592818677425, 0.0054931640625, 0.003955077845603228, 0.0008789062267169356, -0.002197265625, -0.0002197265566792339, 0.001538085867650807, 0.003955077845603228, -0.0008789062267169356, -0.0013183592818677425, 0.001538085867650807, 0.003955077845603228, 0.0035156249068677425, 0.0076904296875, 0.004833984188735485, 0.003735351376235485, -0.003735351376235485, -0.0010986328125, -0.0028564452659338713, 0.0032958984375, -0.0008789062267169356, 0.001977538922801614, -0.0013183592818677425, 0.003735351376235485, -0.002197265625, 0.001538085867650807, 0.008129882626235485, -0.0002197265566792339, 0.00637206993997097, 0.008349609561264515, 0.00747070275247097, 0.008129882626235485, 0.006591796875, 0.009448242373764515, 0.00637206993997097, 0.00637206993997097, 0.0041748047806322575, 0.0068115233443677425, 0.008349609561264515, 0.0024169920943677425, -0.0010986328125, -0.004833984188735485, -0.002636718563735485, -0.0054931640625, -0.009448242373764515, -0.0028564452659338713, -0.0120849609375, -0.01296386681497097, -0.00747070275247097, -0.01494140550494194, -0.009448242373764515, -0.01164550706744194, -0.0076904296875, -0.010327148251235485, -0.009448242373764515, -0.0006591796409338713, -0.0046142577193677425, 0.005932617001235485, 0.0004394531133584678, 0.014501952566206455, 0.00966796837747097, 0.012524413876235485, 0.01713867112994194, 0.01955566368997097, 0.01999511756002903, 0.02175292931497097, 0.01889648474752903, 0.02021484263241291, 0.01669921912252903, 0.01735839806497097, 0.007031249813735485, 0.009448242373764515, 0.002636718563735485, 0.0010986328125, -0.0068115233443677425, -0.0057128905318677425, -0.015600585378706455, -0.01735839806497097, -0.02131347544491291, -0.01933593675494194, -0.02570800669491291, -0.02395019493997097, -0.02482910081744194, -0.017578125, -0.01625976525247097, -0.010986328125, -0.008349609561264515, -0.006591796875, -0.003735351376235485, 0.001977538922801614, 0.012304686941206455, 0.010327148251235485, 0.01604003831744194, 0.02482910081744194, 0.02109374850988388, 0.02614746056497097, 0.0263671875, 0.03032226487994194, 0.02592773362994194, 0.0263671875, 0.02702636644244194, 0.02395019493997097, 0.01384277269244194, 0.01054687425494194, 0.0054931640625, -0.0013183592818677425, -0.00856933556497097, -0.01274413987994194, -0.01669921912252903, -0.02812499925494194, -0.02263183519244194, -0.03142089769244194, -0.02658691257238388, -0.02944335900247097, -0.02900390513241291, -0.028564453125, -0.02329101413488388, -0.02395019493997097, -0.013623046688735485, -0.009228515438735485, -0.002197265625, 0.0006591796409338713, 0.01296386681497097, 0.01384277269244194, 0.02153320237994194, 0.02460937388241291, 0.0362548828125, 0.04152831807732582, 0.0406494140625, 0.03911132737994194, 0.03515625, 0.03559570387005806, 0.03361816331744194, 0.0208740234375, 0.0142822265625, 0.0087890625, 0.005932617001235485, -0.0041748047806322575, -0.015380859375, -0.01779785193502903, -0.02812499925494194, -0.02614746056497097, -0.0318603515625, -0.037353515625, -0.04372558370232582, -0.04592284932732582, -0.03691406175494194, -0.03889160230755806, -0.03691406175494194, -0.0230712890625, -0.024169921875, -0.01164550706744194, 0.0024169920943677425, 0.003735351376235485, 0.01582031138241291, 0.02702636644244194, 0.03010253794491291, 0.03317870944738388, 0.03559570387005806, 0.041748046875, 0.04196777194738388, 0.04460449144244194, 0.04130859300494194, 0.03757324069738388, 0.03339843824505806, 0.0274658203125, 0.02460937388241291, 0.009228515438735485, 0.00439453125, -0.0017578124534338713, -0.009008788503706455, -0.02219238132238388, -0.024169921875, -0.0340576171875, -0.03779296949505806, -0.04020996019244194, -0.04987792670726776, -0.04328612983226776, -0.04262695088982582, -0.03889160230755806, -0.03713378682732582, -0.02834472618997097, -0.02241210825741291, -0.0164794921875, -0.00856933556497097, 0.0087890625, 0.017578125, 0.02241210825741291, 0.02944335900247097, 0.03911132737994194, 0.04877929389476776, 0.04768066108226776, 0.04592284932732582, 0.05449218675494194, 0.04965820163488388, 0.04570312425494194, 0.03515625, 0.03208007663488388, 0.0230712890625, 0.015380859375, 0.00747070275247097, -0.003955077845603228, -0.0164794921875, -0.02592773362994194, -0.03383788838982582, -0.0406494140625, -0.041748046875, -0.0439453125, -0.052734375, -0.04987792670726776, -0.05119628831744194, -0.04702148213982582, -0.04218749701976776, -0.0340576171875, -0.01889648474752903, -0.01384277269244194, -0.0028564452659338713, 0.0028564452659338713, 0.02175292931497097, 0.02614746056497097, 0.03559570387005806, 0.03977050632238388, 0.050537109375, 0.0560302734375, 0.05361327901482582, 0.050537109375, 0.05581054463982582, 0.05295410007238388, 0.03801269456744194, 0.03361816331744194, 0.02834472618997097, 0.01516113243997097, 0.007031249813735485, -0.006152343470603228, -0.01713867112994194, -0.02285156212747097, -0.03691406175494194, -0.04328612983226776, -0.04592284932732582, -0.04658202826976776, -0.04790038987994194, -0.05251464620232582, -0.05229492112994194, -0.05075683444738388, -0.04548339545726776, -0.03603515401482582, -0.02768554538488388, -0.01604003831744194, -0.0028564452659338713, 0.004833984188735485, 0.02153320237994194, 0.0263671875, 0.03361816331744194, 0.04262695088982582, 0.05515136569738388, 0.05756835639476776, 0.0604248046875, 0.06020507588982582, 0.05756835639476776, 0.04658202826976776, 0.04086913913488388, 0.0340576171875, 0.0263671875, 0.01669921912252903, 0.004833984188735485, -0.007910155691206455, -0.01516113243997097, -0.02197265625, -0.03251953050494194, -0.04086913913488388, -0.04526367038488388, -0.05009765550494194, -0.0582275390625, -0.05339355394244194, -0.05009765550494194, -0.0494384765625, -0.0450439453125, -0.03208007663488388, -0.02548827975988388, -0.014721679501235485, 0.0004394531133584678, 0.012524413876235485, 0.02175292931497097, 0.02460937388241291, 0.03251953050494194, 0.0428466796875, 0.04196777194738388, 0.04658202826976776, 0.05734863132238388, 0.05668945237994194, 0.05646972358226776, 0.05031738057732582, 0.04130859300494194, 0.03208007663488388, 0.02592773362994194, 0.02065429650247097, 0.009228515438735485, -0.003076171735301614, -0.015600585378706455, -0.02680663950741291, -0.03361816331744194, -0.04086913913488388, -0.04042968526482582, -0.05075683444738388, -0.04702148213982582, -0.05317382514476776, -0.05317382514476776, -0.04680175706744194, -0.04020996019244194, -0.03317870944738388, -0.02241210825741291, -0.013403319753706455, -0.009228515438735485, 0.012304686941206455, 0.01823730394244194, 0.02065429650247097, 0.03339843824505806, 0.0439453125, 0.04460449144244194, 0.0494384765625, 0.05581054463982582, 0.0472412109375, 0.04548339545726776, 0.04526367038488388, 0.04152831807732582, 0.0296630859375, 0.02131347544491291, 0.0142822265625, 0.003076171735301614, -0.00747070275247097, -0.015380859375, -0.01735839806497097, -0.032958984375, -0.03493652120232582, -0.03889160230755806, -0.03889160230755806, -0.04833984375, -0.0472412109375, -0.04460449144244194, -0.03933105245232582, -0.03273925557732582, -0.03251953050494194, -0.01691894419491291, -0.01604003831744194, -0.001538085867650807, 0.00637206993997097, 0.0186767578125, 0.0186767578125, 0.03010253794491291, 0.0406494140625, 0.03427734225988388, 0.0472412109375, 0.04746093600988388, 0.04482421651482582, 0.03911132737994194, 0.03911132737994194, 0.03054199181497097, 0.03076171875, 0.0263671875, 0.01735839806497097, 0.0032958984375, -0.007250976283103228, -0.01076660118997097, -0.02021484263241291, -0.028564453125, -0.02702636644244194, -0.03779296949505806, -0.03955078125, -0.04020996019244194, -0.03757324069738388, -0.04086913913488388, -0.03823241963982582, -0.02790527231991291, -0.02241210825741291, -0.01669921912252903, -0.0054931640625, -0.001977538922801614, 0.001977538922801614, 0.01054687425494194, 0.02263183519244194, 0.02790527231991291, 0.03208007663488388, 0.03383788838982582, 0.03779296949505806, 0.03867187350988388, 0.03449707105755806, 0.03383788838982582, 0.02988281100988388, 0.0274658203125, 0.02548827975988388, 0.01735839806497097, 0.007910155691206455, 0.0032958984375, -0.005053710658103228, -0.0098876953125, -0.01669921912252903, -0.02219238132238388, -0.02373046800494194, -0.02680663950741291, -0.02768554538488388, -0.02834472618997097, -0.0318603515625, -0.03076171875, -0.02834472618997097, -0.02065429650247097, -0.0120849609375, -0.01735839806497097, -0.0054931640625, -0.004833984188735485, 0.006152343470603228, 0.007250976283103228, 0.014501952566206455, 0.02021484263241291, 0.02197265625, 0.02614746056497097, 0.03032226487994194, 0.02460937388241291, 0.02878417819738388, 0.0252685546875, 0.01889648474752903, 0.02351074106991291, 0.013623046688735485, 0.00966796837747097, 0.01076660118997097, 0.003955077845603228, -0.0046142577193677425, -0.009228515438735485, -0.01186523400247097, -0.014501952566206455, -0.01582031138241291, -0.02065429650247097, -0.02329101413488388, -0.01713867112994194, -0.01889648474752903, -0.01911620981991291, -0.01889648474752903, -0.01186523400247097, -0.013623046688735485, -0.00747070275247097, 0.0010986328125, 0.003955077845603228, 0.0024169920943677425, 0.00439453125, 0.009008788503706455, 0.014721679501235485, 0.0142822265625, 0.01318359375, 0.013623046688735485, 0.0142822265625, 0.015600585378706455, 0.01406249962747097, 0.01494140550494194, 0.00747070275247097, 0.010986328125, 0.009448242373764515, 0.005053710658103228, -0.0006591796409338713, -0.0008789062267169356, 0.0013183592818677425, -0.005932617001235485, -0.005932617001235485, -0.0046142577193677425, -0.00637206993997097, -0.014721679501235485, -0.01384277269244194, -0.006152343470603228 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.3889)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ -0.002197265625, -0.0010986328125, 0.0028564452659338713, -0.0013183592818677425, -0.0006591796409338713, 0.0013183592818677425, 0.006591796875, -0.0032958984375, -0.0032958984375, 0.003735351376235485, 0.002197265625, 0.0041748047806322575, -0.002636718563735485, 0.0010986328125, 0.0010986328125, 0.0002197265566792339, 0.0004394531133584678, 0.0002197265566792339, -0.0004394531133584678, -0.0010986328125, -0.002197265625, -0.0032958984375, 0.0028564452659338713, 0.0017578124534338713, 0.003076171735301614, 0.0024169920943677425, 0.003076171735301614, 0.004833984188735485, -0.0006591796409338713, -0.0017578124534338713, 0.001538085867650807, 0.0006591796409338713, -0.0041748047806322575, 0.0008789062267169356, -0.006152343470603228, -0.0008789062267169356, 0.001977538922801614, 0.0004394531133584678, 0.0006591796409338713, 0.00439453125, 0.005932617001235485, 0.003076171735301614, 0.009228515438735485, 0.0041748047806322575, 0.00439453125, 0.00527343712747097, 0.00966796837747097, 0.01296386681497097, 0.0120849609375, 0.012304686941206455, 0.007910155691206455, 0.011206054128706455, 0.008349609561264515, -0.001977538922801614, 0.003955077845603228, 0.001977538922801614, -0.002197265625, -0.0013183592818677425, -0.0024169920943677425, -0.008349609561264515, -0.012524413876235485, -0.010327148251235485, -0.009008788503706455, -0.0068115233443677425, -0.01516113243997097, -0.006152343470603228, -0.010327148251235485, -0.008349609561264515, -0.005932617001235485, -0.008349609561264515, -0.0041748047806322575, 0.003955077845603228, 0.0006591796409338713, 0.011206054128706455, 0.0142822265625, 0.01516113243997097, 0.02065429650247097, 0.02153320237994194, 0.0208740234375, 0.02285156212747097, 0.02043456956744194, 0.01691894419491291, 0.01801757700741291, 0.017578125, 0.009448242373764515, 0.0087890625, 0.004833984188735485, 0.0, -0.0087890625, -0.0120849609375, -0.008349609561264515, -0.01735839806497097, -0.01823730394244194, -0.0208740234375, -0.02131347544491291, -0.02175292931497097, -0.02395019493997097, -0.0230712890625, -0.01999511756002903, -0.01911620981991291, -0.0076904296875, -0.007910155691206455, -0.0017578124534338713, 0.00637206993997097, 0.007250976283103228, 0.01801757700741291, 0.01889648474752903, 0.01933593675494194, 0.028564453125, 0.02922363206744194, 0.0274658203125, 0.032958984375, 0.02395019493997097, 0.02263183519244194, 0.02153320237994194, 0.01823730394244194, 0.01494140550494194, 0.014721679501235485, 0.007031249813735485, -0.0041748047806322575, -0.00856933556497097, -0.01801757700741291, -0.01582031138241291, -0.02768554538488388, -0.0263671875, -0.0340576171875, -0.02922363206744194, -0.03010253794491291, -0.03229980543255806, -0.02329101413488388, -0.02614746056497097, -0.01735839806497097, -0.01604003831744194, -0.0076904296875, -0.003955077845603228, 0.00527343712747097, 0.007250976283103228, 0.02153320237994194, 0.02219238132238388, 0.02614746056497097, 0.03010253794491291, 0.03383788838982582, 0.04328612983226776, 0.04262695088982582, 0.03361816331744194, 0.03251953050494194, 0.03010253794491291, 0.0274658203125, 0.017578125, 0.01054687425494194, 0.0008789062267169356, 0.0002197265566792339, -0.014501952566206455, -0.01691894419491291, -0.0263671875, -0.02460937388241291, -0.03383788838982582, -0.0318603515625, -0.03713378682732582, -0.04262695088982582, -0.04460449144244194, -0.03317870944738388, -0.02614746056497097, -0.02219238132238388, -0.01406249962747097, -0.0087890625, -0.0076904296875, 0.00637206993997097, 0.00966796837747097, 0.02197265625, 0.03383788838982582, 0.03361816331744194, 0.03955078125, 0.04306640475988388, 0.05009765550494194, 0.0516357421875, 0.0406494140625, 0.03933105245232582, 0.03801269456744194, 0.02812499925494194, 0.02131347544491291, 0.011206054128706455, 0.0028564452659338713, -0.004833984188735485, -0.01406249962747097, -0.02504882775247097, -0.02724609337747097, -0.03273925557732582, -0.0406494140625, -0.04899902269244194, -0.04526367038488388, -0.04416503757238388, -0.04438476264476776, -0.03537597507238388, -0.03229980543255806, -0.03120117075741291, -0.01801757700741291, -0.008349609561264515, -0.0002197265566792339, 0.01076660118997097, 0.012524413876235485, 0.02658691257238388, 0.03669433668255806, 0.03801269456744194, 0.05075683444738388, 0.04768066108226776, 0.046142578125, 0.05075683444738388, 0.04592284932732582, 0.04372558370232582, 0.04042968526482582, 0.03339843824505806, 0.02285156212747097, 0.02021484263241291, 0.001538085867650807, -0.00747070275247097, -0.015380859375, -0.02395019493997097, -0.02812499925494194, -0.03537597507238388, -0.04328612983226776, -0.05229492112994194, -0.05251464620232582, -0.05405273288488388, -0.05427245795726776, -0.04372558370232582, -0.041748046875, -0.03383788838982582, -0.02395019493997097, -0.01604003831744194, -0.0046142577193677425, 0.006591796875, 0.019775390625, 0.02614746056497097, 0.03120117075741291, 0.03911132737994194, 0.04899902269244194, 0.050537109375, 0.05646972358226776, 0.059326171875, 0.04746093600988388, 0.04372558370232582, 0.04438476264476776, 0.03383788838982582, 0.0208740234375, 0.015600585378706455, 0.0041748047806322575, -0.008349609561264515, -0.01406249962747097, -0.02724609337747097, -0.03251953050494194, -0.04218749701976776, -0.04877929389476776, -0.04702148213982582, -0.05559081956744194, -0.05471191182732582, -0.05141601338982582, -0.04899902269244194, -0.04218749701976776, -0.032958984375, -0.02944335900247097, -0.010986328125, -0.0057128905318677425, 0.00856933556497097, 0.02241210825741291, 0.02768554538488388, 0.03801269456744194, 0.04152831807732582, 0.04658202826976776, 0.05229492112994194, 0.0538330078125, 0.054931640625, 0.052734375, 0.04438476264476776, 0.03911132737994194, 0.03559570387005806, 0.02680663950741291, 0.01823730394244194, 0.007031249813735485, -0.006591796875, -0.0142822265625, -0.02460937388241291, -0.03669433668255806, -0.03911132737994194, -0.05031738057732582, -0.05207519233226776, -0.05251464620232582, -0.05449218675494194, -0.04812011495232582, -0.04833984375, -0.04262695088982582, -0.03669433668255806, -0.02482910081744194, -0.01318359375, -0.0013183592818677425, 0.010327148251235485, 0.01801757700741291, 0.02834472618997097, 0.037353515625, 0.04482421651482582, 0.04526367038488388, 0.05624999850988388, 0.05449218675494194, 0.05009765550494194, 0.05009765550494194, 0.05229492112994194, 0.03889160230755806, 0.03537597507238388, 0.02460937388241291, 0.012524413876235485, 0.00439453125, -0.008349609561264515, -0.01604003831744194, -0.02658691257238388, -0.03449707105755806, -0.041748046875, -0.04526367038488388, -0.04350585862994194, -0.05339355394244194, -0.04965820163488388, -0.04350585862994194, -0.04152831807732582, -0.037353515625, -0.03449707105755806, -0.02395019493997097, -0.01384277269244194, -0.007250976283103228, 0.007250976283103228, 0.01186523400247097, 0.02790527231991291, 0.0340576171875, 0.03889160230755806, 0.046142578125, 0.05207519233226776, 0.0472412109375, 0.05471191182732582, 0.052734375, 0.0428466796875, 0.03449707105755806, 0.03713378682732582, 0.02065429650247097, 0.01713867112994194, 0.0002197265566792339, -0.003955077845603228, -0.0142822265625, -0.0230712890625, -0.03120117075741291, -0.03098144382238388, -0.04020996019244194, -0.04416503757238388, -0.04328612983226776, -0.04812011495232582, -0.04262695088982582, -0.04328612983226776, -0.03361816331744194, -0.0252685546875, -0.01911620981991291, -0.0098876953125, -0.008129882626235485, 0.002636718563735485, 0.01494140550494194, 0.02241210825741291, 0.03076171875, 0.03339843824505806, 0.0362548828125, 0.03911132737994194, 0.046142578125, 0.04218749701976776, 0.03955078125, 0.03889160230755806, 0.03317870944738388, 0.0296630859375, 0.02109374850988388, 0.01406249962747097, 0.001977538922801614, -0.002636718563735485, -0.01186523400247097, -0.01999511756002903, -0.028564453125, -0.03142089769244194, -0.03273925557732582, -0.03713378682732582, -0.03581542894244194, -0.04108886793255806, -0.03999023512005806, -0.0362548828125, -0.032958984375, -0.0208740234375, -0.017578125, -0.0120849609375, -0.0032958984375, 0.001538085867650807, 0.01625976525247097, 0.015600585378706455, 0.0263671875, 0.03449707105755806, 0.0384521484375, 0.03977050632238388, 0.0362548828125, 0.04196777194738388, 0.03273925557732582, 0.03076171875, 0.03032226487994194, 0.02658691257238388, 0.01801757700741291, 0.01494140550494194, 0.004833984188735485, 0.0035156249068677425, -0.0076904296875, -0.011425781063735485, -0.02351074106991291, -0.01933593675494194, -0.02351074106991291, -0.02548827975988388, -0.0318603515625, -0.03427734225988388, -0.02570800669491291, -0.02460937388241291, -0.02351074106991291, -0.012524413876235485, -0.011425781063735485, -0.009228515438735485, -0.002197265625, 0.0054931640625, 0.006152343470603228, 0.01845703087747097, 0.014721679501235485, 0.02614746056497097, 0.02658691257238388, 0.0318603515625, 0.02878417819738388, 0.0274658203125, 0.0296630859375, 0.02878417819738388, 0.02065429650247097, 0.01801757700741291, 0.009448242373764515, 0.0068115233443677425, 0.007031249813735485, 0.0, -0.00966796837747097, -0.01318359375, -0.01076660118997097, -0.0142822265625, -0.01911620981991291, -0.01933593675494194, -0.02263183519244194, -0.02219238132238388, -0.02241210825741291, -0.017578125, -0.01933593675494194, -0.00966796837747097, -0.004833984188735485, 0.001977538922801614, 0.0032958984375, 0.001538085867650807, 0.006591796875, 0.008129882626235485, 0.0120849609375, 0.01494140550494194, 0.019775390625, 0.0208740234375, 0.01604003831744194, 0.0120849609375, 0.019775390625, 0.01911620981991291, 0.01582031138241291, 0.010327148251235485, 0.00966796837747097, 0.003735351376235485, -0.0006591796409338713, -0.0035156249068677425, -0.0008789062267169356, -0.00747070275247097, -0.007910155691206455, -0.01164550706744194, -0.010986328125, -0.005932617001235485, -0.013623046688735485, -0.007250976283103228 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.4444)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ -0.002636718563735485, 0.0004394531133584678, 0.003955077845603228, -0.0004394531133584678, 0.003955077845603228, -0.0006591796409338713, -0.0004394531133584678, 0.0032958984375, -0.0013183592818677425, -0.0017578124534338713, 0.00637206993997097, 0.0035156249068677425, 0.0032958984375, 0.005053710658103228, 0.002636718563735485, -0.0002197265566792339, 0.0024169920943677425, -0.0028564452659338713, -0.0024169920943677425, 0.001977538922801614, -0.0008789062267169356, 0.003735351376235485, 0.0035156249068677425, 0.0032958984375, 0.0035156249068677425, 0.0032958984375, -0.0002197265566792339, -0.0028564452659338713, 0.004833984188735485, -0.0017578124534338713, 0.002197265625, 0.005053710658103228, 0.0017578124534338713, -0.003955077845603228, 0.001977538922801614, 0.00527343712747097, -0.0004394531133584678, 0.002197265625, -0.002197265625, -0.0002197265566792339, 0.0013183592818677425, -0.001977538922801614, 0.005053710658103228, 0.00856933556497097, 0.0046142577193677425, 0.006591796875, 0.0054931640625, 0.009448242373764515, 0.013403319753706455, 0.0028564452659338713, 0.00439453125, 0.0087890625, 0.0035156249068677425, 0.006152343470603228, 0.0017578124534338713, -0.003076171735301614, -0.003955077845603228, -0.003735351376235485, -0.00966796837747097, -0.005053710658103228, -0.010327148251235485, -0.0087890625, -0.01164550706744194, -0.009448242373764515, -0.0068115233443677425, -0.007031249813735485, -0.010327148251235485, -0.007910155691206455, -0.00856933556497097, -0.003735351376235485, -0.002197265625, 0.0002197265566792339, 0.0032958984375, 0.00856933556497097, 0.01779785193502903, 0.0142822265625, 0.02043456956744194, 0.02219238132238388, 0.015380859375, 0.01669921912252903, 0.01911620981991291, 0.02109374850988388, 0.014721679501235485, 0.012524413876235485, 0.0057128905318677425, 0.006152343470603228, -0.0013183592818677425, -0.002197265625, -0.0017578124534338713, -0.00966796837747097, -0.014721679501235485, -0.0120849609375, -0.01713867112994194, -0.02153320237994194, -0.02131347544491291, -0.02570800669491291, -0.02153320237994194, -0.02285156212747097, -0.01318359375, -0.01845703087747097, -0.007031249813735485, -0.0008789062267169356, -0.0032958984375, 0.005932617001235485, 0.0046142577193677425, 0.015600585378706455, 0.02175292931497097, 0.01933593675494194, 0.02702636644244194, 0.02768554538488388, 0.03493652120232582, 0.0296630859375, 0.02680663950741291, 0.02614746056497097, 0.01955566368997097, 0.01735839806497097, 0.01801757700741291, 0.004833984188735485, 0.0032958984375, -0.0057128905318677425, -0.00637206993997097, -0.01076660118997097, -0.01801757700741291, -0.01999511756002903, -0.02680663950741291, -0.02790527231991291, -0.03383788838982582, -0.028564453125, -0.03317870944738388, -0.02351074106991291, -0.02592773362994194, -0.02482910081744194, -0.01164550706744194, -0.0076904296875, -0.00527343712747097, 0.00747070275247097, 0.014721679501235485, 0.014721679501235485, 0.02878417819738388, 0.03383788838982582, 0.03581542894244194, 0.03537597507238388, 0.04086913913488388, 0.03493652120232582, 0.0428466796875, 0.03032226487994194, 0.02988281100988388, 0.0263671875, 0.0208740234375, 0.01669921912252903, 0.00966796837747097, 0.001538085867650807, -0.006591796875, -0.0142822265625, -0.02790527231991291, -0.03273925557732582, -0.03273925557732582, -0.03493652120232582, -0.03955078125, -0.04306640475988388, -0.04130859300494194, -0.03691406175494194, -0.02812499925494194, -0.02504882775247097, -0.01801757700741291, -0.0098876953125, -0.004833984188735485, 0.004833984188735485, 0.015380859375, 0.0252685546875, 0.03251953050494194, 0.03559570387005806, 0.04020996019244194, 0.03933105245232582, 0.04877929389476776, 0.0439453125, 0.0472412109375, 0.03801269456744194, 0.03427734225988388, 0.0263671875, 0.0263671875, 0.013623046688735485, 0.008349609561264515, 0.0, -0.009448242373764515, -0.02109374850988388, -0.02878417819738388, -0.03603515401482582, -0.03713378682732582, -0.04658202826976776, -0.04658202826976776, -0.04812011495232582, -0.03867187350988388, -0.04218749701976776, -0.03713378682732582, -0.02680663950741291, -0.01845703087747097, -0.01274413987994194, -0.006591796875, 0.00747070275247097, 0.0164794921875, 0.02263183519244194, 0.02922363206744194, 0.04416503757238388, 0.04108886793255806, 0.04987792670726776, 0.05427245795726776, 0.05097655951976776, 0.04790038987994194, 0.04636230319738388, 0.04262695088982582, 0.0318603515625, 0.02680663950741291, 0.01889648474752903, 0.007031249813735485, -0.0076904296875, -0.01274413987994194, -0.02460937388241291, -0.03471679612994194, -0.037353515625, -0.04636230319738388, -0.05207519233226776, -0.05317382514476776, -0.04855956882238388, -0.05295410007238388, -0.04152831807732582, -0.0384521484375, -0.03515625, -0.02263183519244194, -0.01933593675494194, -0.004833984188735485, 0.009448242373764515, 0.013403319753706455, 0.02548827975988388, 0.03098144382238388, 0.04460449144244194, 0.05185546725988388, 0.05668945237994194, 0.06020507588982582, 0.05141601338982582, 0.05778808519244194, 0.04460449144244194, 0.04152831807732582, 0.03713378682732582, 0.03010253794491291, 0.0164794921875, 0.007031249813735485, 0.0017578124534338713, -0.00966796837747097, -0.02043456956744194, -0.03779296949505806, -0.0384521484375, -0.04790038987994194, -0.0538330078125, -0.05251464620232582, -0.05119628831744194, -0.05207519233226776, -0.04855956882238388, -0.04240722581744194, -0.0362548828125, -0.0208740234375, -0.01076660118997097, -0.003076171735301614, 0.007250976283103228, 0.015380859375, 0.03251953050494194, 0.03691406175494194, 0.04350585862994194, 0.04790038987994194, 0.05427245795726776, 0.0516357421875, 0.05559081956744194, 0.05427245795726776, 0.05361327901482582, 0.0428466796875, 0.03801269456744194, 0.02922363206744194, 0.02065429650247097, 0.005053710658103228, -0.003076171735301614, -0.01516113243997097, -0.0263671875, -0.03251953050494194, -0.04042968526482582, -0.04570312425494194, -0.05075683444738388, -0.05624999850988388, -0.05515136569738388, -0.05141601338982582, -0.046142578125, -0.03691406175494194, -0.02944335900247097, -0.02482910081744194, -0.01691894419491291, -0.007250976283103228, 0.0076904296875, 0.0142822265625, 0.02482910081744194, 0.03867187350988388, 0.04108886793255806, 0.05229492112994194, 0.052734375, 0.04965820163488388, 0.05141601338982582, 0.04987792670726776, 0.04899902269244194, 0.04658202826976776, 0.03361816331744194, 0.0252685546875, 0.01955566368997097, 0.0054931640625, -0.00439453125, -0.01296386681497097, -0.02153320237994194, -0.03229980543255806, -0.04020996019244194, -0.04262695088982582, -0.05141601338982582, -0.04570312425494194, -0.05119628831744194, -0.0516357421875, -0.04746093600988388, -0.03757324069738388, -0.03361816331744194, -0.01889648474752903, -0.015380859375, -0.008129882626235485, 0.013623046688735485, 0.0142822265625, 0.02351074106991291, 0.02988281100988388, 0.04350585862994194, 0.04240722581744194, 0.04658202826976776, 0.050537109375, 0.04768066108226776, 0.04987792670726776, 0.04152831807732582, 0.04042968526482582, 0.03054199181497097, 0.019775390625, 0.01691894419491291, 0.006591796875, -0.0004394531133584678, -0.01713867112994194, -0.024169921875, -0.03229980543255806, -0.0340576171875, -0.03559570387005806, -0.03911132737994194, -0.04877929389476776, -0.046142578125, -0.0428466796875, -0.0406494140625, -0.03779296949505806, -0.02504882775247097, -0.02109374850988388, -0.01625976525247097, -0.0013183592818677425, 0.006591796875, 0.00856933556497097, 0.017578125, 0.03449707105755806, 0.03251953050494194, 0.04372558370232582, 0.0450439453125, 0.04240722581744194, 0.04130859300494194, 0.041748046875, 0.04152831807732582, 0.03713378682732582, 0.03032226487994194, 0.024169921875, 0.01054687425494194, 0.005053710658103228, -0.006591796875, -0.01274413987994194, -0.02197265625, -0.02834472618997097, -0.03427734225988388, -0.03339843824505806, -0.0340576171875, -0.04218749701976776, -0.03449707105755806, -0.03098144382238388, -0.03076171875, -0.02614746056497097, -0.02482910081744194, -0.012524413876235485, -0.006152343470603228, -0.0057128905318677425, 0.00856933556497097, 0.0164794921875, 0.02592773362994194, 0.02043456956744194, 0.02680663950741291, 0.03098144382238388, 0.03889160230755806, 0.03603515401482582, 0.0384521484375, 0.03142089769244194, 0.03581542894244194, 0.03032226487994194, 0.028564453125, 0.01845703087747097, 0.0068115233443677425, 0.004833984188735485, -0.002197265625, -0.004833984188735485, -0.0098876953125, -0.02241210825741291, -0.02197265625, -0.0274658203125, -0.02944335900247097, -0.02878417819738388, -0.03537597507238388, -0.02351074106991291, -0.02812499925494194, -0.02592773362994194, -0.01713867112994194, -0.00747070275247097, -0.0035156249068677425, 0.001977538922801614, 0.0013183592818677425, 0.007910155691206455, 0.01582031138241291, 0.01604003831744194, 0.02658691257238388, 0.02878417819738388, 0.03339843824505806, 0.02922363206744194, 0.03142089769244194, 0.02482910081744194, 0.02570800669491291, 0.01779785193502903, 0.01911620981991291, 0.009448242373764515, 0.01186523400247097, 0.0010986328125, -0.003735351376235485, -0.0017578124534338713, -0.009448242373764515, -0.01604003831744194, -0.01801757700741291, -0.014721679501235485, -0.02197265625, -0.02548827975988388, -0.01911620981991291, -0.01801757700741291, -0.012524413876235485, -0.01735839806497097, -0.015600585378706455, -0.00966796837747097, -0.002636718563735485, -0.0002197265566792339, 0.0032958984375, 0.0057128905318677425, 0.00856933556497097, 0.012524413876235485, 0.01889648474752903, 0.01999511756002903, 0.01164550706744194, 0.017578125, 0.01889648474752903, 0.01823730394244194, 0.01076660118997097, 0.014501952566206455, 0.007031249813735485, 0.01076660118997097, 0.010986328125, 0.0046142577193677425, -0.001538085867650807, -0.0017578124534338713, -0.003735351376235485, -0.008129882626235485, -0.00856933556497097, -0.01186523400247097, -0.004833984188735485, -0.0046142577193677425, -0.0098876953125 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [0])', '(cr_gate_amplitude, 0.5)')", "type": "scatter", "visible": true, "x0": 0, "xaxis": "x3", "y": [ -0.0010986328125, 0.004833984188735485, -0.003735351376235485, 0.001977538922801614, 0.0024169920943677425, 0.0010986328125, 0.005053710658103228, -0.001977538922801614, 0.0028564452659338713, 0.0, 0.00439453125, 0.0032958984375, 0.006591796875, 0.001538085867650807, -0.002197265625, 0.0004394531133584678, 0.0024169920943677425, -0.001538085867650807, 0.0010986328125, 0.0004394531133584678, -0.001977538922801614, 0.003735351376235485, 0.001977538922801614, 0.003735351376235485, -0.002636718563735485, -0.0004394531133584678, 0.0010986328125, -0.0024169920943677425, 0.0035156249068677425, 0.00527343712747097, -0.001538085867650807, 0.001977538922801614, -0.0017578124534338713, 0.003955077845603228, -0.0046142577193677425, -0.001977538922801614, 0.002636718563735485, 0.0010986328125, 0.001538085867650807, 0.0024169920943677425, 0.0046142577193677425, 0.007031249813735485, 0.002636718563735485, 0.007031249813735485, 0.00637206993997097, 0.0024169920943677425, 0.0057128905318677425, 0.011206054128706455, 0.004833984188735485, 0.00966796837747097, 0.007031249813735485, 0.0041748047806322575, 0.0, 0.0002197265566792339, 0.0035156249068677425, -0.003955077845603228, -0.0002197265566792339, -0.0054931640625, -0.0087890625, -0.001977538922801614, -0.0057128905318677425, -0.007910155691206455, -0.013403319753706455, -0.012524413876235485, -0.014721679501235485, -0.010107421316206455, -0.0120849609375, -0.0057128905318677425, -0.007910155691206455, 0.0002197265566792339, 0.0008789062267169356, -0.0006591796409338713, 0.003955077845603228, 0.008129882626235485, 0.014501952566206455, 0.013403319753706455, 0.02131347544491291, 0.01625976525247097, 0.0230712890625, 0.01713867112994194, 0.01779785193502903, 0.01274413987994194, 0.01889648474752903, 0.015380859375, 0.01054687425494194, 0.0068115233443677425, 0.004833984188735485, 0.001538085867650807, -0.007250976283103228, -0.012524413876235485, -0.01582031138241291, -0.015600585378706455, -0.02329101413488388, -0.02153320237994194, -0.0208740234375, -0.02241210825741291, -0.01999511756002903, -0.02285156212747097, -0.01625976525247097, -0.01713867112994194, -0.013403319753706455, -0.010327148251235485, 0.002197265625, 0.004833984188735485, 0.009448242373764515, 0.01735839806497097, 0.01625976525247097, 0.02702636644244194, 0.024169921875, 0.02812499925494194, 0.03076171875, 0.03076171875, 0.0263671875, 0.02570800669491291, 0.0208740234375, 0.01691894419491291, 0.0186767578125, 0.010107421316206455, 0.0002197265566792339, -0.0028564452659338713, -0.01274413987994194, -0.01713867112994194, -0.02065429650247097, -0.02702636644244194, -0.02900390513241291, -0.03339843824505806, -0.03251953050494194, -0.03208007663488388, -0.02812499925494194, -0.02614746056497097, -0.02592773362994194, -0.01604003831744194, -0.012524413876235485, -0.010107421316206455, -0.0028564452659338713, 0.0057128905318677425, 0.012304686941206455, 0.01384277269244194, 0.01999511756002903, 0.03339843824505806, 0.0362548828125, 0.03713378682732582, 0.04328612983226776, 0.03713378682732582, 0.04108886793255806, 0.03537597507238388, 0.0318603515625, 0.02285156212747097, 0.01889648474752903, 0.01604003831744194, 0.00527343712747097, -0.003735351376235485, -0.005932617001235485, -0.02131347544491291, -0.02922363206744194, -0.032958984375, -0.0296630859375, -0.03691406175494194, -0.041748046875, -0.03537597507238388, -0.0384521484375, -0.03208007663488388, -0.03251953050494194, -0.019775390625, -0.0208740234375, -0.0057128905318677425, -0.002636718563735485, 0.0054931640625, 0.012304686941206455, 0.0252685546875, 0.03098144382238388, 0.03779296949505806, 0.04526367038488388, 0.03933105245232582, 0.0472412109375, 0.04790038987994194, 0.04328612983226776, 0.03427734225988388, 0.03493652120232582, 0.02878417819738388, 0.02043456956744194, 0.010986328125, 0.0002197265566792339, -0.006152343470603228, -0.015600585378706455, -0.01691894419491291, -0.02373046800494194, -0.03449707105755806, -0.03493652120232582, -0.04921874776482582, -0.04086913913488388, -0.04877929389476776, -0.04460449144244194, -0.0406494140625, -0.03142089769244194, -0.03076171875, -0.01955566368997097, -0.009228515438735485, -0.002197265625, 0.0057128905318677425, 0.012524413876235485, 0.02285156212747097, 0.03010253794491291, 0.04108886793255806, 0.0428466796875, 0.04877929389476776, 0.0472412109375, 0.05075683444738388, 0.05207519233226776, 0.0439453125, 0.04196777194738388, 0.03823241963982582, 0.02241210825741291, 0.0208740234375, 0.005932617001235485, -0.002197265625, -0.012524413876235485, -0.02373046800494194, -0.032958984375, -0.037353515625, -0.04899902269244194, -0.05229492112994194, -0.05515136569738388, -0.05075683444738388, -0.04790038987994194, -0.04240722581744194, -0.03823241963982582, -0.03515625, -0.02351074106991291, -0.011425781063735485, -0.003955077845603228, 0.0057128905318677425, 0.015380859375, 0.02241210825741291, 0.0362548828125, 0.041748046875, 0.04592284932732582, 0.05515136569738388, 0.0582275390625, 0.05910644307732582, 0.05075683444738388, 0.04460449144244194, 0.03801269456744194, 0.03383788838982582, 0.02592773362994194, 0.0164794921875, 0.002636718563735485, -0.006591796875, -0.01164550706744194, -0.02043456956744194, -0.03581542894244194, -0.04152831807732582, -0.05075683444738388, -0.05119628831744194, -0.04855956882238388, -0.05405273288488388, -0.04812011495232582, -0.04768066108226776, -0.03911132737994194, -0.03779296949505806, -0.02592773362994194, -0.0098876953125, -0.0028564452659338713, 0.007910155691206455, 0.01494140550494194, 0.02834472618997097, 0.03493652120232582, 0.04460449144244194, 0.05251464620232582, 0.05339355394244194, 0.05251464620232582, 0.05427245795726776, 0.05251464620232582, 0.04921874776482582, 0.04042968526482582, 0.03142089769244194, 0.0230712890625, 0.01735839806497097, 0.00527343712747097, -0.0013183592818677425, -0.01406249962747097, -0.02570800669491291, -0.02812499925494194, -0.04482421651482582, -0.0494384765625, -0.04658202826976776, -0.05317382514476776, -0.052734375, -0.0494384765625, -0.04790038987994194, -0.0450439453125, -0.03208007663488388, -0.02197265625, -0.01582031138241291, -0.00966796837747097, 0.003076171735301614, 0.01582031138241291, 0.028564453125, 0.03669433668255806, 0.03999023512005806, 0.04306640475988388, 0.0538330078125, 0.05295410007238388, 0.05449218675494194, 0.05559081956744194, 0.046142578125, 0.04152831807732582, 0.0340576171875, 0.02548827975988388, 0.02065429650247097, 0.003955077845603228, -0.006152343470603228, -0.01625976525247097, -0.02175292931497097, -0.0362548828125, -0.03493652120232582, -0.0450439453125, -0.0439453125, -0.05009765550494194, -0.05207519233226776, -0.04702148213982582, -0.03999023512005806, -0.03603515401482582, -0.03493652120232582, -0.02373046800494194, -0.01318359375, -0.00747070275247097, 0.007910155691206455, 0.01823730394244194, 0.02329101413488388, 0.03779296949505806, 0.03581542894244194, 0.04790038987994194, 0.05075683444738388, 0.05141601338982582, 0.05537109076976776, 0.052734375, 0.04438476264476776, 0.037353515625, 0.03449707105755806, 0.02197265625, 0.019775390625, 0.005932617001235485, 0.001977538922801614, -0.0164794921875, -0.01779785193502903, -0.03076171875, -0.03120117075741291, -0.03889160230755806, -0.04130859300494194, -0.04965820163488388, -0.04877929389476776, -0.04790038987994194, -0.04020996019244194, -0.03427734225988388, -0.028564453125, -0.0252685546875, -0.012524413876235485, -0.0008789062267169356, 0.00856933556497097, 0.01318359375, 0.0252685546875, 0.03164062276482582, 0.03229980543255806, 0.0362548828125, 0.03933105245232582, 0.03955078125, 0.04746093600988388, 0.0450439453125, 0.03515625, 0.03867187350988388, 0.03229980543255806, 0.02395019493997097, 0.013403319753706455, 0.002636718563735485, -0.006152343470603228, -0.0057128905318677425, -0.01889648474752903, -0.02504882775247097, -0.03251953050494194, -0.03471679612994194, -0.03933105245232582, -0.04196777194738388, -0.03603515401482582, -0.04086913913488388, -0.03581542894244194, -0.03229980543255806, -0.02614746056497097, -0.01889648474752903, -0.009008788503706455, -0.0017578124534338713, 0.0004394531133584678, 0.01384277269244194, 0.019775390625, 0.01933593675494194, 0.02658691257238388, 0.03449707105755806, 0.03801269456744194, 0.03647460788488388, 0.03823241963982582, 0.03317870944738388, 0.02944335900247097, 0.02834472618997097, 0.0263671875, 0.02197265625, 0.007250976283103228, 0.001977538922801614, -0.007250976283103228, -0.00637206993997097, -0.010986328125, -0.02438964694738388, -0.02460937388241291, -0.02768554538488388, -0.0252685546875, -0.0263671875, -0.03449707105755806, -0.03251953050494194, -0.02263183519244194, -0.02109374850988388, -0.01933593675494194, -0.0120849609375, -0.009448242373764515, -0.005932617001235485, 0.0028564452659338713, 0.009228515438735485, 0.01318359375, 0.02043456956744194, 0.02922363206744194, 0.02175292931497097, 0.0252685546875, 0.02680663950741291, 0.02768554538488388, 0.02395019493997097, 0.0274658203125, 0.01691894419491291, 0.01296386681497097, 0.00966796837747097, 0.01318359375, 0.0076904296875, -0.0002197265566792339, -0.004833984188735485, -0.012524413876235485, -0.01406249962747097, -0.01625976525247097, -0.02065429650247097, -0.02241210825741291, -0.02285156212747097, -0.02065429650247097, -0.02065429650247097, -0.01516113243997097, -0.0142822265625, -0.011206054128706455, -0.00747070275247097, -0.006152343470603228, -0.003955077845603228, -0.002636718563735485, 0.0046142577193677425, 0.00966796837747097, 0.0120849609375, 0.013623046688735485, 0.01625976525247097, 0.02043456956744194, 0.01318359375, 0.01625976525247097, 0.01384277269244194, 0.01274413987994194, 0.01274413987994194, 0.0054931640625, 0.00966796837747097, 0.006152343470603228, 0.0017578124534338713, 0.0010986328125, -0.0076904296875, -0.0028564452659338713, -0.0046142577193677425, -0.0024169920943677425, -0.00966796837747097, -0.013623046688735485, -0.0076904296875, -0.006152343470603228 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ -0.0004394531133584678, -0.0010986328125, -0.0028564452659338713, 0.0054931640625, -0.002197265625, -0.001977538922801614, 0.00439453125, 0.0024169920943677425, 0.0024169920943677425, -0.002197265625, 0.002197265625, 0.0010986328125, 0.0010986328125, -0.0008789062267169356, 0.0017578124534338713, 0.0006591796409338713, -0.002636718563735485, 0.005053710658103228, 0.0046142577193677425, 0.0004394531133584678, -0.0035156249068677425, -0.0002197265566792339, 0.0054931640625, 0.001538085867650807, 0.0002197265566792339, 0.003076171735301614, -0.003076171735301614, -0.0032958984375, -0.0017578124534338713, -0.0032958984375, 0.001977538922801614, 0.0032958984375, 0.0024169920943677425, -0.002197265625, 0.003955077845603228, 0.0032958984375, 0.0028564452659338713, -0.003076171735301614, 0.006152343470603228, 0.0017578124534338713, 0.00747070275247097, 0.0008789062267169356, 0.0032958984375, 0.004833984188735485, 0.007250976283103228, 0.00527343712747097, 0.01054687425494194, 0.0035156249068677425, 0.00856933556497097, 0.007031249813735485, 0.01076660118997097, 0.0032958984375, 0.009448242373764515, 0.0057128905318677425, -0.0004394531133584678, -0.0024169920943677425, 0.0024169920943677425, -0.005932617001235485, -0.002197265625, -0.005053710658103228, -0.00637206993997097, -0.0068115233443677425, -0.00966796837747097, -0.01384277269244194, -0.011425781063735485, -0.009008788503706455, -0.01318359375, -0.0024169920943677425, -0.0032958984375, -0.004833984188735485, 0.0041748047806322575, -0.0024169920943677425, 0.0046142577193677425, 0.01054687425494194, 0.01296386681497097, 0.01933593675494194, 0.0208740234375, 0.02153320237994194, 0.02197265625, 0.01494140550494194, 0.02175292931497097, 0.02263183519244194, 0.01625976525247097, 0.01582031138241291, 0.01274413987994194, 0.00747070275247097, 0.003735351376235485, -0.0046142577193677425, -0.009448242373764515, -0.005932617001235485, -0.01779785193502903, -0.01779785193502903, -0.01999511756002903, -0.02131347544491291, -0.024169921875, -0.019775390625, -0.01889648474752903, -0.01735839806497097, -0.0208740234375, -0.014501952566206455, -0.0120849609375, -0.003076171735301614, 0.0008789062267169356, 0.003076171735301614, 0.0046142577193677425, 0.01494140550494194, 0.015380859375, 0.019775390625, 0.0263671875, 0.03076171875, 0.02790527231991291, 0.03339843824505806, 0.0263671875, 0.02438964694738388, 0.02482910081744194, 0.014501952566206455, 0.01582031138241291, 0.013403319753706455, 0.001538085867650807, -0.0017578124534338713, -0.00856933556497097, -0.009448242373764515, -0.01582031138241291, -0.02482910081744194, -0.0274658203125, -0.02988281100988388, -0.03317870944738388, -0.02658691257238388, -0.03515625, -0.02768554538488388, -0.02197265625, -0.02219238132238388, -0.015380859375, -0.011206054128706455, 0.0, 0.0004394531133584678, 0.007910155691206455, 0.01801757700741291, 0.02680663950741291, 0.03010253794491291, 0.0362548828125, 0.03955078125, 0.03603515401482582, 0.03691406175494194, 0.03449707105755806, 0.03823241963982582, 0.03537597507238388, 0.02900390513241291, 0.02351074106991291, 0.014501952566206455, 0.00747070275247097, -0.0035156249068677425, -0.01318359375, -0.01604003831744194, -0.02482910081744194, -0.03251953050494194, -0.03713378682732582, -0.0340576171875, -0.04218749701976776, -0.03603515401482582, -0.03339843824505806, -0.03647460788488388, -0.03164062276482582, -0.03010253794491291, -0.01406249962747097, -0.007910155691206455, -0.001977538922801614, 0.004833984188735485, 0.01735839806497097, 0.02219238132238388, 0.02812499925494194, 0.03515625, 0.04350585862994194, 0.04086913913488388, 0.04526367038488388, 0.04350585862994194, 0.04548339545726776, 0.0439453125, 0.03867187350988388, 0.03229980543255806, 0.02241210825741291, 0.01582031138241291, 0.0076904296875, -0.0057128905318677425, -0.01713867112994194, -0.0252685546875, -0.03361816331744194, -0.03339843824505806, -0.03669433668255806, -0.03911132737994194, -0.05207519233226776, -0.04548339545726776, -0.0439453125, -0.04042968526482582, -0.03955078125, -0.0296630859375, -0.02482910081744194, -0.01604003831744194, -0.0013183592818677425, 0.005932617001235485, 0.0186767578125, 0.02351074106991291, 0.03779296949505806, 0.03515625, 0.0494384765625, 0.04855956882238388, 0.05471191182732582, 0.05141601338982582, 0.05097655951976776, 0.04702148213982582, 0.03823241963982582, 0.02944335900247097, 0.0263671875, 0.01669921912252903, 0.0041748047806322575, -0.0054931640625, -0.01318359375, -0.02614746056497097, -0.03054199181497097, -0.04086913913488388, -0.04240722581744194, -0.04855956882238388, -0.04921874776482582, -0.0516357421875, -0.05141601338982582, -0.03911132737994194, -0.04196777194738388, -0.03120117075741291, -0.0263671875, -0.010986328125, 0.0008789062267169356, 0.0035156249068677425, 0.014721679501235485, 0.02263183519244194, 0.03229980543255806, 0.0439453125, 0.04460449144244194, 0.0516357421875, 0.05668945237994194, 0.05712890625, 0.05251464620232582, 0.04987792670726776, 0.04372558370232582, 0.03889160230755806, 0.02878417819738388, 0.02109374850988388, 0.007250976283103228, -0.004833984188735485, -0.01076660118997097, -0.01933593675494194, -0.0384521484375, -0.03823241963982582, -0.04680175706744194, -0.04812011495232582, -0.04877929389476776, -0.05449218675494194, -0.054931640625, -0.05031738057732582, -0.04570312425494194, -0.03032226487994194, -0.0252685546875, -0.0142822265625, -0.0057128905318677425, 0.0010986328125, 0.01494140550494194, 0.02680663950741291, 0.03142089769244194, 0.04526367038488388, 0.05317382514476776, 0.04812011495232582, 0.05668945237994194, 0.05295410007238388, 0.05141601338982582, 0.0472412109375, 0.03955078125, 0.03933105245232582, 0.02702636644244194, 0.01735839806497097, 0.008129882626235485, -0.002636718563735485, -0.01911620981991291, -0.02351074106991291, -0.03471679612994194, -0.04020996019244194, -0.04218749701976776, -0.05031738057732582, -0.05361327901482582, -0.0582275390625, -0.052734375, -0.05009765550494194, -0.0428466796875, -0.03229980543255806, -0.02241210825741291, -0.01516113243997097, -0.007250976283103228, 0.007031249813735485, 0.01823730394244194, 0.024169921875, 0.03889160230755806, 0.04899902269244194, 0.05229492112994194, 0.05844726413488388, 0.05866698920726776, 0.05075683444738388, 0.05075683444738388, 0.0472412109375, 0.04680175706744194, 0.0384521484375, 0.02702636644244194, 0.01274413987994194, 0.01076660118997097, -0.0028564452659338713, -0.01735839806497097, -0.02658691257238388, -0.02812499925494194, -0.03955078125, -0.04548339545726776, -0.050537109375, -0.05471191182732582, -0.04833984375, -0.0516357421875, -0.04680175706744194, -0.04042968526482582, -0.03383788838982582, -0.02482910081744194, -0.01076660118997097, -0.001977538922801614, 0.008349609561264515, 0.011425781063735485, 0.02373046800494194, 0.02812499925494194, 0.04086913913488388, 0.05075683444738388, 0.04877929389476776, 0.0450439453125, 0.0516357421875, 0.05075683444738388, 0.04768066108226776, 0.0340576171875, 0.03493652120232582, 0.02109374850988388, 0.01735839806497097, 0.00747070275247097, -0.006152343470603228, -0.01274413987994194, -0.01999511756002903, -0.03142089769244194, -0.03559570387005806, -0.03999023512005806, -0.04790038987994194, -0.04460449144244194, -0.04877929389476776, -0.04460449144244194, -0.03889160230755806, -0.03471679612994194, -0.024169921875, -0.024169921875, -0.0098876953125, -0.0017578124534338713, 0.011425781063735485, 0.013623046688735485, 0.01625976525247097, 0.03537597507238388, 0.03691406175494194, 0.04086913913488388, 0.04350585862994194, 0.04812011495232582, 0.04306640475988388, 0.04372558370232582, 0.04042968526482582, 0.03032226487994194, 0.02658691257238388, 0.02241210825741291, 0.012524413876235485, 0.006152343470603228, -0.003076171735301614, -0.01164550706744194, -0.014721679501235485, -0.02285156212747097, -0.02812499925494194, -0.037353515625, -0.03317870944738388, -0.03647460788488388, -0.03977050632238388, -0.03757324069738388, -0.03537597507238388, -0.02812499925494194, -0.024169921875, -0.01823730394244194, -0.00747070275247097, -0.00747070275247097, 0.0010986328125, 0.010327148251235485, 0.02153320237994194, 0.02460937388241291, 0.0340576171875, 0.03823241963982582, 0.03757324069738388, 0.03427734225988388, 0.03933105245232582, 0.03691406175494194, 0.03647460788488388, 0.03076171875, 0.02153320237994194, 0.01713867112994194, 0.01054687425494194, 0.005932617001235485, 0.0013183592818677425, -0.010327148251235485, -0.01691894419491291, -0.02109374850988388, -0.01801757700741291, -0.02812499925494194, -0.0274658203125, -0.02658691257238388, -0.02680663950741291, -0.02614746056497097, -0.02878417819738388, -0.02460937388241291, -0.02351074106991291, -0.01735839806497097, -0.003076171735301614, -0.0006591796409338713, 0.0008789062267169356, 0.010986328125, 0.01406249962747097, 0.01691894419491291, 0.01889648474752903, 0.02944335900247097, 0.028564453125, 0.0296630859375, 0.03054199181497097, 0.02219238132238388, 0.02219238132238388, 0.02021484263241291, 0.013403319753706455, 0.008349609561264515, 0.0057128905318677425, 0.0028564452659338713, 0.0054931640625, -0.00637206993997097, -0.007031249813735485, -0.01494140550494194, -0.014501952566206455, -0.01823730394244194, -0.02197265625, -0.024169921875, -0.01713867112994194, -0.01582031138241291, -0.01779785193502903, -0.014501952566206455, -0.010107421316206455, -0.007910155691206455, -0.009448242373764515, -0.00439453125, 0.001977538922801614, 0.00439453125, 0.009228515438735485, 0.007250976283103228, 0.013623046688735485, 0.01406249962747097, 0.0164794921875, 0.0142822265625, 0.01735839806497097, 0.0208740234375, 0.01406249962747097, 0.015380859375, 0.010107421316206455, 0.010327148251235485, 0.005932617001235485, 0.0004394531133584678, -0.0002197265566792339, -0.0004394531133584678, -0.0002197265566792339, -0.0054931640625, -0.011206054128706455, -0.004833984188735485, -0.01516113243997097, -0.0120849609375, -0.012304686941206455 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.0556)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ -0.0013183592818677425, 0.003955077845603228, 0.002636718563735485, 0.0041748047806322575, 0.0010986328125, 0.003955077845603228, 0.0046142577193677425, 0.0, 0.002197265625, 0.0032958984375, -0.003076171735301614, -0.001977538922801614, 0.0076904296875, 0.0057128905318677425, -0.001977538922801614, 0.0008789062267169356, 0.0028564452659338713, -0.002197265625, -0.001977538922801614, -0.001538085867650807, -0.0006591796409338713, 0.007031249813735485, 0.003076171735301614, 0.003735351376235485, 0.003735351376235485, 0.00637206993997097, 0.0, 0.0008789062267169356, 0.001977538922801614, -0.001538085867650807, 0.0010986328125, 0.002197265625, -0.0004394531133584678, 0.001538085867650807, 0.003955077845603228, -0.003955077845603228, -0.006591796875, 0.0068115233443677425, -0.003955077845603228, 0.0041748047806322575, 0.007250976283103228, 0.001977538922801614, 0.003076171735301614, 0.0068115233443677425, 0.0087890625, 0.005932617001235485, 0.003076171735301614, 0.00856933556497097, 0.009008788503706455, 0.0041748047806322575, 0.005053710658103228, 0.008129882626235485, 0.001977538922801614, -0.0010986328125, 0.003955077845603228, -0.0010986328125, -0.002197265625, -0.003955077845603228, -0.009008788503706455, -0.0068115233443677425, -0.01296386681497097, -0.01054687425494194, -0.01318359375, -0.010986328125, -0.01274413987994194, -0.01318359375, -0.003955077845603228, -0.012524413876235485, -0.006591796875, 0.0024169920943677425, -0.0006591796409338713, 0.001538085867650807, 0.004833984188735485, 0.01318359375, 0.01296386681497097, 0.0120849609375, 0.015380859375, 0.01735839806497097, 0.01582031138241291, 0.02175292931497097, 0.0208740234375, 0.01713867112994194, 0.01516113243997097, 0.01186523400247097, 0.0076904296875, 0.0032958984375, 0.002197265625, -0.0057128905318677425, -0.00966796837747097, -0.00527343712747097, -0.01164550706744194, -0.01494140550494194, -0.02109374850988388, -0.015380859375, -0.019775390625, -0.02351074106991291, -0.015380859375, -0.02109374850988388, -0.013623046688735485, -0.01186523400247097, -0.005932617001235485, -0.00439453125, 0.003076171735301614, 0.003076171735301614, 0.01274413987994194, 0.01911620981991291, 0.02219238132238388, 0.02702636644244194, 0.03098144382238388, 0.03076171875, 0.03361816331744194, 0.02504882775247097, 0.032958984375, 0.02834472618997097, 0.02548827975988388, 0.02373046800494194, 0.01669921912252903, 0.0076904296875, 0.0057128905318677425, -0.004833984188735485, -0.008349609561264515, -0.013623046688735485, -0.01801757700741291, -0.02197265625, -0.02922363206744194, -0.032958984375, -0.0318603515625, -0.02900390513241291, -0.0252685546875, -0.03076171875, -0.02548827975988388, -0.02329101413488388, -0.012304686941206455, -0.006152343470603228, 0.0008789062267169356, -0.0013183592818677425, 0.01274413987994194, 0.02153320237994194, 0.02329101413488388, 0.02680663950741291, 0.03603515401482582, 0.03317870944738388, 0.03779296949505806, 0.03647460788488388, 0.04042968526482582, 0.03757324069738388, 0.032958984375, 0.0274658203125, 0.02285156212747097, 0.01582031138241291, 0.0010986328125, 0.0, -0.01164550706744194, -0.01911620981991291, -0.02592773362994194, -0.02768554538488388, -0.03383788838982582, -0.03889160230755806, -0.04196777194738388, -0.03339843824505806, -0.03669433668255806, -0.03471679612994194, -0.03010253794491291, -0.02131347544491291, -0.01845703087747097, -0.01494140550494194, -0.005053710658103228, 0.0032958984375, 0.013623046688735485, 0.02241210825741291, 0.02812499925494194, 0.0318603515625, 0.03493652120232582, 0.03933105245232582, 0.0406494140625, 0.04768066108226776, 0.04042968526482582, 0.04218749701976776, 0.03713378682732582, 0.03383788838982582, 0.02460937388241291, 0.01582031138241291, 0.005932617001235485, -0.0017578124534338713, -0.012524413876235485, -0.01889648474752903, -0.02878417819738388, -0.03581542894244194, -0.04086913913488388, -0.03999023512005806, -0.0472412109375, -0.04438476264476776, -0.04812011495232582, -0.04108886793255806, -0.03867187350988388, -0.02922363206744194, -0.01823730394244194, -0.01384277269244194, -0.0002197265566792339, 0.0046142577193677425, 0.017578125, 0.028564453125, 0.03098144382238388, 0.03471679612994194, 0.04833984375, 0.04877929389476776, 0.04921874776482582, 0.04570312425494194, 0.04899902269244194, 0.04570312425494194, 0.03647460788488388, 0.0362548828125, 0.02131347544491291, 0.015380859375, 0.00439453125, -0.0035156249068677425, -0.014721679501235485, -0.0208740234375, -0.03273925557732582, -0.03603515401482582, -0.04833984375, -0.05229492112994194, -0.0538330078125, -0.05141601338982582, -0.04790038987994194, -0.03955078125, -0.03889160230755806, -0.03515625, -0.02109374850988388, -0.01516113243997097, -0.0008789062267169356, 0.006152343470603228, 0.02175292931497097, 0.0274658203125, 0.03933105245232582, 0.04460449144244194, 0.04526367038488388, 0.04899902269244194, 0.0560302734375, 0.05251464620232582, 0.0560302734375, 0.04790038987994194, 0.03779296949505806, 0.03603515401482582, 0.02922363206744194, 0.01406249962747097, 0.005053710658103228, -0.008349609561264515, -0.01999511756002903, -0.02614746056497097, -0.03603515401482582, -0.04218749701976776, -0.04899902269244194, -0.04746093600988388, -0.05559081956744194, -0.05581054463982582, -0.04636230319738388, -0.04768066108226776, -0.04240722581744194, -0.03647460788488388, -0.02658691257238388, -0.01625976525247097, -0.0068115233443677425, 0.009228515438735485, 0.01801757700741291, 0.02834472618997097, 0.04196777194738388, 0.04020996019244194, 0.05031738057732582, 0.05097655951976776, 0.05976562201976776, 0.05888671800494194, 0.054931640625, 0.04636230319738388, 0.04086913913488388, 0.0406494140625, 0.02680663950741291, 0.01604003831744194, 0.006591796875, -0.005932617001235485, -0.01604003831744194, -0.02438964694738388, -0.03427734225988388, -0.03889160230755806, -0.0450439453125, -0.05141601338982582, -0.05427245795726776, -0.05624999850988388, -0.04548339545726776, -0.04262695088982582, -0.0428466796875, -0.03142089769244194, -0.02241210825741291, -0.01494140550494194, -0.00637206993997097, 0.006591796875, 0.01911620981991291, 0.02241210825741291, 0.03669433668255806, 0.04262695088982582, 0.05317382514476776, 0.050537109375, 0.05141601338982582, 0.054931640625, 0.04921874776482582, 0.04833984375, 0.0428466796875, 0.03603515401482582, 0.02482910081744194, 0.01164550706744194, 0.003076171735301614, -0.0008789062267169356, -0.00966796837747097, -0.01889648474752903, -0.032958984375, -0.03581542894244194, -0.04460449144244194, -0.04658202826976776, -0.05339355394244194, -0.04658202826976776, -0.04592284932732582, -0.04152831807732582, -0.03889160230755806, -0.03427734225988388, -0.02504882775247097, -0.009008788503706455, -0.005053710658103228, 0.01164550706744194, 0.01669921912252903, 0.02922363206744194, 0.0318603515625, 0.03977050632238388, 0.04921874776482582, 0.05251464620232582, 0.05361327901482582, 0.05097655951976776, 0.04965820163488388, 0.046142578125, 0.03515625, 0.032958984375, 0.02197265625, 0.013623046688735485, 0.007250976283103228, -0.0008789062267169356, -0.01494140550494194, -0.02219238132238388, -0.0274658203125, -0.03449707105755806, -0.03977050632238388, -0.046142578125, -0.04790038987994194, -0.04987792670726776, -0.0439453125, -0.0406494140625, -0.03273925557732582, -0.0230712890625, -0.02438964694738388, -0.009228515438735485, -0.002197265625, 0.00527343712747097, 0.01845703087747097, 0.01933593675494194, 0.02592773362994194, 0.03229980543255806, 0.04438476264476776, 0.04987792670726776, 0.04636230319738388, 0.04570312425494194, 0.04152831807732582, 0.04042968526482582, 0.03823241963982582, 0.02592773362994194, 0.01955566368997097, 0.01801757700741291, 0.010107421316206455, -0.0017578124534338713, -0.01054687425494194, -0.0142822265625, -0.02570800669491291, -0.03317870944738388, -0.03977050632238388, -0.04196777194738388, -0.03449707105755806, -0.03427734225988388, -0.03603515401482582, -0.0318603515625, -0.03010253794491291, -0.02175292931497097, -0.01955566368997097, -0.009008788503706455, -0.003076171735301614, 0.007031249813735485, 0.009008788503706455, 0.01582031138241291, 0.02504882775247097, 0.0252685546875, 0.02900390513241291, 0.03889160230755806, 0.04086913913488388, 0.03977050632238388, 0.03054199181497097, 0.03449707105755806, 0.02922363206744194, 0.01845703087747097, 0.01384277269244194, 0.010986328125, 0.002636718563735485, 0.003076171735301614, -0.003735351376235485, -0.014501952566206455, -0.02592773362994194, -0.02504882775247097, -0.03076171875, -0.03054199181497097, -0.03076171875, -0.02592773362994194, -0.03098144382238388, -0.03142089769244194, -0.01911620981991291, -0.02395019493997097, -0.01296386681497097, -0.007250976283103228, -0.006591796875, 0.004833984188735485, 0.005932617001235485, 0.01801757700741291, 0.02219238132238388, 0.02197265625, 0.02900390513241291, 0.02570800669491291, 0.0318603515625, 0.02504882775247097, 0.02109374850988388, 0.02592773362994194, 0.0230712890625, 0.019775390625, 0.01713867112994194, 0.0057128905318677425, 0.003076171735301614, 0.0024169920943677425, -0.007910155691206455, -0.010986328125, -0.0120849609375, -0.019775390625, -0.0142822265625, -0.02351074106991291, -0.02438964694738388, -0.01691894419491291, -0.02109374850988388, -0.01384277269244194, -0.013403319753706455, -0.004833984188735485, -0.007250976283103228, -0.0032958984375, -0.0002197265566792339, 0.006591796875, 0.009008788503706455, 0.01582031138241291, 0.011425781063735485, 0.01582031138241291, 0.01933593675494194, 0.02197265625, 0.01933593675494194, 0.01801757700741291, 0.0164794921875, 0.01911620981991291, 0.012524413876235485, 0.00856933556497097, 0.00527343712747097, 0.005053710658103228, -0.0032958984375, 0.003076171735301614, 0.0006591796409338713, -0.004833984188735485, -0.00439453125, -0.010327148251235485, -0.007910155691206455, -0.013403319753706455, -0.014501952566206455, -0.005932617001235485 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.1111)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ -0.0004394531133584678, 0.0004394531133584678, 0.0017578124534338713, 0.0008789062267169356, 0.003955077845603228, 0.001977538922801614, -0.0017578124534338713, -0.0006591796409338713, 0.003955077845603228, -0.0008789062267169356, 0.0017578124534338713, 0.003076171735301614, 0.0, 0.003076171735301614, -0.0032958984375, 0.0024169920943677425, 0.0028564452659338713, 0.0041748047806322575, -0.0046142577193677425, -0.0032958984375, 0.001538085867650807, -0.002636718563735485, 0.0041748047806322575, 0.0028564452659338713, 0.0002197265566792339, -0.002197265625, 0.0024169920943677425, 0.0057128905318677425, 0.0041748047806322575, 0.002197265625, 0.0013183592818677425, 0.0008789062267169356, 0.001538085867650807, -0.002197265625, -0.0006591796409338713, -0.0024169920943677425, -0.0041748047806322575, -0.001538085867650807, -0.0008789062267169356, 0.00439453125, 0.0054931640625, 0.0017578124534338713, 0.00637206993997097, 0.008349609561264515, 0.001538085867650807, 0.01164550706744194, 0.00439453125, 0.01186523400247097, 0.012304686941206455, 0.008129882626235485, 0.006591796875, 0.01164550706744194, 0.00966796837747097, 0.00439453125, -0.0006591796409338713, 0.0024169920943677425, 0.0004394531133584678, -0.008129882626235485, -0.005053710658103228, -0.0098876953125, -0.010986328125, -0.0087890625, -0.01384277269244194, -0.014721679501235485, -0.00856933556497097, -0.005932617001235485, -0.00527343712747097, -0.004833984188735485, -0.0076904296875, -0.0017578124534338713, -0.0008789062267169356, 0.0, 0.007910155691206455, 0.00439453125, 0.01582031138241291, 0.0142822265625, 0.013403319753706455, 0.01735839806497097, 0.01779785193502903, 0.0186767578125, 0.02438964694738388, 0.01779785193502903, 0.010986328125, 0.009228515438735485, 0.01406249962747097, 0.0054931640625, 0.003955077845603228, -0.003955077845603228, -0.0098876953125, -0.01406249962747097, -0.01296386681497097, -0.01582031138241291, -0.01801757700741291, -0.01713867112994194, -0.02570800669491291, -0.02021484263241291, -0.02504882775247097, -0.019775390625, -0.01779785193502903, -0.0120849609375, -0.0087890625, -0.009448242373764515, 0.0032958984375, 0.001977538922801614, 0.005932617001235485, 0.01494140550494194, 0.01318359375, 0.02680663950741291, 0.02438964694738388, 0.024169921875, 0.0263671875, 0.03010253794491291, 0.03273925557732582, 0.02834472618997097, 0.02460937388241291, 0.01625976525247097, 0.017578125, 0.009008788503706455, 0.0035156249068677425, -0.0054931640625, -0.0120849609375, -0.01274413987994194, -0.01735839806497097, -0.01713867112994194, -0.02175292931497097, -0.0318603515625, -0.0263671875, -0.03339843824505806, -0.02834472618997097, -0.03317870944738388, -0.02395019493997097, -0.0230712890625, -0.010986328125, -0.0087890625, -0.006591796875, 0.008349609561264515, 0.0087890625, 0.01955566368997097, 0.02658691257238388, 0.02878417819738388, 0.02922363206744194, 0.03603515401482582, 0.04416503757238388, 0.03537597507238388, 0.0384521484375, 0.03889160230755806, 0.02504882775247097, 0.02548827975988388, 0.017578125, 0.010986328125, 0.004833984188735485, -0.007031249813735485, -0.009448242373764515, -0.01604003831744194, -0.0274658203125, -0.02438964694738388, -0.03010253794491291, -0.03911132737994194, -0.0428466796875, -0.03713378682732582, -0.03889160230755806, -0.03076171875, -0.0340576171875, -0.03076171875, -0.01933593675494194, -0.01186523400247097, -0.002197265625, 0.0076904296875, 0.01494140550494194, 0.02043456956744194, 0.02592773362994194, 0.0296630859375, 0.03691406175494194, 0.0450439453125, 0.04350585862994194, 0.04833984375, 0.0428466796875, 0.04372558370232582, 0.03867187350988388, 0.0296630859375, 0.02131347544491291, 0.01625976525247097, 0.0008789062267169356, -0.00439453125, -0.014501952566206455, -0.0230712890625, -0.02592773362994194, -0.03471679612994194, -0.037353515625, -0.04658202826976776, -0.04152831807732582, -0.04746093600988388, -0.04262695088982582, -0.04350585862994194, -0.0340576171875, -0.03317870944738388, -0.01735839806497097, -0.0164794921875, -0.005053710658103228, 0.008349609561264515, 0.01164550706744194, 0.02504882775247097, 0.03229980543255806, 0.04328612983226776, 0.04702148213982582, 0.05251464620232582, 0.04768066108226776, 0.04790038987994194, 0.05361327901482582, 0.04658202826976776, 0.04372558370232582, 0.03493652120232582, 0.019775390625, 0.011206054128706455, 0.0041748047806322575, -0.003955077845603228, -0.010986328125, -0.024169921875, -0.03317870944738388, -0.04042968526482582, -0.04416503757238388, -0.04306640475988388, -0.05581054463982582, -0.05251464620232582, -0.05229492112994194, -0.04768066108226776, -0.03889160230755806, -0.03427734225988388, -0.02702636644244194, -0.01625976525247097, -0.001538085867650807, 0.00966796837747097, 0.01604003831744194, 0.0263671875, 0.03691406175494194, 0.04812011495232582, 0.05119628831744194, 0.05251464620232582, 0.0516357421875, 0.05668945237994194, 0.05207519233226776, 0.04658202826976776, 0.04570312425494194, 0.03911132737994194, 0.03098144382238388, 0.02175292931497097, 0.0041748047806322575, -0.001977538922801614, -0.01911620981991291, -0.02592773362994194, -0.03164062276482582, -0.03779296949505806, -0.04240722581744194, -0.05185546725988388, -0.0494384765625, -0.05295410007238388, -0.05207519233226776, -0.04812011495232582, -0.03713378682732582, -0.03273925557732582, -0.02482910081744194, -0.01669921912252903, -0.005053710658103228, 0.008349609561264515, 0.01889648474752903, 0.03032226487994194, 0.03955078125, 0.04746093600988388, 0.04812011495232582, 0.04987792670726776, 0.05624999850988388, 0.05888671800494194, 0.05712890625, 0.0516357421875, 0.04790038987994194, 0.03515625, 0.02768554538488388, 0.01318359375, 0.00439453125, -0.007031249813735485, -0.01274413987994194, -0.02043456956744194, -0.03537597507238388, -0.03647460788488388, -0.04921874776482582, -0.050537109375, -0.05361327901482582, -0.05559081956744194, -0.050537109375, -0.04987792670726776, -0.03823241963982582, -0.03471679612994194, -0.02548827975988388, -0.014501952566206455, -0.008129882626235485, 0.010327148251235485, 0.019775390625, 0.02944335900247097, 0.03823241963982582, 0.03933105245232582, 0.05141601338982582, 0.050537109375, 0.05646972358226776, 0.05295410007238388, 0.05646972358226776, 0.04702148213982582, 0.03999023512005806, 0.03471679612994194, 0.0230712890625, 0.012524413876235485, 0.011425781063735485, -0.00747070275247097, -0.01296386681497097, -0.02812499925494194, -0.03164062276482582, -0.03647460788488388, -0.04680175706744194, -0.0439453125, -0.04855956882238388, -0.04680175706744194, -0.04680175706744194, -0.0472412109375, -0.03669433668255806, -0.03010253794491291, -0.02395019493997097, -0.014501952566206455, -0.005932617001235485, 0.003076171735301614, 0.012524413876235485, 0.0296630859375, 0.03757324069738388, 0.04306640475988388, 0.03977050632238388, 0.050537109375, 0.054931640625, 0.04658202826976776, 0.04526367038488388, 0.04438476264476776, 0.03779296949505806, 0.03339843824505806, 0.02285156212747097, 0.013623046688735485, 0.0028564452659338713, -0.005932617001235485, -0.01406249962747097, -0.02065429650247097, -0.0318603515625, -0.032958984375, -0.04020996019244194, -0.04306640475988388, -0.04855956882238388, -0.04570312425494194, -0.04372558370232582, -0.04350585862994194, -0.02944335900247097, -0.03032226487994194, -0.02175292931497097, -0.014721679501235485, -0.007910155691206455, 0.00637206993997097, 0.0120849609375, 0.02175292931497097, 0.03449707105755806, 0.03911132737994194, 0.04350585862994194, 0.03999023512005806, 0.04218749701976776, 0.04350585862994194, 0.04328612983226776, 0.04108886793255806, 0.03032226487994194, 0.02658691257238388, 0.01933593675494194, 0.01076660118997097, 0.0032958984375, -0.0035156249068677425, -0.007031249813735485, -0.02241210825741291, -0.02263183519244194, -0.02944335900247097, -0.03383788838982582, -0.03427734225988388, -0.04086913913488388, -0.03603515401482582, -0.04042968526482582, -0.03229980543255806, -0.02812499925494194, -0.02351074106991291, -0.0142822265625, -0.0057128905318677425, -0.0024169920943677425, 0.003955077845603228, 0.01296386681497097, 0.02329101413488388, 0.02438964694738388, 0.02790527231991291, 0.03229980543255806, 0.03691406175494194, 0.03603515401482582, 0.03251953050494194, 0.03757324069738388, 0.03493652120232582, 0.02812499925494194, 0.02460937388241291, 0.01318359375, 0.012524413876235485, 0.003735351376235485, 0.001538085867650807, -0.00527343712747097, -0.01296386681497097, -0.01625976525247097, -0.02131347544491291, -0.02900390513241291, -0.02944335900247097, -0.02878417819738388, -0.02570800669491291, -0.02614746056497097, -0.02812499925494194, -0.0186767578125, -0.01516113243997097, -0.009448242373764515, -0.010327148251235485, -0.001538085867650807, 0.002636718563735485, 0.010327148251235485, 0.0120849609375, 0.0164794921875, 0.02219238132238388, 0.02790527231991291, 0.02922363206744194, 0.03208007663488388, 0.03032226487994194, 0.02504882775247097, 0.02351074106991291, 0.02570800669491291, 0.01604003831744194, 0.009008788503706455, 0.009448242373764515, 0.007250976283103228, -0.00439453125, -0.0054931640625, -0.0068115233443677425, -0.014501952566206455, -0.01494140550494194, -0.02065429650247097, -0.02065429650247097, -0.01999511756002903, -0.024169921875, -0.02351074106991291, -0.01494140550494194, -0.0164794921875, -0.0098876953125, -0.007250976283103228, -0.002197265625, 0.002636718563735485, 0.0004394531133584678, 0.006591796875, 0.011425781063735485, 0.013403319753706455, 0.01845703087747097, 0.02175292931497097, 0.02285156212747097, 0.01911620981991291, 0.0208740234375, 0.01955566368997097, 0.01691894419491291, 0.017578125, 0.01076660118997097, 0.008129882626235485, 0.011206054128706455, 0.0041748047806322575, -0.0006591796409338713, 0.002197265625, -0.00747070275247097, -0.00527343712747097, -0.0041748047806322575, -0.010986328125, -0.0068115233443677425, -0.0041748047806322575, -0.01186523400247097 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.1667)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ -0.0013183592818677425, 0.0068115233443677425, -0.001977538922801614, 0.007031249813735485, 0.003735351376235485, -0.003076171735301614, 0.001977538922801614, -0.0024169920943677425, 0.00439453125, 0.0017578124534338713, -0.0002197265566792339, -0.0017578124534338713, -0.002197265625, 0.0068115233443677425, 0.0041748047806322575, 0.0006591796409338713, 0.0028564452659338713, 0.00527343712747097, 0.0024169920943677425, 0.0004394531133584678, 0.0008789062267169356, -0.0032958984375, -0.003735351376235485, 0.0057128905318677425, -0.0010986328125, 0.0041748047806322575, 0.001538085867650807, 0.003076171735301614, 0.001977538922801614, -0.0028564452659338713, -0.0024169920943677425, -0.0032958984375, 0.001538085867650807, -0.0017578124534338713, -0.0035156249068677425, -0.003076171735301614, -0.0004394531133584678, 0.0032958984375, -0.0002197265566792339, -0.0004394531133584678, 0.002197265625, 0.0076904296875, -0.0006591796409338713, 0.0054931640625, 0.0068115233443677425, 0.002636718563735485, 0.00747070275247097, 0.006152343470603228, 0.009448242373764515, 0.013623046688735485, 0.00439453125, 0.0068115233443677425, 0.0004394531133584678, 0.001977538922801614, 0.0046142577193677425, 0.0, 0.0024169920943677425, -0.008349609561264515, -0.003076171735301614, -0.0035156249068677425, -0.01296386681497097, -0.01164550706744194, -0.00856933556497097, -0.009008788503706455, -0.008129882626235485, -0.015600585378706455, -0.01384277269244194, -0.0068115233443677425, -0.003955077845603228, -0.0024169920943677425, -0.0010986328125, 0.0024169920943677425, 0.0035156249068677425, 0.01318359375, 0.012524413876235485, 0.010327148251235485, 0.012304686941206455, 0.02131347544491291, 0.0186767578125, 0.01384277269244194, 0.02109374850988388, 0.01933593675494194, 0.01054687425494194, 0.01318359375, 0.011206054128706455, 0.00637206993997097, 0.0076904296875, -0.0035156249068677425, -0.006591796875, -0.00527343712747097, -0.011425781063735485, -0.01669921912252903, -0.01889648474752903, -0.01669921912252903, -0.02043456956744194, -0.02329101413488388, -0.01999511756002903, -0.01669921912252903, -0.0208740234375, -0.0164794921875, -0.006591796875, -0.005932617001235485, -0.00439453125, 0.0024169920943677425, 0.0068115233443677425, 0.0098876953125, 0.01406249962747097, 0.02131347544491291, 0.0252685546875, 0.02504882775247097, 0.02329101413488388, 0.0318603515625, 0.02900390513241291, 0.02482910081744194, 0.02219238132238388, 0.0230712890625, 0.01604003831744194, 0.009228515438735485, 0.003955077845603228, 0.0024169920943677425, -0.002197265625, -0.01625976525247097, -0.014721679501235485, -0.01801757700741291, -0.02922363206744194, -0.03273925557732582, -0.02790527231991291, -0.02790527231991291, -0.03010253794491291, -0.03098144382238388, -0.02109374850988388, -0.02351074106991291, -0.0186767578125, -0.009008788503706455, -0.002197265625, 0.006152343470603228, 0.01318359375, 0.02065429650247097, 0.0186767578125, 0.02460937388241291, 0.03317870944738388, 0.03537597507238388, 0.03691406175494194, 0.03713378682732582, 0.03317870944738388, 0.03251953050494194, 0.02680663950741291, 0.02614746056497097, 0.01625976525247097, 0.0142822265625, 0.0054931640625, -0.0054931640625, -0.0098876953125, -0.015380859375, -0.02351074106991291, -0.03273925557732582, -0.03076171875, -0.0406494140625, -0.04020996019244194, -0.04460449144244194, -0.041748046875, -0.03911132737994194, -0.02944335900247097, -0.02043456956744194, -0.01625976525247097, -0.00637206993997097, -0.0032958984375, 0.010327148251235485, 0.00966796837747097, 0.01713867112994194, 0.03120117075741291, 0.03713378682732582, 0.0362548828125, 0.04372558370232582, 0.04460449144244194, 0.04328612983226776, 0.04460449144244194, 0.03801269456744194, 0.03142089769244194, 0.02702636644244194, 0.01691894419491291, 0.0164794921875, 0.01054687425494194, 0.0006591796409338713, -0.012524413876235485, -0.01713867112994194, -0.02878417819738388, -0.03339843824505806, -0.04460449144244194, -0.041748046875, -0.04416503757238388, -0.04306640475988388, -0.0439453125, -0.0450439453125, -0.03911132737994194, -0.02658691257238388, -0.0252685546875, -0.009008788503706455, -0.006152343470603228, 0.0032958984375, 0.014501952566206455, 0.02373046800494194, 0.037353515625, 0.0428466796875, 0.04152831807732582, 0.04636230319738388, 0.04790038987994194, 0.0494384765625, 0.04790038987994194, 0.04855956882238388, 0.03801269456744194, 0.03339843824505806, 0.02658691257238388, 0.015380859375, 0.0041748047806322575, -0.0046142577193677425, -0.00856933556497097, -0.024169921875, -0.032958984375, -0.03999023512005806, -0.04350585862994194, -0.05295410007238388, -0.05207519233226776, -0.04987792670726776, -0.04548339545726776, -0.03933105245232582, -0.04218749701976776, -0.02680663950741291, -0.02922363206744194, -0.012304686941206455, -0.00856933556497097, 0.007250976283103228, 0.01669921912252903, 0.02922363206744194, 0.03647460788488388, 0.03911132737994194, 0.05119628831744194, 0.04746093600988388, 0.05405273288488388, 0.05119628831744194, 0.05844726413488388, 0.0450439453125, 0.04460449144244194, 0.037353515625, 0.02900390513241291, 0.02263183519244194, 0.002197265625, -0.0006591796409338713, -0.01691894419491291, -0.01779785193502903, -0.03098144382238388, -0.0406494140625, -0.04965820163488388, -0.05031738057732582, -0.05031738057732582, -0.04965820163488388, -0.054931640625, -0.04833984375, -0.04482421651482582, -0.03581542894244194, -0.02241210825741291, -0.01516113243997097, -0.00439453125, 0.008129882626235485, 0.01889648474752903, 0.0263671875, 0.0318603515625, 0.04680175706744194, 0.0538330078125, 0.0538330078125, 0.05888671800494194, 0.06064452975988388, 0.05361327901482582, 0.0494384765625, 0.03977050632238388, 0.03559570387005806, 0.03098144382238388, 0.0142822265625, 0.001538085867650807, -0.002197265625, -0.0164794921875, -0.02329101413488388, -0.03757324069738388, -0.03933105245232582, -0.04768066108226776, -0.04790038987994194, -0.05515136569738388, -0.05251464620232582, -0.0472412109375, -0.05031738057732582, -0.04526367038488388, -0.03076171875, -0.02790527231991291, -0.011425781063735485, -0.00527343712747097, 0.0087890625, 0.01582031138241291, 0.02988281100988388, 0.03801269456744194, 0.04218749701976776, 0.04482421651482582, 0.04833984375, 0.05119628831744194, 0.05998535081744194, 0.05229492112994194, 0.0516357421875, 0.04218749701976776, 0.03691406175494194, 0.02768554538488388, 0.015380859375, 0.001538085867650807, -0.003955077845603228, -0.011425781063735485, -0.0252685546875, -0.03273925557732582, -0.03757324069738388, -0.0472412109375, -0.04921874776482582, -0.0494384765625, -0.05141601338982582, -0.04812011495232582, -0.04350585862994194, -0.03867187350988388, -0.032958984375, -0.02614746056497097, -0.0120849609375, -0.0046142577193677425, 0.0013183592818677425, 0.01076660118997097, 0.02043456956744194, 0.03383788838982582, 0.03823241963982582, 0.04987792670726776, 0.05031738057732582, 0.04877929389476776, 0.05317382514476776, 0.05185546725988388, 0.0450439453125, 0.04152831807732582, 0.03208007663488388, 0.02482910081744194, 0.01076660118997097, 0.0032958984375, -0.0017578124534338713, -0.01318359375, -0.01911620981991291, -0.02922363206744194, -0.03867187350988388, -0.04416503757238388, -0.04350585862994194, -0.04570312425494194, -0.0472412109375, -0.04658202826976776, -0.0406494140625, -0.03801269456744194, -0.02482910081744194, -0.0186767578125, -0.011425781063735485, -0.0008789062267169356, 0.00439453125, 0.01318359375, 0.02241210825741291, 0.02768554538488388, 0.03669433668255806, 0.04086913913488388, 0.04855956882238388, 0.04965820163488388, 0.04218749701976776, 0.041748046875, 0.03581542894244194, 0.03669433668255806, 0.02285156212747097, 0.02219238132238388, 0.010107421316206455, 0.00747070275247097, 0.0024169920943677425, -0.009008788503706455, -0.01406249962747097, -0.02922363206744194, -0.02680663950741291, -0.03383788838982582, -0.04042968526482582, -0.03757324069738388, -0.03603515401482582, -0.0362548828125, -0.02900390513241291, -0.02614746056497097, -0.02197265625, -0.019775390625, -0.010986328125, 0.0002197265566792339, 0.0041748047806322575, 0.011425781063735485, 0.0186767578125, 0.02460937388241291, 0.0296630859375, 0.02834472618997097, 0.03581542894244194, 0.04108886793255806, 0.03889160230755806, 0.03515625, 0.0296630859375, 0.03339843824505806, 0.02197265625, 0.015380859375, 0.01494140550494194, 0.0032958984375, -0.0028564452659338713, -0.0120849609375, -0.01823730394244194, -0.01669921912252903, -0.02878417819738388, -0.02834472618997097, -0.02944335900247097, -0.03317870944738388, -0.028564453125, -0.03164062276482582, -0.028564453125, -0.02548827975988388, -0.02153320237994194, -0.01911620981991291, -0.005932617001235485, 0.0010986328125, 0.0024169920943677425, 0.00856933556497097, 0.019775390625, 0.02329101413488388, 0.0230712890625, 0.02395019493997097, 0.03076171875, 0.03317870944738388, 0.02702636644244194, 0.02263183519244194, 0.02812499925494194, 0.02065429650247097, 0.01582031138241291, 0.008349609561264515, 0.011425781063735485, 0.0010986328125, -0.0004394531133584678, -0.0013183592818677425, -0.007031249813735485, -0.014721679501235485, -0.01889648474752903, -0.01735839806497097, -0.02438964694738388, -0.02438964694738388, -0.01669921912252903, -0.01669921912252903, -0.0142822265625, -0.013623046688735485, -0.007031249813735485, -0.0087890625, -0.006591796875, -0.0008789062267169356, 0.0024169920943677425, 0.003076171735301614, 0.01406249962747097, 0.01691894419491291, 0.014501952566206455, 0.0120849609375, 0.01406249962747097, 0.01604003831744194, 0.01713867112994194, 0.01274413987994194, 0.014721679501235485, 0.007910155691206455, 0.015380859375, 0.003735351376235485, 0.0006591796409338713, 0.004833984188735485, 0.003955077845603228, -0.001538085867650807, -0.004833984188735485, -0.005053710658103228, -0.01054687425494194, -0.012304686941206455, -0.0087890625, -0.01076660118997097, -0.01274413987994194 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.2222)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ 0.00439453125, 0.0002197265566792339, 0.006152343470603228, 0.0006591796409338713, 0.0057128905318677425, -0.0013183592818677425, 0.0008789062267169356, -0.0024169920943677425, 0.0004394531133584678, -0.0013183592818677425, 0.0041748047806322575, 0.001977538922801614, 0.0024169920943677425, 0.0013183592818677425, 0.004833984188735485, 0.0004394531133584678, 0.0054931640625, 0.0006591796409338713, 0.0, -0.003955077845603228, 0.003955077845603228, -0.0013183592818677425, 0.0017578124534338713, -0.0006591796409338713, 0.006152343470603228, -0.001538085867650807, -0.0010986328125, 0.0017578124534338713, -0.0017578124534338713, -0.002636718563735485, 0.0035156249068677425, -0.0008789062267169356, -0.0008789062267169356, 0.00439453125, 0.0, -0.0006591796409338713, -0.003076171735301614, 0.003735351376235485, 0.0010986328125, -0.0008789062267169356, -0.0006591796409338713, 0.00856933556497097, 0.00527343712747097, 0.0028564452659338713, 0.009448242373764515, 0.0054931640625, 0.004833984188735485, 0.005053710658103228, 0.007910155691206455, 0.0057128905318677425, 0.009448242373764515, 0.0057128905318677425, -0.0010986328125, -0.0008789062267169356, 0.0006591796409338713, -0.002197265625, 0.0004394531133584678, -0.003955077845603228, -0.01054687425494194, -0.004833984188735485, -0.0032958984375, -0.012304686941206455, -0.010107421316206455, -0.01516113243997097, -0.00527343712747097, -0.01494140550494194, -0.0098876953125, -0.011206054128706455, -0.007910155691206455, 0.001977538922801614, 0.0017578124534338713, 0.0054931640625, 0.007250976283103228, 0.011206054128706455, 0.01164550706744194, 0.01296386681497097, 0.01582031138241291, 0.017578125, 0.01779785193502903, 0.01955566368997097, 0.01911620981991291, 0.019775390625, 0.01406249962747097, 0.009228515438735485, 0.009228515438735485, 0.0068115233443677425, 0.003076171735301614, -0.003735351376235485, -0.00439453125, -0.01406249962747097, -0.01296386681497097, -0.012304686941206455, -0.01735839806497097, -0.01691894419491291, -0.02131347544491291, -0.01735839806497097, -0.015380859375, -0.01625976525247097, -0.01516113243997097, -0.010986328125, -0.010327148251235485, -0.0046142577193677425, -0.0046142577193677425, 0.00527343712747097, 0.00439453125, 0.01054687425494194, 0.013403319753706455, 0.01691894419491291, 0.02570800669491291, 0.02504882775247097, 0.03010253794491291, 0.02592773362994194, 0.03032226487994194, 0.02658691257238388, 0.02285156212747097, 0.02482910081744194, 0.01823730394244194, 0.0046142577193677425, 0.00439453125, -0.001977538922801614, -0.005932617001235485, -0.011425781063735485, -0.02241210825741291, -0.02570800669491291, -0.02504882775247097, -0.02658691257238388, -0.02834472618997097, -0.0340576171875, -0.03273925557732582, -0.0252685546875, -0.02768554538488388, -0.02131347544491291, -0.0164794921875, -0.008349609561264515, 0.003735351376235485, 0.003735351376235485, 0.008129882626235485, 0.0164794921875, 0.02592773362994194, 0.02614746056497097, 0.03142089769244194, 0.03779296949505806, 0.041748046875, 0.04196777194738388, 0.0406494140625, 0.03493652120232582, 0.03515625, 0.02812499925494194, 0.015600585378706455, 0.01625976525247097, 0.0041748047806322575, -0.005053710658103228, -0.007910155691206455, -0.015600585378706455, -0.02834472618997097, -0.02834472618997097, -0.0340576171875, -0.03449707105755806, -0.03999023512005806, -0.03471679612994194, -0.04042968526482582, -0.03977050632238388, -0.02614746056497097, -0.03010253794491291, -0.02065429650247097, -0.007250976283103228, 0.001538085867650807, 0.0046142577193677425, 0.01186523400247097, 0.02570800669491291, 0.03361816331744194, 0.03120117075741291, 0.03801269456744194, 0.04548339545726776, 0.04680175706744194, 0.03955078125, 0.04196777194738388, 0.03933105245232582, 0.03999023512005806, 0.02878417819738388, 0.02658691257238388, 0.010986328125, 0.007250976283103228, -0.00527343712747097, -0.01691894419491291, -0.024169921875, -0.02812499925494194, -0.03339843824505806, -0.03691406175494194, -0.04328612983226776, -0.04965820163488388, -0.04548339545726776, -0.0428466796875, -0.0439453125, -0.03229980543255806, -0.03317870944738388, -0.01735839806497097, -0.014721679501235485, -0.001977538922801614, 0.0068115233443677425, 0.0186767578125, 0.02812499925494194, 0.03647460788488388, 0.03955078125, 0.04108886793255806, 0.04548339545726776, 0.05427245795726776, 0.04812011495232582, 0.05427245795726776, 0.04570312425494194, 0.03581542894244194, 0.03471679612994194, 0.02373046800494194, 0.015600585378706455, 0.00439453125, -0.0054931640625, -0.0164794921875, -0.01911620981991291, -0.0318603515625, -0.03559570387005806, -0.04020996019244194, -0.05251464620232582, -0.05185546725988388, -0.05295410007238388, -0.04855956882238388, -0.0428466796875, -0.04218749701976776, -0.03208007663488388, -0.0263671875, -0.011206054128706455, -0.003955077845603228, 0.0087890625, 0.01691894419491291, 0.02592773362994194, 0.0362548828125, 0.03999023512005806, 0.05075683444738388, 0.05075683444738388, 0.05756835639476776, 0.05097655951976776, 0.05295410007238388, 0.046142578125, 0.04042968526482582, 0.03493652120232582, 0.02658691257238388, 0.02131347544491291, 0.002636718563735485, -0.005053710658103228, -0.01494140550494194, -0.02548827975988388, -0.03361816331744194, -0.04460449144244194, -0.04833984375, -0.04833984375, -0.0516357421875, -0.05427245795726776, -0.04921874776482582, -0.04702148213982582, -0.03977050632238388, -0.02878417819738388, -0.02504882775247097, -0.014721679501235485, -0.00637206993997097, 0.007910155691206455, 0.017578125, 0.02658691257238388, 0.03955078125, 0.041748046875, 0.04482421651482582, 0.052734375, 0.05844726413488388, 0.05515136569738388, 0.05778808519244194, 0.052734375, 0.04108886793255806, 0.03361816331744194, 0.02592773362994194, 0.01604003831744194, 0.008129882626235485, -0.009008788503706455, -0.013403319753706455, -0.0296630859375, -0.037353515625, -0.04196777194738388, -0.04746093600988388, -0.04790038987994194, -0.052734375, -0.04768066108226776, -0.052734375, -0.050537109375, -0.04482421651482582, -0.03449707105755806, -0.0252685546875, -0.01164550706744194, -0.0006591796409338713, 0.003076171735301614, 0.01911620981991291, 0.02329101413488388, 0.03142089769244194, 0.04240722581744194, 0.04416503757238388, 0.04965820163488388, 0.05515136569738388, 0.05295410007238388, 0.04855956882238388, 0.0450439453125, 0.04570312425494194, 0.03164062276482582, 0.028564453125, 0.02021484263241291, 0.0024169920943677425, -0.0017578124534338713, -0.0186767578125, -0.02021484263241291, -0.03098144382238388, -0.03493652120232582, -0.04746093600988388, -0.04636230319738388, -0.04702148213982582, -0.05251464620232582, -0.04833984375, -0.041748046875, -0.03537597507238388, -0.03383788838982582, -0.02680663950741291, -0.01669921912252903, -0.00856933556497097, 0.0041748047806322575, 0.0120849609375, 0.02768554538488388, 0.03054199181497097, 0.0428466796875, 0.0439453125, 0.04592284932732582, 0.05339355394244194, 0.050537109375, 0.0494384765625, 0.04372558370232582, 0.03647460788488388, 0.03691406175494194, 0.0252685546875, 0.01604003831744194, 0.0046142577193677425, -0.003955077845603228, -0.012304686941206455, -0.01889648474752903, -0.02790527231991291, -0.03229980543255806, -0.04020996019244194, -0.04152831807732582, -0.0439453125, -0.04965820163488388, -0.04658202826976776, -0.0384521484375, -0.03581542894244194, -0.02988281100988388, -0.0263671875, -0.009008788503706455, -0.007031249813735485, 0.006152343470603228, 0.01582031138241291, 0.0252685546875, 0.03317870944738388, 0.03647460788488388, 0.03559570387005806, 0.04086913913488388, 0.04790038987994194, 0.04196777194738388, 0.04262695088982582, 0.03691406175494194, 0.03208007663488388, 0.02263183519244194, 0.01889648474752903, 0.013623046688735485, 0.0, -0.005932617001235485, -0.01604003831744194, -0.01516113243997097, -0.03010253794491291, -0.03010253794491291, -0.03098144382238388, -0.03779296949505806, -0.03647460788488388, -0.03999023512005806, -0.03361816331744194, -0.03889160230755806, -0.03164062276482582, -0.02438964694738388, -0.02219238132238388, -0.01054687425494194, -0.002197265625, 0.008129882626235485, 0.010986328125, 0.015380859375, 0.02680663950741291, 0.03515625, 0.03427734225988388, 0.032958984375, 0.03669433668255806, 0.03581542894244194, 0.04108886793255806, 0.03229980543255806, 0.02834472618997097, 0.02175292931497097, 0.02065429650247097, 0.009448242373764515, 0.0028564452659338713, -0.0041748047806322575, -0.00637206993997097, -0.01516113243997097, -0.02373046800494194, -0.028564453125, -0.02570800669491291, -0.02570800669491291, -0.03032226487994194, -0.03383788838982582, -0.02702636644244194, -0.02285156212747097, -0.02658691257238388, -0.02043456956744194, -0.01669921912252903, -0.010986328125, -0.0006591796409338713, 0.0032958984375, 0.008349609561264515, 0.01823730394244194, 0.01933593675494194, 0.02197265625, 0.02724609337747097, 0.02592773362994194, 0.03054199181497097, 0.0263671875, 0.03054199181497097, 0.0263671875, 0.01713867112994194, 0.01384277269244194, 0.01516113243997097, 0.00527343712747097, 0.002197265625, -0.0008789062267169356, -0.00637206993997097, -0.01296386681497097, -0.01604003831744194, -0.01516113243997097, -0.02329101413488388, -0.02241210825741291, -0.02109374850988388, -0.01691894419491291, -0.01582031138241291, -0.0164794921875, -0.0142822265625, -0.01406249962747097, -0.00747070275247097, -0.008129882626235485, 0.0024169920943677425, 0.0057128905318677425, 0.00747070275247097, 0.00527343712747097, 0.011206054128706455, 0.01625976525247097, 0.0186767578125, 0.014721679501235485, 0.02065429650247097, 0.017578125, 0.013403319753706455, 0.015380859375, 0.008129882626235485, 0.007031249813735485, 0.007250976283103228, 0.002636718563735485, 0.006152343470603228, -0.0028564452659338713, 0.0008789062267169356, -0.008129882626235485, -0.01076660118997097, -0.00527343712747097, -0.00856933556497097, -0.0068115233443677425, -0.0098876953125, -0.00637206993997097 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.2778)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ 0.0046142577193677425, -0.0006591796409338713, -0.001977538922801614, 0.0, 0.002636718563735485, -0.0004394531133584678, -0.0002197265566792339, 0.003076171735301614, -0.0028564452659338713, -0.0013183592818677425, 0.0024169920943677425, 0.0024169920943677425, 0.00527343712747097, 0.005932617001235485, 0.003955077845603228, 0.0054931640625, 0.00439453125, 0.008349609561264515, 0.005932617001235485, 0.0054931640625, 0.00527343712747097, 0.0057128905318677425, 0.0, 0.0017578124534338713, 0.003076171735301614, 0.0024169920943677425, 0.003735351376235485, 0.001538085867650807, 0.003955077845603228, -0.001977538922801614, 0.0006591796409338713, -0.0017578124534338713, -0.0002197265566792339, -0.0032958984375, 0.0024169920943677425, -0.002636718563735485, -0.0008789062267169356, 0.005053710658103228, -0.0010986328125, -0.001538085867650807, 0.00527343712747097, 0.00439453125, 0.007250976283103228, 0.0041748047806322575, 0.009448242373764515, 0.00527343712747097, 0.01054687425494194, 0.01318359375, 0.004833984188735485, 0.01274413987994194, 0.006591796875, 0.007031249813735485, 0.001977538922801614, 0.003076171735301614, -0.003076171735301614, 0.0004394531133584678, -0.001538085867650807, -0.0068115233443677425, -0.0032958984375, -0.003076171735301614, -0.00637206993997097, -0.0076904296875, -0.012304686941206455, -0.01296386681497097, -0.0142822265625, -0.011206054128706455, -0.00856933556497097, -0.01164550706744194, -0.0004394531133584678, -0.006591796875, -0.0017578124534338713, -0.0017578124534338713, 0.0028564452659338713, 0.010986328125, 0.0068115233443677425, 0.01604003831744194, 0.01494140550494194, 0.02263183519244194, 0.019775390625, 0.02109374850988388, 0.02373046800494194, 0.017578125, 0.01604003831744194, 0.015380859375, 0.013403319753706455, 0.002197265625, 0.003955077845603228, 0.0032958984375, -0.0035156249068677425, -0.0120849609375, -0.01691894419491291, -0.02065429650247097, -0.02065429650247097, -0.02482910081744194, -0.02131347544491291, -0.02241210825741291, -0.02175292931497097, -0.01735839806497097, -0.01318359375, -0.01164550706744194, -0.008349609561264515, -0.009008788503706455, 0.003735351376235485, 0.00856933556497097, 0.003955077845603228, 0.010107421316206455, 0.01186523400247097, 0.02438964694738388, 0.0252685546875, 0.0230712890625, 0.0252685546875, 0.02504882775247097, 0.03164062276482582, 0.02900390513241291, 0.0263671875, 0.01604003831744194, 0.013623046688735485, 0.0057128905318677425, 0.0098876953125, 0.0, -0.007250976283103228, -0.009448242373764515, -0.01582031138241291, -0.02197265625, -0.0274658203125, -0.02834472618997097, -0.03471679612994194, -0.02724609337747097, -0.02878417819738388, -0.03273925557732582, -0.02021484263241291, -0.02131347544491291, -0.011206054128706455, -0.0054931640625, 0.0002197265566792339, 0.002197265625, 0.015380859375, 0.01801757700741291, 0.02878417819738388, 0.03142089769244194, 0.03339843824505806, 0.0318603515625, 0.04020996019244194, 0.03537597507238388, 0.03581542894244194, 0.03229980543255806, 0.02922363206744194, 0.028564453125, 0.015600585378706455, 0.008349609561264515, 0.00439453125, -0.00527343712747097, -0.0076904296875, -0.01845703087747097, -0.02285156212747097, -0.03581542894244194, -0.03691406175494194, -0.03581542894244194, -0.0439453125, -0.04372558370232582, -0.03801269456744194, -0.03120117075741291, -0.03098144382238388, -0.02219238132238388, -0.01801757700741291, -0.008129882626235485, -0.00527343712747097, -0.0013183592818677425, 0.011206054128706455, 0.02614746056497097, 0.03164062276482582, 0.03713378682732582, 0.03911132737994194, 0.04482421651482582, 0.04965820163488388, 0.04372558370232582, 0.03955078125, 0.04460449144244194, 0.03955078125, 0.02351074106991291, 0.02504882775247097, 0.01604003831744194, 0.003955077845603228, -0.0024169920943677425, -0.01669921912252903, -0.02329101413488388, -0.02592773362994194, -0.03889160230755806, -0.03427734225988388, -0.04526367038488388, -0.04262695088982582, -0.04328612983226776, -0.04240722581744194, -0.04020996019244194, -0.03559570387005806, -0.0318603515625, -0.01845703087747097, -0.015600585378706455, -0.0010986328125, 0.0054931640625, 0.013623046688735485, 0.02285156212747097, 0.03427734225988388, 0.03823241963982582, 0.03955078125, 0.04833984375, 0.05427245795726776, 0.04833984375, 0.04921874776482582, 0.0450439453125, 0.03823241963982582, 0.02922363206744194, 0.02614746056497097, 0.01845703087747097, 0.001538085867650807, -0.00439453125, -0.01691894419491291, -0.01845703087747097, -0.03471679612994194, -0.04328612983226776, -0.03955078125, -0.04899902269244194, -0.05339355394244194, -0.05361327901482582, -0.04636230319738388, -0.04680175706744194, -0.03955078125, -0.02812499925494194, -0.02438964694738388, -0.01516113243997097, -0.008349609561264515, 0.009448242373764515, 0.02109374850988388, 0.02658691257238388, 0.03449707105755806, 0.03867187350988388, 0.04987792670726776, 0.04790038987994194, 0.04921874776482582, 0.05844726413488388, 0.0538330078125, 0.04855956882238388, 0.04526367038488388, 0.03691406175494194, 0.02263183519244194, 0.0120849609375, 0.005053710658103228, -0.007910155691206455, -0.013403319753706455, -0.02351074106991291, -0.03098144382238388, -0.04262695088982582, -0.04833984375, -0.04965820163488388, -0.05141601338982582, -0.05515136569738388, -0.05009765550494194, -0.041748046875, -0.04416503757238388, -0.03076171875, -0.02395019493997097, -0.01318359375, -0.00527343712747097, 0.005932617001235485, 0.01274413987994194, 0.02614746056497097, 0.0296630859375, 0.04130859300494194, 0.04877929389476776, 0.05471191182732582, 0.05844726413488388, 0.05471191182732582, 0.05734863132238388, 0.05119628831744194, 0.04152831807732582, 0.03955078125, 0.02219238132238388, 0.02043456956744194, 0.00637206993997097, -0.0028564452659338713, -0.012524413876235485, -0.0230712890625, -0.032958984375, -0.03779296949505806, -0.04372558370232582, -0.04877929389476776, -0.0538330078125, -0.0494384765625, -0.05229492112994194, -0.04416503757238388, -0.03977050632238388, -0.0318603515625, -0.02021484263241291, -0.00966796837747097, -0.001538085867650807, 0.005053710658103228, 0.01845703087747097, 0.02922363206744194, 0.03933105245232582, 0.03977050632238388, 0.04855956882238388, 0.04965820163488388, 0.05251464620232582, 0.05185546725988388, 0.0516357421875, 0.04570312425494194, 0.04152831807732582, 0.03823241963982582, 0.02504882775247097, 0.014501952566206455, 0.01076660118997097, -0.0006591796409338713, -0.0142822265625, -0.02131347544491291, -0.03164062276482582, -0.04372558370232582, -0.04636230319738388, -0.0494384765625, -0.04965820163488388, -0.04548339545726776, -0.04526367038488388, -0.0472412109375, -0.03559570387005806, -0.03317870944738388, -0.02197265625, -0.01406249962747097, 0.001977538922801614, 0.006152343470603228, 0.01274413987994194, 0.02241210825741291, 0.03559570387005806, 0.03603515401482582, 0.04570312425494194, 0.04921874776482582, 0.05185546725988388, 0.04570312425494194, 0.0516357421875, 0.0494384765625, 0.03493652120232582, 0.03098144382238388, 0.024169921875, 0.0142822265625, 0.0076904296875, -0.003735351376235485, -0.01669921912252903, -0.02504882775247097, -0.02922363206744194, -0.03999023512005806, -0.04042968526482582, -0.0472412109375, -0.04855956882238388, -0.04196777194738388, -0.04658202826976776, -0.0406494140625, -0.03339843824505806, -0.0274658203125, -0.01801757700741291, -0.00856933556497097, -0.0054931640625, 0.00637206993997097, 0.0142822265625, 0.0263671875, 0.02658691257238388, 0.04020996019244194, 0.03911132737994194, 0.03999023512005806, 0.04130859300494194, 0.04812011495232582, 0.04130859300494194, 0.04372558370232582, 0.03317870944738388, 0.02438964694738388, 0.02263183519244194, 0.0120849609375, 0.0046142577193677425, -0.0024169920943677425, -0.015600585378706455, -0.02065429650247097, -0.02834472618997097, -0.03098144382238388, -0.0318603515625, -0.03493652120232582, -0.03427734225988388, -0.03427734225988388, -0.03471679612994194, -0.03537597507238388, -0.02944335900247097, -0.02219238132238388, -0.01494140550494194, -0.00856933556497097, -0.0017578124534338713, 0.008129882626235485, 0.015600585378706455, 0.0230712890625, 0.02504882775247097, 0.02614746056497097, 0.03317870944738388, 0.03911132737994194, 0.0340576171875, 0.04020996019244194, 0.03317870944738388, 0.03427734225988388, 0.02900390513241291, 0.019775390625, 0.0186767578125, 0.012304686941206455, 0.0032958984375, -0.005053710658103228, -0.007031249813735485, -0.01713867112994194, -0.0208740234375, -0.0208740234375, -0.02351074106991291, -0.0263671875, -0.0274658203125, -0.03493652120232582, -0.02351074106991291, -0.03010253794491291, -0.02460937388241291, -0.0164794921875, -0.013623046688735485, -0.0057128905318677425, 0.0017578124534338713, 0.0054931640625, 0.008129882626235485, 0.015380859375, 0.02219238132238388, 0.02768554538488388, 0.02790527231991291, 0.03010253794491291, 0.0252685546875, 0.02724609337747097, 0.03010253794491291, 0.02878417819738388, 0.01911620981991291, 0.0164794921875, 0.01186523400247097, 0.012524413876235485, 0.0032958984375, -0.0046142577193677425, -0.006591796875, -0.0098876953125, -0.01845703087747097, -0.01582031138241291, -0.01801757700741291, -0.0208740234375, -0.02175292931497097, -0.02197265625, -0.014721679501235485, -0.015600585378706455, -0.01845703087747097, -0.013623046688735485, -0.008349609561264515, -0.0017578124534338713, -0.00637206993997097, 0.00439453125, 0.005053710658103228, 0.01296386681497097, 0.013623046688735485, 0.01318359375, 0.01516113243997097, 0.01999511756002903, 0.01384277269244194, 0.012304686941206455, 0.01691894419491291, 0.01999511756002903, 0.015380859375, 0.012304686941206455, 0.0087890625, 0.002197265625, 0.003076171735301614, -0.003735351376235485, -0.0057128905318677425, -0.0017578124534338713, -0.012304686941206455, -0.003955077845603228, -0.01516113243997097, -0.008349609561264515, -0.009448242373764515, -0.01054687425494194 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.3333)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ 0.001977538922801614, 0.006591796875, -0.0013183592818677425, -0.0010986328125, 0.0010986328125, 0.00527343712747097, 0.005053710658103228, 0.005932617001235485, 0.0046142577193677425, 0.0035156249068677425, -0.0008789062267169356, 0.002197265625, -0.0041748047806322575, 0.005053710658103228, 0.002197265625, -0.0006591796409338713, 0.006152343470603228, 0.0046142577193677425, 0.0057128905318677425, 0.0028564452659338713, 0.0035156249068677425, 0.0, 0.0006591796409338713, 0.0006591796409338713, 0.003735351376235485, 0.005932617001235485, -0.0028564452659338713, -0.002636718563735485, -0.002197265625, -0.0024169920943677425, 0.0008789062267169356, -0.003076171735301614, -0.0041748047806322575, -0.002636718563735485, 0.0035156249068677425, 0.003076171735301614, 0.0017578124534338713, 0.004833984188735485, -0.0010986328125, 0.0024169920943677425, 0.0028564452659338713, 0.008129882626235485, 0.0032958984375, 0.007031249813735485, 0.0046142577193677425, 0.0057128905318677425, 0.004833984188735485, 0.011206054128706455, 0.00527343712747097, 0.004833984188735485, 0.0035156249068677425, 0.003076171735301614, 0.010986328125, 0.008129882626235485, 0.003735351376235485, -0.0008789062267169356, 0.0006591796409338713, -0.001538085867650807, -0.010107421316206455, -0.00856933556497097, -0.011206054128706455, -0.009228515438735485, -0.0098876953125, -0.009448242373764515, -0.012304686941206455, -0.0098876953125, -0.01296386681497097, -0.0054931640625, -0.005932617001235485, -0.006152343470603228, -0.0004394531133584678, 0.005053710658103228, 0.01076660118997097, 0.00856933556497097, 0.008129882626235485, 0.01296386681497097, 0.011206054128706455, 0.01691894419491291, 0.014501952566206455, 0.02109374850988388, 0.01604003831744194, 0.01516113243997097, 0.01999511756002903, 0.01186523400247097, 0.008349609561264515, 0.005932617001235485, 0.00439453125, -0.0013183592818677425, -0.006152343470603228, -0.009228515438735485, -0.01669921912252903, -0.01823730394244194, -0.01516113243997097, -0.0230712890625, -0.0186767578125, -0.01735839806497097, -0.01999511756002903, -0.02043456956744194, -0.01669921912252903, -0.010107421316206455, -0.01296386681497097, -0.008349609561264515, -0.0017578124534338713, 0.00527343712747097, 0.00966796837747097, 0.011206054128706455, 0.02241210825741291, 0.01933593675494194, 0.0208740234375, 0.03076171875, 0.03076171875, 0.02944335900247097, 0.02680663950741291, 0.03032226487994194, 0.02065429650247097, 0.02263183519244194, 0.01582031138241291, 0.009228515438735485, 0.004833984188735485, 0.0008789062267169356, -0.01318359375, -0.01845703087747097, -0.01582031138241291, -0.02131347544491291, -0.02460937388241291, -0.02548827975988388, -0.02658691257238388, -0.03493652120232582, -0.032958984375, -0.02768554538488388, -0.0208740234375, -0.0164794921875, -0.00966796837747097, -0.01274413987994194, 0.0017578124534338713, 0.006591796875, 0.01582031138241291, 0.02175292931497097, 0.02658691257238388, 0.02878417819738388, 0.03515625, 0.04130859300494194, 0.041748046875, 0.0406494140625, 0.0318603515625, 0.03999023512005806, 0.0274658203125, 0.02680663950741291, 0.0230712890625, 0.0076904296875, -0.0008789062267169356, -0.003735351376235485, -0.0098876953125, -0.014721679501235485, -0.0230712890625, -0.02944335900247097, -0.03647460788488388, -0.0362548828125, -0.03537597507238388, -0.03669433668255806, -0.03999023512005806, -0.03889160230755806, -0.0340576171875, -0.02504882775247097, -0.02065429650247097, -0.007910155691206455, 0.001977538922801614, 0.004833984188735485, 0.011425781063735485, 0.01625976525247097, 0.02922363206744194, 0.03361816331744194, 0.03603515401482582, 0.04921874776482582, 0.04130859300494194, 0.04680175706744194, 0.03889160230755806, 0.04086913913488388, 0.03164062276482582, 0.02614746056497097, 0.02504882775247097, 0.01296386681497097, 0.010107421316206455, -0.002197265625, -0.009008788503706455, -0.01955566368997097, -0.02658691257238388, -0.03713378682732582, -0.03691406175494194, -0.03801269456744194, -0.04768066108226776, -0.04746093600988388, -0.04108886793255806, -0.0384521484375, -0.03032226487994194, -0.0340576171875, -0.0208740234375, -0.0087890625, -0.00747070275247097, 0.002197265625, 0.014501952566206455, 0.02109374850988388, 0.03032226487994194, 0.03801269456744194, 0.04042968526482582, 0.04526367038488388, 0.054931640625, 0.05317382514476776, 0.05185546725988388, 0.04812011495232582, 0.04416503757238388, 0.03647460788488388, 0.02175292931497097, 0.01494140550494194, 0.0032958984375, -0.006152343470603228, -0.009008788503706455, -0.02219238132238388, -0.03273925557732582, -0.03383788838982582, -0.04548339545726776, -0.04482421651482582, -0.05031738057732582, -0.04680175706744194, -0.046142578125, -0.04482421651482582, -0.04020996019244194, -0.02702636644244194, -0.02702636644244194, -0.014501952566206455, -0.0035156249068677425, 0.003076171735301614, 0.01933593675494194, 0.02834472618997097, 0.03471679612994194, 0.04020996019244194, 0.05207519233226776, 0.05031738057732582, 0.05734863132238388, 0.0560302734375, 0.05075683444738388, 0.04328612983226776, 0.046142578125, 0.0318603515625, 0.03054199181497097, 0.01955566368997097, 0.01076660118997097, -0.004833984188735485, -0.013403319753706455, -0.02329101413488388, -0.028564453125, -0.03691406175494194, -0.04460449144244194, -0.05471191182732582, -0.05668945237994194, -0.05778808519244194, -0.04855956882238388, -0.04240722581744194, -0.03669433668255806, -0.03647460788488388, -0.02592773362994194, -0.014721679501235485, 0.0006591796409338713, 0.0046142577193677425, 0.01494140550494194, 0.02482910081744194, 0.0406494140625, 0.0472412109375, 0.046142578125, 0.05668945237994194, 0.05207519233226776, 0.0560302734375, 0.05207519233226776, 0.04899902269244194, 0.04020996019244194, 0.03208007663488388, 0.02197265625, 0.01494140550494194, 0.0057128905318677425, -0.0006591796409338713, -0.010327148251235485, -0.02570800669491291, -0.02944335900247097, -0.03999023512005806, -0.04987792670726776, -0.04526367038488388, -0.052734375, -0.04987792670726776, -0.046142578125, -0.04086913913488388, -0.03999023512005806, -0.028564453125, -0.02351074106991291, -0.01384277269244194, -0.008129882626235485, 0.005932617001235485, 0.01582031138241291, 0.03229980543255806, 0.0362548828125, 0.03889160230755806, 0.050537109375, 0.052734375, 0.05251464620232582, 0.0582275390625, 0.05624999850988388, 0.04680175706744194, 0.04372558370232582, 0.03273925557732582, 0.02614746056497097, 0.013403319753706455, 0.0054931640625, -0.00439453125, -0.01713867112994194, -0.02373046800494194, -0.03449707105755806, -0.04152831807732582, -0.04855956882238388, -0.05075683444738388, -0.04877929389476776, -0.04548339545726776, -0.04790038987994194, -0.04460449144244194, -0.03691406175494194, -0.02658691257238388, -0.0252685546875, -0.01801757700741291, -0.003735351376235485, 0.009228515438735485, 0.01494140550494194, 0.0263671875, 0.02988281100988388, 0.03867187350988388, 0.0450439453125, 0.0472412109375, 0.05581054463982582, 0.04833984375, 0.04899902269244194, 0.04482421651482582, 0.03933105245232582, 0.0296630859375, 0.01889648474752903, 0.0208740234375, 0.0087890625, 0.001538085867650807, -0.015600585378706455, -0.02395019493997097, -0.02460937388241291, -0.0362548828125, -0.04218749701976776, -0.04482421651482582, -0.04833984375, -0.04855956882238388, -0.04240722581744194, -0.04108886793255806, -0.03076171875, -0.02438964694738388, -0.02329101413488388, -0.01494140550494194, -0.00637206993997097, 0.001977538922801614, 0.013623046688735485, 0.01845703087747097, 0.02834472618997097, 0.03339843824505806, 0.0384521484375, 0.04526367038488388, 0.03955078125, 0.04328612983226776, 0.04042968526482582, 0.04306640475988388, 0.03669433668255806, 0.03164062276482582, 0.01779785193502903, 0.00966796837747097, 0.0054931640625, -0.00747070275247097, -0.011206054128706455, -0.012524413876235485, -0.02153320237994194, -0.0296630859375, -0.03559570387005806, -0.03427734225988388, -0.04196777194738388, -0.04152831807732582, -0.0318603515625, -0.03559570387005806, -0.02988281100988388, -0.01911620981991291, -0.013403319753706455, -0.010107421316206455, 0.003076171735301614, 0.0028564452659338713, 0.015600585378706455, 0.0164794921875, 0.01999511756002903, 0.0318603515625, 0.03515625, 0.04020996019244194, 0.04152831807732582, 0.04020996019244194, 0.032958984375, 0.0362548828125, 0.03317870944738388, 0.02834472618997097, 0.02065429650247097, 0.01669921912252903, 0.0076904296875, 0.0035156249068677425, -0.008129882626235485, -0.01735839806497097, -0.02373046800494194, -0.02482910081744194, -0.02329101413488388, -0.02482910081744194, -0.03098144382238388, -0.0340576171875, -0.0263671875, -0.02285156212747097, -0.02614746056497097, -0.01406249962747097, -0.01604003831744194, -0.011206054128706455, -0.004833984188735485, 0.0002197265566792339, 0.00637206993997097, 0.0164794921875, 0.02109374850988388, 0.02175292931497097, 0.02658691257238388, 0.02988281100988388, 0.024169921875, 0.03208007663488388, 0.0274658203125, 0.01911620981991291, 0.02043456956744194, 0.01713867112994194, 0.011206054128706455, 0.01054687425494194, 0.0008789062267169356, -0.0035156249068677425, -0.00637206993997097, -0.0120849609375, -0.015600585378706455, -0.0142822265625, -0.0186767578125, -0.015600585378706455, -0.02109374850988388, -0.02482910081744194, -0.01691894419491291, -0.017578125, -0.010327148251235485, -0.010327148251235485, -0.0035156249068677425, -0.005932617001235485, 0.003735351376235485, -0.0004394531133584678, 0.010986328125, 0.010986328125, 0.01779785193502903, 0.01691894419491291, 0.019775390625, 0.02043456956744194, 0.02241210825741291, 0.02109374850988388, 0.0208740234375, 0.011425781063735485, 0.01845703087747097, 0.01318359375, 0.00856933556497097, 0.0010986328125, -0.0008789062267169356, -0.0008789062267169356, -0.0028564452659338713, -0.001538085867650807, -0.010327148251235485, -0.010986328125, -0.011206054128706455, -0.011425781063735485, -0.0057128905318677425, -0.0057128905318677425 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.3889)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ 0.00439453125, 0.00527343712747097, -0.0002197265566792339, -0.0002197265566792339, 0.00527343712747097, -0.002636718563735485, -0.0017578124534338713, -0.00527343712747097, 0.003955077845603228, 0.0032958984375, -0.0010986328125, 0.004833984188735485, 0.0032958984375, 0.007031249813735485, -0.003735351376235485, 0.0035156249068677425, 0.006591796875, 0.0028564452659338713, 0.0010986328125, 0.0013183592818677425, 0.001538085867650807, -0.0010986328125, -0.001977538922801614, -0.0010986328125, -0.0010986328125, -0.0010986328125, 0.003735351376235485, -0.0035156249068677425, 0.0013183592818677425, 0.0024169920943677425, -0.0017578124534338713, -0.0013183592818677425, -0.005932617001235485, 0.0017578124534338713, -0.002197265625, 0.0028564452659338713, 0.003955077845603228, -0.0017578124534338713, 0.0041748047806322575, 0.0004394531133584678, 0.00439453125, 0.008349609561264515, 0.0024169920943677425, 0.009448242373764515, 0.0087890625, 0.0057128905318677425, 0.0041748047806322575, 0.0046142577193677425, 0.005053710658103228, 0.010327148251235485, 0.009008788503706455, 0.007031249813735485, 0.0028564452659338713, 0.00637206993997097, 0.0028564452659338713, -0.002636718563735485, -0.00527343712747097, -0.005053710658103228, -0.0024169920943677425, -0.005932617001235485, -0.009228515438735485, -0.004833984188735485, -0.008349609561264515, -0.0142822265625, -0.014501952566206455, -0.00637206993997097, -0.0098876953125, -0.003735351376235485, -0.004833984188735485, -0.003955077845603228, -0.0002197265566792339, -0.0010986328125, 0.002197265625, 0.00527343712747097, 0.01384277269244194, 0.01735839806497097, 0.013623046688735485, 0.02197265625, 0.014721679501235485, 0.02197265625, 0.014501952566206455, 0.01494140550494194, 0.01164550706744194, 0.01582031138241291, 0.009448242373764515, 0.007910155691206455, 0.0057128905318677425, -0.001977538922801614, -0.0013183592818677425, -0.01274413987994194, -0.01406249962747097, -0.01384277269244194, -0.02131347544491291, -0.0252685546875, -0.02131347544491291, -0.01735839806497097, -0.01845703087747097, -0.01911620981991291, -0.019775390625, -0.015380859375, -0.006591796875, -0.0087890625, -0.002636718563735485, 0.0, 0.0035156249068677425, 0.010327148251235485, 0.01384277269244194, 0.02548827975988388, 0.02988281100988388, 0.02680663950741291, 0.028564453125, 0.0340576171875, 0.03229980543255806, 0.02219238132238388, 0.01713867112994194, 0.015380859375, 0.00966796837747097, 0.01406249962747097, 0.004833984188735485, -0.0046142577193677425, -0.0120849609375, -0.014721679501235485, -0.01845703087747097, -0.028564453125, -0.02482910081744194, -0.0340576171875, -0.03449707105755806, -0.02724609337747097, -0.02724609337747097, -0.02680663950741291, -0.01955566368997097, -0.0164794921875, -0.015600585378706455, -0.0041748047806322575, -0.0008789062267169356, 0.00637206993997097, 0.01274413987994194, 0.01823730394244194, 0.02592773362994194, 0.03229980543255806, 0.03493652120232582, 0.03537597507238388, 0.03691406175494194, 0.03955078125, 0.03164062276482582, 0.0384521484375, 0.02482910081744194, 0.0252685546875, 0.02065429650247097, 0.011425781063735485, 0.0046142577193677425, -0.002636718563735485, -0.009008788503706455, -0.02043456956744194, -0.02109374850988388, -0.02900390513241291, -0.03537597507238388, -0.04086913913488388, -0.04042968526482582, -0.0450439453125, -0.03471679612994194, -0.03867187350988388, -0.03208007663488388, -0.02285156212747097, -0.02351074106991291, -0.005932617001235485, -0.00637206993997097, 0.0120849609375, 0.01296386681497097, 0.02373046800494194, 0.02812499925494194, 0.0384521484375, 0.03999023512005806, 0.04833984375, 0.04680175706744194, 0.05141601338982582, 0.04130859300494194, 0.04350585862994194, 0.03999023512005806, 0.03273925557732582, 0.01999511756002903, 0.01911620981991291, 0.0041748047806322575, -0.00527343712747097, -0.01494140550494194, -0.02153320237994194, -0.02373046800494194, -0.03339843824505806, -0.03977050632238388, -0.041748046875, -0.04350585862994194, -0.04636230319738388, -0.04262695088982582, -0.04328612983226776, -0.03493652120232582, -0.02944335900247097, -0.02373046800494194, -0.01296386681497097, 0.0004394531133584678, 0.01076660118997097, 0.01911620981991291, 0.02373046800494194, 0.03229980543255806, 0.04218749701976776, 0.04438476264476776, 0.050537109375, 0.04592284932732582, 0.050537109375, 0.05207519233226776, 0.04746093600988388, 0.03713378682732582, 0.02570800669491291, 0.0274658203125, 0.01274413987994194, 0.0087890625, -0.007250976283103228, -0.01076660118997097, -0.02373046800494194, -0.0340576171875, -0.03669433668255806, -0.04086913913488388, -0.04855956882238388, -0.05185546725988388, -0.05295410007238388, -0.05207519233226776, -0.04592284932732582, -0.04020996019244194, -0.0318603515625, -0.02658691257238388, -0.0142822265625, -0.0057128905318677425, 0.0120849609375, 0.01516113243997097, 0.02592773362994194, 0.03823241963982582, 0.04526367038488388, 0.04680175706744194, 0.05471191182732582, 0.05405273288488388, 0.05756835639476776, 0.05185546725988388, 0.04482421651482582, 0.04592284932732582, 0.03823241963982582, 0.02614746056497097, 0.02043456956744194, 0.0017578124534338713, -0.007250976283103228, -0.01801757700741291, -0.02285156212747097, -0.03098144382238388, -0.03823241963982582, -0.04548339545726776, -0.05295410007238388, -0.05031738057732582, -0.05031738057732582, -0.04570312425494194, -0.0472412109375, -0.0406494140625, -0.0362548828125, -0.02680663950741291, -0.01801757700741291, -0.001977538922801614, 0.005053710658103228, 0.0164794921875, 0.02988281100988388, 0.03273925557732582, 0.04746093600988388, 0.04965820163488388, 0.05075683444738388, 0.05405273288488388, 0.05712890625, 0.04833984375, 0.052734375, 0.03911132737994194, 0.03823241963982582, 0.024169921875, 0.01669921912252903, 0.011206054128706455, -0.006152343470603228, -0.01076660118997097, -0.0263671875, -0.02768554538488388, -0.04240722581744194, -0.0494384765625, -0.05185546725988388, -0.0516357421875, -0.05427245795726776, -0.04790038987994194, -0.0494384765625, -0.04328612983226776, -0.03427734225988388, -0.02614746056497097, -0.01076660118997097, -0.00439453125, 0.003076171735301614, 0.02021484263241291, 0.02285156212747097, 0.03339843824505806, 0.04042968526482582, 0.046142578125, 0.052734375, 0.05229492112994194, 0.05734863132238388, 0.05141601338982582, 0.0494384765625, 0.04372558370232582, 0.0296630859375, 0.02460937388241291, 0.01186523400247097, 0.003735351376235485, -0.00439453125, -0.01516113243997097, -0.02790527231991291, -0.03559570387005806, -0.03691406175494194, -0.04833984375, -0.05031738057732582, -0.05471191182732582, -0.04658202826976776, -0.04570312425494194, -0.04108886793255806, -0.03647460788488388, -0.02944335900247097, -0.01845703087747097, -0.014501952566206455, -0.0013183592818677425, 0.0024169920943677425, 0.014721679501235485, 0.02197265625, 0.03823241963982582, 0.03669433668255806, 0.04306640475988388, 0.0516357421875, 0.05251464620232582, 0.05251464620232582, 0.04833984375, 0.05119628831744194, 0.03955078125, 0.03801269456744194, 0.0230712890625, 0.01516113243997097, 0.007250976283103228, 0.0008789062267169356, -0.01296386681497097, -0.015600585378706455, -0.02790527231991291, -0.03339843824505806, -0.04196777194738388, -0.04658202826976776, -0.05031738057732582, -0.04350585862994194, -0.046142578125, -0.04328612983226776, -0.03581542894244194, -0.0340576171875, -0.01779785193502903, -0.006152343470603228, -0.0041748047806322575, 0.0008789062267169356, 0.01735839806497097, 0.02658691257238388, 0.03317870944738388, 0.03273925557732582, 0.04570312425494194, 0.0428466796875, 0.04152831807732582, 0.046142578125, 0.04438476264476776, 0.03713378682732582, 0.03977050632238388, 0.02548827975988388, 0.017578125, 0.01076660118997097, 0.00527343712747097, -0.0006591796409338713, -0.006591796875, -0.02285156212747097, -0.02790527231991291, -0.028564453125, -0.02988281100988388, -0.0340576171875, -0.03889160230755806, -0.04328612983226776, -0.03669433668255806, -0.03142089769244194, -0.03361816331744194, -0.02109374850988388, -0.02043456956744194, -0.010107421316206455, -0.0024169920943677425, 0.00856933556497097, 0.012304686941206455, 0.024169921875, 0.02460937388241291, 0.032958984375, 0.03098144382238388, 0.03669433668255806, 0.03603515401482582, 0.03801269456744194, 0.03581542894244194, 0.0340576171875, 0.02482910081744194, 0.01779785193502903, 0.01274413987994194, 0.0054931640625, 0.0068115233443677425, 0.003076171735301614, -0.00856933556497097, -0.014721679501235485, -0.01494140550494194, -0.02153320237994194, -0.03076171875, -0.02900390513241291, -0.02790527231991291, -0.03581542894244194, -0.02922363206744194, -0.0274658203125, -0.02285156212747097, -0.01801757700741291, -0.01625976525247097, -0.0013183592818677425, -0.0010986328125, 0.0010986328125, 0.0035156249068677425, 0.01911620981991291, 0.02219238132238388, 0.02373046800494194, 0.02504882775247097, 0.02285156212747097, 0.02482910081744194, 0.02504882775247097, 0.02219238132238388, 0.02285156212747097, 0.01713867112994194, 0.01494140550494194, 0.0098876953125, 0.010986328125, 0.006152343470603228, -0.00527343712747097, -0.009228515438735485, -0.00747070275247097, -0.01274413987994194, -0.01801757700741291, -0.013623046688735485, -0.02351074106991291, -0.01669921912252903, -0.02373046800494194, -0.01384277269244194, -0.01955566368997097, -0.01384277269244194, -0.006152343470603228, -0.009228515438735485, -0.001538085867650807, 0.0013183592818677425, 0.00527343712747097, 0.0017578124534338713, 0.00747070275247097, 0.012524413876235485, 0.01735839806497097, 0.01823730394244194, 0.017578125, 0.01669921912252903, 0.024169921875, 0.011206054128706455, 0.0164794921875, 0.014501952566206455, 0.01318359375, 0.0068115233443677425, 0.0028564452659338713, 0.003735351376235485, 0.001538085867650807, -0.0024169920943677425, -0.0046142577193677425, -0.009228515438735485, -0.013403319753706455, -0.0098876953125, -0.008129882626235485, -0.008349609561264515, -0.009008788503706455 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.4444)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ 0.0032958984375, 0.0006591796409338713, 0.0010986328125, 0.00439453125, 0.0004394531133584678, -0.0004394531133584678, -0.003735351376235485, -0.003076171735301614, 0.0002197265566792339, 0.001538085867650807, 0.001538085867650807, 0.0028564452659338713, 0.0013183592818677425, 0.007910155691206455, 0.003076171735301614, -0.0028564452659338713, 0.00439453125, 0.003955077845603228, -0.0004394531133584678, 0.00527343712747097, 0.0024169920943677425, -0.0024169920943677425, 0.0006591796409338713, -0.0024169920943677425, -0.003076171735301614, 0.00637206993997097, 0.0024169920943677425, 0.0006591796409338713, 0.001977538922801614, 0.0032958984375, 0.0, -0.0032958984375, -0.003076171735301614, -0.001977538922801614, 0.0010986328125, 0.002197265625, -0.0008789062267169356, -0.0013183592818677425, 0.0002197265566792339, 0.001977538922801614, -0.0008789062267169356, 0.0076904296875, 0.0032958984375, 0.0032958984375, 0.0035156249068677425, 0.0054931640625, 0.010107421316206455, 0.004833984188735485, 0.003735351376235485, 0.00856933556497097, 0.007910155691206455, 0.0057128905318677425, 0.0006591796409338713, 0.006152343470603228, -0.0028564452659338713, 0.0006591796409338713, 0.0002197265566792339, -0.003076171735301614, -0.002636718563735485, -0.004833984188735485, -0.007031249813735485, -0.012304686941206455, -0.010327148251235485, -0.01384277269244194, -0.00856933556497097, -0.011425781063735485, -0.01406249962747097, -0.002197265625, -0.0087890625, -0.004833984188735485, 0.0008789062267169356, 0.006152343470603228, 0.0024169920943677425, 0.005932617001235485, 0.00637206993997097, 0.010327148251235485, 0.01296386681497097, 0.01582031138241291, 0.02197265625, 0.017578125, 0.01735839806497097, 0.01911620981991291, 0.01582031138241291, 0.01076660118997097, 0.00747070275247097, 0.0041748047806322575, 0.002636718563735485, 0.003076171735301614, -0.0057128905318677425, -0.009228515438735485, -0.01735839806497097, -0.01516113243997097, -0.02197265625, -0.024169921875, -0.02373046800494194, -0.02614746056497097, -0.015600585378706455, -0.02043456956744194, -0.017578125, -0.014501952566206455, -0.012524413876235485, -0.004833984188735485, -0.0035156249068677425, 0.003955077845603228, 0.0068115233443677425, 0.01669921912252903, 0.014721679501235485, 0.02153320237994194, 0.03120117075741291, 0.02922363206744194, 0.02812499925494194, 0.0252685546875, 0.0252685546875, 0.02878417819738388, 0.0230712890625, 0.02373046800494194, 0.0142822265625, 0.00637206993997097, 0.002197265625, -0.0017578124534338713, -0.010327148251235485, -0.009448242373764515, -0.02021484263241291, -0.02460937388241291, -0.02438964694738388, -0.03493652120232582, -0.03515625, -0.03208007663488388, -0.02570800669491291, -0.02592773362994194, -0.03032226487994194, -0.02021484263241291, -0.02043456956744194, -0.009448242373764515, -0.0032958984375, 0.005053710658103228, 0.011425781063735485, 0.01186523400247097, 0.0252685546875, 0.03273925557732582, 0.03581542894244194, 0.03208007663488388, 0.0362548828125, 0.03977050632238388, 0.03801269456744194, 0.03669433668255806, 0.03361816331744194, 0.02373046800494194, 0.0142822265625, 0.013403319753706455, 0.003735351376235485, -0.0035156249068677425, -0.009448242373764515, -0.02285156212747097, -0.02790527231991291, -0.02658691257238388, -0.03471679612994194, -0.03449707105755806, -0.03977050632238388, -0.03515625, -0.04350585862994194, -0.03867187350988388, -0.03515625, -0.02241210825741291, -0.01406249962747097, -0.007250976283103228, -0.0035156249068677425, 0.00856933556497097, 0.01516113243997097, 0.0230712890625, 0.02878417819738388, 0.03911132737994194, 0.04482421651482582, 0.04702148213982582, 0.04482421651482582, 0.0439453125, 0.0494384765625, 0.04416503757238388, 0.03032226487994194, 0.03493652120232582, 0.01911620981991291, 0.01801757700741291, 0.00856933556497097, 0.0002197265566792339, -0.01691894419491291, -0.015600585378706455, -0.03361816331744194, -0.032958984375, -0.0428466796875, -0.04570312425494194, -0.04833984375, -0.04526367038488388, -0.04042968526482582, -0.041748046875, -0.032958984375, -0.03208007663488388, -0.02131347544491291, -0.01186523400247097, -0.0054931640625, 0.01274413987994194, 0.01625976525247097, 0.02790527231991291, 0.02834472618997097, 0.04350585862994194, 0.041748046875, 0.05207519233226776, 0.052734375, 0.05646972358226776, 0.05119628831744194, 0.0472412109375, 0.03669433668255806, 0.03823241963982582, 0.02021484263241291, 0.017578125, 0.009448242373764515, -0.00527343712747097, -0.017578125, -0.01823730394244194, -0.02878417819738388, -0.03955078125, -0.04790038987994194, -0.05097655951976776, -0.05097655951976776, -0.05075683444738388, -0.05009765550494194, -0.04416503757238388, -0.03999023512005806, -0.03515625, -0.02438964694738388, -0.015380859375, -0.001538085867650807, 0.011206054128706455, 0.01384277269244194, 0.02460937388241291, 0.03493652120232582, 0.04482421651482582, 0.04570312425494194, 0.04965820163488388, 0.0494384765625, 0.05998535081744194, 0.04570312425494194, 0.05185546725988388, 0.04482421651482582, 0.03010253794491291, 0.02702636644244194, 0.01296386681497097, 0.009228515438735485, 0.0013183592818677425, -0.011425781063735485, -0.02680663950741291, -0.03427734225988388, -0.03691406175494194, -0.04680175706744194, -0.05295410007238388, -0.05339355394244194, -0.05756835639476776, -0.04548339545726776, -0.04899902269244194, -0.04438476264476776, -0.03581542894244194, -0.02153320237994194, -0.010107421316206455, -0.0028564452659338713, 0.004833984188735485, 0.01494140550494194, 0.02900390513241291, 0.03273925557732582, 0.04262695088982582, 0.04768066108226776, 0.0516357421875, 0.05910644307732582, 0.052734375, 0.05624999850988388, 0.04855956882238388, 0.03955078125, 0.03955078125, 0.0252685546875, 0.0186767578125, 0.0057128905318677425, -0.0032958984375, -0.01625976525247097, -0.02724609337747097, -0.03471679612994194, -0.03669433668255806, -0.04680175706744194, -0.04592284932732582, -0.054931640625, -0.04965820163488388, -0.05251464620232582, -0.04833984375, -0.04196777194738388, -0.02900390513241291, -0.02504882775247097, -0.01076660118997097, -0.003735351376235485, 0.007250976283103228, 0.01494140550494194, 0.02482910081744194, 0.03713378682732582, 0.04108886793255806, 0.04482421651482582, 0.05317382514476776, 0.05207519233226776, 0.04921874776482582, 0.05624999850988388, 0.0472412109375, 0.03933105245232582, 0.03669433668255806, 0.02175292931497097, 0.015600585378706455, 0.001977538922801614, -0.004833984188735485, -0.01889648474752903, -0.02065429650247097, -0.02834472618997097, -0.03911132737994194, -0.04328612983226776, -0.04965820163488388, -0.04921874776482582, -0.04812011495232582, -0.04812011495232582, -0.04438476264476776, -0.03889160230755806, -0.02878417819738388, -0.02373046800494194, -0.010986328125, -0.003735351376235485, 0.00747070275247097, 0.013623046688735485, 0.0252685546875, 0.02944335900247097, 0.03647460788488388, 0.0516357421875, 0.04658202826976776, 0.05097655951976776, 0.0472412109375, 0.04965820163488388, 0.04746093600988388, 0.0384521484375, 0.02900390513241291, 0.02351074106991291, 0.01406249962747097, 0.0046142577193677425, -0.0008789062267169356, -0.01186523400247097, -0.024169921875, -0.03164062276482582, -0.03251953050494194, -0.04416503757238388, -0.04790038987994194, -0.04636230319738388, -0.04636230319738388, -0.04526367038488388, -0.04086913913488388, -0.03383788838982582, -0.02373046800494194, -0.02197265625, -0.01494140550494194, 0.0017578124534338713, 0.006152343470603228, 0.0164794921875, 0.02043456956744194, 0.03054199181497097, 0.03691406175494194, 0.03999023512005806, 0.04416503757238388, 0.0439453125, 0.04306640475988388, 0.04108886793255806, 0.041748046875, 0.03911132737994194, 0.03164062276482582, 0.01779785193502903, 0.011425781063735485, 0.006152343470603228, -0.001538085867650807, -0.01274413987994194, -0.01801757700741291, -0.024169921875, -0.03449707105755806, -0.03559570387005806, -0.041748046875, -0.03955078125, -0.04196777194738388, -0.03889160230755806, -0.032958984375, -0.02834472618997097, -0.02153320237994194, -0.02065429650247097, -0.0098876953125, -0.0054931640625, 0.010327148251235485, 0.01318359375, 0.01713867112994194, 0.0208740234375, 0.02570800669491291, 0.0340576171875, 0.03889160230755806, 0.03999023512005806, 0.04020996019244194, 0.03493652120232582, 0.03603515401482582, 0.03120117075741291, 0.02702636644244194, 0.02109374850988388, 0.01691894419491291, 0.0006591796409338713, 0.002636718563735485, -0.0098876953125, -0.01054687425494194, -0.01691894419491291, -0.02263183519244194, -0.03208007663488388, -0.028564453125, -0.03273925557732582, -0.02922363206744194, -0.02482910081744194, -0.02878417819738388, -0.02373046800494194, -0.02021484263241291, -0.01625976525247097, -0.00966796837747097, -0.0010986328125, 0.003955077845603228, 0.01076660118997097, 0.0186767578125, 0.0230712890625, 0.02131347544491291, 0.02548827975988388, 0.02263183519244194, 0.028564453125, 0.03229980543255806, 0.03032226487994194, 0.0263671875, 0.02197265625, 0.0164794921875, 0.01779785193502903, 0.004833984188735485, 0.0010986328125, -0.005053710658103228, -0.009008788503706455, -0.010107421316206455, -0.010107421316206455, -0.01669921912252903, -0.01735839806497097, -0.01604003831744194, -0.02241210825741291, -0.02175292931497097, -0.02021484263241291, -0.01625976525247097, -0.01801757700741291, -0.013623046688735485, -0.01318359375, -0.0017578124534338713, -0.002197265625, -0.0008789062267169356, 0.008129882626235485, 0.013623046688735485, 0.01779785193502903, 0.013403319753706455, 0.014501952566206455, 0.01406249962747097, 0.02021484263241291, 0.01582031138241291, 0.0208740234375, 0.01955566368997097, 0.01801757700741291, 0.00747070275247097, 0.01274413987994194, 0.006591796875, 0.0057128905318677425, -0.0013183592818677425, 0.0035156249068677425, -0.005053710658103228, -0.0017578124534338713, -0.0054931640625, -0.0046142577193677425, -0.0098876953125, -0.00856933556497097, -0.009448242373764515 ], "yaxis": "y3" }, { "dx": 2.0833333333333334e-10, "legendgroup": "qudits, labels: (1,)", "legendgrouptitle": { "text": "qudits, labels: (1,)" }, "name": "Re(V) for ('(amplitudes, [3.1415926536])', '(cr_gate_amplitude, 0.5)')", "type": "scatter", "visible": "legendonly", "x0": 0, "xaxis": "x3", "y": [ -0.002197265625, -0.0010986328125, 0.0004394531133584678, -0.003955077845603228, -0.003735351376235485, -0.0006591796409338713, 0.0057128905318677425, 0.0, 0.003735351376235485, 0.0032958984375, -0.001977538922801614, -0.0028564452659338713, -0.0035156249068677425, 0.00527343712747097, 0.0017578124534338713, 0.003955077845603228, -0.0028564452659338713, -0.002197265625, 0.00637206993997097, -0.0013183592818677425, 0.0057128905318677425, 0.003076171735301614, 0.0008789062267169356, -0.0006591796409338713, -0.003735351376235485, 0.002636718563735485, 0.005053710658103228, 0.0028564452659338713, 0.003955077845603228, 0.0035156249068677425, 0.0008789062267169356, 0.0032958984375, -0.0006591796409338713, -0.0013183592818677425, 0.0013183592818677425, -0.0008789062267169356, -0.005053710658103228, 0.0041748047806322575, 0.005932617001235485, 0.004833984188735485, 0.0008789062267169356, -0.0004394531133584678, 0.0024169920943677425, 0.00439453125, 0.003076171735301614, 0.011425781063735485, 0.00637206993997097, 0.00637206993997097, 0.0032958984375, 0.004833984188735485, 0.010107421316206455, 0.005053710658103228, 0.00439453125, 0.00637206993997097, 0.0054931640625, -0.0035156249068677425, -0.0057128905318677425, -0.0002197265566792339, -0.0046142577193677425, -0.00637206993997097, -0.01274413987994194, -0.012524413876235485, -0.01164550706744194, -0.015600585378706455, -0.01494140550494194, -0.010986328125, -0.01164550706744194, -0.00747070275247097, -0.001538085867650807, -0.001538085867650807, 0.003735351376235485, 0.0087890625, 0.001977538922801614, 0.002197265625, 0.007910155691206455, 0.01296386681497097, 0.019775390625, 0.02197265625, 0.02241210825741291, 0.01845703087747097, 0.02197265625, 0.01516113243997097, 0.01582031138241291, 0.00966796837747097, 0.01164550706744194, 0.009008788503706455, 0.005053710658103228, -0.001538085867650807, -0.003735351376235485, -0.008349609561264515, -0.009228515438735485, -0.012304686941206455, -0.02197265625, -0.01801757700741291, -0.02373046800494194, -0.01889648474752903, -0.02021484263241291, -0.01735839806497097, -0.019775390625, -0.017578125, -0.01494140550494194, -0.0087890625, 0.0004394531133584678, 0.0076904296875, 0.0098876953125, 0.009228515438735485, 0.019775390625, 0.0263671875, 0.02504882775247097, 0.0274658203125, 0.02680663950741291, 0.02614746056497097, 0.03427734225988388, 0.02658691257238388, 0.02285156212747097, 0.02329101413488388, 0.008349609561264515, 0.0057128905318677425, 0.002197265625, 0.0017578124534338713, -0.007031249813735485, -0.01318359375, -0.01889648474752903, -0.02329101413488388, -0.02724609337747097, -0.03273925557732582, -0.02812499925494194, -0.03493652120232582, -0.03251953050494194, -0.02834472618997097, -0.0208740234375, -0.015600585378706455, -0.014721679501235485, -0.008129882626235485, -0.0046142577193677425, 0.005932617001235485, 0.006591796875, 0.01779785193502903, 0.02065429650247097, 0.02570800669491291, 0.03054199181497097, 0.03647460788488388, 0.03757324069738388, 0.03669433668255806, 0.03911132737994194, 0.03054199181497097, 0.03120117075741291, 0.02219238132238388, 0.02373046800494194, 0.01516113243997097, 0.0024169920943677425, -0.0010986328125, -0.0120849609375, -0.01823730394244194, -0.0230712890625, -0.0208740234375, -0.02988281100988388, -0.04042968526482582, -0.04196777194738388, -0.03889160230755806, -0.037353515625, -0.03889160230755806, -0.02460937388241291, -0.02460937388241291, -0.02153320237994194, -0.00856933556497097, 0.0006591796409338713, 0.006152343470603228, 0.0186767578125, 0.01955566368997097, 0.02614746056497097, 0.03273925557732582, 0.03955078125, 0.04460449144244194, 0.04921874776482582, 0.04921874776482582, 0.04372558370232582, 0.04438476264476776, 0.032958984375, 0.02944335900247097, 0.01889648474752903, 0.01406249962747097, 0.008129882626235485, -0.0010986328125, -0.015380859375, -0.0230712890625, -0.02768554538488388, -0.03647460788488388, -0.03691406175494194, -0.046142578125, -0.05031738057732582, -0.04592284932732582, -0.04218749701976776, -0.0439453125, -0.03999023512005806, -0.02570800669491291, -0.02153320237994194, -0.01186523400247097, -0.003735351376235485, 0.0068115233443677425, 0.011425781063735485, 0.02351074106991291, 0.02658691257238388, 0.03669433668255806, 0.04020996019244194, 0.05097655951976776, 0.05624999850988388, 0.04768066108226776, 0.05339355394244194, 0.04438476264476776, 0.04042968526482582, 0.03449707105755806, 0.02109374850988388, 0.012524413876235485, 0.003735351376235485, 0.0006591796409338713, -0.01713867112994194, -0.02790527231991291, -0.03229980543255806, -0.04020996019244194, -0.04482421651482582, -0.05427245795726776, -0.05119628831744194, -0.05361327901482582, -0.050537109375, -0.04658202826976776, -0.04130859300494194, -0.02790527231991291, -0.024169921875, -0.010327148251235485, -0.007910155691206455, 0.0057128905318677425, 0.01691894419491291, 0.02241210825741291, 0.03977050632238388, 0.0450439453125, 0.04812011495232582, 0.05624999850988388, 0.054931640625, 0.05712890625, 0.05690917745232582, 0.0494384765625, 0.04570312425494194, 0.03647460788488388, 0.03032226487994194, 0.01625976525247097, 0.00747070275247097, -0.0046142577193677425, -0.01164550706744194, -0.02790527231991291, -0.0362548828125, -0.03801269456744194, -0.04306640475988388, -0.05668945237994194, -0.05229492112994194, -0.05009765550494194, -0.052734375, -0.046142578125, -0.0428466796875, -0.037353515625, -0.0263671875, -0.01669921912252903, -0.00527343712747097, 0.0041748047806322575, 0.015380859375, 0.02373046800494194, 0.03955078125, 0.04570312425494194, 0.05185546725988388, 0.04658202826976776, 0.0604248046875, 0.06174316257238388, 0.05624999850988388, 0.0538330078125, 0.03823241963982582, 0.03383788838982582, 0.0263671875, 0.01625976525247097, 0.011206054128706455, -0.0041748047806322575, -0.01889648474752903, -0.019775390625, -0.03208007663488388, -0.04416503757238388, -0.04680175706744194, -0.05141601338982582, -0.054931640625, -0.05141601338982582, -0.04570312425494194, -0.04965820163488388, -0.04218749701976776, -0.028564453125, -0.02482910081744194, -0.01669921912252903, -0.010107421316206455, 0.004833984188735485, 0.01999511756002903, 0.0252685546875, 0.04130859300494194, 0.04306640475988388, 0.04592284932732582, 0.05119628831744194, 0.05119628831744194, 0.04965820163488388, 0.05427245795726776, 0.05031738057732582, 0.04592284932732582, 0.037353515625, 0.02922363206744194, 0.0208740234375, 0.009448242373764515, -0.0008789062267169356, -0.01274413987994194, -0.02131347544491291, -0.03010253794491291, -0.03669433668255806, -0.04218749701976776, -0.04746093600988388, -0.04965820163488388, -0.04592284932732582, -0.04965820163488388, -0.04196777194738388, -0.03603515401482582, -0.03054199181497097, -0.0252685546875, -0.013623046688735485, -0.0006591796409338713, 0.003955077845603228, 0.01054687425494194, 0.019775390625, 0.03493652120232582, 0.03933105245232582, 0.04768066108226776, 0.052734375, 0.04790038987994194, 0.04987792670726776, 0.04987792670726776, 0.04306640475988388, 0.041748046875, 0.02768554538488388, 0.02680663950741291, 0.012524413876235485, 0.00439453125, -0.0013183592818677425, -0.01186523400247097, -0.01911620981991291, -0.03098144382238388, -0.03361816331744194, -0.04350585862994194, -0.04262695088982582, -0.04921874776482582, -0.0439453125, -0.0384521484375, -0.0439453125, -0.02988281100988388, -0.03054199181497097, -0.01823730394244194, -0.00747070275247097, -0.00527343712747097, 0.008349609561264515, 0.0164794921875, 0.02548827975988388, 0.0252685546875, 0.03098144382238388, 0.03999023512005806, 0.04416503757238388, 0.0472412109375, 0.0494384765625, 0.04240722581744194, 0.03471679612994194, 0.03339843824505806, 0.032958984375, 0.01625976525247097, 0.014721679501235485, 0.00527343712747097, -0.00527343712747097, -0.010107421316206455, -0.02285156212747097, -0.02460937388241291, -0.03317870944738388, -0.032958984375, -0.04020996019244194, -0.041748046875, -0.03603515401482582, -0.03801269456744194, -0.03559570387005806, -0.0274658203125, -0.02658691257238388, -0.01186523400247097, -0.008129882626235485, -0.00439453125, 0.008349609561264515, 0.01296386681497097, 0.01823730394244194, 0.02922363206744194, 0.03142089769244194, 0.03757324069738388, 0.04042968526482582, 0.04108886793255806, 0.04196777194738388, 0.03537597507238388, 0.03537597507238388, 0.02900390513241291, 0.02614746056497097, 0.01713867112994194, 0.015600585378706455, 0.0028564452659338713, -0.0054931640625, -0.01186523400247097, -0.014721679501235485, -0.02460937388241291, -0.02263183519244194, -0.02790527231991291, -0.03361816331744194, -0.03120117075741291, -0.02790527231991291, -0.02790527231991291, -0.02768554538488388, -0.01933593675494194, -0.01911620981991291, -0.014501952566206455, -0.00637206993997097, -0.001538085867650807, 0.00747070275247097, 0.011425781063735485, 0.01845703087747097, 0.02285156212747097, 0.02153320237994194, 0.02438964694738388, 0.02395019493997097, 0.0296630859375, 0.0318603515625, 0.0263671875, 0.0252685546875, 0.024169921875, 0.01933593675494194, 0.017578125, 0.007250976283103228, 0.0024169920943677425, -0.00439453125, -0.0041748047806322575, -0.0120849609375, -0.015600585378706455, -0.01516113243997097, -0.01845703087747097, -0.01406249962747097, -0.02175292931497097, -0.01625976525247097, -0.01801757700741291, -0.013623046688735485, -0.01669921912252903, -0.0057128905318677425, -0.007910155691206455, -0.001538085867650807, -0.0010986328125, 0.00747070275247097, 0.004833984188735485, 0.0142822265625, 0.01406249962747097, 0.01713867112994194, 0.02021484263241291, 0.02219238132238388, 0.015600585378706455, 0.02197265625, 0.01296386681497097, 0.01669921912252903, 0.01691894419491291, 0.014501952566206455, 0.007031249813735485, 0.0076904296875, 0.00527343712747097, 0.002636718563735485, -0.00439453125, -0.0035156249068677425, -0.0076904296875, -0.00527343712747097, -0.00527343712747097, -0.01296386681497097, -0.011206054128706455, -0.009008788503706455 ], "yaxis": "y3" } ], "layout": { "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "ancilla, labels: (2,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 16 }, "showarrow": false, "text": "qudits, labels: (0,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 0.6333333333333333, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 16 }, "showarrow": false, "text": "qudits, labels: (1,)", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 0.26666666666666666, "yanchor": "bottom", "yref": "paper" } ], "height": 1700, "legend": { "groupclick": "toggleitem" }, "template": { "data": { "bar": [ { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "/" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "\\" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "x" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "-" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "|" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "+" } }, "type": "bar" }, { "marker": { "color": "#00b287", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff9000", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#00d539", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ad6aff", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#c97a88", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" }, { "marker": { "color": "#ff005c", "line": { "color": "black", "width": 1.5 }, "opacity": 0.8, "pattern": { "shape": "." } }, "type": "bar" } ], "scatter": [ { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "type": "scatter" }, { "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "type": "scatter" }, { "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "type": "scatter" }, { "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "type": "scatter" }, { "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "type": "scatter" }, { "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "type": "scatter" } ], "violin": [ { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff005c" }, "marker": { "color": "#ff005c", "opacity": 0.5, "size": 8, "symbol": "hexagram" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00d539" }, "marker": { "color": "#00d539", "opacity": 0.5, "size": 8, "symbol": "circle" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ad6aff" }, "marker": { "color": "#ad6aff", "opacity": 0.5, "size": 8, "symbol": "square" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#ff9000" }, "marker": { "color": "#ff9000", "opacity": 0.5, "size": 8, "symbol": "diamond" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#00b287" }, "marker": { "color": "#00b287", "opacity": 0.5, "size": 8, "symbol": "triangle-down" }, "meanline": { "visible": true }, "type": "violin" }, { "box": { "visible": true }, "line": { "color": "#c97a88" }, "marker": { "color": "#c97a88", "opacity": 0.5, "size": 8, "symbol": "cross" }, "meanline": { "visible": true }, "type": "violin" } ] }, "layout": { "annotationdefaults": { "font": { "size": 12 } }, "autotypenumbers": "strict", "hoverlabel": { "bgcolor": "white", "font": { "family": "Rockwell", "size": 14 } }, "hovermode": "x unified", "legend": { "bgcolor": "white", "bordercolor": "Black", "borderwidth": 1, "font": { "family": "Rockwell" } }, "xaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true }, "yaxis": { "linecolor": "black", "linewidth": 1, "mirror": true, "showline": true } } }, "width": 900, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "matches": "x3", "showticklabels": true, "title": { "text": "Time (s)" } }, "xaxis2": { "anchor": "y2", "domain": [ 0.0, 1.0 ], "matches": "x3", "showticklabels": true, "title": { "text": "Time (s)" } }, "xaxis3": { "anchor": "y3", "domain": [ 0.0, 1.0 ], "showticklabels": true, "title": { "text": "Time (s)" } }, "yaxis": { "anchor": "x", "domain": [ 0.7333333333333333, 1.0 ], "title": { "text": "Fractional Voltage" } }, "yaxis2": { "anchor": "x2", "domain": [ 0.36666666666666664, 0.6333333333333333 ], "title": { "text": "Fractional Voltage" } }, "yaxis3": { "anchor": "x3", "domain": [ 0.0, 0.26666666666666666 ], "title": { "text": "Fractional Voltage" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plot the trace waveforms\n", "cross_resonance.plot_trace()" ] } ], "metadata": { "jupytext": { "cell_metadata_filter": "nbsphinx,raw_mimetype,-all", "main_language": "python", "notebook_metadata_filter": "-all", "text_representation": { "extension": ".py", "format_name": "percent" } }, "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.10.15" } }, "nbformat": 4, "nbformat_minor": 5 }