From ad61dda5738cc10c3e8f28f021c8b2a13f24d71b Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Mon, 20 Nov 2023 14:55:49 +0000 Subject: [PATCH 01/14] Fixing pyquil 4. breaking changes - QCSClientConfiguration - EngagementManager --- .../openqaoa_pyquil/backends/devices.py | 21 ++++++++++--------- src/openqaoa-pyquil/requirements.txt | 2 +- .../tests/test_gate_applicators_pyquil.py | 8 +++---- 3 files changed, 16 insertions(+), 15 deletions(-) diff --git a/src/openqaoa-pyquil/openqaoa_pyquil/backends/devices.py b/src/openqaoa-pyquil/openqaoa_pyquil/backends/devices.py index 78b5b9694..a0430b704 100644 --- a/src/openqaoa-pyquil/openqaoa_pyquil/backends/devices.py +++ b/src/openqaoa-pyquil/openqaoa_pyquil/backends/devices.py @@ -1,6 +1,7 @@ from typing import List -from qcs_api_client.client import QCSClientConfiguration -from pyquil.api._engagement_manager import EngagementManager +# from qcs_api_client.client import QCSClientConfiguration +from pyquil.api import QCSClient +# from pyquil.api._engagement_manager import EngagementManager from pyquil import get_qc from openqaoa.backends.devices_core import DeviceBase @@ -25,9 +26,9 @@ def __init__( noisy: bool = None, compiler_timeout: float = 20.0, execution_timeout: float = 20.0, - client_configuration: QCSClientConfiguration = None, + client_configuration: QCSClient = None, endpoint_id: str = None, - engagement_manager: EngagementManager = None, + # engagement_manager: EngagementManager = None, ): """ Parameters @@ -56,15 +57,15 @@ def __init__( Time limit for compilation requests, in seconds. execution_timeout: float Time limit for execution requests, in seconds. - client_configuration: QCSClientConfiguration + client_configuration: QCSClient Optional client configuration. If none is provided, a default one will be loaded. endpoint_id: str Optional quantum processor endpoint ID, as used in the `QCS API Docs`_. - engagement_manager: EngagementManager - Optional engagement manager. If none is provided, a default one will - be created. + # engagement_manager: EngagementManager + # Optional engagement manager. If none is provided, a default one will + # be created. """ self.device_name = device_name @@ -75,7 +76,7 @@ def __init__( self.execution_timeout = execution_timeout self.client_configuration = client_configuration self.endpoint_id = endpoint_id - self.engagement_manager = engagement_manager + # self.engagement_manager = engagement_manager self.quantum_computer = get_qc( name=self.device_name, @@ -85,7 +86,7 @@ def __init__( execution_timeout=self.execution_timeout, client_configuration=self.client_configuration, endpoint_id=self.endpoint_id, - engagement_manager=self.engagement_manager, + # engagement_manager=self.engagement_manager, ) self.n_qubits = len(self.quantum_computer.qubits()) diff --git a/src/openqaoa-pyquil/requirements.txt b/src/openqaoa-pyquil/requirements.txt index 19adc00df..c4fc2f327 100644 --- a/src/openqaoa-pyquil/requirements.txt +++ b/src/openqaoa-pyquil/requirements.txt @@ -1 +1 @@ -pyquil>=3.1.0,<4.0.0 \ No newline at end of file +pyquil \ No newline at end of file diff --git a/src/openqaoa-pyquil/tests/test_gate_applicators_pyquil.py b/src/openqaoa-pyquil/tests/test_gate_applicators_pyquil.py index a64af8785..0e4a83aab 100644 --- a/src/openqaoa-pyquil/tests/test_gate_applicators_pyquil.py +++ b/src/openqaoa-pyquil/tests/test_gate_applicators_pyquil.py @@ -245,7 +245,7 @@ def test_static_methods_1q(self): self.assertEqual( [ - each_instruction.get_qubits() + each_instruction.get_qubit_indices() for each_instruction in circuit.instructions ], [{0}], @@ -284,7 +284,7 @@ def test_static_methods_1qr(self): ) self.assertEqual( [ - each_instruction.get_qubits() + each_instruction.get_qubit_indices() for each_instruction in circuit.instructions ], [{0}], @@ -322,7 +322,7 @@ def test_static_methods_2q(self): self.assertEqual( [ - each_instruction.get_qubits() + each_instruction.get_qubit_indices() for each_instruction in circuit.instructions ], [{0, 1}], @@ -369,7 +369,7 @@ def test_static_methods_2qr(self): ) self.assertEqual( [ - each_instruction.get_qubits() + each_instruction.get_qubit_indices() for each_instruction in circuit.instructions ], [{0, 1}], From 3210394cae5b83bdd94faeb5ff293bcaab2c77bd Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Mon, 20 Nov 2023 14:57:16 +0000 Subject: [PATCH 02/14] Fixing pyquil 4. breaking changes - get_qubits() deprecation and list output --- src/openqaoa-pyquil/tests/test_gate_applicators_pyquil.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/openqaoa-pyquil/tests/test_gate_applicators_pyquil.py b/src/openqaoa-pyquil/tests/test_gate_applicators_pyquil.py index 0e4a83aab..da11f1d23 100644 --- a/src/openqaoa-pyquil/tests/test_gate_applicators_pyquil.py +++ b/src/openqaoa-pyquil/tests/test_gate_applicators_pyquil.py @@ -248,7 +248,7 @@ def test_static_methods_1q(self): each_instruction.get_qubit_indices() for each_instruction in circuit.instructions ], - [{0}], + [[0]], ) self.assertEqual( [ @@ -287,7 +287,7 @@ def test_static_methods_1qr(self): each_instruction.get_qubit_indices() for each_instruction in circuit.instructions ], - [{0}], + [[0]], ) self.assertEqual( [ @@ -325,7 +325,7 @@ def test_static_methods_2q(self): each_instruction.get_qubit_indices() for each_instruction in circuit.instructions ], - [{0, 1}], + [[0, 1]], ) self.assertEqual( [ @@ -372,7 +372,7 @@ def test_static_methods_2qr(self): each_instruction.get_qubit_indices() for each_instruction in circuit.instructions ], - [{0, 1}], + [[0, 1]], ) self.assertEqual( [ From 4c1149605272a1f176ded6fd5cb61736b3944889 Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Mon, 20 Nov 2023 15:51:48 +0000 Subject: [PATCH 03/14] get_qubits() replaced by get_qubit_indices() --- .../openqaoa_pyquil/backends/qaoa_pyquil_qpu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py index 1860917d8..3538c2e81 100644 --- a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py +++ b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py @@ -44,7 +44,7 @@ def check_edge_connectivity(executable: Program, device: DevicePyquil): instrs = [instr for instr in executable if type(instr) == quilbase.Gate] pair_instrs = [ - list(instr.get_qubits()) for instr in instrs if len(instr.get_qubits()) == 2 + list(instr.get_qubit_indices()) for instr in instrs if len(instr.get_qubit_indices()) == 2 ] for term in pair_instrs: @@ -137,7 +137,7 @@ def __init__( self.qubit_mapping = dict(zip(self.qureg, self.initial_qubit_mapping)) if self.prepend_state: - assert self.n_qubits >= len(prepend_state.get_qubits()), ( + assert self.n_qubits >= len(prepend_state.get_qubit_indices()), ( "Cannot attach a bigger circuit " "to the QAOA routine" ) From 6148c25e474113715b58328ae8433f865ef01fb5 Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Sun, 26 Nov 2023 20:36:25 +0000 Subject: [PATCH 04/14] Tests to fix pyquil deprecations --- .../backends/qaoa_pyquil_qpu.py | 28 +++++++++++++------ 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py index 3538c2e81..6fcc367b8 100644 --- a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py +++ b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py @@ -183,13 +183,13 @@ def qaoa_circuit(self, params: QAOAVariationalBaseParams) -> Program: parametric_circuit += gates.MEASURE(self.qubit_mapping[qubit], cbit) parametric_circuit.wrap_in_numshots_loop(self.n_shots) - native = self.device.quantum_computer.compiler.quil_to_native_quil( - parametric_circuit - ) + # native = self.device.quantum_computer.compiler.quil_to_native_quil( + # parametric_circuit + # ) - prog_exe = self.device.quantum_computer.compiler.native_quil_to_executable( - native - ) + # prog_exe = self.device.quantum_computer.compiler.native_quil_to_executable( + # native + # ) angles_list = np.array( self.obtain_angles_for_pauli_list(self.abstract_circuit, params), @@ -200,7 +200,13 @@ def qaoa_circuit(self, params: QAOAVariationalBaseParams) -> Program: angle_declarations.remove("ro") for i, param_name in enumerate(angle_declarations): - prog_exe.write_memory(region_name=param_name, value=angles_list[i]) + self.memory_map = {param_name : [angles_list[i]]} + parametric_circuit.declare(param_name, "REAL") + + f = open("debug.txt", "a") + f.write(f"{parametric_circuit}") + f.close() + prog_exe = self.device.quantum_computer.compile(parametric_circuit) return prog_exe @@ -264,7 +270,7 @@ def parametric_qaoa_circuit(self) -> Program: if each_gate.gate_label.n_qubits == 1 else "two" + gatelabel_pyquil[1:] ) - angle_param = parametric_circuit.declare(gatelabel_pyquil, "REAL", 1) + angle_param = parametric_circuit.declare(gatelabel_pyquil.lower(), "REAL", 1) each_gate.angle_value = angle_param if isinstance(each_gate, RZZGateMap) or isinstance(each_gate, SWAPGateMap): decomposition = each_gate.decomposition("standard2") @@ -317,7 +323,11 @@ def get_counts(self, params: QAOAVariationalBaseParams, n_shots=None) -> dict: if n_shots is not None: executable_program.wrap_in_numshots_loop(n_shots) - result = self.device.quantum_computer.run(executable_program) + f = open("debug.txt", "a") + f.write(f"{executable_program}") + f.close() + + result = self.device.quantum_computer.run(executable_program, memory_map=self.memory_map) # we create an uuid for the job self.job_id = generate_uuid() From 961a773c490632ab573aeeed01277bb3591894be Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Mon, 27 Nov 2023 16:31:14 +0000 Subject: [PATCH 05/14] More tests for pyquil update --- debug copy.txt | 15 + debug.txt | 48923 ++++++++++++++++ .../openqaoa/backends/qaoa_device.py | 4 +- .../openqaoa_pyquil/backend_config.py | 2 +- .../backends/qaoa_pyquil_qpu.py | 21 +- .../tests/test_circuit_routing_pyquil.py | 1480 +- 6 files changed, 49697 insertions(+), 748 deletions(-) create mode 100644 debug copy.txt create mode 100644 debug.txt diff --git a/debug copy.txt b/debug copy.txt new file mode 100644 index 000000000..977bd39c8 --- /dev/null +++ b/debug copy.txt @@ -0,0 +1,15 @@ +from openqaoa import create_device, QAOA +from openqaoa.problems import NumberPartition +rigetti_args = {"as_qvm": True, "execution_timeout":10, "compiler_timeout":100,} +device = create_device("qcs", name="Ankaa-1", **rigetti_args) +q = QAOA() +q.set_device(device) +np = NumberPartition(list(range(1,4))).qubo +q.compile(np) + + +rom pyquil.api import get_qc, ExecutionOptionsBuilder, ConnectionStrategy +from pyquil.quil import Program +qc = get_qc("Ankaa-1") +program = Program() +exe = qc.compile(program) \ No newline at end of file diff --git a/debug.txt b/debug.txt new file mode 100644 index 000000000..374392c50 --- /dev/null +++ b/debug.txt @@ -0,0 +1,48923 @@ +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(5.965701762329326+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(0.31748354485026065+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(5.934141539771069+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(0.3490437674085176+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(3.140223850065337+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-3.1402238500653357+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(2.8066781792359867+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-2.8066781792359863+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(2.659659915755716+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-2.6596599157557157+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(6.321687090462001+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(-1.6092981100773112+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(((-3*pi)/2)+(1*oneq_cost_seq0_layer1[0])) 0 +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(2.6322225952264677+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(3.650962711953119+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(9.484220654326071+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(7.794538940417791+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(((-3*pi)/2)+(1*oneq_cost_seq0_layer1[0])) 0 +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(6.3068610935628975+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(6.259509520796276+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(6.356677804329513+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(10.92208179041435+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(-10.995574287564276+(1*oneq_cost_seq0_layer1[0])) 0 +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(-10.995574287564276+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(3.1818813211531936+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-3.1818813211531927+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(6.395440769699409+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(4.600133517864866+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(((-3*pi)/2)+(1*oneq_cost_seq0_layer1[0])) 0 +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(2.8012303499014792+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-2.8012303499014792+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(7.853981633974483+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(4.827115653337911+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-4.827115653337911+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(6.442137619014553+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(4.553436668549724+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(-10.995574287564276+(1*oneq_cost_seq0_layer1[0])) 0 +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+((1*oneq_cost_seq1_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+((1*oneq_cost_seq1_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+((1*oneq_cost_seq1_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+((1*oneq_cost_seq1_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 0 +MEASURE 1 ro[0] +MEASURE 0 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq1_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[1] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 0 +MEASURE 1 ro[0] +MEASURE 0 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq1_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[1] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 0 +MEASURE 1 ro[0] +MEASURE 0 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq1_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[1] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 0 +MEASURE 1 ro[0] +MEASURE 0 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq1_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[1] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq1_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.8725144907266422+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.8725144907266422+(1*oneq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq1_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.8725144907266422+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.8725144907266422+(1*oneq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq1_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.8725144907266422+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.8725144907266422+(1*oneq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq1_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 0 1 +CZ 0 1 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.8725144907266422+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(-1.8398744896580477) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.8725144907266422+(1*oneq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(oneq_cost_seq0_layer0[0]) 8 +RZ(oneq_cost_seq1_layer0[0]) 4 +RZ(oneq_cost_seq2_layer0[0]) 6 +RZ(oneq_cost_seq3_layer0[0]) 1 +RZ(oneq_cost_seq4_layer0[0]) 3 +RZ(oneq_cost_seq5_layer0[0]) 0 +RZ(twoq_cost_seq5_layer0[0]) 3 +RZ(twoq_cost_seq5_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 +RZ(twoq_cost_seq2_layer0[0]) 6 +RZ(twoq_cost_seq2_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 +RZ(twoq_cost_seq7_layer0[0]) 4 +RZ(twoq_cost_seq7_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 +RZ(twoq_cost_seq8_layer0[0]) 1 +RZ(twoq_cost_seq8_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq9_layer0[0]) 4 +RZ(twoq_cost_seq9_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 +RZ(twoq_cost_seq3_layer0[0]) 6 +RZ(twoq_cost_seq3_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 8 7 +CZ 8 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq1_layer0[0]) 6 +RZ(twoq_cost_seq1_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 +RZ(1.5707963267948966) 6 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 6 7 +CZ 6 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq6_layer0[0]) 6 +RZ(twoq_cost_seq6_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq4_layer0[0]) 6 +RZ(twoq_cost_seq4_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 +RZ(1.5707963267948966) 4 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 4 1 +CZ 4 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 4 +RZ(twoq_cost_seq0_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 +RX(oneq_mixer_seq0_layer0[0]) 6 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 7 +RX(oneq_mixer_seq3_layer0[0]) 4 +RX(oneq_mixer_seq4_layer0[0]) 3 +RX(oneq_mixer_seq5_layer0[0]) 0 +MEASURE 6 ro[0] +MEASURE 1 ro[1] +MEASURE 7 ro[2] +MEASURE 4 ro[3] +MEASURE 3 ro[4] +MEASURE 0 ro[5] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 +CZ 1 4 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +CZ 1 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 4 1 +CZ 4 1 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(0.4833589688994692) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.054155295694366) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 7 +CZ 8 7 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(pi) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 6 7 +CZ 6 7 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq2_layer0[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq3_layer0[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[3] +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ((3*pi)/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq4_layer0[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[4] +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq0_layer0[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[0] +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(oneq_cost_seq0_layer0[0]) 8 +RZ(oneq_cost_seq1_layer0[0]) 4 +RZ(oneq_cost_seq2_layer0[0]) 6 +RZ(oneq_cost_seq3_layer0[0]) 1 +RZ(oneq_cost_seq4_layer0[0]) 3 +RZ(oneq_cost_seq5_layer0[0]) 0 +RZ(twoq_cost_seq5_layer0[0]) 3 +RZ(twoq_cost_seq5_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 +RZ(twoq_cost_seq2_layer0[0]) 6 +RZ(twoq_cost_seq2_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 +RZ(twoq_cost_seq7_layer0[0]) 4 +RZ(twoq_cost_seq7_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 +RZ(twoq_cost_seq8_layer0[0]) 1 +RZ(twoq_cost_seq8_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq9_layer0[0]) 4 +RZ(twoq_cost_seq9_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 +RZ(twoq_cost_seq3_layer0[0]) 6 +RZ(twoq_cost_seq3_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 8 7 +CZ 8 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq1_layer0[0]) 6 +RZ(twoq_cost_seq1_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 +RZ(1.5707963267948966) 6 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 6 7 +CZ 6 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq6_layer0[0]) 6 +RZ(twoq_cost_seq6_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq4_layer0[0]) 6 +RZ(twoq_cost_seq4_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 +RZ(1.5707963267948966) 4 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 4 1 +CZ 4 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 4 +RZ(twoq_cost_seq0_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 +RX(oneq_mixer_seq0_layer0[0]) 6 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 7 +RX(oneq_mixer_seq3_layer0[0]) 4 +RX(oneq_mixer_seq4_layer0[0]) 3 +RX(oneq_mixer_seq5_layer0[0]) 0 +MEASURE 6 ro[0] +MEASURE 1 ro[1] +MEASURE 7 ro[2] +MEASURE 4 ro[3] +MEASURE 3 ro[4] +MEASURE 0 ro[5] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 +CZ 1 4 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +CZ 1 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 4 1 +CZ 4 1 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(0.6954714135012093) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-4.01691756688348) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 7 +CZ 8 7 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(pi) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 6 7 +CZ 6 7 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq2_layer0[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq3_layer0[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[3] +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq4_layer0[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[4] +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq0_layer0[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[0] +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(oneq_cost_seq0_layer0[0]) 8 +RZ(oneq_cost_seq1_layer0[0]) 4 +RZ(oneq_cost_seq2_layer0[0]) 6 +RZ(oneq_cost_seq3_layer0[0]) 1 +RZ(oneq_cost_seq4_layer0[0]) 3 +RZ(oneq_cost_seq5_layer0[0]) 0 +RZ(twoq_cost_seq5_layer0[0]) 3 +RZ(twoq_cost_seq5_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 +RZ(twoq_cost_seq2_layer0[0]) 6 +RZ(twoq_cost_seq2_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 +RZ(twoq_cost_seq7_layer0[0]) 4 +RZ(twoq_cost_seq7_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 +RZ(twoq_cost_seq8_layer0[0]) 1 +RZ(twoq_cost_seq8_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq9_layer0[0]) 4 +RZ(twoq_cost_seq9_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 +RZ(twoq_cost_seq3_layer0[0]) 6 +RZ(twoq_cost_seq3_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 8 7 +CZ 8 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq1_layer0[0]) 6 +RZ(twoq_cost_seq1_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 +RZ(1.5707963267948966) 6 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 6 7 +CZ 6 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq6_layer0[0]) 6 +RZ(twoq_cost_seq6_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq4_layer0[0]) 6 +RZ(twoq_cost_seq4_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 +RZ(1.5707963267948966) 4 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 4 1 +CZ 4 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 4 +RZ(twoq_cost_seq0_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 +RX(oneq_mixer_seq0_layer0[0]) 6 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 7 +RX(oneq_mixer_seq3_layer0[0]) 4 +RX(oneq_mixer_seq4_layer0[0]) 3 +RX(oneq_mixer_seq5_layer0[0]) 0 +MEASURE 6 ro[0] +MEASURE 1 ro[1] +MEASURE 7 ro[2] +MEASURE 4 ro[3] +MEASURE 3 ro[4] +MEASURE 0 ro[5] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 +CZ 1 4 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +CZ 1 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 4 1 +CZ 4 1 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(0.6954714135012093) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-4.01691756688348) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 7 +CZ 8 7 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(pi) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 6 7 +CZ 6 7 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq2_layer0[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq3_layer0[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[3] +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ((3*pi)/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq4_layer0[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[4] +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq0_layer0[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[0] +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 7 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0])) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ((-3*pi)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +CZ 2 1 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(-pi) 3 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0])) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(pi) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RZ(-pi/2) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-3*pi)/2) 8 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 0 1 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((-1*twoq_cost_seq3_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 2 1 +RZ((pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ((pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((-2*pi)+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi) 3 +CZ 0 3 +RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((-2*pi)+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(-pi) 3 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(-pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq24_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(3.1728324870200613) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(7.553663637681064+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(-0.031239833430267403) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(3.1728324870200617) 1 +CZ 1 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RZ(-pi/2) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-3*pi)/2) 8 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(0.4160894281836818+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq3_layer1[0]) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi) 1 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(8.235762553077205+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +RZ(pi) 7 +CZ 7 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 0 3 +RZ(pi+((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi) 0 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +CZ 2 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((2*pi)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 3 6 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(-pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(7.853981633974484+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(3.116107412377427) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ(1.5962815680072628+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RZ(0.025485241212366606) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +RZ(-4.737874221597057) 8 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(-pi/2) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ(((-3*pi)/2)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +CZ 1 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(-pi) 1 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ((-pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +RZ(pi) 7 +CZ 7 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(-pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-0.6154797086703857) 0 +RZ(3.7570723622601774) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-3.7570723622601774+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(-pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-2.5261129449194066) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((-1*twoq_cost_seq24_layer0[0])+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1.264518957625227) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.1787918598963114+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(1.8770736959645666) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq3_layer0[0]) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(4.406111611215021) 1 +CZ 1 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(pi) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ((-2*pi)+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RZ(pi/2) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi/2) 8 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ((-2*pi)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +CZ 1 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-2*pi)+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(11.377355206666996+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-2*pi)+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 2 1 +RZ(((-3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(-7.853981633974483+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi) 3 +CZ 0 3 +RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ((-2*pi)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +RZ(pi/2) 2 +CZ 2 1 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((2*pi)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 3 6 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ((-pi/2)+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ((2*pi)+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 3 4 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(-pi/2) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(pi) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RZ(-pi/2) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi) 5 +RZ(-pi/2) 8 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ(pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi) 0 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(1.9525772458976185+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +CZ 2 1 +RZ((-pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((-1*twoq_cost_seq18_layer1[0])+(1*twoq_cost_seq23_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(3.141592653589793) 0 +RY(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(twoq_cost_seq0_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 +RZ(oneq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 0 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 1 +RZ(twoq_cost_seq2_layer0[0]) 0 +RZ(twoq_cost_seq2_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 0 2 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 2 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +MEASURE 2 ro[2] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq0_layer0[0]) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq0_layer0[0]) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi) 2 +CZ 1 2 +RZ(-pi) 1 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi) 2 +CZ 1 2 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq1_layer0[0]) 0 +RZ(-pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +CZ 0 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(-pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 0 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+((1*twoq_cost_seq2_layer0[0])+((-1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])))) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 2 0 +RZ(pi) 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 2 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq2_layer0[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(twoq_cost_seq0_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 +RZ(oneq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 0 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 1 +RZ(twoq_cost_seq2_layer0[0]) 0 +RZ(twoq_cost_seq2_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 0 2 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 2 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +MEASURE 2 ro[2] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq0_layer0[0]) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +CZ 1 2 +RZ((3*pi)/2) 1 +RZ(-pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 1 2 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq1_layer0[0]) 0 +RZ((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +CZ 0 1 +RZ((-3*pi)/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +CZ 0 1 +RZ(-pi/2) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ((-pi/2)+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+((-1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])))) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 2 0 +RZ(pi) 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 2 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq2_layer0[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(twoq_cost_seq0_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 +RZ(oneq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 0 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 1 +RZ(twoq_cost_seq2_layer0[0]) 0 +RZ(twoq_cost_seq2_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 0 2 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 2 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +MEASURE 2 ro[2] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq0_layer0[0]) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq0_layer0[0]) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 1 2 +RZ(-pi) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi) 2 +CZ 1 2 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq1_layer0[0]) 0 +RZ(-pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +CZ 0 1 +RZ((-3*pi)/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi/2) 1 +CZ 0 1 +RZ(pi/2) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(-7.853981633974483+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 0 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+((1*twoq_cost_seq2_layer0[0])+((-1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])))) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 2 0 +RZ(pi) 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 2 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq2_layer0[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(5.670187865343329+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-5.670187865343328+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(6.284674308554049+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-6.284674308554049+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(6.399165911033725+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(-1.6867769306490348+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ((pi/2)+(1*oneq_cost_seq0_layer1[0])) 0 +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(oneq_cost_seq0_layer0[0]) 8 +RZ(oneq_cost_seq1_layer0[0]) 4 +RZ(oneq_cost_seq2_layer0[0]) 6 +RZ(oneq_cost_seq3_layer0[0]) 1 +RZ(oneq_cost_seq4_layer0[0]) 3 +RZ(oneq_cost_seq5_layer0[0]) 0 +RZ(twoq_cost_seq5_layer0[0]) 3 +RZ(twoq_cost_seq5_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 +RZ(twoq_cost_seq2_layer0[0]) 6 +RZ(twoq_cost_seq2_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 +RZ(twoq_cost_seq7_layer0[0]) 4 +RZ(twoq_cost_seq7_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 +RZ(twoq_cost_seq8_layer0[0]) 1 +RZ(twoq_cost_seq8_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq9_layer0[0]) 4 +RZ(twoq_cost_seq9_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 +RZ(twoq_cost_seq3_layer0[0]) 6 +RZ(twoq_cost_seq3_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 8 7 +CZ 8 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq1_layer0[0]) 6 +RZ(twoq_cost_seq1_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 +RZ(1.5707963267948966) 6 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 6 7 +CZ 6 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq6_layer0[0]) 6 +RZ(twoq_cost_seq6_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq4_layer0[0]) 6 +RZ(twoq_cost_seq4_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 +RZ(1.5707963267948966) 4 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 4 1 +CZ 4 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 4 +RZ(twoq_cost_seq0_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 +RX(oneq_mixer_seq0_layer0[0]) 6 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 7 +RX(oneq_mixer_seq3_layer0[0]) 4 +RX(oneq_mixer_seq4_layer0[0]) 3 +RX(oneq_mixer_seq5_layer0[0]) 0 +MEASURE 6 ro[0] +MEASURE 1 ro[1] +MEASURE 7 ro[2] +MEASURE 4 ro[3] +MEASURE 3 ro[4] +MEASURE 0 ro[5] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 +CZ 1 4 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +CZ 1 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 4 1 +CZ 4 1 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(-0.2800606920916966) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.2907356347032004) 7 +RZ(-pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 7 +CZ 8 7 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(pi) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 6 7 +CZ 6 7 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq2_layer0[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq3_layer0[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[3] +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq4_layer0[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[4] +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq0_layer0[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[0] +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(oneq_cost_seq0_layer0[0]) 8 +RZ(oneq_cost_seq1_layer0[0]) 4 +RZ(oneq_cost_seq2_layer0[0]) 6 +RZ(oneq_cost_seq3_layer0[0]) 1 +RZ(oneq_cost_seq4_layer0[0]) 3 +RZ(oneq_cost_seq5_layer0[0]) 0 +RZ(twoq_cost_seq5_layer0[0]) 3 +RZ(twoq_cost_seq5_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 +RZ(twoq_cost_seq2_layer0[0]) 6 +RZ(twoq_cost_seq2_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 +RZ(twoq_cost_seq7_layer0[0]) 4 +RZ(twoq_cost_seq7_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 +RZ(twoq_cost_seq8_layer0[0]) 1 +RZ(twoq_cost_seq8_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq9_layer0[0]) 4 +RZ(twoq_cost_seq9_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 +RZ(twoq_cost_seq3_layer0[0]) 6 +RZ(twoq_cost_seq3_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 8 7 +CZ 8 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq1_layer0[0]) 6 +RZ(twoq_cost_seq1_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 +RZ(1.5707963267948966) 6 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 6 7 +CZ 6 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq6_layer0[0]) 6 +RZ(twoq_cost_seq6_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq4_layer0[0]) 6 +RZ(twoq_cost_seq4_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 +RZ(1.5707963267948966) 4 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 4 1 +CZ 4 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 4 +RZ(twoq_cost_seq0_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 +RX(oneq_mixer_seq0_layer0[0]) 6 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 7 +RX(oneq_mixer_seq3_layer0[0]) 4 +RX(oneq_mixer_seq4_layer0[0]) 3 +RX(oneq_mixer_seq5_layer0[0]) 0 +MEASURE 6 ro[0] +MEASURE 1 ro[1] +MEASURE 7 ro[2] +MEASURE 4 ro[3] +MEASURE 3 ro[4] +MEASURE 0 ro[5] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 +CZ 1 4 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +CZ 1 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 4 1 +CZ 4 1 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(1.798346731078994) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.3691430578738903) 7 +RZ(-pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 7 +CZ 8 7 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(pi) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 6 7 +CZ 6 7 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq2_layer0[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq3_layer0[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[3] +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ((3*pi)/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq4_layer0[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[4] +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq0_layer0[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[0] +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(oneq_cost_seq0_layer0[0]) 8 +RZ(oneq_cost_seq1_layer0[0]) 4 +RZ(oneq_cost_seq2_layer0[0]) 6 +RZ(oneq_cost_seq3_layer0[0]) 1 +RZ(oneq_cost_seq4_layer0[0]) 3 +RZ(oneq_cost_seq5_layer0[0]) 0 +RZ(twoq_cost_seq5_layer0[0]) 3 +RZ(twoq_cost_seq5_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 +RZ(twoq_cost_seq2_layer0[0]) 6 +RZ(twoq_cost_seq2_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 +RZ(twoq_cost_seq7_layer0[0]) 4 +RZ(twoq_cost_seq7_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 +RZ(twoq_cost_seq8_layer0[0]) 1 +RZ(twoq_cost_seq8_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq9_layer0[0]) 4 +RZ(twoq_cost_seq9_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 +RZ(twoq_cost_seq3_layer0[0]) 6 +RZ(twoq_cost_seq3_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 8 7 +CZ 8 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq1_layer0[0]) 6 +RZ(twoq_cost_seq1_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 +RZ(1.5707963267948966) 6 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 6 7 +CZ 6 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq6_layer0[0]) 6 +RZ(twoq_cost_seq6_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq4_layer0[0]) 6 +RZ(twoq_cost_seq4_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 +RZ(1.5707963267948966) 4 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 4 1 +CZ 4 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 4 +RZ(twoq_cost_seq0_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 +RX(oneq_mixer_seq0_layer0[0]) 6 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 7 +RX(oneq_mixer_seq3_layer0[0]) 4 +RX(oneq_mixer_seq4_layer0[0]) 3 +RX(oneq_mixer_seq5_layer0[0]) 0 +MEASURE 6 ro[0] +MEASURE 1 ro[1] +MEASURE 7 ro[2] +MEASURE 4 ro[3] +MEASURE 3 ro[4] +MEASURE 0 ro[5] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 +CZ 1 4 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +CZ 1 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 4 1 +CZ 4 1 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(0.6954714135012093) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-4.01691756688348) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 7 +CZ 8 7 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(pi) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 6 7 +CZ 6 7 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq2_layer0[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq3_layer0[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[3] +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ((3*pi)/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq4_layer0[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[4] +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq0_layer0[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[0] +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(-pi) 0 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(-pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((-1*twoq_cost_seq24_layer0[0])+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(0.9272952180016132) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.516015599519926+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(2.2142974355881813) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq3_layer0[0]) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(4.068887871591405) 1 +CZ 0 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +RZ(pi/2) 8 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(-pi/2) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ((-pi/2)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +CZ 1 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(8.235762553077205+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ((-pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +RZ(pi) 7 +CZ 7 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 0 3 +RZ(-pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(pi+((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +RZ((3*pi)/2) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((pi/2)+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi/2) 1 +RZ((3*pi)/2) 2 +CZ 2 1 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0])) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 3 6 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(((-3*pi)/2)+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(-pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-pi/2) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi/2) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(pi) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ(((-3*pi)/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RZ(-pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-2*pi)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ(-pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0])) 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +RZ(-pi/2) 1 +CZ 1 0 +RZ(-pi/2) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-3*pi)/2) 1 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(8.235762553077205+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ((-pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +RZ(pi) 7 +CZ 7 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(-pi) 0 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(3.6052402625905984) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(7.121255862110526+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(-0.46364760900080515) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(3.6052402625905993) 1 +CZ 0 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(pi) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-7.853981633974483+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ((pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ(-pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((-1*twoq_cost_seq3_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ((pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 0 3 +RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ((2*pi)+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 3 4 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(3.177291766269117) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.2660190512524214+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(-0.0356991126793236) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(3.1772917662691174) 1 +CZ 1 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ((-2*pi)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +CZ 1 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(-pi) 1 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi/2) 0 +RZ(-pi/2) 1 +CZ 1 0 +RZ(pi+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((-2*pi)+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +RZ(pi/2) 2 +CZ 2 1 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((-2*pi)+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(-pi) 3 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(((3*pi)/2)+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(-pi/2) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(pi) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RZ(-pi/2) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(-pi/2) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ((pi/2)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(8.235762553077205+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +CZ 1 2 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq1_layer1[0])+(1*twoq_cost_seq18_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +RZ(pi/2) 1 +CZ 1 0 +RZ((-2*pi)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RZ(-pi/2) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(3.141592653589793) 0 +RY(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(twoq_cost_seq0_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 +RZ(twoq_cost_seq1_layer0[0]) 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 2 +RZ(oneq_cost_seq0_layer0[0]) 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 2 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +MEASURE 2 ro[2] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq0_layer0[0]) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq0_layer0[0]) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi) 2 +CZ 1 2 +RZ(-pi) 1 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi) 2 +CZ 1 2 +RZ((-pi/2)+((1*oneq_cost_seq0_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 0 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 0 2 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi) 2 +CZ 0 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq2_layer0[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(twoq_cost_seq0_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 +RZ(twoq_cost_seq1_layer0[0]) 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 2 +RZ(oneq_cost_seq0_layer0[0]) 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 2 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +MEASURE 2 ro[2] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq0_layer0[0]) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi/2) 2 +CZ 1 2 +RZ((-3*pi)/2) 1 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 2 1 +RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 0 2 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi) 2 +CZ 0 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq2_layer0[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[2] +RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(twoq_cost_seq0_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 +RZ(twoq_cost_seq1_layer0[0]) 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 2 +RZ(oneq_cost_seq0_layer0[0]) 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 2 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +MEASURE 2 ro[2] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE ro BIT[3] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq0_layer0[0]) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq0_layer0[0]) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi) 2 +CZ 1 2 +RZ(-pi) 1 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi) 2 +CZ 1 2 +RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq1_layer0[0]) 0 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi+((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 2 0 +RZ(pi) 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +CZ 2 0 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer0[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq2_layer0[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(2.7290501957697892+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-2.7290501957697892+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(7.853981633974483+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(5.933398977691977+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(0.34978632948761+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(6.371671699653897+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(10.907087895089965+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(-10.995574287564278+(1*oneq_cost_seq0_layer1[0])) 0 +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(oneq_cost_seq0_layer0[0]) 8 +RZ(oneq_cost_seq1_layer0[0]) 4 +RZ(oneq_cost_seq2_layer0[0]) 6 +RZ(oneq_cost_seq3_layer0[0]) 1 +RZ(oneq_cost_seq4_layer0[0]) 3 +RZ(oneq_cost_seq5_layer0[0]) 0 +RZ(twoq_cost_seq5_layer0[0]) 3 +RZ(twoq_cost_seq5_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 +RZ(twoq_cost_seq2_layer0[0]) 6 +RZ(twoq_cost_seq2_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 +RZ(twoq_cost_seq7_layer0[0]) 4 +RZ(twoq_cost_seq7_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 +RZ(twoq_cost_seq8_layer0[0]) 1 +RZ(twoq_cost_seq8_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq9_layer0[0]) 4 +RZ(twoq_cost_seq9_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 +RZ(twoq_cost_seq3_layer0[0]) 6 +RZ(twoq_cost_seq3_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 8 7 +CZ 8 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq1_layer0[0]) 6 +RZ(twoq_cost_seq1_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 +RZ(1.5707963267948966) 6 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 6 7 +CZ 6 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq6_layer0[0]) 6 +RZ(twoq_cost_seq6_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq4_layer0[0]) 6 +RZ(twoq_cost_seq4_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 +RZ(1.5707963267948966) 4 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 4 1 +CZ 4 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 4 +RZ(twoq_cost_seq0_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 +RX(oneq_mixer_seq0_layer0[0]) 6 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 7 +RX(oneq_mixer_seq3_layer0[0]) 4 +RX(oneq_mixer_seq4_layer0[0]) 3 +RX(oneq_mixer_seq5_layer0[0]) 0 +MEASURE 6 ro[0] +MEASURE 1 ro[1] +MEASURE 7 ro[2] +MEASURE 4 ro[3] +MEASURE 3 ro[4] +MEASURE 0 ro[5] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 +CZ 1 4 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +CZ 1 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 4 1 +CZ 4 1 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(2.257496710267404) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.8282930370623016) 7 +RZ(-pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 7 +CZ 8 7 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(pi) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 6 7 +CZ 6 7 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq2_layer0[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq3_layer0[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[3] +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ((3*pi)/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq4_layer0[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[4] +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq0_layer0[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[0] +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(oneq_cost_seq0_layer0[0]) 8 +RZ(oneq_cost_seq1_layer0[0]) 4 +RZ(oneq_cost_seq2_layer0[0]) 6 +RZ(oneq_cost_seq3_layer0[0]) 1 +RZ(oneq_cost_seq4_layer0[0]) 3 +RZ(oneq_cost_seq5_layer0[0]) 0 +RZ(twoq_cost_seq5_layer0[0]) 3 +RZ(twoq_cost_seq5_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 +RZ(twoq_cost_seq2_layer0[0]) 6 +RZ(twoq_cost_seq2_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 +RZ(twoq_cost_seq7_layer0[0]) 4 +RZ(twoq_cost_seq7_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 +RZ(twoq_cost_seq8_layer0[0]) 1 +RZ(twoq_cost_seq8_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq9_layer0[0]) 4 +RZ(twoq_cost_seq9_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 +RZ(twoq_cost_seq3_layer0[0]) 6 +RZ(twoq_cost_seq3_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 8 7 +CZ 8 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq1_layer0[0]) 6 +RZ(twoq_cost_seq1_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 +RZ(1.5707963267948966) 6 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 6 7 +CZ 6 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq6_layer0[0]) 6 +RZ(twoq_cost_seq6_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq4_layer0[0]) 6 +RZ(twoq_cost_seq4_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 +RZ(1.5707963267948966) 4 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 4 1 +CZ 4 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 4 +RZ(twoq_cost_seq0_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 +RX(oneq_mixer_seq0_layer0[0]) 6 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 7 +RX(oneq_mixer_seq3_layer0[0]) 4 +RX(oneq_mixer_seq4_layer0[0]) 3 +RX(oneq_mixer_seq5_layer0[0]) 0 +MEASURE 6 ro[0] +MEASURE 1 ro[1] +MEASURE 7 ro[2] +MEASURE 4 ro[3] +MEASURE 3 ro[4] +MEASURE 0 ro[5] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 +CZ 1 4 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +CZ 1 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 4 1 +CZ 4 1 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(0.6954714135012093) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-4.01691756688348) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 7 +CZ 8 7 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(pi) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 6 7 +CZ 6 7 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq2_layer0[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq3_layer0[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[3] +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq4_layer0[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[4] +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq0_layer0[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[0] +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(oneq_cost_seq0_layer0[0]) 8 +RZ(oneq_cost_seq1_layer0[0]) 4 +RZ(oneq_cost_seq2_layer0[0]) 6 +RZ(oneq_cost_seq3_layer0[0]) 1 +RZ(oneq_cost_seq4_layer0[0]) 3 +RZ(oneq_cost_seq5_layer0[0]) 0 +RZ(twoq_cost_seq5_layer0[0]) 3 +RZ(twoq_cost_seq5_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 +RZ(twoq_cost_seq2_layer0[0]) 6 +RZ(twoq_cost_seq2_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 +RZ(twoq_cost_seq7_layer0[0]) 4 +RZ(twoq_cost_seq7_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 +RZ(twoq_cost_seq8_layer0[0]) 1 +RZ(twoq_cost_seq8_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq9_layer0[0]) 4 +RZ(twoq_cost_seq9_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 +RZ(twoq_cost_seq3_layer0[0]) 6 +RZ(twoq_cost_seq3_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 8 7 +CZ 8 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq1_layer0[0]) 6 +RZ(twoq_cost_seq1_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 +RZ(1.5707963267948966) 6 +RZ(1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +XY(3.141592653589793) 6 7 +CZ 6 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(twoq_cost_seq6_layer0[0]) 6 +RZ(twoq_cost_seq6_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 3 0 +CZ 3 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq4_layer0[0]) 6 +RZ(twoq_cost_seq4_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 +RZ(1.5707963267948966) 4 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 4 1 +CZ 4 1 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq0_layer0[0]) 4 +RZ(twoq_cost_seq0_layer0[0]) 7 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 +RX(oneq_mixer_seq0_layer0[0]) 6 +RX(oneq_mixer_seq1_layer0[0]) 1 +RX(oneq_mixer_seq2_layer0[0]) 7 +RX(oneq_mixer_seq3_layer0[0]) 4 +RX(oneq_mixer_seq4_layer0[0]) 3 +RX(oneq_mixer_seq5_layer0[0]) 0 +MEASURE 6 ro[0] +MEASURE 1 ro[1] +MEASURE 7 ro[2] +MEASURE 4 ro[3] +MEASURE 3 ro[4] +MEASURE 0 ro[5] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq2_layer0 REAL[1] +DECLARE oneq_cost_seq3_layer0 REAL[1] +DECLARE oneq_cost_seq4_layer0 REAL[1] +DECLARE oneq_cost_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE ro BIT[6] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 +CZ 1 4 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 4 +CZ 1 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 +RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 +CZ 3 4 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 4 1 +CZ 4 1 +RZ(-pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(0.6954714135012091) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.266267740296106) 7 +RZ(-pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 7 +CZ 8 7 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(pi) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 6 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694) 6 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 6 7 +CZ 6 7 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +CZ 7 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq2_layer0[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[2] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq3_layer0[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[3] +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ((3*pi)/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +XY(pi) 3 0 +CZ 3 0 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 6 +CZ 3 6 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq4_layer0[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[4] +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq0_layer0[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[0] +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +RZ(pi) 7 +CZ 7 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((-2*pi)+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 0 3 +RZ(-pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0])) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 3 6 +RZ(-pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(-pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(pi) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi) 8 +CZ 5 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ(pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +CZ 1 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(1.9525772458976185+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +RZ(pi/2) 1 +CZ 1 0 +RZ(-1*twoq_cost_seq18_layer1[0]) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RZ(-pi/2) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 7 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(pi) 0 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0])) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(-pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-1.8398744896580475+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi) 1 +CZ 1 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +CZ 5 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ(pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-3*pi)/2) 0 +RZ(-pi/2) 1 +CZ 1 0 +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(-pi/2) 1 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +RZ(pi) 7 +CZ 7 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 0 3 +RZ(pi+((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ((1*twoq_cost_seq18_layer0[0])+(-1*twoq_cost_seq23_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(-pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-3*pi)+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(pi) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi/2) 5 +RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq17_layer1[0]) 8 +CZ 8 5 +RZ(pi/2) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi/2) 8 +CZ 5 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ(pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 0 1 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi) 2 +CZ 2 1 +RZ((-pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ((-pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 7 4 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq23_layer0[0])) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 0 3 +RZ(-pi/2) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +CZ 0 3 +RZ((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0])) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ((-pi/2)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 1 +RZ(pi/2) 2 +CZ 2 1 +RZ(-pi/2) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RZ(-pi) 3 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ((-pi/2)+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(-pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +CZ 1 0 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0])) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 8 5 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +RZ(((-3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ((-2*pi)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +CZ 1 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(-pi) 1 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +CZ 1 2 +RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq1_layer1[0])+(1*twoq_cost_seq18_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RZ(-pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(1.5707963267948966) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(1.5707963267948966) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(1.5707963267948966) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(1.5707963267948966) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(1.5707963267948966) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(1.5707963267948966) 4 +RX(-1.5707963267948966) 4 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(1.5707963267948966) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq23_layer0[0]) 0 +RZ(twoq_cost_seq23_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 +RZ(twoq_cost_seq18_layer0[0]) 1 +RZ(twoq_cost_seq18_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 +RZ(twoq_cost_seq1_layer0[0]) 2 +RZ(twoq_cost_seq1_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 +RZ(twoq_cost_seq10_layer0[0]) 7 +RZ(twoq_cost_seq10_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 +RZ(twoq_cost_seq2_layer0[0]) 2 +RZ(twoq_cost_seq2_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 +RZ(twoq_cost_seq11_layer0[0]) 7 +RZ(twoq_cost_seq11_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 +RZ(twoq_cost_seq21_layer0[0]) 5 +RZ(twoq_cost_seq21_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 +RZ(twoq_cost_seq27_layer0[0]) 3 +RZ(twoq_cost_seq27_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 +RZ(twoq_cost_seq26_layer0[0]) 3 +RZ(twoq_cost_seq26_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 +RZ(twoq_cost_seq6_layer0[0]) 7 +RZ(twoq_cost_seq6_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq15_layer0[0]) 5 +RZ(twoq_cost_seq15_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 +RZ(twoq_cost_seq0_layer0[0]) 2 +RZ(twoq_cost_seq0_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 +RZ(twoq_cost_seq7_layer0[0]) 7 +RZ(twoq_cost_seq7_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq24_layer0[0]) 0 +RZ(twoq_cost_seq24_layer0[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 +RZ(twoq_cost_seq9_layer0[0]) 7 +RZ(twoq_cost_seq9_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 +RZ(twoq_cost_seq19_layer0[0]) 1 +RZ(twoq_cost_seq19_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 +RZ(twoq_cost_seq14_layer0[0]) 5 +RZ(twoq_cost_seq14_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 +RZ(twoq_cost_seq28_layer0[0]) 3 +RZ(twoq_cost_seq28_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq12_layer0[0]) 2 +RZ(twoq_cost_seq12_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 +RZ(twoq_cost_seq3_layer0[0]) 1 +RZ(twoq_cost_seq3_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq25_layer0[0]) 3 +RZ(twoq_cost_seq25_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 +RZ(twoq_cost_seq4_layer0[0]) 1 +RZ(twoq_cost_seq4_layer0[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq22_layer0[0]) 7 +RZ(twoq_cost_seq22_layer0[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 +RZ(twoq_cost_seq8_layer0[0]) 3 +RZ(twoq_cost_seq8_layer0[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq5_layer0[0]) 1 +RZ(twoq_cost_seq5_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 +RZ(twoq_cost_seq16_layer0[0]) 5 +RZ(twoq_cost_seq16_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq13_layer0[0]) 3 +RZ(twoq_cost_seq13_layer0[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 +RZ(twoq_cost_seq20_layer0[0]) 2 +RZ(twoq_cost_seq20_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq17_layer0[0]) 8 +RZ(twoq_cost_seq17_layer0[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 +RX(oneq_mixer_seq0_layer0[0]) 1 +RX(oneq_mixer_seq1_layer0[0]) 6 +RX(oneq_mixer_seq2_layer0[0]) 4 +RX(oneq_mixer_seq3_layer0[0]) 5 +RX(oneq_mixer_seq4_layer0[0]) 8 +RX(oneq_mixer_seq5_layer0[0]) 3 +RX(oneq_mixer_seq6_layer0[0]) 7 +RX(oneq_mixer_seq7_layer0[0]) 0 +RX(oneq_mixer_seq8_layer0[0]) 2 +RZ(twoq_cost_seq17_layer1[0]) 8 +RZ(twoq_cost_seq17_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 2 5 +CZ 2 5 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq20_layer1[0]) 2 +RZ(twoq_cost_seq20_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 +RZ(twoq_cost_seq13_layer1[0]) 3 +RZ(twoq_cost_seq13_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 +RZ(1.5707963267948966) 5 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 5 4 +CZ 5 4 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq16_layer1[0]) 5 +RZ(twoq_cost_seq16_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 +RZ(twoq_cost_seq5_layer1[0]) 1 +RZ(twoq_cost_seq5_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 7 4 +CZ 7 4 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq8_layer1[0]) 3 +RZ(twoq_cost_seq8_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 +RZ(twoq_cost_seq22_layer1[0]) 7 +RZ(twoq_cost_seq22_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 +RZ(1.5707963267948966) 7 +RZ(1.5707963267948966) 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +XY(3.141592653589793) 7 6 +CZ 7 6 +RZ(3.141592653589793) 7 +RX(1.5707963267948966) 7 +RZ(3.141592653589793) 7 +RX(-1.5707963267948966) 7 +RZ(3.141592653589793) 6 +RX(1.5707963267948966) 6 +RZ(3.141592653589793) 6 +RX(-1.5707963267948966) 6 +RZ(twoq_cost_seq4_layer1[0]) 1 +RZ(twoq_cost_seq4_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 +RZ(twoq_cost_seq25_layer1[0]) 3 +RZ(twoq_cost_seq25_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +XY(3.141592653589793) 0 3 +CZ 0 3 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(twoq_cost_seq3_layer1[0]) 1 +RZ(twoq_cost_seq3_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 +RZ(twoq_cost_seq12_layer1[0]) 2 +RZ(twoq_cost_seq12_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 +RZ(1.5707963267948966) 2 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 2 1 +CZ 2 1 +RZ(3.141592653589793) 2 +RX(1.5707963267948966) 2 +RZ(3.141592653589793) 2 +RX(-1.5707963267948966) 2 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(twoq_cost_seq28_layer1[0]) 3 +RZ(twoq_cost_seq28_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 +RZ(twoq_cost_seq14_layer1[0]) 5 +RZ(twoq_cost_seq14_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 +RZ(twoq_cost_seq19_layer1[0]) 1 +RZ(twoq_cost_seq19_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 +RZ(twoq_cost_seq9_layer1[0]) 7 +RZ(twoq_cost_seq9_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 +RZ(twoq_cost_seq24_layer1[0]) 0 +RZ(twoq_cost_seq24_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 +RZ(1.5707963267948966) 3 +RZ(1.5707963267948966) 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +XY(3.141592653589793) 3 4 +CZ 3 4 +RZ(3.141592653589793) 3 +RX(1.5707963267948966) 3 +RZ(3.141592653589793) 3 +RX(-1.5707963267948966) 3 +RZ(3.141592653589793) 4 +RX(1.5707963267948966) 4 +RZ(3.141592653589793) 4 +RX(-1.5707963267948966) 4 +RZ(twoq_cost_seq7_layer1[0]) 7 +RZ(twoq_cost_seq7_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 +RZ(twoq_cost_seq0_layer1[0]) 2 +RZ(twoq_cost_seq0_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 +RZ(twoq_cost_seq15_layer1[0]) 5 +RZ(twoq_cost_seq15_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 +RZ(1.5707963267948966) 8 +RZ(1.5707963267948966) 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +XY(3.141592653589793) 8 5 +CZ 8 5 +RZ(3.141592653589793) 8 +RX(1.5707963267948966) 8 +RZ(3.141592653589793) 8 +RX(-1.5707963267948966) 8 +RZ(3.141592653589793) 5 +RX(1.5707963267948966) 5 +RZ(3.141592653589793) 5 +RX(-1.5707963267948966) 5 +RZ(twoq_cost_seq6_layer1[0]) 7 +RZ(twoq_cost_seq6_layer1[0]) 8 +CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 +RZ(twoq_cost_seq26_layer1[0]) 3 +RZ(twoq_cost_seq26_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 +RZ(twoq_cost_seq27_layer1[0]) 3 +RZ(twoq_cost_seq27_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 +RZ(twoq_cost_seq21_layer1[0]) 5 +RZ(twoq_cost_seq21_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 +RZ(twoq_cost_seq11_layer1[0]) 7 +RZ(twoq_cost_seq11_layer1[0]) 6 +CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 +RZ(twoq_cost_seq2_layer1[0]) 2 +RZ(twoq_cost_seq2_layer1[0]) 5 +CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 +RZ(twoq_cost_seq10_layer1[0]) 7 +RZ(twoq_cost_seq10_layer1[0]) 4 +CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 +RZ(twoq_cost_seq1_layer1[0]) 2 +RZ(twoq_cost_seq1_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 +RZ(twoq_cost_seq18_layer1[0]) 1 +RZ(twoq_cost_seq18_layer1[0]) 0 +CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 +RZ(twoq_cost_seq23_layer1[0]) 0 +RZ(twoq_cost_seq23_layer1[0]) 3 +CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 +RX(oneq_mixer_seq0_layer1[0]) 2 +RX(oneq_mixer_seq1_layer1[0]) 7 +RX(oneq_mixer_seq2_layer1[0]) 8 +RX(oneq_mixer_seq3_layer1[0]) 1 +RX(oneq_mixer_seq4_layer1[0]) 5 +RX(oneq_mixer_seq5_layer1[0]) 0 +RX(oneq_mixer_seq6_layer1[0]) 3 +RX(oneq_mixer_seq7_layer1[0]) 4 +RX(oneq_mixer_seq8_layer1[0]) 6 +MEASURE 2 ro[0] +MEASURE 7 ro[1] +MEASURE 8 ro[2] +MEASURE 1 ro[3] +MEASURE 5 ro[4] +MEASURE 0 ro[5] +MEASURE 3 ro[6] +MEASURE 4 ro[7] +MEASURE 6 ro[8] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq2_layer0 REAL[1] +DECLARE oneq_mixer_seq2_layer1 REAL[1] +DECLARE oneq_mixer_seq3_layer0 REAL[1] +DECLARE oneq_mixer_seq3_layer1 REAL[1] +DECLARE oneq_mixer_seq4_layer0 REAL[1] +DECLARE oneq_mixer_seq4_layer1 REAL[1] +DECLARE oneq_mixer_seq5_layer0 REAL[1] +DECLARE oneq_mixer_seq5_layer1 REAL[1] +DECLARE oneq_mixer_seq6_layer0 REAL[1] +DECLARE oneq_mixer_seq6_layer1 REAL[1] +DECLARE oneq_mixer_seq7_layer0 REAL[1] +DECLARE oneq_mixer_seq7_layer1 REAL[1] +DECLARE oneq_mixer_seq8_layer0 REAL[1] +DECLARE oneq_mixer_seq8_layer1 REAL[1] +DECLARE ro BIT[9] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +DECLARE twoq_cost_seq10_layer0 REAL[1] +DECLARE twoq_cost_seq10_layer1 REAL[1] +DECLARE twoq_cost_seq11_layer0 REAL[1] +DECLARE twoq_cost_seq11_layer1 REAL[1] +DECLARE twoq_cost_seq12_layer0 REAL[1] +DECLARE twoq_cost_seq12_layer1 REAL[1] +DECLARE twoq_cost_seq13_layer0 REAL[1] +DECLARE twoq_cost_seq13_layer1 REAL[1] +DECLARE twoq_cost_seq14_layer0 REAL[1] +DECLARE twoq_cost_seq14_layer1 REAL[1] +DECLARE twoq_cost_seq15_layer0 REAL[1] +DECLARE twoq_cost_seq15_layer1 REAL[1] +DECLARE twoq_cost_seq16_layer0 REAL[1] +DECLARE twoq_cost_seq16_layer1 REAL[1] +DECLARE twoq_cost_seq17_layer0 REAL[1] +DECLARE twoq_cost_seq17_layer1 REAL[1] +DECLARE twoq_cost_seq18_layer0 REAL[1] +DECLARE twoq_cost_seq18_layer1 REAL[1] +DECLARE twoq_cost_seq19_layer0 REAL[1] +DECLARE twoq_cost_seq19_layer1 REAL[1] +DECLARE twoq_cost_seq1_layer0 REAL[1] +DECLARE twoq_cost_seq1_layer1 REAL[1] +DECLARE twoq_cost_seq20_layer0 REAL[1] +DECLARE twoq_cost_seq20_layer1 REAL[1] +DECLARE twoq_cost_seq21_layer0 REAL[1] +DECLARE twoq_cost_seq21_layer1 REAL[1] +DECLARE twoq_cost_seq22_layer0 REAL[1] +DECLARE twoq_cost_seq22_layer1 REAL[1] +DECLARE twoq_cost_seq23_layer0 REAL[1] +DECLARE twoq_cost_seq23_layer1 REAL[1] +DECLARE twoq_cost_seq24_layer0 REAL[1] +DECLARE twoq_cost_seq24_layer1 REAL[1] +DECLARE twoq_cost_seq25_layer0 REAL[1] +DECLARE twoq_cost_seq25_layer1 REAL[1] +DECLARE twoq_cost_seq26_layer0 REAL[1] +DECLARE twoq_cost_seq26_layer1 REAL[1] +DECLARE twoq_cost_seq27_layer0 REAL[1] +DECLARE twoq_cost_seq27_layer1 REAL[1] +DECLARE twoq_cost_seq28_layer0 REAL[1] +DECLARE twoq_cost_seq28_layer1 REAL[1] +DECLARE twoq_cost_seq2_layer0 REAL[1] +DECLARE twoq_cost_seq2_layer1 REAL[1] +DECLARE twoq_cost_seq3_layer0 REAL[1] +DECLARE twoq_cost_seq3_layer1 REAL[1] +DECLARE twoq_cost_seq4_layer0 REAL[1] +DECLARE twoq_cost_seq4_layer1 REAL[1] +DECLARE twoq_cost_seq5_layer0 REAL[1] +DECLARE twoq_cost_seq5_layer1 REAL[1] +DECLARE twoq_cost_seq6_layer0 REAL[1] +DECLARE twoq_cost_seq6_layer1 REAL[1] +DECLARE twoq_cost_seq7_layer0 REAL[1] +DECLARE twoq_cost_seq7_layer1 REAL[1] +DECLARE twoq_cost_seq8_layer0 REAL[1] +DECLARE twoq_cost_seq8_layer1 REAL[1] +DECLARE twoq_cost_seq9_layer0 REAL[1] +DECLARE twoq_cost_seq9_layer1 REAL[1] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(1*twoq_cost_seq11_layer0[0]) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(1*twoq_cost_seq10_layer0[0]) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(1*twoq_cost_seq10_layer0[0]) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq23_layer0[0]) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(1*twoq_cost_seq23_layer0[0]) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi) 3 +CZ 0 3 +RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(1*twoq_cost_seq6_layer0[0]) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(1*twoq_cost_seq18_layer0[0]) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +RZ(pi/2) 1 +CZ 1 0 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(1*twoq_cost_seq2_layer0[0]) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ((-pi/2)+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(1*twoq_cost_seq1_layer0[0]) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi/2) 1 +RZ(pi/2) 2 +CZ 2 1 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 6 +CZ 3 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 3 6 +RZ((-pi/2)+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(-pi) 3 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 4 +CZ 3 4 +RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-pi/2) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi/2) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 +RZ(-1.6077302758299201) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.6077302758299201) 2 +RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(2.2216554087607694) 1 +XY(pi) 2 1 +CZ 2 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ((2*pi)+((-1*twoq_cost_seq24_layer0[0])+(1*twoq_cost_seq3_layer0[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1.2490457723982549) 0 +RZ(-1.8398744896580477) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.194265045123284+(1*twoq_cost_seq3_layer0[0])) 1 +CZ 0 1 +RZ(1.8925468811915391) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(1*twoq_cost_seq3_layer0[0]) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(4.3906384259880475) 1 +CZ 1 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.792451735555666) 6 +RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(-0.9199372448290238) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-3*pi)+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(0.4160894281836815) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.523373572692515) 4 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 +RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 +RZ(-0.9199372448290238) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq5_layer0[0]) 3 +RX(-pi/2) 3 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq2_layer0[0]) 4 +RX(-pi/2) 4 +RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq1_layer0[0]) 6 +RX(-pi/2) 6 +RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(0.4160894281836815) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-0.9199372448290238) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 8 +CZ 5 8 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq3_layer0[0]) 5 +RX(-pi/2) 5 +RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq4_layer0[0]) 8 +RX(-pi/2) 8 +RZ((pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 +CZ 8 5 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi) 5 +CZ 8 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq0_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 +RZ(-pi) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 +RZ(pi/2) 2 +RX(pi/2) 2 +RZ(pi/2) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(-1.8398744896580475) 5 +XY(pi) 2 5 +CZ 2 5 +RZ(-1.8398744896580477) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +XY(pi) 5 4 +CZ 5 4 +RZ(-1.8398744896580477) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq7_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +RZ(-pi) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 +RZ(pi/2) 7 +RX(pi/2) 7 +RZ(pi/2) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +XY(pi) 7 4 +CZ 7 4 +RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(-0.9199372448290238) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 +RZ(-pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 +RZ(2.2216554087607694) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.523373572692515) 6 +RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 +RZ(2.2216554087607694) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(-1.8398744896580475) 7 +XY(pi) 7 6 +CZ 7 6 +RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 +RZ(0.4160894281836815) 6 +RX(pi/2) 6 +RZ(pi) 6 +RX(-pi/2) 6 +RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 +RZ(2.2216554087607694) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(-0.5381563257263018) 0 +RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(0.3817809191027218) 3 +XY(pi) 0 3 +CZ 0 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(0.4160894281836815) 0 +RX(pi/2) 0 +RZ(pi) 0 +RX(-pi/2) 0 +RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +CZ 1 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(5.094169899487412+(-1*twoq_cost_seq3_layer1[0])) 1 +RZ(2.2216554087607694) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(-0.5381563257263018) 1 +RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 +RZ(2.2216554087607694) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(-1.8398744896580475) 2 +XY(pi) 2 1 +CZ 2 1 +RZ(-0.9199372448290238) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 +RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(0.4160894281836815) 1 +RX(pi/2) 1 +RZ(pi) 1 +RX(-pi/2) 1 +RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 1 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 7 +RX(pi/2) 7 +RZ(pi) 7 +RX(-pi/2) 7 +RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 +RZ(2.2216554087607694) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(-1.8398744896580475) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 +RZ(2.2216554087607694) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(2.2216554087607694) 4 +XY(pi) 3 4 +CZ 3 4 +RZ(-0.9199372448290238) 2 +RX(pi/2) 2 +RZ(pi) 2 +RX(-pi/2) 2 +RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 +RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(0.4160894281836815) 4 +RX(pi/2) 4 +RZ(pi) 4 +RX(-pi/2) 4 +RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(-0.9199372448290238) 3 +RX(pi/2) 3 +RZ(pi) 3 +RX(-pi/2) 3 +RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(pi) 3 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +CZ 4 3 +RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 +RZ(2.2216554087607694) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(2.2216554087607694) 5 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 +RZ(2.2216554087607694) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694) 8 +XY(pi) 8 5 +CZ 8 5 +RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 +RZ(-0.9199372448290238) 8 +RX(pi/2) 8 +RZ(pi) 8 +RX(-pi/2) 8 +RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +CZ 8 7 +RZ(pi) 8 +RX(pi/2) 8 +RZ(pi/2) 8 +RX(-pi/2) 8 +RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 +RX(pi/2) 8 +RZ(1*oneq_mixer_seq2_layer1[0]) 8 +RX(-pi/2) 8 +RZ(-pi/2) 8 +MEASURE 8 ro[2] +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi) 3 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 3 +RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(-1.8398744896580477) 5 +RX(pi/2) 5 +RZ(pi) 5 +RX(-pi/2) 5 +RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 +CZ 4 5 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 5 +CZ 4 5 +RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 +RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +CZ 5 2 +RZ(pi) 5 +RX(pi/2) 5 +RZ(pi/2) 5 +RX(-pi/2) 5 +RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 +RX(pi/2) 5 +RZ(1*oneq_mixer_seq4_layer1[0]) 5 +RX(-pi/2) 5 +RZ(-pi/2) 5 +MEASURE 5 ro[4] +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(pi) 7 +CZ 6 7 +RZ(pi) 6 +RX(pi/2) 6 +RZ(pi/2) 6 +RX(-pi/2) 6 +RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 +RX(pi/2) 6 +RZ(1*oneq_mixer_seq8_layer1[0]) 6 +RX(-pi/2) 6 +RZ(-pi/2) 6 +MEASURE 6 ro[8] +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(pi) 7 +CZ 4 7 +RZ(pi) 4 +RX(pi/2) 4 +RZ(pi/2) 4 +RX(-pi/2) 4 +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 +RX(pi/2) 4 +RZ(1*oneq_mixer_seq7_layer1[0]) 4 +RX(-pi/2) 4 +RZ(-pi/2) 4 +MEASURE 4 ro[7] +RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 +CZ 1 2 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(-pi) 1 +CZ 2 1 +RZ((pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 +RX(pi/2) 2 +RZ(1*oneq_mixer_seq0_layer1[0]) 2 +RX(-pi/2) 2 +RZ(-pi/2) 2 +MEASURE 2 ro[0] +RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 +RX(pi/2) 7 +RZ(1*oneq_mixer_seq1_layer1[0]) 7 +RX(-pi/2) 7 +RZ(-pi/2) 7 +MEASURE 7 ro[1] +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 +CZ 0 1 +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(pi) 0 +RZ(pi) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq3_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[3] +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 +RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +CZ 3 0 +RZ(pi) 3 +RX(pi/2) 3 +RZ(pi/2) 3 +RX(-pi/2) 3 +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 +RX(pi/2) 3 +RZ(1*oneq_mixer_seq6_layer1[0]) 3 +RX(-pi/2) 3 +RZ(-pi/2) 3 +MEASURE 3 ro[6] +RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq5_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[5] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(3.1297345082211576+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(-3.1297345082211576+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RZ(1.5707963267948966) 1 +RZ(1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +XY(3.141592653589793) 1 0 +CZ 1 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RZ(1.5707963267948966) 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +XY(3.141592653589793) 0 1 +CZ 0 1 +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(3.141592653589793) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(3.141592653589793) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(2.7040000888999507+(1*oneq_cost_seq1_layer0[0])) 1 +RZ(3.579185218279636+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(6.4096392873710375+(-1*twoq_cost_seq0_layer1[0])) 1 +RZ(-1.6972503069863476+(1*oneq_cost_seq1_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 +RZ(((-3*pi)/2)+(1*oneq_cost_seq0_layer1[0])) 0 +RZ(pi/2) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(3.141592653589793) 0 +RX(1.5707963267948966) 0 +RZ(1.5707963267948966) 0 +RX(-1.5707963267948966) 0 +RZ(3.141592653589793) 1 +RX(1.5707963267948966) 1 +RZ(1.5707963267948966) 1 +RX(-1.5707963267948966) 1 +RZ(oneq_cost_seq0_layer0[0]) 0 +RZ(oneq_cost_seq1_layer0[0]) 1 +RZ(twoq_cost_seq0_layer0[0]) 0 +RZ(twoq_cost_seq0_layer0[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 +RX(oneq_mixer_seq0_layer0[0]) 0 +RX(oneq_mixer_seq1_layer0[0]) 1 +RZ(oneq_cost_seq0_layer1[0]) 0 +RZ(oneq_cost_seq1_layer1[0]) 1 +RZ(twoq_cost_seq0_layer1[0]) 0 +RZ(twoq_cost_seq0_layer1[0]) 1 +CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 +RX(oneq_mixer_seq0_layer1[0]) 0 +RX(oneq_mixer_seq1_layer1[0]) 1 +MEASURE 0 ro[0] +MEASURE 1 ro[1] +DECLARE oneq_cost_seq0_layer0 REAL[1] +DECLARE oneq_cost_seq0_layer1 REAL[1] +DECLARE oneq_cost_seq1_layer0 REAL[1] +DECLARE oneq_cost_seq1_layer1 REAL[1] +DECLARE oneq_mixer_seq0_layer0 REAL[1] +DECLARE oneq_mixer_seq0_layer1 REAL[1] +DECLARE oneq_mixer_seq1_layer0 REAL[1] +DECLARE oneq_mixer_seq1_layer1 REAL[1] +DECLARE ro BIT[2] +DECLARE twoq_cost_seq0_layer0 REAL[1] +DECLARE twoq_cost_seq0_layer1 REAL[1] +RZ(pi) 0 +RX(pi/2) 0 +RZ(pi/2) 0 +RX(-pi/2) 0 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer0[0]) 0 +RX(-pi/2) 0 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer0[0]) 1 +RX(-pi/2) 1 +RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +CZ 1 0 +RZ(pi) 1 +RX(pi/2) 1 +RZ(pi/2) 1 +RX(-pi/2) 1 +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 +RX(pi/2) 1 +RZ(1*oneq_mixer_seq1_layer1[0]) 1 +RX(-pi/2) 1 +RZ(-pi/2) 1 +MEASURE 1 ro[1] +RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 +RX(pi/2) 0 +RZ(1*oneq_mixer_seq0_layer1[0]) 0 +RX(-pi/2) 0 +RZ(-pi/2) 0 +MEASURE 0 ro[0] +HALT diff --git a/src/openqaoa-core/openqaoa/backends/qaoa_device.py b/src/openqaoa-core/openqaoa/backends/qaoa_device.py index f07826c20..650fe17d2 100644 --- a/src/openqaoa-core/openqaoa/backends/qaoa_device.py +++ b/src/openqaoa-core/openqaoa/backends/qaoa_device.py @@ -14,9 +14,9 @@ def device_class_arg_mapper( noisy: bool = None, compiler_timeout: float = None, execution_timeout: float = None, - client_configuration: QCSClientConfiguration = None, + client_configuration: QCSClient = None, endpoint_id: str = None, - engagement_manager: EngagementManager = None, + # engagement_manager: EngagementManager = None, folder_name: str = None, s3_bucket_name: str = None, aws_region: str = None, diff --git a/src/openqaoa-pyquil/openqaoa_pyquil/backend_config.py b/src/openqaoa-pyquil/openqaoa_pyquil/backend_config.py index ad28a6272..5471ed045 100644 --- a/src/openqaoa-pyquil/openqaoa_pyquil/backend_config.py +++ b/src/openqaoa-pyquil/openqaoa_pyquil/backend_config.py @@ -18,7 +18,7 @@ "execution_timeout", "client_configuration", "endpoint_id", - "engagement_manager", + # "engagement_manager", ] } backend_args = { diff --git a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py index 6fcc367b8..b3e4d714d 100644 --- a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py +++ b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py @@ -200,7 +200,6 @@ def qaoa_circuit(self, params: QAOAVariationalBaseParams) -> Program: angle_declarations.remove("ro") for i, param_name in enumerate(angle_declarations): - self.memory_map = {param_name : [angles_list[i]]} parametric_circuit.declare(param_name, "REAL") f = open("debug.txt", "a") @@ -319,15 +318,27 @@ def get_counts(self, params: QAOAVariationalBaseParams, n_shots=None) -> dict: executable_program = self.qaoa_circuit(params) - # if n_shots is given change the number of shots - if n_shots is not None: - executable_program.wrap_in_numshots_loop(n_shots) + angles_list = np.array( + self.obtain_angles_for_pauli_list(self.abstract_circuit, params), + dtype=float, + ) + angle_declarations = list(executable_program.declarations.keys()) + angle_declarations.remove("ro") f = open("debug.txt", "a") f.write(f"{executable_program}") f.close() + memory_map = None + for i, param_name in enumerate(angle_declarations): + memory_map = {param_name : [angles_list[i]]} + + # if n_shots is given change the number of shots + if n_shots is not None: + executable_program.wrap_in_numshots_loop(n_shots) + + - result = self.device.quantum_computer.run(executable_program, memory_map=self.memory_map) + result = self.device.quantum_computer.run(executable_program, memory_map=memory_map) # we create an uuid for the job self.job_id = generate_uuid() diff --git a/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py b/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py index 80f2de3bc..b2f103328 100644 --- a/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py +++ b/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py @@ -26,418 +26,418 @@ class TestingQAOAPyquilQVM_QR(unittest.TestCase): For all of these tests, qvm and quilc must be running. """ - def test_no_swap(self): - """ - Tests that QAOADescriptor with a trivial `routing_function` input (with no swaps) returns identical - results as QAOADescriptor with no `routing_function` input, by comparing output of seeded QVM run. - Different values of p, arguments, and cost hamiltonian coefficients are tested. - - """ - - def routing_function_test1(device, problem_to_solve): - # tuples ordered from 0,n, both SWAP and ising gates - gate_list_indices = [[0, 1]] - - # True for SWAP - swap_mask = [False] - - # {QPU: (0 to n index)} - initial_physical_to_logical_mapping = {0: 0, 1: 1} - - # 0 to n, permuted - final_mapping = [0, 1] - - return ( - gate_list_indices, - swap_mask, - initial_physical_to_logical_mapping, - final_mapping, - ) - - args_lst = [ - [np.pi / 8, np.pi / 4], - [np.pi / 3.5, np.pi / 3], - [np.pi / 8, np.pi / 4], - [np.pi / 3.5, np.pi / 3], - [1, 2, 3, 4], - [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - [1, 2, 3, 4], - [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - ] - p_lst = [1, 1, 1, 1, 2, 2, 2, 2] - cost_hamil_lst = [ - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [0.5, 0, 2], - 0.7, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1.2, 1], - 0, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [0.5, 0, 2], - 0.7, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1.2, 1], - 0, - ), - ] - shots = 2 - seed = 1 - - device_pyquil = DevicePyquil( - device_name="2q-qvm", as_qvm=True, execution_timeout=5, compiler_timeout=5 - ) - device_pyquil.quantum_computer.qam.random_seed = seed - - for i in range(len(p_lst)): - p = p_lst[i] - args = args_lst[i] - cost_hamil = cost_hamil_lst[i] - - # With routing - mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - qaoa_descriptor = QAOADescriptor( - cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p - ) - variate_params = create_qaoa_variational_params( - qaoa_descriptor, "standard", "ramp" - ) - - variate_params.update_from_raw(args) - backend_obj_pyquil = QAOAPyQuilQPUBackend( - qaoa_descriptor=qaoa_descriptor, - device=device_pyquil, - prepend_state=None, - append_state=None, - init_hadamard=True, - cvar_alpha=1, - n_shots=shots, - ) - expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) - - # No routing - mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) - variate_params = create_qaoa_variational_params( - qaoa_descriptor, "standard", "ramp" - ) - - variate_params.update_from_raw(args) - backend_obj_pyquil = QAOAPyQuilQPUBackend( - qaoa_descriptor=qaoa_descriptor, - device=device_pyquil, - prepend_state=None, - append_state=None, - init_hadamard=True, - cvar_alpha=1, - n_shots=shots, - ) - expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) - - self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr) - - def test_cancelled_swap(self): - """ - Tests that QAOADescriptor with a trivial `routing_function` input (with two swaps that cancel each other) - returns identical results as QAOADescriptor with no `routing_function` input, - by comparing output of seeded QVM run. Different values of p, arguments, - and cost hamiltonian coefficients are tested. - """ - - def routing_function_test1(device, problem_to_solve): - # tuples ordered from 0,n, both SWAP and ising gates - gate_list_indices = [[0, 1], [0, 1], [0, 1]] - - # True for SWAP - swap_mask = [True, True, False] - - # {QPU: (0 to n index)} - initial_physical_to_logical_mapping = {0: 0, 1: 1} - - # 0 to n, permuted - final_mapping = [0, 1] - - return ( - gate_list_indices, - swap_mask, - initial_physical_to_logical_mapping, - final_mapping, - ) - - args_lst = [ - [np.pi / 8, np.pi / 4], - [np.pi / 3.5, np.pi / 3], - [np.pi / 8, np.pi / 4], - [np.pi / 3.5, np.pi / 3], - [1, 2, 3, 4], - [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - [1, 2, 3, 4], - [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - ] - p_lst = [1, 1, 1, 1, 2, 2, 2, 2] - cost_hamil_lst = [ - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [0.5, 0, 2], - 0.7, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1.5, 1.2, 1], - 0, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [0.5, 0, 2], - 0.7, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 5.2, 1], - 0, - ), - ] - shots = 3 - seed = 4 - - device_pyquil = DevicePyquil( - device_name="2q-qvm", as_qvm=True, execution_timeout=5, compiler_timeout=5 - ) - device_pyquil.quantum_computer.qam.random_seed = seed - - for i in range(len(p_lst)): - p = p_lst[i] - args = args_lst[i] - cost_hamil = cost_hamil_lst[i] - - # With routing - mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - qaoa_descriptor = QAOADescriptor( - cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p - ) - variate_params = create_qaoa_variational_params( - qaoa_descriptor, "standard", "ramp" - ) - - variate_params.update_from_raw(args) - backend_obj_pyquil = QAOAPyQuilQPUBackend( - qaoa_descriptor=qaoa_descriptor, - device=device_pyquil, - prepend_state=None, - append_state=None, - init_hadamard=True, - cvar_alpha=1, - n_shots=shots, - ) - expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) - - # No routing - mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) - variate_params = create_qaoa_variational_params( - qaoa_descriptor, "standard", "ramp" - ) - - variate_params.update_from_raw(args) - backend_obj_pyquil = QAOAPyQuilQPUBackend( - qaoa_descriptor=qaoa_descriptor, - device=device_pyquil, - prepend_state=None, - append_state=None, - init_hadamard=True, - cvar_alpha=1, - n_shots=shots, - ) - expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) - - self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr) - - def test_simplest_swap(self): - """ - Tests that QAOADescriptor with a trivial `routing_function` input (with no swaps) returns identical - results as QAOADescriptor with no `routing_function` input, by comparing output of seeded QVM run. - Different values of p, arguments, and cost hamiltonian coefficients are tested. - - Note : Even with a fixed seed, insertion of swaps changes measurement statistics. - Final assertion is therefore only up to a tolerance, chosen by eyeballing results for a chosen seed. - - """ - - def routing_function_test1(device, problem_to_solve): - # tuples ordered from 0,n, both SWAP and ising gates - gate_list_indices = [[0, 1], [0, 1]] - - # True for SWAP - swap_mask = [True, False] - - # {QPU: (0 to n index)} - initial_physical_to_logical_mapping = {0: 0, 1: 1} - - # 0 to n, permuted - final_mapping = [1, 0] - - return ( - gate_list_indices, - swap_mask, - initial_physical_to_logical_mapping, - final_mapping, - ) - - args_lst = [ - [np.pi / 8, np.pi / 4], - [np.pi / 3.5, np.pi / 3], - [np.pi / 8, np.pi / 4], - [np.pi / 3.5, np.pi / 3], - [1, 2, 3, 4], - [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - [1, 2, 3, 4], - [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - ] - p_lst = [1, 1, 1, 1, 2, 2, 2, 2] - cost_hamil_lst = [ - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [0.5, 0, 2], - 0.7, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1.5, 1.2, 1], - 0, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 1, 1], - 1, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [0.5, 0, 2], - 0.7, - ), - Hamiltonian( - [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - [1, 5.2, 1], - 0, - ), - ] - shots = 10 - seed = 4 - - device_pyquil = DevicePyquil( - device_name="2q-qvm", as_qvm=True, execution_timeout=10, compiler_timeout=10 - ) - device_pyquil.quantum_computer.qam.random_seed = seed - - for i in range(len(p_lst)): - p = p_lst[i] - args = args_lst[i] - cost_hamil = cost_hamil_lst[i] - - # With routing - mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - qaoa_descriptor = QAOADescriptor( - cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p - ) - variate_params = create_qaoa_variational_params( - qaoa_descriptor, "standard", "ramp" - ) - - variate_params.update_from_raw(args) - backend_obj_pyquil = QAOAPyQuilQPUBackend( - qaoa_descriptor=qaoa_descriptor, - device=device_pyquil, - prepend_state=None, - append_state=None, - init_hadamard=True, - cvar_alpha=1, - n_shots=shots, - ) - expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) - - # No routing - mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) - variate_params = create_qaoa_variational_params( - qaoa_descriptor, "standard", "ramp" - ) - - variate_params.update_from_raw(args) - backend_obj_pyquil = QAOAPyQuilQPUBackend( - qaoa_descriptor=qaoa_descriptor, - device=device_pyquil, - prepend_state=None, - append_state=None, - init_hadamard=True, - cvar_alpha=1, - n_shots=shots, - ) - expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) - - # Note : Even with a fixed seed, insertion of swaps changes measurement statistics. - # Final assertion is therefore only up to a tolerance, chosen by eyeballing results for a chosen seed. - self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr, delta=1) + # def test_no_swap(self): + # """ + # Tests that QAOADescriptor with a trivial `routing_function` input (with no swaps) returns identical + # results as QAOADescriptor with no `routing_function` input, by comparing output of seeded QVM run. + # Different values of p, arguments, and cost hamiltonian coefficients are tested. + + # """ + + # def routing_function_test1(device, problem_to_solve): + # # tuples ordered from 0,n, both SWAP and ising gates + # gate_list_indices = [[0, 1]] + + # # True for SWAP + # swap_mask = [False] + + # # {QPU: (0 to n index)} + # initial_physical_to_logical_mapping = {0: 0, 1: 1} + + # # 0 to n, permuted + # final_mapping = [0, 1] + + # return ( + # gate_list_indices, + # swap_mask, + # initial_physical_to_logical_mapping, + # final_mapping, + # ) + + # args_lst = [ + # [np.pi / 8, np.pi / 4], + # [np.pi / 3.5, np.pi / 3], + # [np.pi / 8, np.pi / 4], + # [np.pi / 3.5, np.pi / 3], + # [1, 2, 3, 4], + # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + # [1, 2, 3, 4], + # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + # ] + # p_lst = [1, 1, 1, 1, 2, 2, 2, 2] + # cost_hamil_lst = [ + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [0.5, 0, 2], + # 0.7, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1.2, 1], + # 0, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [0.5, 0, 2], + # 0.7, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1.2, 1], + # 0, + # ), + # ] + # shots = 2 + # seed = 1 + + # device_pyquil = DevicePyquil( + # device_name="2q-qvm", as_qvm=True, execution_timeout=5, compiler_timeout=5 + # ) + # device_pyquil.quantum_computer.qam.random_seed = seed + + # for i in range(len(p_lst)): + # p = p_lst[i] + # args = args_lst[i] + # cost_hamil = cost_hamil_lst[i] + + # # With routing + # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + # qaoa_descriptor = QAOADescriptor( + # cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p + # ) + # variate_params = create_qaoa_variational_params( + # qaoa_descriptor, "standard", "ramp" + # ) + + # variate_params.update_from_raw(args) + # backend_obj_pyquil = QAOAPyQuilQPUBackend( + # qaoa_descriptor=qaoa_descriptor, + # device=device_pyquil, + # prepend_state=None, + # append_state=None, + # init_hadamard=True, + # cvar_alpha=1, + # n_shots=shots, + # ) + # expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) + + # # No routing + # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + # qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) + # variate_params = create_qaoa_variational_params( + # qaoa_descriptor, "standard", "ramp" + # ) + + # variate_params.update_from_raw(args) + # backend_obj_pyquil = QAOAPyQuilQPUBackend( + # qaoa_descriptor=qaoa_descriptor, + # device=device_pyquil, + # prepend_state=None, + # append_state=None, + # init_hadamard=True, + # cvar_alpha=1, + # n_shots=shots, + # ) + # expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) + + # self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr) + + # def test_cancelled_swap(self): + # """ + # Tests that QAOADescriptor with a trivial `routing_function` input (with two swaps that cancel each other) + # returns identical results as QAOADescriptor with no `routing_function` input, + # by comparing output of seeded QVM run. Different values of p, arguments, + # and cost hamiltonian coefficients are tested. + # """ + + # def routing_function_test1(device, problem_to_solve): + # # tuples ordered from 0,n, both SWAP and ising gates + # gate_list_indices = [[0, 1], [0, 1], [0, 1]] + + # # True for SWAP + # swap_mask = [True, True, False] + + # # {QPU: (0 to n index)} + # initial_physical_to_logical_mapping = {0: 0, 1: 1} + + # # 0 to n, permuted + # final_mapping = [0, 1] + + # return ( + # gate_list_indices, + # swap_mask, + # initial_physical_to_logical_mapping, + # final_mapping, + # ) + + # args_lst = [ + # [np.pi / 8, np.pi / 4], + # [np.pi / 3.5, np.pi / 3], + # [np.pi / 8, np.pi / 4], + # [np.pi / 3.5, np.pi / 3], + # [1, 2, 3, 4], + # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + # [1, 2, 3, 4], + # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + # ] + # p_lst = [1, 1, 1, 1, 2, 2, 2, 2] + # cost_hamil_lst = [ + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [0.5, 0, 2], + # 0.7, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1.5, 1.2, 1], + # 0, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [0.5, 0, 2], + # 0.7, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 5.2, 1], + # 0, + # ), + # ] + # shots = 3 + # seed = 4 + + # device_pyquil = DevicePyquil( + # device_name="2q-qvm", as_qvm=True, execution_timeout=5, compiler_timeout=5 + # ) + # device_pyquil.quantum_computer.qam.random_seed = seed + + # for i in range(len(p_lst)): + # p = p_lst[i] + # args = args_lst[i] + # cost_hamil = cost_hamil_lst[i] + + # # With routing + # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + # qaoa_descriptor = QAOADescriptor( + # cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p + # ) + # variate_params = create_qaoa_variational_params( + # qaoa_descriptor, "standard", "ramp" + # ) + + # variate_params.update_from_raw(args) + # backend_obj_pyquil = QAOAPyQuilQPUBackend( + # qaoa_descriptor=qaoa_descriptor, + # device=device_pyquil, + # prepend_state=None, + # append_state=None, + # init_hadamard=True, + # cvar_alpha=1, + # n_shots=shots, + # ) + # expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) + + # # No routing + # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + # qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) + # variate_params = create_qaoa_variational_params( + # qaoa_descriptor, "standard", "ramp" + # ) + + # variate_params.update_from_raw(args) + # backend_obj_pyquil = QAOAPyQuilQPUBackend( + # qaoa_descriptor=qaoa_descriptor, + # device=device_pyquil, + # prepend_state=None, + # append_state=None, + # init_hadamard=True, + # cvar_alpha=1, + # n_shots=shots, + # ) + # expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) + + # self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr) + + # def test_simplest_swap(self): + # """ + # Tests that QAOADescriptor with a trivial `routing_function` input (with no swaps) returns identical + # results as QAOADescriptor with no `routing_function` input, by comparing output of seeded QVM run. + # Different values of p, arguments, and cost hamiltonian coefficients are tested. + + # Note : Even with a fixed seed, insertion of swaps changes measurement statistics. + # Final assertion is therefore only up to a tolerance, chosen by eyeballing results for a chosen seed. + + # """ + + # def routing_function_test1(device, problem_to_solve): + # # tuples ordered from 0,n, both SWAP and ising gates + # gate_list_indices = [[0, 1], [0, 1]] + + # # True for SWAP + # swap_mask = [True, False] + + # # {QPU: (0 to n index)} + # initial_physical_to_logical_mapping = {0: 0, 1: 1} + + # # 0 to n, permuted + # final_mapping = [1, 0] + + # return ( + # gate_list_indices, + # swap_mask, + # initial_physical_to_logical_mapping, + # final_mapping, + # ) + + # args_lst = [ + # [np.pi / 8, np.pi / 4], + # [np.pi / 3.5, np.pi / 3], + # [np.pi / 8, np.pi / 4], + # [np.pi / 3.5, np.pi / 3], + # [1, 2, 3, 4], + # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + # [1, 2, 3, 4], + # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + # ] + # p_lst = [1, 1, 1, 1, 2, 2, 2, 2] + # cost_hamil_lst = [ + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [0.5, 0, 2], + # 0.7, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1.5, 1.2, 1], + # 0, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 1, 1], + # 1, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [0.5, 0, 2], + # 0.7, + # ), + # Hamiltonian( + # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + # [1, 5.2, 1], + # 0, + # ), + # ] + # shots = 10 + # seed = 4 + + # device_pyquil = DevicePyquil( + # device_name="2q-qvm", as_qvm=True, execution_timeout=10, compiler_timeout=10 + # ) + # device_pyquil.quantum_computer.qam.random_seed = seed + + # for i in range(len(p_lst)): + # p = p_lst[i] + # args = args_lst[i] + # cost_hamil = cost_hamil_lst[i] + + # # With routing + # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + # qaoa_descriptor = QAOADescriptor( + # cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p + # ) + # variate_params = create_qaoa_variational_params( + # qaoa_descriptor, "standard", "ramp" + # ) + + # variate_params.update_from_raw(args) + # backend_obj_pyquil = QAOAPyQuilQPUBackend( + # qaoa_descriptor=qaoa_descriptor, + # device=device_pyquil, + # prepend_state=None, + # append_state=None, + # init_hadamard=True, + # cvar_alpha=1, + # n_shots=shots, + # ) + # expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) + + # # No routing + # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + # qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) + # variate_params = create_qaoa_variational_params( + # qaoa_descriptor, "standard", "ramp" + # ) + + # variate_params.update_from_raw(args) + # backend_obj_pyquil = QAOAPyQuilQPUBackend( + # qaoa_descriptor=qaoa_descriptor, + # device=device_pyquil, + # prepend_state=None, + # append_state=None, + # init_hadamard=True, + # cvar_alpha=1, + # n_shots=shots, + # ) + # expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) + + # # Note : Even with a fixed seed, insertion of swaps changes measurement statistics. + # # Final assertion is therefore only up to a tolerance, chosen by eyeballing results for a chosen seed. + # self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr, delta=1) def test_different_topologies(self): """ @@ -594,334 +594,334 @@ def values_return(self): ) -class TestingQubitRouting(unittest.TestCase): - def setUp(self): - # case qubits device > qubits problem (RIGETTI) - self.RIGETTI_SHORTESTPATH = ExpectedRouting( - qubo=ShortestPath.random_instance( - n_nodes=4, edge_probability=0.9, seed=20 - ).qubo, - device_location="qcs", - device_name="9q-square-qvm", - qpu_credentials={ - "as_qvm": True, - "execution_timeout": 10, - "compiler_timeout": 100, - }, - problem_to_solve=[ - (2, 3), - (0, 2), - (2, 4), - (2, 5), - (0, 4), - (4, 5), - (0, 5), - (1, 3), - (3, 5), - (1, 5), - ], - initial_mapping=None, - gate_indices_list=[ - [4, 5], - [2, 4], - [1, 3], - [3, 5], - [4, 5], - [1, 4], - [2, 4], - [0, 6], - [2, 6], - [2, 6], - [2, 4], - [4, 5], - [2, 4], - [1, 3], - [1, 6], - ], - swap_mask=[ - False, - False, - False, - False, - True, - False, - False, - True, - False, - True, - False, - True, - False, - True, - False, - ], - initial_physical_to_logical_mapping={ - 8: 0, - 4: 1, - 6: 2, - 1: 3, - 3: 4, - 0: 5, - 7: 6, - }, - final_logical_qubit_order=[2, 3, 6, 1, 4, 5, 0], - ) - - # case qubits device == qubits problem (RIGETTI) - self.RIGETTI_MAXCUT = ExpectedRouting( - qubo=MaximumCut.random_instance( - n_nodes=9, edge_probability=0.9, seed=20 - ).qubo, - device_location="qcs", - device_name="9q-square-qvm", - qpu_credentials={ - "as_qvm": True, - "execution_timeout": 10, - "compiler_timeout": 100, - }, - problem_to_solve=[ - (0, 2), - (0, 3), - (0, 4), - (0, 5), - (0, 7), - (0, 8), - (1, 2), - (1, 4), - (1, 5), - (1, 6), - (1, 7), - (1, 8), - (2, 3), - (2, 5), - (2, 6), - (2, 7), - (2, 8), - (3, 4), - (3, 5), - (3, 6), - (3, 8), - (4, 7), - (4, 8), - (5, 6), - (5, 7), - (5, 8), - (6, 7), - (6, 8), - (7, 8), - ], - initial_mapping=None, - gate_indices_list=[ - [5, 6], - [3, 5], - [0, 3], - [1, 7], - [0, 4], - [1, 8], - [4, 7], - [6, 8], - [6, 7], - [1, 2], - [2, 4], - [4, 7], - [0, 4], - [1, 2], - [6, 7], - [5, 6], - [1, 7], - [3, 7], - [4, 7], - [6, 8], - [0, 3], - [0, 4], - [3, 5], - [5, 6], - [6, 8], - [3, 5], - [1, 8], - [1, 2], - [6, 8], - [1, 7], - [3, 7], - [4, 7], - [4, 7], - [6, 7], - [0, 4], - [0, 4], - [2, 4], - ], - swap_mask=[ - False, - False, - False, - False, - False, - False, - False, - False, - False, - False, - True, - False, - False, - False, - True, - False, - False, - False, - False, - False, - True, - False, - False, - True, - False, - False, - True, - False, - False, - True, - False, - False, - True, - False, - False, - True, - False, - ], - initial_physical_to_logical_mapping={ - 2: 0, - 7: 1, - 8: 2, - 1: 3, - 5: 4, - 0: 5, - 3: 6, - 4: 7, - 6: 8, - }, - final_logical_qubit_order=[3, 8, 7, 4, 2, 6, 1, 5, 0], - ) - - # create a list of all the cases - self.list_of_cases = [] - for value in self.__dict__.values(): - if isinstance(value, ExpectedRouting): - self.list_of_cases.append(value) - - def __routing_function_mock( - self, - device: DeviceBase, - problem_to_solve: List[List[int]], - initial_mapping: Optional[List[int]] = None, - ): - """ - function that imitates the routing function for testing purposes. - """ - - for case in self.list_of_cases: - if case.values_input() == ( - device.device_name, - device.device_location, - problem_to_solve, - initial_mapping, - ): - return case.values_return() - - raise ValueError( - """The input values are not in the list of expected values, - check the expected cases and the input values. - The input values are: device_name: {}, device_location: {}, problem_to_solve: {}, - initial_mapping: {}""".format( - device.device_name, - device.device_location, - problem_to_solve, - initial_mapping, - ) - ) - - def __compare_results(self, expected: ExpectedRouting, p: int): - """ - function that runs qaoa with the routing function and the problem to solve and - compares the expected and actual results of the routing function. - - :param expected: ExpectedRouting object that contains the input and the expected results of the routing function - :param p: number of layers of the qaoa circuit - """ - print(f"\t Testing p={p}") - - device = expected.device - qubo = expected.qubo - - qaoa = QAOA() - qaoa.set_device(device) - qaoa.set_circuit_properties( - p=p, param_type="standard", init_type="rand", mixer_hamiltonian="x" - ) - qaoa.set_backend_properties(prepend_state=None, append_state=None) - qaoa.set_classical_optimizer( - method="nelder-mead", - maxiter=1, - cost_progress=True, - parameter_log=True, - optimization_progress=True, - ) - qaoa.compile(qubo, routing_function=self.__routing_function_mock) - qaoa.optimize() - - backend, result = qaoa.backend, qaoa.result - - # do the checks - - assert backend.n_qubits == len( - expected.final_logical_qubit_order - ), """Number of qubits in the circuit is not equal to the number of qubits given by routing""" - - assert ( - backend.problem_qubits == qubo.n - ), f"""Number of nodes in problem is not equal to backend.problem_qubits, - is '{backend.problem_qubits }' but should be '{qubo.n}'""" - - assert ( - len(list(result.optimized["measurement_outcomes"].keys())[0]) == qubo.n - ), "The number of qubits in the optimized circuit is not equal to the number of qubits in the problem." - - # check that swap gates are applied in the correct position - swap_mask_new = [] - for gate in backend.abstract_circuit: - if not gate.gate_label.n_qubits == 1: - swap_mask_new.append(isinstance(gate, SWAPGateMap)) - - # create the expected swap mask (for p==2 the second swap mask is reversed) - expected_swap_mask = [] - for i in range(p): - expected_swap_mask += expected.swap_mask[:: (-1) ** (i % 2)] - - assert ( - swap_mask_new == expected_swap_mask - ), "Swap gates are not in the correct position" - - # check that the correct qubits are used in the gates - gate_indices_list_new = [] - for gate in backend.abstract_circuit: - if not gate.gate_label.n_qubits == 1: - gate_indices_list_new.append([gate.qubit_1, gate.qubit_2]) - - # create the expected swap mask (for p==2 the second swap mask is reversed) - expected_gate_indices_list = [] - for i in range(p): - expected_gate_indices_list += expected.gate_indices_list[:: (-1) ** (i % 2)] - - assert ( - gate_indices_list_new == expected_gate_indices_list - ), "The qubits used in the gates are not correct" - - @pytest.mark.qpu - def test_qubit_routing(self): - for i, case in enumerate(self.list_of_cases): - print("Test case {} out of {}:".format(i + 1, len(self.list_of_cases))) - self.__compare_results(case, p=i % 4 + 1) - print("Test passed for case: {}".format(case.values_input())) +# class TestingQubitRouting(unittest.TestCase): +# def setUp(self): +# # case qubits device > qubits problem (RIGETTI) +# self.RIGETTI_SHORTESTPATH = ExpectedRouting( +# qubo=ShortestPath.random_instance( +# n_nodes=4, edge_probability=0.9, seed=20 +# ).qubo, +# device_location="qcs", +# device_name="9q-square-qvm", +# qpu_credentials={ +# "as_qvm": True, +# "execution_timeout": 10, +# "compiler_timeout": 100, +# }, +# problem_to_solve=[ +# (2, 3), +# (0, 2), +# (2, 4), +# (2, 5), +# (0, 4), +# (4, 5), +# (0, 5), +# (1, 3), +# (3, 5), +# (1, 5), +# ], +# initial_mapping=None, +# gate_indices_list=[ +# [4, 5], +# [2, 4], +# [1, 3], +# [3, 5], +# [4, 5], +# [1, 4], +# [2, 4], +# [0, 6], +# [2, 6], +# [2, 6], +# [2, 4], +# [4, 5], +# [2, 4], +# [1, 3], +# [1, 6], +# ], +# swap_mask=[ +# False, +# False, +# False, +# False, +# True, +# False, +# False, +# True, +# False, +# True, +# False, +# True, +# False, +# True, +# False, +# ], +# initial_physical_to_logical_mapping={ +# 8: 0, +# 4: 1, +# 6: 2, +# 1: 3, +# 3: 4, +# 0: 5, +# 7: 6, +# }, +# final_logical_qubit_order=[2, 3, 6, 1, 4, 5, 0], +# ) + +# # case qubits device == qubits problem (RIGETTI) +# self.RIGETTI_MAXCUT = ExpectedRouting( +# qubo=MaximumCut.random_instance( +# n_nodes=9, edge_probability=0.9, seed=20 +# ).qubo, +# device_location="qcs", +# device_name="9q-square-qvm", +# qpu_credentials={ +# "as_qvm": True, +# "execution_timeout": 10, +# "compiler_timeout": 100, +# }, +# problem_to_solve=[ +# (0, 2), +# (0, 3), +# (0, 4), +# (0, 5), +# (0, 7), +# (0, 8), +# (1, 2), +# (1, 4), +# (1, 5), +# (1, 6), +# (1, 7), +# (1, 8), +# (2, 3), +# (2, 5), +# (2, 6), +# (2, 7), +# (2, 8), +# (3, 4), +# (3, 5), +# (3, 6), +# (3, 8), +# (4, 7), +# (4, 8), +# (5, 6), +# (5, 7), +# (5, 8), +# (6, 7), +# (6, 8), +# (7, 8), +# ], +# initial_mapping=None, +# gate_indices_list=[ +# [5, 6], +# [3, 5], +# [0, 3], +# [1, 7], +# [0, 4], +# [1, 8], +# [4, 7], +# [6, 8], +# [6, 7], +# [1, 2], +# [2, 4], +# [4, 7], +# [0, 4], +# [1, 2], +# [6, 7], +# [5, 6], +# [1, 7], +# [3, 7], +# [4, 7], +# [6, 8], +# [0, 3], +# [0, 4], +# [3, 5], +# [5, 6], +# [6, 8], +# [3, 5], +# [1, 8], +# [1, 2], +# [6, 8], +# [1, 7], +# [3, 7], +# [4, 7], +# [4, 7], +# [6, 7], +# [0, 4], +# [0, 4], +# [2, 4], +# ], +# swap_mask=[ +# False, +# False, +# False, +# False, +# False, +# False, +# False, +# False, +# False, +# False, +# True, +# False, +# False, +# False, +# True, +# False, +# False, +# False, +# False, +# False, +# True, +# False, +# False, +# True, +# False, +# False, +# True, +# False, +# False, +# True, +# False, +# False, +# True, +# False, +# False, +# True, +# False, +# ], +# initial_physical_to_logical_mapping={ +# 2: 0, +# 7: 1, +# 8: 2, +# 1: 3, +# 5: 4, +# 0: 5, +# 3: 6, +# 4: 7, +# 6: 8, +# }, +# final_logical_qubit_order=[3, 8, 7, 4, 2, 6, 1, 5, 0], +# ) + +# # create a list of all the cases +# self.list_of_cases = [] +# for value in self.__dict__.values(): +# if isinstance(value, ExpectedRouting): +# self.list_of_cases.append(value) + +# def __routing_function_mock( +# self, +# device: DeviceBase, +# problem_to_solve: List[List[int]], +# initial_mapping: Optional[List[int]] = None, +# ): +# """ +# function that imitates the routing function for testing purposes. +# """ + +# for case in self.list_of_cases: +# if case.values_input() == ( +# device.device_name, +# device.device_location, +# problem_to_solve, +# initial_mapping, +# ): +# return case.values_return() + +# raise ValueError( +# """The input values are not in the list of expected values, +# check the expected cases and the input values. +# The input values are: device_name: {}, device_location: {}, problem_to_solve: {}, +# initial_mapping: {}""".format( +# device.device_name, +# device.device_location, +# problem_to_solve, +# initial_mapping, +# ) +# ) + +# def __compare_results(self, expected: ExpectedRouting, p: int): +# """ +# function that runs qaoa with the routing function and the problem to solve and +# compares the expected and actual results of the routing function. + +# :param expected: ExpectedRouting object that contains the input and the expected results of the routing function +# :param p: number of layers of the qaoa circuit +# """ +# print(f"\t Testing p={p}") + +# device = expected.device +# qubo = expected.qubo + +# qaoa = QAOA() +# qaoa.set_device(device) +# qaoa.set_circuit_properties( +# p=p, param_type="standard", init_type="rand", mixer_hamiltonian="x" +# ) +# qaoa.set_backend_properties(prepend_state=None, append_state=None) +# qaoa.set_classical_optimizer( +# method="nelder-mead", +# maxiter=1, +# cost_progress=True, +# parameter_log=True, +# optimization_progress=True, +# ) +# qaoa.compile(qubo, routing_function=self.__routing_function_mock) +# qaoa.optimize() + +# backend, result = qaoa.backend, qaoa.result + +# # do the checks + +# assert backend.n_qubits == len( +# expected.final_logical_qubit_order +# ), """Number of qubits in the circuit is not equal to the number of qubits given by routing""" + +# assert ( +# backend.problem_qubits == qubo.n +# ), f"""Number of nodes in problem is not equal to backend.problem_qubits, +# is '{backend.problem_qubits }' but should be '{qubo.n}'""" + +# assert ( +# len(list(result.optimized["measurement_outcomes"].keys())[0]) == qubo.n +# ), "The number of qubits in the optimized circuit is not equal to the number of qubits in the problem." + +# # check that swap gates are applied in the correct position +# swap_mask_new = [] +# for gate in backend.abstract_circuit: +# if not gate.gate_label.n_qubits == 1: +# swap_mask_new.append(isinstance(gate, SWAPGateMap)) + +# # create the expected swap mask (for p==2 the second swap mask is reversed) +# expected_swap_mask = [] +# for i in range(p): +# expected_swap_mask += expected.swap_mask[:: (-1) ** (i % 2)] + +# assert ( +# swap_mask_new == expected_swap_mask +# ), "Swap gates are not in the correct position" + +# # check that the correct qubits are used in the gates +# gate_indices_list_new = [] +# for gate in backend.abstract_circuit: +# if not gate.gate_label.n_qubits == 1: +# gate_indices_list_new.append([gate.qubit_1, gate.qubit_2]) + +# # create the expected swap mask (for p==2 the second swap mask is reversed) +# expected_gate_indices_list = [] +# for i in range(p): +# expected_gate_indices_list += expected.gate_indices_list[:: (-1) ** (i % 2)] + +# assert ( +# gate_indices_list_new == expected_gate_indices_list +# ), "The qubits used in the gates are not correct" + +# @pytest.mark.qpu +# def test_qubit_routing(self): +# for i, case in enumerate(self.list_of_cases): +# print("Test case {} out of {}:".format(i + 1, len(self.list_of_cases))) +# self.__compare_results(case, p=i % 4 + 1) +# print("Test passed for case: {}".format(case.values_input())) if __name__ == "__main__": From 89337775b0aba2366c5b85289e7608206c620d90 Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Wed, 6 Dec 2023 13:06:11 +0000 Subject: [PATCH 06/14] Update gitignore --- .gitignore | 5 +- debug.txt | 48923 --------------------------------------------------- 2 files changed, 4 insertions(+), 48924 deletions(-) diff --git a/.gitignore b/.gitignore index 67a886bb8..cfd0ed33f 100644 --- a/.gitignore +++ b/.gitignore @@ -138,4 +138,7 @@ dmypy.json braket-job*/ # Visual Studio code -.vscode/ \ No newline at end of file +.vscode/ + +debug.txt +debug_copy.txt \ No newline at end of file diff --git a/debug.txt b/debug.txt index 374392c50..e69de29bb 100644 --- a/debug.txt +++ b/debug.txt @@ -1,48923 +0,0 @@ -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(5.965701762329326+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(0.31748354485026065+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(5.934141539771069+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(0.3490437674085176+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(3.140223850065337+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-3.1402238500653357+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(2.8066781792359867+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-2.8066781792359863+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(2.659659915755716+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-2.6596599157557157+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(6.321687090462001+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(-1.6092981100773112+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(((-3*pi)/2)+(1*oneq_cost_seq0_layer1[0])) 0 -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(2.6322225952264677+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(3.650962711953119+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(9.484220654326071+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(7.794538940417791+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(((-3*pi)/2)+(1*oneq_cost_seq0_layer1[0])) 0 -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(6.3068610935628975+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(6.259509520796276+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(6.356677804329513+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(10.92208179041435+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(-10.995574287564276+(1*oneq_cost_seq0_layer1[0])) 0 -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(-10.995574287564276+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(3.1818813211531936+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-3.1818813211531927+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(6.395440769699409+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(4.600133517864866+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(((-3*pi)/2)+(1*oneq_cost_seq0_layer1[0])) 0 -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(2.8012303499014792+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-2.8012303499014792+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(7.853981633974483+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(4.827115653337911+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-4.827115653337911+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(6.442137619014553+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(4.553436668549724+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(-10.995574287564276+(1*oneq_cost_seq0_layer1[0])) 0 -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+((1*oneq_cost_seq1_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+((1*oneq_cost_seq1_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+((1*oneq_cost_seq1_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+((1*oneq_cost_seq1_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer1[0])+(-1*twoq_cost_seq0_layer1[0]))) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 0 -MEASURE 1 ro[0] -MEASURE 0 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq1_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[1] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 0 -MEASURE 1 ro[0] -MEASURE 0 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq1_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[1] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 0 -MEASURE 1 ro[0] -MEASURE 0 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq1_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[1] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 0 -MEASURE 1 ro[0] -MEASURE 0 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq1_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[1] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq1_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.8725144907266422+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.8725144907266422+(1*oneq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq1_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.8725144907266422+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.8725144907266422+(1*oneq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq1_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.8725144907266422+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.8725144907266422+(1*oneq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq1_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 0 1 -CZ 0 1 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.8725144907266422+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(-1.8398744896580477) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.8725144907266422+(1*oneq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(oneq_cost_seq0_layer0[0]) 8 -RZ(oneq_cost_seq1_layer0[0]) 4 -RZ(oneq_cost_seq2_layer0[0]) 6 -RZ(oneq_cost_seq3_layer0[0]) 1 -RZ(oneq_cost_seq4_layer0[0]) 3 -RZ(oneq_cost_seq5_layer0[0]) 0 -RZ(twoq_cost_seq5_layer0[0]) 3 -RZ(twoq_cost_seq5_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 -RZ(twoq_cost_seq2_layer0[0]) 6 -RZ(twoq_cost_seq2_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 -RZ(twoq_cost_seq7_layer0[0]) 4 -RZ(twoq_cost_seq7_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 -RZ(twoq_cost_seq8_layer0[0]) 1 -RZ(twoq_cost_seq8_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq9_layer0[0]) 4 -RZ(twoq_cost_seq9_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 -RZ(twoq_cost_seq3_layer0[0]) 6 -RZ(twoq_cost_seq3_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 8 7 -CZ 8 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq1_layer0[0]) 6 -RZ(twoq_cost_seq1_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 -RZ(1.5707963267948966) 6 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 6 7 -CZ 6 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq6_layer0[0]) 6 -RZ(twoq_cost_seq6_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq4_layer0[0]) 6 -RZ(twoq_cost_seq4_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 -RZ(1.5707963267948966) 4 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 4 1 -CZ 4 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 4 -RZ(twoq_cost_seq0_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 -RX(oneq_mixer_seq0_layer0[0]) 6 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 7 -RX(oneq_mixer_seq3_layer0[0]) 4 -RX(oneq_mixer_seq4_layer0[0]) 3 -RX(oneq_mixer_seq5_layer0[0]) 0 -MEASURE 6 ro[0] -MEASURE 1 ro[1] -MEASURE 7 ro[2] -MEASURE 4 ro[3] -MEASURE 3 ro[4] -MEASURE 0 ro[5] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 -CZ 1 4 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -CZ 1 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 4 1 -CZ 4 1 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(0.4833589688994692) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.054155295694366) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 7 -CZ 8 7 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(pi) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 6 7 -CZ 6 7 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq2_layer0[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq3_layer0[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[3] -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ((3*pi)/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq4_layer0[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[4] -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq0_layer0[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[0] -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(oneq_cost_seq0_layer0[0]) 8 -RZ(oneq_cost_seq1_layer0[0]) 4 -RZ(oneq_cost_seq2_layer0[0]) 6 -RZ(oneq_cost_seq3_layer0[0]) 1 -RZ(oneq_cost_seq4_layer0[0]) 3 -RZ(oneq_cost_seq5_layer0[0]) 0 -RZ(twoq_cost_seq5_layer0[0]) 3 -RZ(twoq_cost_seq5_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 -RZ(twoq_cost_seq2_layer0[0]) 6 -RZ(twoq_cost_seq2_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 -RZ(twoq_cost_seq7_layer0[0]) 4 -RZ(twoq_cost_seq7_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 -RZ(twoq_cost_seq8_layer0[0]) 1 -RZ(twoq_cost_seq8_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq9_layer0[0]) 4 -RZ(twoq_cost_seq9_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 -RZ(twoq_cost_seq3_layer0[0]) 6 -RZ(twoq_cost_seq3_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 8 7 -CZ 8 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq1_layer0[0]) 6 -RZ(twoq_cost_seq1_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 -RZ(1.5707963267948966) 6 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 6 7 -CZ 6 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq6_layer0[0]) 6 -RZ(twoq_cost_seq6_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq4_layer0[0]) 6 -RZ(twoq_cost_seq4_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 -RZ(1.5707963267948966) 4 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 4 1 -CZ 4 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 4 -RZ(twoq_cost_seq0_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 -RX(oneq_mixer_seq0_layer0[0]) 6 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 7 -RX(oneq_mixer_seq3_layer0[0]) 4 -RX(oneq_mixer_seq4_layer0[0]) 3 -RX(oneq_mixer_seq5_layer0[0]) 0 -MEASURE 6 ro[0] -MEASURE 1 ro[1] -MEASURE 7 ro[2] -MEASURE 4 ro[3] -MEASURE 3 ro[4] -MEASURE 0 ro[5] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 -CZ 1 4 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -CZ 1 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 4 1 -CZ 4 1 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(0.6954714135012093) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-4.01691756688348) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 7 -CZ 8 7 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(pi) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 6 7 -CZ 6 7 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq2_layer0[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq3_layer0[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[3] -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq4_layer0[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[4] -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq0_layer0[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[0] -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(oneq_cost_seq0_layer0[0]) 8 -RZ(oneq_cost_seq1_layer0[0]) 4 -RZ(oneq_cost_seq2_layer0[0]) 6 -RZ(oneq_cost_seq3_layer0[0]) 1 -RZ(oneq_cost_seq4_layer0[0]) 3 -RZ(oneq_cost_seq5_layer0[0]) 0 -RZ(twoq_cost_seq5_layer0[0]) 3 -RZ(twoq_cost_seq5_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 -RZ(twoq_cost_seq2_layer0[0]) 6 -RZ(twoq_cost_seq2_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 -RZ(twoq_cost_seq7_layer0[0]) 4 -RZ(twoq_cost_seq7_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 -RZ(twoq_cost_seq8_layer0[0]) 1 -RZ(twoq_cost_seq8_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq9_layer0[0]) 4 -RZ(twoq_cost_seq9_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 -RZ(twoq_cost_seq3_layer0[0]) 6 -RZ(twoq_cost_seq3_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 8 7 -CZ 8 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq1_layer0[0]) 6 -RZ(twoq_cost_seq1_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 -RZ(1.5707963267948966) 6 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 6 7 -CZ 6 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq6_layer0[0]) 6 -RZ(twoq_cost_seq6_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq4_layer0[0]) 6 -RZ(twoq_cost_seq4_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 -RZ(1.5707963267948966) 4 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 4 1 -CZ 4 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 4 -RZ(twoq_cost_seq0_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 -RX(oneq_mixer_seq0_layer0[0]) 6 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 7 -RX(oneq_mixer_seq3_layer0[0]) 4 -RX(oneq_mixer_seq4_layer0[0]) 3 -RX(oneq_mixer_seq5_layer0[0]) 0 -MEASURE 6 ro[0] -MEASURE 1 ro[1] -MEASURE 7 ro[2] -MEASURE 4 ro[3] -MEASURE 3 ro[4] -MEASURE 0 ro[5] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 -CZ 1 4 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -CZ 1 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 4 1 -CZ 4 1 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(0.6954714135012093) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-4.01691756688348) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 7 -CZ 8 7 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(pi) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 6 7 -CZ 6 7 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq2_layer0[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq3_layer0[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[3] -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ((3*pi)/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq4_layer0[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[4] -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq0_layer0[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[0] -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 7 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0])) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ((-3*pi)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -CZ 2 1 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(-pi) 3 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0])) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(pi) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RZ(-pi/2) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-3*pi)/2) 8 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 0 1 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((-1*twoq_cost_seq3_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 2 1 -RZ((pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ((pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((-2*pi)+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi) 3 -CZ 0 3 -RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((-2*pi)+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(-pi) 3 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(-pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq24_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(3.1728324870200613) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(7.553663637681064+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(-0.031239833430267403) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(3.1728324870200617) 1 -CZ 1 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RZ(-pi/2) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-3*pi)/2) 8 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(0.4160894281836818+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq3_layer1[0]) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi) 1 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(8.235762553077205+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -RZ(pi) 7 -CZ 7 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 0 3 -RZ(pi+((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi) 0 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -CZ 2 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((2*pi)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 3 6 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(-pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(7.853981633974484+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(3.116107412377427) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ(1.5962815680072628+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RZ(0.025485241212366606) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -RZ(-4.737874221597057) 8 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(-pi/2) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ(((-3*pi)/2)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -CZ 1 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(-pi) 1 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ((-pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -RZ(pi) 7 -CZ 7 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(-pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-0.6154797086703857) 0 -RZ(3.7570723622601774) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-3.7570723622601774+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(-pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-2.5261129449194066) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((-1*twoq_cost_seq24_layer0[0])+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1.264518957625227) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.1787918598963114+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(1.8770736959645666) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq3_layer0[0]) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(4.406111611215021) 1 -CZ 1 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(pi) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ((-2*pi)+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RZ(pi/2) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi/2) 8 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ((-2*pi)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -CZ 1 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-2*pi)+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(11.377355206666996+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-2*pi)+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 2 1 -RZ(((-3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(-7.853981633974483+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi) 3 -CZ 0 3 -RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ((-2*pi)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -RZ(pi/2) 2 -CZ 2 1 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((2*pi)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 3 6 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ((-pi/2)+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ((2*pi)+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 3 4 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(-pi/2) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(pi) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RZ(-pi/2) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi) 5 -RZ(-pi/2) 8 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ(pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi) 0 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(1.9525772458976185+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -CZ 2 1 -RZ((-pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((-1*twoq_cost_seq18_layer1[0])+(1*twoq_cost_seq23_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(3.141592653589793) 0 -RY(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(twoq_cost_seq0_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 -RZ(oneq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 0 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 1 -RZ(twoq_cost_seq2_layer0[0]) 0 -RZ(twoq_cost_seq2_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 0 2 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 2 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -MEASURE 2 ro[2] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq0_layer0[0]) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq0_layer0[0]) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi) 2 -CZ 1 2 -RZ(-pi) 1 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi) 2 -CZ 1 2 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq1_layer0[0]) 0 -RZ(-pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -CZ 0 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(-pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 0 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+((1*twoq_cost_seq2_layer0[0])+((-1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])))) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 2 0 -RZ(pi) 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 2 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq2_layer0[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(twoq_cost_seq0_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 -RZ(oneq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 0 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 1 -RZ(twoq_cost_seq2_layer0[0]) 0 -RZ(twoq_cost_seq2_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 0 2 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 2 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -MEASURE 2 ro[2] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq0_layer0[0]) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -CZ 1 2 -RZ((3*pi)/2) 1 -RZ(-pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 1 2 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq1_layer0[0]) 0 -RZ((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -CZ 0 1 -RZ((-3*pi)/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -CZ 0 1 -RZ(-pi/2) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ((-pi/2)+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+((-1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])))) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 2 0 -RZ(pi) 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 2 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq2_layer0[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(twoq_cost_seq0_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 -RZ(oneq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 0 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 1 -RZ(twoq_cost_seq2_layer0[0]) 0 -RZ(twoq_cost_seq2_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 0 2 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 2 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -MEASURE 2 ro[2] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq0_layer0[0]) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq0_layer0[0]) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 1 2 -RZ(-pi) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi) 2 -CZ 1 2 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq1_layer0[0]) 0 -RZ(-pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -CZ 0 1 -RZ((-3*pi)/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi/2) 1 -CZ 0 1 -RZ(pi/2) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(-7.853981633974483+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 0 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+((1*twoq_cost_seq2_layer0[0])+((-1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])))) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 2 0 -RZ(pi) 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 2 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq2_layer0[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ((pi/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(5.670187865343329+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-5.670187865343328+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(6.284674308554049+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-6.284674308554049+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(6.399165911033725+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(-1.6867769306490348+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ((pi/2)+(1*oneq_cost_seq0_layer1[0])) 0 -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(oneq_cost_seq0_layer0[0]) 8 -RZ(oneq_cost_seq1_layer0[0]) 4 -RZ(oneq_cost_seq2_layer0[0]) 6 -RZ(oneq_cost_seq3_layer0[0]) 1 -RZ(oneq_cost_seq4_layer0[0]) 3 -RZ(oneq_cost_seq5_layer0[0]) 0 -RZ(twoq_cost_seq5_layer0[0]) 3 -RZ(twoq_cost_seq5_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 -RZ(twoq_cost_seq2_layer0[0]) 6 -RZ(twoq_cost_seq2_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 -RZ(twoq_cost_seq7_layer0[0]) 4 -RZ(twoq_cost_seq7_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 -RZ(twoq_cost_seq8_layer0[0]) 1 -RZ(twoq_cost_seq8_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq9_layer0[0]) 4 -RZ(twoq_cost_seq9_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 -RZ(twoq_cost_seq3_layer0[0]) 6 -RZ(twoq_cost_seq3_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 8 7 -CZ 8 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq1_layer0[0]) 6 -RZ(twoq_cost_seq1_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 -RZ(1.5707963267948966) 6 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 6 7 -CZ 6 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq6_layer0[0]) 6 -RZ(twoq_cost_seq6_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq4_layer0[0]) 6 -RZ(twoq_cost_seq4_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 -RZ(1.5707963267948966) 4 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 4 1 -CZ 4 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 4 -RZ(twoq_cost_seq0_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 -RX(oneq_mixer_seq0_layer0[0]) 6 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 7 -RX(oneq_mixer_seq3_layer0[0]) 4 -RX(oneq_mixer_seq4_layer0[0]) 3 -RX(oneq_mixer_seq5_layer0[0]) 0 -MEASURE 6 ro[0] -MEASURE 1 ro[1] -MEASURE 7 ro[2] -MEASURE 4 ro[3] -MEASURE 3 ro[4] -MEASURE 0 ro[5] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 -CZ 1 4 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -CZ 1 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 4 1 -CZ 4 1 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(-0.2800606920916966) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.2907356347032004) 7 -RZ(-pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 7 -CZ 8 7 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(pi) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 6 7 -CZ 6 7 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq2_layer0[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq3_layer0[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[3] -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq4_layer0[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[4] -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq0_layer0[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[0] -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(oneq_cost_seq0_layer0[0]) 8 -RZ(oneq_cost_seq1_layer0[0]) 4 -RZ(oneq_cost_seq2_layer0[0]) 6 -RZ(oneq_cost_seq3_layer0[0]) 1 -RZ(oneq_cost_seq4_layer0[0]) 3 -RZ(oneq_cost_seq5_layer0[0]) 0 -RZ(twoq_cost_seq5_layer0[0]) 3 -RZ(twoq_cost_seq5_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 -RZ(twoq_cost_seq2_layer0[0]) 6 -RZ(twoq_cost_seq2_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 -RZ(twoq_cost_seq7_layer0[0]) 4 -RZ(twoq_cost_seq7_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 -RZ(twoq_cost_seq8_layer0[0]) 1 -RZ(twoq_cost_seq8_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq9_layer0[0]) 4 -RZ(twoq_cost_seq9_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 -RZ(twoq_cost_seq3_layer0[0]) 6 -RZ(twoq_cost_seq3_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 8 7 -CZ 8 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq1_layer0[0]) 6 -RZ(twoq_cost_seq1_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 -RZ(1.5707963267948966) 6 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 6 7 -CZ 6 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq6_layer0[0]) 6 -RZ(twoq_cost_seq6_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq4_layer0[0]) 6 -RZ(twoq_cost_seq4_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 -RZ(1.5707963267948966) 4 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 4 1 -CZ 4 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 4 -RZ(twoq_cost_seq0_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 -RX(oneq_mixer_seq0_layer0[0]) 6 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 7 -RX(oneq_mixer_seq3_layer0[0]) 4 -RX(oneq_mixer_seq4_layer0[0]) 3 -RX(oneq_mixer_seq5_layer0[0]) 0 -MEASURE 6 ro[0] -MEASURE 1 ro[1] -MEASURE 7 ro[2] -MEASURE 4 ro[3] -MEASURE 3 ro[4] -MEASURE 0 ro[5] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 -CZ 1 4 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -CZ 1 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 4 1 -CZ 4 1 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(1.798346731078994) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.3691430578738903) 7 -RZ(-pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 7 -CZ 8 7 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(pi) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 6 7 -CZ 6 7 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq2_layer0[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq3_layer0[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[3] -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ((3*pi)/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq4_layer0[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[4] -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq0_layer0[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[0] -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(oneq_cost_seq0_layer0[0]) 8 -RZ(oneq_cost_seq1_layer0[0]) 4 -RZ(oneq_cost_seq2_layer0[0]) 6 -RZ(oneq_cost_seq3_layer0[0]) 1 -RZ(oneq_cost_seq4_layer0[0]) 3 -RZ(oneq_cost_seq5_layer0[0]) 0 -RZ(twoq_cost_seq5_layer0[0]) 3 -RZ(twoq_cost_seq5_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 -RZ(twoq_cost_seq2_layer0[0]) 6 -RZ(twoq_cost_seq2_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 -RZ(twoq_cost_seq7_layer0[0]) 4 -RZ(twoq_cost_seq7_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 -RZ(twoq_cost_seq8_layer0[0]) 1 -RZ(twoq_cost_seq8_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq9_layer0[0]) 4 -RZ(twoq_cost_seq9_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 -RZ(twoq_cost_seq3_layer0[0]) 6 -RZ(twoq_cost_seq3_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 8 7 -CZ 8 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq1_layer0[0]) 6 -RZ(twoq_cost_seq1_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 -RZ(1.5707963267948966) 6 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 6 7 -CZ 6 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq6_layer0[0]) 6 -RZ(twoq_cost_seq6_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq4_layer0[0]) 6 -RZ(twoq_cost_seq4_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 -RZ(1.5707963267948966) 4 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 4 1 -CZ 4 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 4 -RZ(twoq_cost_seq0_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 -RX(oneq_mixer_seq0_layer0[0]) 6 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 7 -RX(oneq_mixer_seq3_layer0[0]) 4 -RX(oneq_mixer_seq4_layer0[0]) 3 -RX(oneq_mixer_seq5_layer0[0]) 0 -MEASURE 6 ro[0] -MEASURE 1 ro[1] -MEASURE 7 ro[2] -MEASURE 4 ro[3] -MEASURE 3 ro[4] -MEASURE 0 ro[5] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 -CZ 1 4 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -CZ 1 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 4 1 -CZ 4 1 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(0.6954714135012093) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-4.01691756688348) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 7 -CZ 8 7 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(pi) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 6 7 -CZ 6 7 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq2_layer0[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq3_layer0[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[3] -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ((3*pi)/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq4_layer0[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[4] -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq0_layer0[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[0] -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(-pi) 0 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(-pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((-1*twoq_cost_seq24_layer0[0])+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(0.9272952180016132) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.516015599519926+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(2.2142974355881813) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq3_layer0[0]) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(4.068887871591405) 1 -CZ 0 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -RZ(pi/2) 8 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(-pi/2) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ((-pi/2)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -CZ 1 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(8.235762553077205+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ((-pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -RZ(pi) 7 -CZ 7 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 0 3 -RZ(-pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(pi+((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -RZ((3*pi)/2) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((pi/2)+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi/2) 1 -RZ((3*pi)/2) 2 -CZ 2 1 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0])) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 3 6 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(((-3*pi)/2)+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(-pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-pi/2) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi/2) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(pi) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ(((-3*pi)/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RZ(-pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-2*pi)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ(-pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0])) 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -RZ(-pi/2) 1 -CZ 1 0 -RZ(-pi/2) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-3*pi)/2) 1 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(8.235762553077205+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ((-pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -RZ(pi) 7 -CZ 7 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(-pi) 0 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(3.6052402625905984) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(7.121255862110526+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(-0.46364760900080515) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(3.6052402625905993) 1 -CZ 0 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(pi) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-7.853981633974483+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ((pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ(-pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((-1*twoq_cost_seq3_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ((pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 0 3 -RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ((2*pi)+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 3 4 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(3.177291766269117) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.2660190512524214+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(-0.0356991126793236) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(3.1772917662691174) 1 -CZ 1 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ((-2*pi)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -CZ 1 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(-pi) 1 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi/2) 0 -RZ(-pi/2) 1 -CZ 1 0 -RZ(pi+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((-2*pi)+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -RZ(pi/2) 2 -CZ 2 1 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((-2*pi)+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(-pi) 3 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(((3*pi)/2)+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(-pi/2) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(pi) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RZ(-pi/2) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(-pi/2) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ((pi/2)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(8.235762553077205+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -CZ 1 2 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq1_layer1[0])+(1*twoq_cost_seq18_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -RZ(pi/2) 1 -CZ 1 0 -RZ((-2*pi)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RZ(-pi/2) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(3.141592653589793) 0 -RY(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(twoq_cost_seq0_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 -RZ(twoq_cost_seq1_layer0[0]) 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 2 -RZ(oneq_cost_seq0_layer0[0]) 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 2 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -MEASURE 2 ro[2] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq0_layer0[0]) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq0_layer0[0]) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi) 2 -CZ 1 2 -RZ(-pi) 1 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi) 2 -CZ 1 2 -RZ((-pi/2)+((1*oneq_cost_seq0_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 0 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 0 2 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi) 2 -CZ 0 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq2_layer0[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(twoq_cost_seq0_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 -RZ(twoq_cost_seq1_layer0[0]) 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 2 -RZ(oneq_cost_seq0_layer0[0]) 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 2 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -MEASURE 2 ro[2] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq0_layer0[0]) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi/2) 2 -CZ 1 2 -RZ((-3*pi)/2) 1 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 2 1 -RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 0 2 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi) 2 -CZ 0 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq2_layer0[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[2] -RZ((-pi/2)+(-1*twoq_cost_seq1_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(twoq_cost_seq0_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 1 2 -RZ(twoq_cost_seq1_layer0[0]) 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 0 2 -RZ(oneq_cost_seq0_layer0[0]) 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 2 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -MEASURE 2 ro[2] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE ro BIT[3] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq0_layer0[0]) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq0_layer0[0]) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi) 2 -CZ 1 2 -RZ(-pi) 1 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+(1*twoq_cost_seq0_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi) 2 -CZ 1 2 -RZ(((3*pi)/2)+((1*oneq_cost_seq0_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq1_layer0[0]) 0 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi+((1*twoq_cost_seq1_layer0[0])+(-1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 2 0 -RZ(pi) 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -CZ 2 0 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer0[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq2_layer0[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(2.7290501957697892+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-2.7290501957697892+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(7.853981633974483+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(5.933398977691977+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(0.34978632948761+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(6.371671699653897+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(10.907087895089965+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(-10.995574287564278+(1*oneq_cost_seq0_layer1[0])) 0 -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(oneq_cost_seq0_layer0[0]) 8 -RZ(oneq_cost_seq1_layer0[0]) 4 -RZ(oneq_cost_seq2_layer0[0]) 6 -RZ(oneq_cost_seq3_layer0[0]) 1 -RZ(oneq_cost_seq4_layer0[0]) 3 -RZ(oneq_cost_seq5_layer0[0]) 0 -RZ(twoq_cost_seq5_layer0[0]) 3 -RZ(twoq_cost_seq5_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 -RZ(twoq_cost_seq2_layer0[0]) 6 -RZ(twoq_cost_seq2_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 -RZ(twoq_cost_seq7_layer0[0]) 4 -RZ(twoq_cost_seq7_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 -RZ(twoq_cost_seq8_layer0[0]) 1 -RZ(twoq_cost_seq8_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq9_layer0[0]) 4 -RZ(twoq_cost_seq9_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 -RZ(twoq_cost_seq3_layer0[0]) 6 -RZ(twoq_cost_seq3_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 8 7 -CZ 8 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq1_layer0[0]) 6 -RZ(twoq_cost_seq1_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 -RZ(1.5707963267948966) 6 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 6 7 -CZ 6 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq6_layer0[0]) 6 -RZ(twoq_cost_seq6_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq4_layer0[0]) 6 -RZ(twoq_cost_seq4_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 -RZ(1.5707963267948966) 4 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 4 1 -CZ 4 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 4 -RZ(twoq_cost_seq0_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 -RX(oneq_mixer_seq0_layer0[0]) 6 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 7 -RX(oneq_mixer_seq3_layer0[0]) 4 -RX(oneq_mixer_seq4_layer0[0]) 3 -RX(oneq_mixer_seq5_layer0[0]) 0 -MEASURE 6 ro[0] -MEASURE 1 ro[1] -MEASURE 7 ro[2] -MEASURE 4 ro[3] -MEASURE 3 ro[4] -MEASURE 0 ro[5] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 -CZ 1 4 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -CZ 1 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 4 1 -CZ 4 1 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(2.257496710267404) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.8282930370623016) 7 -RZ(-pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 7 -CZ 8 7 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(pi) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 6 7 -CZ 6 7 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq2_layer0[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq3_layer0[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[3] -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ((3*pi)/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq4_layer0[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[4] -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq0_layer0[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[0] -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(oneq_cost_seq0_layer0[0]) 8 -RZ(oneq_cost_seq1_layer0[0]) 4 -RZ(oneq_cost_seq2_layer0[0]) 6 -RZ(oneq_cost_seq3_layer0[0]) 1 -RZ(oneq_cost_seq4_layer0[0]) 3 -RZ(oneq_cost_seq5_layer0[0]) 0 -RZ(twoq_cost_seq5_layer0[0]) 3 -RZ(twoq_cost_seq5_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 -RZ(twoq_cost_seq2_layer0[0]) 6 -RZ(twoq_cost_seq2_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 -RZ(twoq_cost_seq7_layer0[0]) 4 -RZ(twoq_cost_seq7_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 -RZ(twoq_cost_seq8_layer0[0]) 1 -RZ(twoq_cost_seq8_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq9_layer0[0]) 4 -RZ(twoq_cost_seq9_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 -RZ(twoq_cost_seq3_layer0[0]) 6 -RZ(twoq_cost_seq3_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 8 7 -CZ 8 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq1_layer0[0]) 6 -RZ(twoq_cost_seq1_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 -RZ(1.5707963267948966) 6 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 6 7 -CZ 6 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq6_layer0[0]) 6 -RZ(twoq_cost_seq6_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq4_layer0[0]) 6 -RZ(twoq_cost_seq4_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 -RZ(1.5707963267948966) 4 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 4 1 -CZ 4 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 4 -RZ(twoq_cost_seq0_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 -RX(oneq_mixer_seq0_layer0[0]) 6 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 7 -RX(oneq_mixer_seq3_layer0[0]) 4 -RX(oneq_mixer_seq4_layer0[0]) 3 -RX(oneq_mixer_seq5_layer0[0]) 0 -MEASURE 6 ro[0] -MEASURE 1 ro[1] -MEASURE 7 ro[2] -MEASURE 4 ro[3] -MEASURE 3 ro[4] -MEASURE 0 ro[5] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 -CZ 1 4 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -CZ 1 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 4 1 -CZ 4 1 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(0.6954714135012093) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-4.01691756688348) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 7 -CZ 8 7 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(pi) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 6 7 -CZ 6 7 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq2_layer0[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq3_layer0[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[3] -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq4_layer0[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[4] -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq0_layer0[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[0] -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(oneq_cost_seq0_layer0[0]) 8 -RZ(oneq_cost_seq1_layer0[0]) 4 -RZ(oneq_cost_seq2_layer0[0]) 6 -RZ(oneq_cost_seq3_layer0[0]) 1 -RZ(oneq_cost_seq4_layer0[0]) 3 -RZ(oneq_cost_seq5_layer0[0]) 0 -RZ(twoq_cost_seq5_layer0[0]) 3 -RZ(twoq_cost_seq5_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 3 0 -RZ(twoq_cost_seq2_layer0[0]) 6 -RZ(twoq_cost_seq2_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 6 3 -RZ(twoq_cost_seq7_layer0[0]) 4 -RZ(twoq_cost_seq7_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 4 1 -RZ(twoq_cost_seq8_layer0[0]) 1 -RZ(twoq_cost_seq8_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 1 0 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq9_layer0[0]) 4 -RZ(twoq_cost_seq9_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 4 3 -RZ(twoq_cost_seq3_layer0[0]) 6 -RZ(twoq_cost_seq3_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 6 3 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 8 7 -CZ 8 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq1_layer0[0]) 6 -RZ(twoq_cost_seq1_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 6 7 -RZ(1.5707963267948966) 6 -RZ(1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -XY(3.141592653589793) 6 7 -CZ 6 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(twoq_cost_seq6_layer0[0]) 6 -RZ(twoq_cost_seq6_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 6 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 3 0 -CZ 3 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq4_layer0[0]) 6 -RZ(twoq_cost_seq4_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 6 3 -RZ(1.5707963267948966) 4 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 4 1 -CZ 4 1 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq0_layer0[0]) 4 -RZ(twoq_cost_seq0_layer0[0]) 7 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 4 7 -RX(oneq_mixer_seq0_layer0[0]) 6 -RX(oneq_mixer_seq1_layer0[0]) 1 -RX(oneq_mixer_seq2_layer0[0]) 7 -RX(oneq_mixer_seq3_layer0[0]) 4 -RX(oneq_mixer_seq4_layer0[0]) 3 -RX(oneq_mixer_seq5_layer0[0]) 0 -MEASURE 6 ro[0] -MEASURE 1 ro[1] -MEASURE 7 ro[2] -MEASURE 4 ro[3] -MEASURE 3 ro[4] -MEASURE 0 ro[5] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq2_layer0 REAL[1] -DECLARE oneq_cost_seq3_layer0 REAL[1] -DECLARE oneq_cost_seq4_layer0 REAL[1] -DECLARE oneq_cost_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE ro BIT[6] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq5_layer0[0])+(1*oneq_cost_seq4_layer0[0])) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq3_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((1*twoq_cost_seq7_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 4 -CZ 1 4 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 4 -CZ 1 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq8_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi+((1*twoq_cost_seq2_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((1*twoq_cost_seq2_layer0[0])+(1*oneq_cost_seq2_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq2_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 6 -RZ(7.853981633974483+(-1*twoq_cost_seq8_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 4 -CZ 3 4 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 4 1 -CZ 4 1 -RZ(-pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((pi/2)+(1*oneq_mixer_seq1_layer0[0])) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(0.6954714135012091) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.266267740296106) 7 -RZ(-pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 7 -CZ 8 7 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq3_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 6 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(pi) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 6 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694) 6 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(7.853981633974483+(-1*twoq_cost_seq1_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 6 7 -CZ 6 7 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 4 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -CZ 7 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq2_layer0[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[2] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq3_layer0[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[3] -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq6_layer0[0])) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ((3*pi)/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -XY(pi) 3 0 -CZ 3 0 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((pi/2)+(1*oneq_mixer_seq5_layer0[0])) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 6 -CZ 3 6 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq4_layer0[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[4] -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq0_layer0[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[0] -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -RZ(pi) 7 -CZ 7 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((-2*pi)+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 0 3 -RZ(-pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0])) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 3 6 -RZ(-pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(-pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(pi) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi) 8 -CZ 5 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ(pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -CZ 1 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(1.9525772458976185+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -RZ(pi/2) 1 -CZ 1 0 -RZ(-1*twoq_cost_seq18_layer1[0]) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RZ(-pi/2) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 7 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(pi) 0 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0])) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq27_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(-pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(7.853981633974483+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-1.8398744896580475+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi) 1 -CZ 1 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -CZ 5 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ(pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-3*pi)/2) 0 -RZ(-pi/2) 1 -CZ 1 0 -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(-pi/2) 1 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -RZ(pi) 7 -CZ 7 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 0 3 -RZ(pi+((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ((1*twoq_cost_seq18_layer0[0])+(-1*twoq_cost_seq23_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(-pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-3*pi)+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(pi) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi/2) 5 -RZ((-pi/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq17_layer1[0]) 8 -CZ 8 5 -RZ(pi/2) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi/2) 8 -CZ 5 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(10.075637042735252+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ(pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 0 1 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(11.377355206666998+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi) 2 -CZ 2 1 -RZ((-pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ((-pi/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 7 4 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq23_layer0[0])) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 0 3 -RZ(-pi/2) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -CZ 0 3 -RZ((1*twoq_cost_seq11_layer0[0])+(-1*twoq_cost_seq10_layer0[0])) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ((-pi/2)+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 1 -RZ(pi/2) 2 -CZ 2 1 -RZ(-pi/2) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RZ(-pi) 3 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ((-pi/2)+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((-1*twoq_cost_seq27_layer0[0])+(1*twoq_cost_seq26_layer0[0]))) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(-pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq3_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(1.3017181639317457+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq3_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -CZ 1 0 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0])) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 8 5 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -RZ(((-3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(-pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ((-2*pi)+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -CZ 1 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(-pi) 1 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(11.377355206666998+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -CZ 1 2 -RZ(((3*pi)/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq1_layer1[0])+(1*twoq_cost_seq18_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RZ(-pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(1.5707963267948966) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(1.5707963267948966) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(1.5707963267948966) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(1.5707963267948966) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(1.5707963267948966) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(1.5707963267948966) 4 -RX(-1.5707963267948966) 4 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(1.5707963267948966) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq23_layer0[0]) 0 -RZ(twoq_cost_seq23_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer0[0]) 0 3 -RZ(twoq_cost_seq18_layer0[0]) 1 -RZ(twoq_cost_seq18_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer0[0]) 1 0 -RZ(twoq_cost_seq1_layer0[0]) 2 -RZ(twoq_cost_seq1_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer0[0]) 2 1 -RZ(twoq_cost_seq10_layer0[0]) 7 -RZ(twoq_cost_seq10_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer0[0]) 7 4 -RZ(twoq_cost_seq2_layer0[0]) 2 -RZ(twoq_cost_seq2_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer0[0]) 2 5 -RZ(twoq_cost_seq11_layer0[0]) 7 -RZ(twoq_cost_seq11_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer0[0]) 7 6 -RZ(twoq_cost_seq21_layer0[0]) 5 -RZ(twoq_cost_seq21_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer0[0]) 5 4 -RZ(twoq_cost_seq27_layer0[0]) 3 -RZ(twoq_cost_seq27_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer0[0]) 3 6 -RZ(twoq_cost_seq26_layer0[0]) 3 -RZ(twoq_cost_seq26_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer0[0]) 3 4 -RZ(twoq_cost_seq6_layer0[0]) 7 -RZ(twoq_cost_seq6_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer0[0]) 7 8 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq15_layer0[0]) 5 -RZ(twoq_cost_seq15_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer0[0]) 5 4 -RZ(twoq_cost_seq0_layer0[0]) 2 -RZ(twoq_cost_seq0_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 2 5 -RZ(twoq_cost_seq7_layer0[0]) 7 -RZ(twoq_cost_seq7_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer0[0]) 7 8 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq24_layer0[0]) 0 -RZ(twoq_cost_seq24_layer0[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer0[0]) 0 3 -RZ(twoq_cost_seq9_layer0[0]) 7 -RZ(twoq_cost_seq9_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer0[0]) 7 4 -RZ(twoq_cost_seq19_layer0[0]) 1 -RZ(twoq_cost_seq19_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer0[0]) 1 4 -RZ(twoq_cost_seq14_layer0[0]) 5 -RZ(twoq_cost_seq14_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer0[0]) 5 4 -RZ(twoq_cost_seq28_layer0[0]) 3 -RZ(twoq_cost_seq28_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer0[0]) 3 6 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq12_layer0[0]) 2 -RZ(twoq_cost_seq12_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer0[0]) 2 5 -RZ(twoq_cost_seq3_layer0[0]) 1 -RZ(twoq_cost_seq3_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer0[0]) 1 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq25_layer0[0]) 3 -RZ(twoq_cost_seq25_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer0[0]) 3 6 -RZ(twoq_cost_seq4_layer0[0]) 1 -RZ(twoq_cost_seq4_layer0[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer0[0]) 1 0 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq22_layer0[0]) 7 -RZ(twoq_cost_seq22_layer0[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer0[0]) 7 8 -RZ(twoq_cost_seq8_layer0[0]) 3 -RZ(twoq_cost_seq8_layer0[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer0[0]) 3 6 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq5_layer0[0]) 1 -RZ(twoq_cost_seq5_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer0[0]) 1 4 -RZ(twoq_cost_seq16_layer0[0]) 5 -RZ(twoq_cost_seq16_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer0[0]) 5 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq13_layer0[0]) 3 -RZ(twoq_cost_seq13_layer0[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer0[0]) 3 4 -RZ(twoq_cost_seq20_layer0[0]) 2 -RZ(twoq_cost_seq20_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer0[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq17_layer0[0]) 8 -RZ(twoq_cost_seq17_layer0[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer0[0]) 8 5 -RX(oneq_mixer_seq0_layer0[0]) 1 -RX(oneq_mixer_seq1_layer0[0]) 6 -RX(oneq_mixer_seq2_layer0[0]) 4 -RX(oneq_mixer_seq3_layer0[0]) 5 -RX(oneq_mixer_seq4_layer0[0]) 8 -RX(oneq_mixer_seq5_layer0[0]) 3 -RX(oneq_mixer_seq6_layer0[0]) 7 -RX(oneq_mixer_seq7_layer0[0]) 0 -RX(oneq_mixer_seq8_layer0[0]) 2 -RZ(twoq_cost_seq17_layer1[0]) 8 -RZ(twoq_cost_seq17_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq17_layer1[0]) 8 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 2 5 -CZ 2 5 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq20_layer1[0]) 2 -RZ(twoq_cost_seq20_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq20_layer1[0]) 2 5 -RZ(twoq_cost_seq13_layer1[0]) 3 -RZ(twoq_cost_seq13_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq13_layer1[0]) 3 4 -RZ(1.5707963267948966) 5 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 5 4 -CZ 5 4 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq16_layer1[0]) 5 -RZ(twoq_cost_seq16_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq16_layer1[0]) 5 4 -RZ(twoq_cost_seq5_layer1[0]) 1 -RZ(twoq_cost_seq5_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq5_layer1[0]) 1 4 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 7 4 -CZ 7 4 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq8_layer1[0]) 3 -RZ(twoq_cost_seq8_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq8_layer1[0]) 3 6 -RZ(twoq_cost_seq22_layer1[0]) 7 -RZ(twoq_cost_seq22_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq22_layer1[0]) 7 8 -RZ(1.5707963267948966) 7 -RZ(1.5707963267948966) 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -XY(3.141592653589793) 7 6 -CZ 7 6 -RZ(3.141592653589793) 7 -RX(1.5707963267948966) 7 -RZ(3.141592653589793) 7 -RX(-1.5707963267948966) 7 -RZ(3.141592653589793) 6 -RX(1.5707963267948966) 6 -RZ(3.141592653589793) 6 -RX(-1.5707963267948966) 6 -RZ(twoq_cost_seq4_layer1[0]) 1 -RZ(twoq_cost_seq4_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq4_layer1[0]) 1 0 -RZ(twoq_cost_seq25_layer1[0]) 3 -RZ(twoq_cost_seq25_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq25_layer1[0]) 3 6 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -XY(3.141592653589793) 0 3 -CZ 0 3 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(twoq_cost_seq3_layer1[0]) 1 -RZ(twoq_cost_seq3_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq3_layer1[0]) 1 0 -RZ(twoq_cost_seq12_layer1[0]) 2 -RZ(twoq_cost_seq12_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq12_layer1[0]) 2 5 -RZ(1.5707963267948966) 2 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 2 1 -CZ 2 1 -RZ(3.141592653589793) 2 -RX(1.5707963267948966) 2 -RZ(3.141592653589793) 2 -RX(-1.5707963267948966) 2 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(twoq_cost_seq28_layer1[0]) 3 -RZ(twoq_cost_seq28_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq28_layer1[0]) 3 6 -RZ(twoq_cost_seq14_layer1[0]) 5 -RZ(twoq_cost_seq14_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq14_layer1[0]) 5 4 -RZ(twoq_cost_seq19_layer1[0]) 1 -RZ(twoq_cost_seq19_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq19_layer1[0]) 1 4 -RZ(twoq_cost_seq9_layer1[0]) 7 -RZ(twoq_cost_seq9_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq9_layer1[0]) 7 4 -RZ(twoq_cost_seq24_layer1[0]) 0 -RZ(twoq_cost_seq24_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq24_layer1[0]) 0 3 -RZ(1.5707963267948966) 3 -RZ(1.5707963267948966) 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -XY(3.141592653589793) 3 4 -CZ 3 4 -RZ(3.141592653589793) 3 -RX(1.5707963267948966) 3 -RZ(3.141592653589793) 3 -RX(-1.5707963267948966) 3 -RZ(3.141592653589793) 4 -RX(1.5707963267948966) 4 -RZ(3.141592653589793) 4 -RX(-1.5707963267948966) 4 -RZ(twoq_cost_seq7_layer1[0]) 7 -RZ(twoq_cost_seq7_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq7_layer1[0]) 7 8 -RZ(twoq_cost_seq0_layer1[0]) 2 -RZ(twoq_cost_seq0_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 2 5 -RZ(twoq_cost_seq15_layer1[0]) 5 -RZ(twoq_cost_seq15_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq15_layer1[0]) 5 4 -RZ(1.5707963267948966) 8 -RZ(1.5707963267948966) 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -XY(3.141592653589793) 8 5 -CZ 8 5 -RZ(3.141592653589793) 8 -RX(1.5707963267948966) 8 -RZ(3.141592653589793) 8 -RX(-1.5707963267948966) 8 -RZ(3.141592653589793) 5 -RX(1.5707963267948966) 5 -RZ(3.141592653589793) 5 -RX(-1.5707963267948966) 5 -RZ(twoq_cost_seq6_layer1[0]) 7 -RZ(twoq_cost_seq6_layer1[0]) 8 -CPHASE(-2*twoq_cost_seq6_layer1[0]) 7 8 -RZ(twoq_cost_seq26_layer1[0]) 3 -RZ(twoq_cost_seq26_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq26_layer1[0]) 3 4 -RZ(twoq_cost_seq27_layer1[0]) 3 -RZ(twoq_cost_seq27_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq27_layer1[0]) 3 6 -RZ(twoq_cost_seq21_layer1[0]) 5 -RZ(twoq_cost_seq21_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq21_layer1[0]) 5 4 -RZ(twoq_cost_seq11_layer1[0]) 7 -RZ(twoq_cost_seq11_layer1[0]) 6 -CPHASE(-2*twoq_cost_seq11_layer1[0]) 7 6 -RZ(twoq_cost_seq2_layer1[0]) 2 -RZ(twoq_cost_seq2_layer1[0]) 5 -CPHASE(-2*twoq_cost_seq2_layer1[0]) 2 5 -RZ(twoq_cost_seq10_layer1[0]) 7 -RZ(twoq_cost_seq10_layer1[0]) 4 -CPHASE(-2*twoq_cost_seq10_layer1[0]) 7 4 -RZ(twoq_cost_seq1_layer1[0]) 2 -RZ(twoq_cost_seq1_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq1_layer1[0]) 2 1 -RZ(twoq_cost_seq18_layer1[0]) 1 -RZ(twoq_cost_seq18_layer1[0]) 0 -CPHASE(-2*twoq_cost_seq18_layer1[0]) 1 0 -RZ(twoq_cost_seq23_layer1[0]) 0 -RZ(twoq_cost_seq23_layer1[0]) 3 -CPHASE(-2*twoq_cost_seq23_layer1[0]) 0 3 -RX(oneq_mixer_seq0_layer1[0]) 2 -RX(oneq_mixer_seq1_layer1[0]) 7 -RX(oneq_mixer_seq2_layer1[0]) 8 -RX(oneq_mixer_seq3_layer1[0]) 1 -RX(oneq_mixer_seq4_layer1[0]) 5 -RX(oneq_mixer_seq5_layer1[0]) 0 -RX(oneq_mixer_seq6_layer1[0]) 3 -RX(oneq_mixer_seq7_layer1[0]) 4 -RX(oneq_mixer_seq8_layer1[0]) 6 -MEASURE 2 ro[0] -MEASURE 7 ro[1] -MEASURE 8 ro[2] -MEASURE 1 ro[3] -MEASURE 5 ro[4] -MEASURE 0 ro[5] -MEASURE 3 ro[6] -MEASURE 4 ro[7] -MEASURE 6 ro[8] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq2_layer0 REAL[1] -DECLARE oneq_mixer_seq2_layer1 REAL[1] -DECLARE oneq_mixer_seq3_layer0 REAL[1] -DECLARE oneq_mixer_seq3_layer1 REAL[1] -DECLARE oneq_mixer_seq4_layer0 REAL[1] -DECLARE oneq_mixer_seq4_layer1 REAL[1] -DECLARE oneq_mixer_seq5_layer0 REAL[1] -DECLARE oneq_mixer_seq5_layer1 REAL[1] -DECLARE oneq_mixer_seq6_layer0 REAL[1] -DECLARE oneq_mixer_seq6_layer1 REAL[1] -DECLARE oneq_mixer_seq7_layer0 REAL[1] -DECLARE oneq_mixer_seq7_layer1 REAL[1] -DECLARE oneq_mixer_seq8_layer0 REAL[1] -DECLARE oneq_mixer_seq8_layer1 REAL[1] -DECLARE ro BIT[9] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -DECLARE twoq_cost_seq10_layer0 REAL[1] -DECLARE twoq_cost_seq10_layer1 REAL[1] -DECLARE twoq_cost_seq11_layer0 REAL[1] -DECLARE twoq_cost_seq11_layer1 REAL[1] -DECLARE twoq_cost_seq12_layer0 REAL[1] -DECLARE twoq_cost_seq12_layer1 REAL[1] -DECLARE twoq_cost_seq13_layer0 REAL[1] -DECLARE twoq_cost_seq13_layer1 REAL[1] -DECLARE twoq_cost_seq14_layer0 REAL[1] -DECLARE twoq_cost_seq14_layer1 REAL[1] -DECLARE twoq_cost_seq15_layer0 REAL[1] -DECLARE twoq_cost_seq15_layer1 REAL[1] -DECLARE twoq_cost_seq16_layer0 REAL[1] -DECLARE twoq_cost_seq16_layer1 REAL[1] -DECLARE twoq_cost_seq17_layer0 REAL[1] -DECLARE twoq_cost_seq17_layer1 REAL[1] -DECLARE twoq_cost_seq18_layer0 REAL[1] -DECLARE twoq_cost_seq18_layer1 REAL[1] -DECLARE twoq_cost_seq19_layer0 REAL[1] -DECLARE twoq_cost_seq19_layer1 REAL[1] -DECLARE twoq_cost_seq1_layer0 REAL[1] -DECLARE twoq_cost_seq1_layer1 REAL[1] -DECLARE twoq_cost_seq20_layer0 REAL[1] -DECLARE twoq_cost_seq20_layer1 REAL[1] -DECLARE twoq_cost_seq21_layer0 REAL[1] -DECLARE twoq_cost_seq21_layer1 REAL[1] -DECLARE twoq_cost_seq22_layer0 REAL[1] -DECLARE twoq_cost_seq22_layer1 REAL[1] -DECLARE twoq_cost_seq23_layer0 REAL[1] -DECLARE twoq_cost_seq23_layer1 REAL[1] -DECLARE twoq_cost_seq24_layer0 REAL[1] -DECLARE twoq_cost_seq24_layer1 REAL[1] -DECLARE twoq_cost_seq25_layer0 REAL[1] -DECLARE twoq_cost_seq25_layer1 REAL[1] -DECLARE twoq_cost_seq26_layer0 REAL[1] -DECLARE twoq_cost_seq26_layer1 REAL[1] -DECLARE twoq_cost_seq27_layer0 REAL[1] -DECLARE twoq_cost_seq27_layer1 REAL[1] -DECLARE twoq_cost_seq28_layer0 REAL[1] -DECLARE twoq_cost_seq28_layer1 REAL[1] -DECLARE twoq_cost_seq2_layer0 REAL[1] -DECLARE twoq_cost_seq2_layer1 REAL[1] -DECLARE twoq_cost_seq3_layer0 REAL[1] -DECLARE twoq_cost_seq3_layer1 REAL[1] -DECLARE twoq_cost_seq4_layer0 REAL[1] -DECLARE twoq_cost_seq4_layer1 REAL[1] -DECLARE twoq_cost_seq5_layer0 REAL[1] -DECLARE twoq_cost_seq5_layer1 REAL[1] -DECLARE twoq_cost_seq6_layer0 REAL[1] -DECLARE twoq_cost_seq6_layer1 REAL[1] -DECLARE twoq_cost_seq7_layer0 REAL[1] -DECLARE twoq_cost_seq7_layer1 REAL[1] -DECLARE twoq_cost_seq8_layer0 REAL[1] -DECLARE twoq_cost_seq8_layer1 REAL[1] -DECLARE twoq_cost_seq9_layer0 REAL[1] -DECLARE twoq_cost_seq9_layer1 REAL[1] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(1*twoq_cost_seq11_layer0[0]) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(1*twoq_cost_seq10_layer0[0]) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(1*twoq_cost_seq10_layer0[0]) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq23_layer0[0]) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(1*twoq_cost_seq23_layer0[0]) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi) 3 -CZ 0 3 -RZ(pi+((-1*twoq_cost_seq10_layer0[0])+(1*twoq_cost_seq11_layer0[0]))) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi+((1*twoq_cost_seq6_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(1*twoq_cost_seq6_layer0[0]) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-pi+((-1*twoq_cost_seq23_layer0[0])+(1*twoq_cost_seq18_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(1*twoq_cost_seq18_layer0[0]) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -RZ(pi/2) 1 -CZ 1 0 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(1*twoq_cost_seq2_layer0[0]) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq10_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ((-pi/2)+((-1*twoq_cost_seq18_layer0[0])+(1*twoq_cost_seq1_layer0[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(1*twoq_cost_seq1_layer0[0]) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi/2) 1 -RZ(pi/2) 2 -CZ 2 1 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(-pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq23_layer0[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer0[0])+(-1*twoq_cost_seq11_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 6 -CZ 3 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(-pi+(1*twoq_cost_seq27_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 3 6 -RZ((-pi/2)+((-1*twoq_cost_seq1_layer0[0])+(1*twoq_cost_seq2_layer0[0]))) 2 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((1*twoq_cost_seq21_layer0[0])+(-1*twoq_cost_seq2_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq27_layer0[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer0[0])+(-1*twoq_cost_seq21_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(-pi) 3 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+(1*twoq_cost_seq26_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 4 -CZ 3 4 -RZ(7.853981633974483+(-1*twoq_cost_seq21_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq6_layer0[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((-1*twoq_cost_seq2_layer0[0])+(1*twoq_cost_seq0_layer0[0]))) 2 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-pi+((1*twoq_cost_seq15_layer0[0])+(-1*twoq_cost_seq26_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq15_layer0[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((pi/2)+(-1*twoq_cost_seq26_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(pi+((1*twoq_cost_seq7_layer0[0])+(-1*twoq_cost_seq6_layer0[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-pi/2) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer0[0])+(-1*twoq_cost_seq18_layer0[0]))) 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer0[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq27_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq7_layer0[0])+(1*twoq_cost_seq9_layer0[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi+((1*twoq_cost_seq0_layer0[0])+(-1*twoq_cost_seq15_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi/2) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq1_layer0[0]))) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer0[0])+(-1*twoq_cost_seq9_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer0[0])) 2 -RZ(-1.6077302758299201) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.6077302758299201) 2 -RZ(7.853981633974483+(-1*twoq_cost_seq19_layer0[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(2.2216554087607694) 1 -XY(pi) 2 1 -CZ 2 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq14_layer0[0])+(-1*twoq_cost_seq19_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer0[0])+(1*twoq_cost_seq14_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ((2*pi)+((-1*twoq_cost_seq24_layer0[0])+(1*twoq_cost_seq3_layer0[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1.2490457723982549) 0 -RZ(-1.8398744896580477) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.194265045123284+(1*twoq_cost_seq3_layer0[0])) 1 -CZ 0 1 -RZ(1.8925468811915391) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(1*twoq_cost_seq3_layer0[0]) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(4.3906384259880475) 1 -CZ 1 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+((1*twoq_cost_seq28_layer0[0])+(-1*twoq_cost_seq24_layer0[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer0[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(10.075637042735252+(-1*twoq_cost_seq28_layer0[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq25_layer0[0])+(-1*twoq_cost_seq28_layer0[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer0[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ((3*pi)+(-1*twoq_cost_seq25_layer0[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.792451735555666) 6 -RZ((pi/2)+(-1*twoq_cost_seq9_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq22_layer0[0])+(-1*twoq_cost_seq7_layer0[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(-0.9199372448290238) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(2.2216554087607694+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-3*pi)+((1*twoq_cost_seq4_layer0[0])+(-1*twoq_cost_seq3_layer0[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(0.4160894281836815) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(3.557682081773475+(1*twoq_cost_seq22_layer0[0])) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer0[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(9.155699797906228+(-1*twoq_cost_seq14_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.523373572692515) 4 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer0[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq12_layer0[0])) 2 -RZ(pi+((1*twoq_cost_seq12_layer0[0])+(-1*twoq_cost_seq14_layer0[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer0[0])+(-1*twoq_cost_seq25_layer0[0]))) 3 -RZ(-0.9199372448290238) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(2.2216554087607694+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq5_layer0[0])+(-1*twoq_cost_seq4_layer0[0]))) 1 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq20_layer0[0]))) 2 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq16_layer0[0])+(-1*twoq_cost_seq5_layer0[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer0[0])+(1*twoq_cost_seq16_layer0[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq16_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(pi+((-1*twoq_cost_seq8_layer0[0])+(1*twoq_cost_seq13_layer0[0]))) 3 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq5_layer0[0]) 3 -RX(-pi/2) 3 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq13_layer0[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq2_layer0[0]) 4 -RX(-pi/2) 4 -RZ((-pi/2)+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq13_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq8_layer0[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq1_layer0[0]) 6 -RX(-pi/2) 6 -RZ((-pi/2)+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq13_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(0.4160894281836815) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(3.557682081773475+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer0[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-0.9199372448290238) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((-1*twoq_cost_seq22_layer0[0])+(1*twoq_cost_seq17_layer0[0]))) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 8 -CZ 5 8 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq3_layer0[0]) 5 -RX(-pi/2) 5 -RZ((-pi/2)+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq17_layer0[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq4_layer0[0]) 8 -RX(-pi/2) 8 -RZ((pi/2)+(1*twoq_cost_seq17_layer1[0])) 8 -CZ 8 5 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq17_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi) 5 -CZ 8 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq5_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq0_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq5_layer1[0])) 1 -RZ(-pi) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ((pi/2)+(1*oneq_mixer_seq8_layer0[0])) 2 -RZ(pi/2) 2 -RX(pi/2) 2 -RZ(pi/2) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(3.792451735555666+(-1*twoq_cost_seq17_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(-1.8398744896580475) 5 -XY(pi) 2 5 -CZ 2 5 -RZ(-1.8398744896580477) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 2 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq20_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq20_layer1[0]))) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(7.853981633974483+(-1*twoq_cost_seq20_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -XY(pi) 5 4 -CZ 5 4 -RZ(-1.8398744896580477) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq16_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq16_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(-1*twoq_cost_seq4_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq7_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq5_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq5_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq5_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -RZ(-pi) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ((pi/2)+(1*oneq_mixer_seq6_layer0[0])) 7 -RZ(pi/2) 7 -RX(pi/2) 7 -RZ(pi/2) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -XY(pi) 7 4 -CZ 7 4 -RZ(pi+((1*twoq_cost_seq12_layer1[0])+(-1*twoq_cost_seq16_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq12_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi+((1*twoq_cost_seq8_layer1[0])+(-1*twoq_cost_seq13_layer1[0]))) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq8_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(-0.9199372448290238) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(2.2216554087607694+(1*twoq_cost_seq22_layer1[0])) 7 -RZ(-pi+((1*twoq_cost_seq22_layer1[0])+(-1*twoq_cost_seq17_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq22_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi+((1*twoq_cost_seq4_layer1[0])+(-1*twoq_cost_seq5_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq4_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(9.155699797906228+(-1*twoq_cost_seq8_layer1[0])) 6 -RZ(2.2216554087607694) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.523373572692515) 6 -RZ(10.075637042735252+(-1*twoq_cost_seq22_layer1[0])) 7 -RZ(2.2216554087607694) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(-1.8398744896580475) 7 -XY(pi) 7 6 -CZ 7 6 -RZ(pi+((1*twoq_cost_seq25_layer1[0])+(-1*twoq_cost_seq8_layer1[0]))) 3 -RZ(0.4160894281836815) 6 -RX(pi/2) 6 -RZ(pi) 6 -RX(-pi/2) 6 -RZ(3.557682081773475+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq25_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((1*twoq_cost_seq3_layer1[0])+(-1*twoq_cost_seq4_layer1[0]))) 1 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(5.094169899487412+(-1*twoq_cost_seq4_layer1[0])) 0 -RZ(2.2216554087607694) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(-0.5381563257263018) 0 -RZ(12.297292451496022+(-1*twoq_cost_seq25_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(0.3817809191027218) 3 -XY(pi) 0 3 -CZ 0 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq28_layer1[0])+(-1*twoq_cost_seq25_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(0.4160894281836815) 0 -RX(pi/2) 0 -RZ(pi) 0 -RX(-pi/2) 0 -RZ(3.557682081773475+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -CZ 1 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+(1*twoq_cost_seq3_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq28_layer1[0])) 3 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq28_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(5.094169899487412+(-1*twoq_cost_seq3_layer1[0])) 1 -RZ(2.2216554087607694) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(-0.5381563257263018) 1 -RZ(10.075637042735252+(-1*twoq_cost_seq12_layer1[0])) 2 -RZ(2.2216554087607694) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(-1.8398744896580475) 2 -XY(pi) 2 1 -CZ 2 1 -RZ(-0.9199372448290238) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq12_layer1[0])+(1*twoq_cost_seq14_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq14_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq24_layer1[0])+(-1*twoq_cost_seq3_layer1[0]))) 0 -RZ(pi+((-1*twoq_cost_seq28_layer1[0])+(1*twoq_cost_seq24_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq24_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(0.4160894281836815) 1 -RX(pi/2) 1 -RZ(pi) 1 -RX(-pi/2) 1 -RZ(3.557682081773475+(1*twoq_cost_seq19_layer1[0])) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq19_layer1[0])+(-1*twoq_cost_seq14_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq19_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 1 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq9_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 7 -RX(pi/2) 7 -RZ(pi) 7 -RX(-pi/2) 7 -RZ(1.3017181639317457+(1*twoq_cost_seq9_layer1[0])) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq9_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq22_layer1[0]))) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(10.075637042735252+(-1*twoq_cost_seq24_layer1[0])) 3 -RZ(2.2216554087607694) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(-1.8398744896580475) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(7.853981633974483+(-1*twoq_cost_seq9_layer1[0])) 4 -RZ(2.2216554087607694) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(2.2216554087607694) 4 -XY(pi) 3 4 -CZ 3 4 -RZ(-0.9199372448290238) 2 -RX(pi/2) 2 -RZ(pi) 2 -RX(-pi/2) 2 -RZ(2.2216554087607694+(1*twoq_cost_seq0_layer1[0])) 2 -RZ(pi+((-1*twoq_cost_seq14_layer1[0])+(1*twoq_cost_seq0_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(0.4160894281836815) 4 -RX(pi/2) 4 -RZ(pi) 4 -RX(-pi/2) 4 -RZ(3.557682081773475+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq15_layer1[0]))) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq15_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((1*twoq_cost_seq7_layer1[0])+(-1*twoq_cost_seq9_layer1[0]))) 7 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq7_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(-0.9199372448290238) 3 -RX(pi/2) 3 -RZ(pi) 3 -RX(-pi/2) 3 -RZ(2.2216554087607694+(1*twoq_cost_seq26_layer1[0])) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq26_layer1[0])+(-1*twoq_cost_seq15_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(pi) 3 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq26_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -CZ 4 3 -RZ(7.853981633974483+(-1*twoq_cost_seq15_layer1[0])) 5 -RZ(2.2216554087607694) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(2.2216554087607694) 5 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(7.853981633974483+(-1*twoq_cost_seq7_layer1[0])) 8 -RZ(2.2216554087607694) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694) 8 -XY(pi) 8 5 -CZ 8 5 -RZ(pi+((1*twoq_cost_seq6_layer1[0])+(-1*twoq_cost_seq7_layer1[0]))) 7 -RZ(-0.9199372448290238) 8 -RX(pi/2) 8 -RZ(pi) 8 -RX(-pi/2) 8 -RZ(2.2216554087607694+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(pi+(1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -CZ 8 7 -RZ(pi) 8 -RX(pi/2) 8 -RZ(pi/2) 8 -RX(-pi/2) 8 -RZ(((3*pi)/2)+(-1*twoq_cost_seq6_layer1[0])) 8 -RX(pi/2) 8 -RZ(1*oneq_mixer_seq2_layer1[0]) 8 -RX(-pi/2) 8 -RZ(-pi/2) 8 -MEASURE 8 ro[2] -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq27_layer1[0])+(-1*twoq_cost_seq28_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi) 3 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq27_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 3 -RZ(pi+((-1*twoq_cost_seq6_layer1[0])+(1*twoq_cost_seq11_layer1[0]))) 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq21_layer1[0])+(-1*twoq_cost_seq26_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(-1.8398744896580477) 5 -RX(pi/2) 5 -RZ(pi) 5 -RX(-pi/2) 5 -RZ(1.3017181639317457+(1*twoq_cost_seq21_layer1[0])) 5 -CZ 4 5 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq21_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 5 -CZ 4 5 -RZ(pi+((-1*twoq_cost_seq0_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 2 -RZ(pi+((-1*twoq_cost_seq21_layer1[0])+(1*twoq_cost_seq2_layer1[0]))) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(pi+(1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -CZ 5 2 -RZ(pi) 5 -RX(pi/2) 5 -RZ(pi/2) 5 -RX(-pi/2) 5 -RZ(((3*pi)/2)+(-1*twoq_cost_seq2_layer1[0])) 5 -RX(pi/2) 5 -RZ(1*oneq_mixer_seq4_layer1[0]) 5 -RX(-pi/2) 5 -RZ(-pi/2) 5 -MEASURE 5 ro[4] -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+((1*twoq_cost_seq11_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi+(1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(pi) 7 -CZ 6 7 -RZ(pi) 6 -RX(pi/2) 6 -RZ(pi/2) 6 -RX(-pi/2) 6 -RZ(((3*pi)/2)+(-1*twoq_cost_seq11_layer1[0])) 6 -RX(pi/2) 6 -RZ(1*oneq_mixer_seq8_layer1[0]) 6 -RX(-pi/2) 6 -RZ(-pi/2) 6 -MEASURE 6 ro[8] -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((1*twoq_cost_seq10_layer1[0])+(-1*twoq_cost_seq21_layer1[0]))) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+((-1*twoq_cost_seq11_layer1[0])+(1*twoq_cost_seq10_layer1[0]))) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi+(1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(pi) 7 -CZ 4 7 -RZ(pi) 4 -RX(pi/2) 4 -RZ(pi/2) 4 -RX(-pi/2) 4 -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 4 -RX(pi/2) 4 -RZ(1*oneq_mixer_seq7_layer1[0]) 4 -RX(-pi/2) 4 -RZ(-pi/2) 4 -MEASURE 4 ro[7] -RZ(pi+((1*twoq_cost_seq1_layer1[0])+(-1*twoq_cost_seq19_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((-1*twoq_cost_seq2_layer1[0])+(1*twoq_cost_seq1_layer1[0]))) 2 -CZ 1 2 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(-pi) 1 -CZ 2 1 -RZ((pi/2)+(-1*twoq_cost_seq1_layer1[0])) 2 -RX(pi/2) 2 -RZ(1*oneq_mixer_seq0_layer1[0]) 2 -RX(-pi/2) 2 -RZ(-pi/2) 2 -MEASURE 2 ro[0] -RZ(((3*pi)/2)+(-1*twoq_cost_seq10_layer1[0])) 7 -RX(pi/2) 7 -RZ(1*oneq_mixer_seq1_layer1[0]) 7 -RX(-pi/2) 7 -RZ(-pi/2) 7 -MEASURE 7 ro[1] -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq24_layer1[0]))) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+((1*twoq_cost_seq18_layer1[0])+(-1*twoq_cost_seq1_layer1[0]))) 1 -CZ 0 1 -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi+(1*twoq_cost_seq18_layer1[0])) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(pi) 0 -RZ(pi) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq18_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq3_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[3] -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(-pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq18_layer1[0]))) 0 -RZ(pi+((1*twoq_cost_seq23_layer1[0])+(-1*twoq_cost_seq27_layer1[0]))) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(pi+(1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -CZ 3 0 -RZ(pi) 3 -RX(pi/2) 3 -RZ(pi/2) 3 -RX(-pi/2) 3 -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 3 -RX(pi/2) 3 -RZ(1*oneq_mixer_seq6_layer1[0]) 3 -RX(-pi/2) 3 -RZ(-pi/2) 3 -MEASURE 3 ro[6] -RZ(((3*pi)/2)+(-1*twoq_cost_seq23_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq5_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[5] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(3.1297345082211576+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(-3.1297345082211576+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RZ(1.5707963267948966) 1 -RZ(1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -XY(3.141592653589793) 1 0 -CZ 1 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RZ(1.5707963267948966) 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -XY(3.141592653589793) 0 1 -CZ 0 1 -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(3.141592653589793) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(3.141592653589793) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ(((3*pi)/2)+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(((-3*pi)/2)+(1*twoq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(2.7040000888999507+(1*oneq_cost_seq1_layer0[0])) 1 -RZ(3.579185218279636+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(6.4096392873710375+(-1*twoq_cost_seq0_layer1[0])) 1 -RZ(-1.6972503069863476+(1*oneq_cost_seq1_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(7.853981633974483+(-1*twoq_cost_seq0_layer1[0])) 0 -RZ(((-3*pi)/2)+(1*oneq_cost_seq0_layer1[0])) 0 -RZ(pi/2) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(3.141592653589793) 0 -RX(1.5707963267948966) 0 -RZ(1.5707963267948966) 0 -RX(-1.5707963267948966) 0 -RZ(3.141592653589793) 1 -RX(1.5707963267948966) 1 -RZ(1.5707963267948966) 1 -RX(-1.5707963267948966) 1 -RZ(oneq_cost_seq0_layer0[0]) 0 -RZ(oneq_cost_seq1_layer0[0]) 1 -RZ(twoq_cost_seq0_layer0[0]) 0 -RZ(twoq_cost_seq0_layer0[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer0[0]) 0 1 -RX(oneq_mixer_seq0_layer0[0]) 0 -RX(oneq_mixer_seq1_layer0[0]) 1 -RZ(oneq_cost_seq0_layer1[0]) 0 -RZ(oneq_cost_seq1_layer1[0]) 1 -RZ(twoq_cost_seq0_layer1[0]) 0 -RZ(twoq_cost_seq0_layer1[0]) 1 -CPHASE(-2*twoq_cost_seq0_layer1[0]) 0 1 -RX(oneq_mixer_seq0_layer1[0]) 0 -RX(oneq_mixer_seq1_layer1[0]) 1 -MEASURE 0 ro[0] -MEASURE 1 ro[1] -DECLARE oneq_cost_seq0_layer0 REAL[1] -DECLARE oneq_cost_seq0_layer1 REAL[1] -DECLARE oneq_cost_seq1_layer0 REAL[1] -DECLARE oneq_cost_seq1_layer1 REAL[1] -DECLARE oneq_mixer_seq0_layer0 REAL[1] -DECLARE oneq_mixer_seq0_layer1 REAL[1] -DECLARE oneq_mixer_seq1_layer0 REAL[1] -DECLARE oneq_mixer_seq1_layer1 REAL[1] -DECLARE ro BIT[2] -DECLARE twoq_cost_seq0_layer0 REAL[1] -DECLARE twoq_cost_seq0_layer1 REAL[1] -RZ(pi) 0 -RX(pi/2) 0 -RZ(pi/2) 0 -RX(-pi/2) 0 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq0_layer0[0])) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ((1*twoq_cost_seq0_layer0[0])+(1*oneq_cost_seq1_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer0[0]) 0 -RX(-pi/2) 0 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq0_layer1[0]))) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer0[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer0[0]) 1 -RX(-pi/2) 1 -RZ((-pi/2)+((1*twoq_cost_seq0_layer1[0])+(1*oneq_cost_seq1_layer1[0]))) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(pi+(1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -CZ 1 0 -RZ(pi) 1 -RX(pi/2) 1 -RZ(pi/2) 1 -RX(-pi/2) 1 -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 1 -RX(pi/2) 1 -RZ(1*oneq_mixer_seq1_layer1[0]) 1 -RX(-pi/2) 1 -RZ(-pi/2) 1 -MEASURE 1 ro[1] -RZ(((3*pi)/2)+(-1*twoq_cost_seq0_layer1[0])) 0 -RX(pi/2) 0 -RZ(1*oneq_mixer_seq0_layer1[0]) 0 -RX(-pi/2) 0 -RZ(-pi/2) 0 -MEASURE 0 ro[0] -HALT From e17622d5977aa4256a5854aece5200e8f12cebc4 Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Wed, 13 Dec 2023 13:20:13 +0000 Subject: [PATCH 07/14] Changed deprecated expression into result.get_register_map() --- src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py index b3e4d714d..b8feadbfa 100644 --- a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py +++ b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py @@ -345,7 +345,7 @@ def get_counts(self, params: QAOAVariationalBaseParams, n_shots=None) -> dict: # TODO: check the endian (big or little) ordering of measurement outcomes meas_list = [ "".join(str(bit) for bit in bitstring) - for bitstring in result.readout_data["ro"] + for bitstring in result.get_register_map().get("ro") ] # Expose counts From ddf4668ceca3268e60c01fb31f24dfaaf249524d Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Mon, 8 Jan 2024 06:54:06 +0000 Subject: [PATCH 08/14] Remove debug files --- debug copy.txt | 15 --------------- debug.txt | 0 2 files changed, 15 deletions(-) delete mode 100644 debug copy.txt delete mode 100644 debug.txt diff --git a/debug copy.txt b/debug copy.txt deleted file mode 100644 index 977bd39c8..000000000 --- a/debug copy.txt +++ /dev/null @@ -1,15 +0,0 @@ -from openqaoa import create_device, QAOA -from openqaoa.problems import NumberPartition -rigetti_args = {"as_qvm": True, "execution_timeout":10, "compiler_timeout":100,} -device = create_device("qcs", name="Ankaa-1", **rigetti_args) -q = QAOA() -q.set_device(device) -np = NumberPartition(list(range(1,4))).qubo -q.compile(np) - - -rom pyquil.api import get_qc, ExecutionOptionsBuilder, ConnectionStrategy -from pyquil.quil import Program -qc = get_qc("Ankaa-1") -program = Program() -exe = qc.compile(program) \ No newline at end of file diff --git a/debug.txt b/debug.txt deleted file mode 100644 index e69de29bb..000000000 From 1cd1e42cd6870039564e2371b680d61417abc585 Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Mon, 8 Jan 2024 07:43:27 +0000 Subject: [PATCH 09/14] Replace QPU by QVM in circuit routing tests --- src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py b/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py index b2f103328..7cb7d4560 100644 --- a/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py +++ b/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py @@ -487,7 +487,7 @@ def routing_function_test1(device, problem_to_solve): ), ] - device_name_lst = ["2q-qvm", "3q-qvm", "Aspen-M-3"] + device_name_lst = ["2q-qvm", "3q-qvm", "9q-qvm"] shots = 2 seed = 1 From d655829a2bbc24bf7305b267a9376bda8c2f0bf0 Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Tue, 13 Feb 2024 03:51:01 +0000 Subject: [PATCH 10/14] Fix memory_map issue by simultaneous extraction of angle names and values --- .../backends/qaoa_pyquil_qpu.py | 127 +- .../tests/test_circuit_routing_pyquil.py | 1489 +++++++++-------- src/openqaoa-pyquil/tests/test_pyquil_qvm.py | 11 +- 3 files changed, 856 insertions(+), 771 deletions(-) diff --git a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py index b8feadbfa..0bea14e8b 100644 --- a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py +++ b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py @@ -2,7 +2,7 @@ import numpy as np from copy import deepcopy from pyquil import Program, gates, quilbase -from typing import List, Optional +from typing import List, Optional, Tuple import warnings from .devices import DevicePyquil @@ -16,7 +16,7 @@ from openqaoa.qaoa_components.variational_parameters.variational_baseparams import ( QAOAVariationalBaseParams, ) -from openqaoa.qaoa_components.ansatz_constructor.gatemap import RZZGateMap, SWAPGateMap +from openqaoa.qaoa_components.ansatz_constructor.gatemap import RZZGateMap, SWAPGateMap, GateMap from openqaoa.qaoa_components.ansatz_constructor.rotationangle import RotationAngle from openqaoa.utilities import generate_uuid @@ -153,7 +153,58 @@ def __init__( # check_edge_connectivity(self.prog_exe, device) - def qaoa_circuit(self, params: QAOAVariationalBaseParams) -> Program: + def obtain_angles_for_pauli_list( + self, input_gate_list: List[GateMap], params: QAOAVariationalBaseParams + ) -> List[Tuple[float, str]]: + """ + This method uses the pauli gate list information to obtain the pauli angles + from the VariationalBaseParams object. The floats in the list are in the order + of the input GateMaps list. + + Parameters + ---------- + input_gate_list: `List[GateMap]` + The GateMap list including rotation gates + params: `QAOAVariationalBaseParams` + The variational parameters(angles) to be assigned to the circuit gates + + Returns + ------- + angles_list: `List[Tuple[float, str]]` + The list of angles and their names in the order of gates in the `GateMap` list + """ + angle_list = [] + + for each_gate in input_gate_list: + gate_label_layer = each_gate.gate_label.layer + gate_label_seq = each_gate.gate_label.sequence + + if each_gate.gate_label.n_qubits == 2: + if each_gate.gate_label.type.value == "MIXER": + angle_list.append( + (params.mixer_2q_angles[gate_label_layer, gate_label_seq], + f"twoq_mixer_seq{gate_label_seq}_layer{gate_label_layer}") + ) + elif each_gate.gate_label.type.value == "COST": + angle_list.append( + (params.cost_2q_angles[gate_label_layer, gate_label_seq], + f"twoq_cost_seq{gate_label_seq}_layer{gate_label_layer}") + ) + elif each_gate.gate_label.n_qubits == 1: + if each_gate.gate_label.type.value == "MIXER": + angle_list.append( + (params.mixer_1q_angles[gate_label_layer, gate_label_seq], + f"oneq_mixer_seq{gate_label_seq}_layer{gate_label_layer}") + ) + elif each_gate.gate_label.type.value == "COST": + angle_list.append( + (params.cost_1q_angles[gate_label_layer, gate_label_seq], + f"oneq_cost_seq{gate_label_seq}_layer{gate_label_layer}") + ) + + return angle_list + + def qaoa_circuit(self, params: QAOAVariationalBaseParams) -> Tuple[Program, dict]: """ Injects angles into created executable parametric circuit. @@ -165,6 +216,8 @@ def qaoa_circuit(self, params: QAOAVariationalBaseParams) -> Program: ------- `pyquil.Program` A pyquil.Program (executable) object. + dict + A dictionary of the memory map for the program. """ parametric_circuit = deepcopy(self.parametric_circuit) # declare the read-out register @@ -190,24 +243,37 @@ def qaoa_circuit(self, params: QAOAVariationalBaseParams) -> Program: # prog_exe = self.device.quantum_computer.compiler.native_quil_to_executable( # native # ) - - angles_list = np.array( - self.obtain_angles_for_pauli_list(self.abstract_circuit, params), - dtype=float, - ) - angle_declarations = list(parametric_circuit.declarations.keys()) + angle_values_and_names= self.obtain_angles_for_pauli_list(self.abstract_circuit, params) + # angles_list = np.array( + # angle_values, + # dtype=float, + # ) + from pprint import pprint + # print("angle_list") + # pprint(angles_list) + angle_declarations = list(parametric_circuit.declarations) + print("angle_declarations") + pprint(angle_declarations) angle_declarations.remove("ro") - for i, param_name in enumerate(angle_declarations): - parametric_circuit.declare(param_name, "REAL") + # for i, param_name in enumerate(angle_declarations): + + # memory_map = {param_name : [angles_list[i]] for i, param_name in enumerate(angle_declarations)} + memory_map = {value_name[1] : [value_name[0]] for value_name in angle_values_and_names} + from pprint import pprint + # for i, param_name in enumerate(angle_declarations): + # parametric_circuit.declare(param_name, "REAL") + + print(f"\n\nmemory map in qaoa_circuit\n") + pprint(memory_map) f = open("debug.txt", "a") - f.write(f"{parametric_circuit}") + f.write(f"\n memory map in qaoa_circuit\n{memory_map}\n") f.close() prog_exe = self.device.quantum_computer.compile(parametric_circuit) - return prog_exe + return prog_exe, memory_map @property def parametric_qaoa_circuit(self) -> Program: @@ -316,28 +382,37 @@ def get_counts(self, params: QAOAVariationalBaseParams, n_shots=None) -> dict: A dictionary with the bitstring as the key and the number of counts as its value. """ - executable_program = self.qaoa_circuit(params) - - angles_list = np.array( - self.obtain_angles_for_pauli_list(self.abstract_circuit, params), - dtype=float, - ) - angle_declarations = list(executable_program.declarations.keys()) + # parametric_circuit = self.parametric_circuit + executable_program, memory_map = self.qaoa_circuit(params) + # f = open("debug.txt", "a") + # f.write(f"abstract_circuit\n{self.abstract_circuit}\n\n") + # f.close() - angle_declarations.remove("ro") + # angles_list = np.array( + # self.obtain_angles_for_pauli_list(self.abstract_circuit, params), + # dtype=float, + # ) + # angle_declarations = list(parametric_circuit.declarations.keys()) + # f = open("debug.txt", "a") + # f.write(f"angles_list\n{angles_list}\n") + # f.write(f"angles_declaration\n{angle_declarations}\n\n") + # f.close() + + # angle_declarations.remove("ro") + # f = open("debug.txt", "a") + # f.write(f"full_program\n{executable_program}\n\n") + # f.close() + # memory_map = {param_name : [angles_list[i]] for i, param_name in enumerate(angle_declarations)} + f = open("debug.txt", "a") - f.write(f"{executable_program}") + f.write(f"memory_map in get_counts():\n{memory_map}\n") f.close() - memory_map = None - for i, param_name in enumerate(angle_declarations): - memory_map = {param_name : [angles_list[i]]} # if n_shots is given change the number of shots if n_shots is not None: executable_program.wrap_in_numshots_loop(n_shots) - result = self.device.quantum_computer.run(executable_program, memory_map=memory_map) # we create an uuid for the job self.job_id = generate_uuid() diff --git a/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py b/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py index 7cb7d4560..4e856fbd3 100644 --- a/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py +++ b/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py @@ -26,418 +26,427 @@ class TestingQAOAPyquilQVM_QR(unittest.TestCase): For all of these tests, qvm and quilc must be running. """ - # def test_no_swap(self): - # """ - # Tests that QAOADescriptor with a trivial `routing_function` input (with no swaps) returns identical - # results as QAOADescriptor with no `routing_function` input, by comparing output of seeded QVM run. - # Different values of p, arguments, and cost hamiltonian coefficients are tested. - - # """ - - # def routing_function_test1(device, problem_to_solve): - # # tuples ordered from 0,n, both SWAP and ising gates - # gate_list_indices = [[0, 1]] - - # # True for SWAP - # swap_mask = [False] - - # # {QPU: (0 to n index)} - # initial_physical_to_logical_mapping = {0: 0, 1: 1} - - # # 0 to n, permuted - # final_mapping = [0, 1] - - # return ( - # gate_list_indices, - # swap_mask, - # initial_physical_to_logical_mapping, - # final_mapping, - # ) - - # args_lst = [ - # [np.pi / 8, np.pi / 4], - # [np.pi / 3.5, np.pi / 3], - # [np.pi / 8, np.pi / 4], - # [np.pi / 3.5, np.pi / 3], - # [1, 2, 3, 4], - # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - # [1, 2, 3, 4], - # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - # ] - # p_lst = [1, 1, 1, 1, 2, 2, 2, 2] - # cost_hamil_lst = [ - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [0.5, 0, 2], - # 0.7, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1.2, 1], - # 0, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [0.5, 0, 2], - # 0.7, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1.2, 1], - # 0, - # ), - # ] - # shots = 2 - # seed = 1 - - # device_pyquil = DevicePyquil( - # device_name="2q-qvm", as_qvm=True, execution_timeout=5, compiler_timeout=5 - # ) - # device_pyquil.quantum_computer.qam.random_seed = seed - - # for i in range(len(p_lst)): - # p = p_lst[i] - # args = args_lst[i] - # cost_hamil = cost_hamil_lst[i] - - # # With routing - # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - # qaoa_descriptor = QAOADescriptor( - # cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p - # ) - # variate_params = create_qaoa_variational_params( - # qaoa_descriptor, "standard", "ramp" - # ) - - # variate_params.update_from_raw(args) - # backend_obj_pyquil = QAOAPyQuilQPUBackend( - # qaoa_descriptor=qaoa_descriptor, - # device=device_pyquil, - # prepend_state=None, - # append_state=None, - # init_hadamard=True, - # cvar_alpha=1, - # n_shots=shots, - # ) - # expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) - - # # No routing - # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - # qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) - # variate_params = create_qaoa_variational_params( - # qaoa_descriptor, "standard", "ramp" - # ) - - # variate_params.update_from_raw(args) - # backend_obj_pyquil = QAOAPyQuilQPUBackend( - # qaoa_descriptor=qaoa_descriptor, - # device=device_pyquil, - # prepend_state=None, - # append_state=None, - # init_hadamard=True, - # cvar_alpha=1, - # n_shots=shots, - # ) - # expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) - - # self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr) - - # def test_cancelled_swap(self): - # """ - # Tests that QAOADescriptor with a trivial `routing_function` input (with two swaps that cancel each other) - # returns identical results as QAOADescriptor with no `routing_function` input, - # by comparing output of seeded QVM run. Different values of p, arguments, - # and cost hamiltonian coefficients are tested. - # """ - - # def routing_function_test1(device, problem_to_solve): - # # tuples ordered from 0,n, both SWAP and ising gates - # gate_list_indices = [[0, 1], [0, 1], [0, 1]] - - # # True for SWAP - # swap_mask = [True, True, False] - - # # {QPU: (0 to n index)} - # initial_physical_to_logical_mapping = {0: 0, 1: 1} - - # # 0 to n, permuted - # final_mapping = [0, 1] - - # return ( - # gate_list_indices, - # swap_mask, - # initial_physical_to_logical_mapping, - # final_mapping, - # ) - - # args_lst = [ - # [np.pi / 8, np.pi / 4], - # [np.pi / 3.5, np.pi / 3], - # [np.pi / 8, np.pi / 4], - # [np.pi / 3.5, np.pi / 3], - # [1, 2, 3, 4], - # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - # [1, 2, 3, 4], - # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - # ] - # p_lst = [1, 1, 1, 1, 2, 2, 2, 2] - # cost_hamil_lst = [ - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [0.5, 0, 2], - # 0.7, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1.5, 1.2, 1], - # 0, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [0.5, 0, 2], - # 0.7, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 5.2, 1], - # 0, - # ), - # ] - # shots = 3 - # seed = 4 - - # device_pyquil = DevicePyquil( - # device_name="2q-qvm", as_qvm=True, execution_timeout=5, compiler_timeout=5 - # ) - # device_pyquil.quantum_computer.qam.random_seed = seed - - # for i in range(len(p_lst)): - # p = p_lst[i] - # args = args_lst[i] - # cost_hamil = cost_hamil_lst[i] - - # # With routing - # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - # qaoa_descriptor = QAOADescriptor( - # cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p - # ) - # variate_params = create_qaoa_variational_params( - # qaoa_descriptor, "standard", "ramp" - # ) - - # variate_params.update_from_raw(args) - # backend_obj_pyquil = QAOAPyQuilQPUBackend( - # qaoa_descriptor=qaoa_descriptor, - # device=device_pyquil, - # prepend_state=None, - # append_state=None, - # init_hadamard=True, - # cvar_alpha=1, - # n_shots=shots, - # ) - # expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) - - # # No routing - # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - # qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) - # variate_params = create_qaoa_variational_params( - # qaoa_descriptor, "standard", "ramp" - # ) - - # variate_params.update_from_raw(args) - # backend_obj_pyquil = QAOAPyQuilQPUBackend( - # qaoa_descriptor=qaoa_descriptor, - # device=device_pyquil, - # prepend_state=None, - # append_state=None, - # init_hadamard=True, - # cvar_alpha=1, - # n_shots=shots, - # ) - # expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) - - # self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr) - - # def test_simplest_swap(self): - # """ - # Tests that QAOADescriptor with a trivial `routing_function` input (with no swaps) returns identical - # results as QAOADescriptor with no `routing_function` input, by comparing output of seeded QVM run. - # Different values of p, arguments, and cost hamiltonian coefficients are tested. - - # Note : Even with a fixed seed, insertion of swaps changes measurement statistics. - # Final assertion is therefore only up to a tolerance, chosen by eyeballing results for a chosen seed. - - # """ - - # def routing_function_test1(device, problem_to_solve): - # # tuples ordered from 0,n, both SWAP and ising gates - # gate_list_indices = [[0, 1], [0, 1]] - - # # True for SWAP - # swap_mask = [True, False] - - # # {QPU: (0 to n index)} - # initial_physical_to_logical_mapping = {0: 0, 1: 1} - - # # 0 to n, permuted - # final_mapping = [1, 0] - - # return ( - # gate_list_indices, - # swap_mask, - # initial_physical_to_logical_mapping, - # final_mapping, - # ) - - # args_lst = [ - # [np.pi / 8, np.pi / 4], - # [np.pi / 3.5, np.pi / 3], - # [np.pi / 8, np.pi / 4], - # [np.pi / 3.5, np.pi / 3], - # [1, 2, 3, 4], - # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - # [1, 2, 3, 4], - # [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], - # ] - # p_lst = [1, 1, 1, 1, 2, 2, 2, 2] - # cost_hamil_lst = [ - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [0.5, 0, 2], - # 0.7, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1.5, 1.2, 1], - # 0, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 1, 1], - # 1, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [0.5, 0, 2], - # 0.7, - # ), - # Hamiltonian( - # [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], - # [1, 5.2, 1], - # 0, - # ), - # ] - # shots = 10 - # seed = 4 - - # device_pyquil = DevicePyquil( - # device_name="2q-qvm", as_qvm=True, execution_timeout=10, compiler_timeout=10 - # ) - # device_pyquil.quantum_computer.qam.random_seed = seed - - # for i in range(len(p_lst)): - # p = p_lst[i] - # args = args_lst[i] - # cost_hamil = cost_hamil_lst[i] - - # # With routing - # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - # qaoa_descriptor = QAOADescriptor( - # cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p - # ) - # variate_params = create_qaoa_variational_params( - # qaoa_descriptor, "standard", "ramp" - # ) - - # variate_params.update_from_raw(args) - # backend_obj_pyquil = QAOAPyQuilQPUBackend( - # qaoa_descriptor=qaoa_descriptor, - # device=device_pyquil, - # prepend_state=None, - # append_state=None, - # init_hadamard=True, - # cvar_alpha=1, - # n_shots=shots, - # ) - # expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) - - # # No routing - # mixer_hamil = X_mixer_hamiltonian(n_qubits=2) - # qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) - # variate_params = create_qaoa_variational_params( - # qaoa_descriptor, "standard", "ramp" - # ) - - # variate_params.update_from_raw(args) - # backend_obj_pyquil = QAOAPyQuilQPUBackend( - # qaoa_descriptor=qaoa_descriptor, - # device=device_pyquil, - # prepend_state=None, - # append_state=None, - # init_hadamard=True, - # cvar_alpha=1, - # n_shots=shots, - # ) - # expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) - - # # Note : Even with a fixed seed, insertion of swaps changes measurement statistics. - # # Final assertion is therefore only up to a tolerance, chosen by eyeballing results for a chosen seed. - # self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr, delta=1) + def test_no_swap(self): + """ + Tests that QAOADescriptor with a trivial `routing_function` input (with no swaps) returns identical + results as QAOADescriptor with no `routing_function` input, by comparing output of seeded QVM run. + Different values of p, arguments, and cost hamiltonian coefficients are tested. + + """ + + def routing_function_test1(device, problem_to_solve): + # tuples ordered from 0,n, both SWAP and ising gates + gate_list_indices = [[0, 1]] + + # True for SWAP + swap_mask = [False] + + # {QPU: (0 to n index)} + initial_physical_to_logical_mapping = {0: 0, 1: 1} + + # 0 to n, permuted + final_mapping = [0, 1] + + return ( + gate_list_indices, + swap_mask, + initial_physical_to_logical_mapping, + final_mapping, + ) + + args_lst = [ + [np.pi / 8, np.pi / 4], + [np.pi / 3.5, np.pi / 3], + [np.pi / 8, np.pi / 4], + [np.pi / 3.5, np.pi / 3], + [1, 2, 3, 4], + [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + [1, 2, 3, 4], + [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + ] + p_lst = [1, 1, 1, 1, 2, 2, 2, 2] + cost_hamil_lst = [ + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [0.5, 0, 2], + 0.7, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1.2, 1], + 0, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [0.5, 0, 2], + 0.7, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1.2, 1], + 0, + ), + ] + shots = 2 + seed = 1 + + device_pyquil = DevicePyquil( + device_name="2q-qvm", as_qvm=True, execution_timeout=5, compiler_timeout=5 + ) + device_pyquil.quantum_computer.qam.random_seed = seed + + # for i in range(len(p_lst)): + for i in [0,1,2,3,4]: + p = p_lst[i] + args = args_lst[i] + cost_hamil = cost_hamil_lst[i] + f=open("debug.txt", "a") + f.write(f"\n\n\n\ntest \n{p, args, cost_hamil}\n\n") + f.close() + # With routing + mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + qaoa_descriptor = QAOADescriptor( + cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p + ) + variate_params = create_qaoa_variational_params( + qaoa_descriptor, "standard", "ramp" + ) + + variate_params.update_from_raw(args) + f=open("debug.txt", "a") + f.write(f"\nVariate params w routing \n{variate_params}\n\n") + f.close() + backend_obj_pyquil = QAOAPyQuilQPUBackend( + qaoa_descriptor=qaoa_descriptor, + device=device_pyquil, + prepend_state=None, + append_state=None, + init_hadamard=True, + cvar_alpha=1, + n_shots=shots, + ) + expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) + + # No routing + mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) + variate_params = create_qaoa_variational_params( + qaoa_descriptor, "standard", "ramp" + ) + + variate_params.update_from_raw(args) + f=open("debug.txt", "a") + f.write(f"\nVariate params wout routing \n{variate_params}\n\n") + f.close() + backend_obj_pyquil = QAOAPyQuilQPUBackend( + qaoa_descriptor=qaoa_descriptor, + device=device_pyquil, + prepend_state=None, + append_state=None, + init_hadamard=True, + cvar_alpha=1, + n_shots=shots, + ) + expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) + + self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr) + + def test_cancelled_swap(self): + """ + Tests that QAOADescriptor with a trivial `routing_function` input (with two swaps that cancel each other) + returns identical results as QAOADescriptor with no `routing_function` input, + by comparing output of seeded QVM run. Different values of p, arguments, + and cost hamiltonian coefficients are tested. + """ + + def routing_function_test1(device, problem_to_solve): + # tuples ordered from 0,n, both SWAP and ising gates + gate_list_indices = [[0, 1], [0, 1], [0, 1]] + + # True for SWAP + swap_mask = [True, True, False] + + # {QPU: (0 to n index)} + initial_physical_to_logical_mapping = {0: 0, 1: 1} + + # 0 to n, permuted + final_mapping = [0, 1] + + return ( + gate_list_indices, + swap_mask, + initial_physical_to_logical_mapping, + final_mapping, + ) + + args_lst = [ + [np.pi / 8, np.pi / 4], + [np.pi / 3.5, np.pi / 3], + [np.pi / 8, np.pi / 4], + [np.pi / 3.5, np.pi / 3], + [1, 2, 3, 4], + [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + [1, 2, 3, 4], + [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + ] + p_lst = [1, 1, 1, 1, 2, 2, 2, 2] + cost_hamil_lst = [ + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [0.5, 0, 2], + 0.7, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1.5, 1.2, 1], + 0, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [0.5, 0, 2], + 0.7, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 5.2, 1], + 0, + ), + ] + shots = 3 + seed = 4 + + device_pyquil = DevicePyquil( + device_name="2q-qvm", as_qvm=True, execution_timeout=5, compiler_timeout=5 + ) + device_pyquil.quantum_computer.qam.random_seed = seed + + for i in range(len(p_lst)): + p = p_lst[i] + args = args_lst[i] + cost_hamil = cost_hamil_lst[i] + + # With routing + mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + qaoa_descriptor = QAOADescriptor( + cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p + ) + variate_params = create_qaoa_variational_params( + qaoa_descriptor, "standard", "ramp" + ) + + variate_params.update_from_raw(args) + backend_obj_pyquil = QAOAPyQuilQPUBackend( + qaoa_descriptor=qaoa_descriptor, + device=device_pyquil, + prepend_state=None, + append_state=None, + init_hadamard=True, + cvar_alpha=1, + n_shots=shots, + ) + expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) + + # No routing + mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) + variate_params = create_qaoa_variational_params( + qaoa_descriptor, "standard", "ramp" + ) + + variate_params.update_from_raw(args) + backend_obj_pyquil = QAOAPyQuilQPUBackend( + qaoa_descriptor=qaoa_descriptor, + device=device_pyquil, + prepend_state=None, + append_state=None, + init_hadamard=True, + cvar_alpha=1, + n_shots=shots, + ) + expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) + + self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr) + + def test_simplest_swap(self): + """ + Tests that QAOADescriptor with a trivial `routing_function` input (with no swaps) returns identical + results as QAOADescriptor with no `routing_function` input, by comparing output of seeded QVM run. + Different values of p, arguments, and cost hamiltonian coefficients are tested. + + Note : Even with a fixed seed, insertion of swaps changes measurement statistics. + Final assertion is therefore only up to a tolerance, chosen by eyeballing results for a chosen seed. + + """ + + def routing_function_test1(device, problem_to_solve): + # tuples ordered from 0,n, both SWAP and ising gates + gate_list_indices = [[0, 1], [0, 1]] + + # True for SWAP + swap_mask = [True, False] + + # {QPU: (0 to n index)} + initial_physical_to_logical_mapping = {0: 0, 1: 1} + + # 0 to n, permuted + final_mapping = [1, 0] + + return ( + gate_list_indices, + swap_mask, + initial_physical_to_logical_mapping, + final_mapping, + ) + + args_lst = [ + [np.pi / 8, np.pi / 4], + [np.pi / 3.5, np.pi / 3], + [np.pi / 8, np.pi / 4], + [np.pi / 3.5, np.pi / 3], + [1, 2, 3, 4], + [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + [1, 2, 3, 4], + [np.pi / 8, np.pi / 4, np.pi / 8, np.pi / 4], + ] + p_lst = [1, 1, 1, 1, 2, 2, 2, 2] + cost_hamil_lst = [ + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [0.5, 0, 2], + 0.7, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1.5, 1.2, 1], + 0, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 1, 1], + 1, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [0.5, 0, 2], + 0.7, + ), + Hamiltonian( + [PauliOp("Z", (0,)), PauliOp("Z", (1,)), PauliOp("ZZ", (0, 1))], + [1, 5.2, 1], + 0, + ), + ] + shots = 10 + seed = 4 + + device_pyquil = DevicePyquil( + device_name="2q-qvm", as_qvm=True, execution_timeout=10, compiler_timeout=10 + ) + device_pyquil.quantum_computer.qam.random_seed = seed + + for i in range(len(p_lst)): + p = p_lst[i] + args = args_lst[i] + cost_hamil = cost_hamil_lst[i] + + # With routing + mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + qaoa_descriptor = QAOADescriptor( + cost_hamil, mixer_hamil, routing_function=routing_function_test1, p=p + ) + variate_params = create_qaoa_variational_params( + qaoa_descriptor, "standard", "ramp" + ) + + variate_params.update_from_raw(args) + backend_obj_pyquil = QAOAPyQuilQPUBackend( + qaoa_descriptor=qaoa_descriptor, + device=device_pyquil, + prepend_state=None, + append_state=None, + init_hadamard=True, + cvar_alpha=1, + n_shots=shots, + ) + expt_pyquil_w_qr = backend_obj_pyquil.expectation(variate_params) + + # No routing + mixer_hamil = X_mixer_hamiltonian(n_qubits=2) + qaoa_descriptor = QAOADescriptor(cost_hamil, mixer_hamil, p=p) + variate_params = create_qaoa_variational_params( + qaoa_descriptor, "standard", "ramp" + ) + + variate_params.update_from_raw(args) + backend_obj_pyquil = QAOAPyQuilQPUBackend( + qaoa_descriptor=qaoa_descriptor, + device=device_pyquil, + prepend_state=None, + append_state=None, + init_hadamard=True, + cvar_alpha=1, + n_shots=shots, + ) + expt_pyquil_no_qr = backend_obj_pyquil.expectation(variate_params) + + # Note : Even with a fixed seed, insertion of swaps changes measurement statistics. + # Final assertion is therefore only up to a tolerance, chosen by eyeballing results for a chosen seed. + self.assertAlmostEqual(expt_pyquil_w_qr, expt_pyquil_no_qr, delta=1) def test_different_topologies(self): """ @@ -594,334 +603,334 @@ def values_return(self): ) -# class TestingQubitRouting(unittest.TestCase): -# def setUp(self): -# # case qubits device > qubits problem (RIGETTI) -# self.RIGETTI_SHORTESTPATH = ExpectedRouting( -# qubo=ShortestPath.random_instance( -# n_nodes=4, edge_probability=0.9, seed=20 -# ).qubo, -# device_location="qcs", -# device_name="9q-square-qvm", -# qpu_credentials={ -# "as_qvm": True, -# "execution_timeout": 10, -# "compiler_timeout": 100, -# }, -# problem_to_solve=[ -# (2, 3), -# (0, 2), -# (2, 4), -# (2, 5), -# (0, 4), -# (4, 5), -# (0, 5), -# (1, 3), -# (3, 5), -# (1, 5), -# ], -# initial_mapping=None, -# gate_indices_list=[ -# [4, 5], -# [2, 4], -# [1, 3], -# [3, 5], -# [4, 5], -# [1, 4], -# [2, 4], -# [0, 6], -# [2, 6], -# [2, 6], -# [2, 4], -# [4, 5], -# [2, 4], -# [1, 3], -# [1, 6], -# ], -# swap_mask=[ -# False, -# False, -# False, -# False, -# True, -# False, -# False, -# True, -# False, -# True, -# False, -# True, -# False, -# True, -# False, -# ], -# initial_physical_to_logical_mapping={ -# 8: 0, -# 4: 1, -# 6: 2, -# 1: 3, -# 3: 4, -# 0: 5, -# 7: 6, -# }, -# final_logical_qubit_order=[2, 3, 6, 1, 4, 5, 0], -# ) - -# # case qubits device == qubits problem (RIGETTI) -# self.RIGETTI_MAXCUT = ExpectedRouting( -# qubo=MaximumCut.random_instance( -# n_nodes=9, edge_probability=0.9, seed=20 -# ).qubo, -# device_location="qcs", -# device_name="9q-square-qvm", -# qpu_credentials={ -# "as_qvm": True, -# "execution_timeout": 10, -# "compiler_timeout": 100, -# }, -# problem_to_solve=[ -# (0, 2), -# (0, 3), -# (0, 4), -# (0, 5), -# (0, 7), -# (0, 8), -# (1, 2), -# (1, 4), -# (1, 5), -# (1, 6), -# (1, 7), -# (1, 8), -# (2, 3), -# (2, 5), -# (2, 6), -# (2, 7), -# (2, 8), -# (3, 4), -# (3, 5), -# (3, 6), -# (3, 8), -# (4, 7), -# (4, 8), -# (5, 6), -# (5, 7), -# (5, 8), -# (6, 7), -# (6, 8), -# (7, 8), -# ], -# initial_mapping=None, -# gate_indices_list=[ -# [5, 6], -# [3, 5], -# [0, 3], -# [1, 7], -# [0, 4], -# [1, 8], -# [4, 7], -# [6, 8], -# [6, 7], -# [1, 2], -# [2, 4], -# [4, 7], -# [0, 4], -# [1, 2], -# [6, 7], -# [5, 6], -# [1, 7], -# [3, 7], -# [4, 7], -# [6, 8], -# [0, 3], -# [0, 4], -# [3, 5], -# [5, 6], -# [6, 8], -# [3, 5], -# [1, 8], -# [1, 2], -# [6, 8], -# [1, 7], -# [3, 7], -# [4, 7], -# [4, 7], -# [6, 7], -# [0, 4], -# [0, 4], -# [2, 4], -# ], -# swap_mask=[ -# False, -# False, -# False, -# False, -# False, -# False, -# False, -# False, -# False, -# False, -# True, -# False, -# False, -# False, -# True, -# False, -# False, -# False, -# False, -# False, -# True, -# False, -# False, -# True, -# False, -# False, -# True, -# False, -# False, -# True, -# False, -# False, -# True, -# False, -# False, -# True, -# False, -# ], -# initial_physical_to_logical_mapping={ -# 2: 0, -# 7: 1, -# 8: 2, -# 1: 3, -# 5: 4, -# 0: 5, -# 3: 6, -# 4: 7, -# 6: 8, -# }, -# final_logical_qubit_order=[3, 8, 7, 4, 2, 6, 1, 5, 0], -# ) - -# # create a list of all the cases -# self.list_of_cases = [] -# for value in self.__dict__.values(): -# if isinstance(value, ExpectedRouting): -# self.list_of_cases.append(value) - -# def __routing_function_mock( -# self, -# device: DeviceBase, -# problem_to_solve: List[List[int]], -# initial_mapping: Optional[List[int]] = None, -# ): -# """ -# function that imitates the routing function for testing purposes. -# """ - -# for case in self.list_of_cases: -# if case.values_input() == ( -# device.device_name, -# device.device_location, -# problem_to_solve, -# initial_mapping, -# ): -# return case.values_return() - -# raise ValueError( -# """The input values are not in the list of expected values, -# check the expected cases and the input values. -# The input values are: device_name: {}, device_location: {}, problem_to_solve: {}, -# initial_mapping: {}""".format( -# device.device_name, -# device.device_location, -# problem_to_solve, -# initial_mapping, -# ) -# ) - -# def __compare_results(self, expected: ExpectedRouting, p: int): -# """ -# function that runs qaoa with the routing function and the problem to solve and -# compares the expected and actual results of the routing function. - -# :param expected: ExpectedRouting object that contains the input and the expected results of the routing function -# :param p: number of layers of the qaoa circuit -# """ -# print(f"\t Testing p={p}") - -# device = expected.device -# qubo = expected.qubo - -# qaoa = QAOA() -# qaoa.set_device(device) -# qaoa.set_circuit_properties( -# p=p, param_type="standard", init_type="rand", mixer_hamiltonian="x" -# ) -# qaoa.set_backend_properties(prepend_state=None, append_state=None) -# qaoa.set_classical_optimizer( -# method="nelder-mead", -# maxiter=1, -# cost_progress=True, -# parameter_log=True, -# optimization_progress=True, -# ) -# qaoa.compile(qubo, routing_function=self.__routing_function_mock) -# qaoa.optimize() - -# backend, result = qaoa.backend, qaoa.result - -# # do the checks - -# assert backend.n_qubits == len( -# expected.final_logical_qubit_order -# ), """Number of qubits in the circuit is not equal to the number of qubits given by routing""" - -# assert ( -# backend.problem_qubits == qubo.n -# ), f"""Number of nodes in problem is not equal to backend.problem_qubits, -# is '{backend.problem_qubits }' but should be '{qubo.n}'""" - -# assert ( -# len(list(result.optimized["measurement_outcomes"].keys())[0]) == qubo.n -# ), "The number of qubits in the optimized circuit is not equal to the number of qubits in the problem." - -# # check that swap gates are applied in the correct position -# swap_mask_new = [] -# for gate in backend.abstract_circuit: -# if not gate.gate_label.n_qubits == 1: -# swap_mask_new.append(isinstance(gate, SWAPGateMap)) - -# # create the expected swap mask (for p==2 the second swap mask is reversed) -# expected_swap_mask = [] -# for i in range(p): -# expected_swap_mask += expected.swap_mask[:: (-1) ** (i % 2)] - -# assert ( -# swap_mask_new == expected_swap_mask -# ), "Swap gates are not in the correct position" - -# # check that the correct qubits are used in the gates -# gate_indices_list_new = [] -# for gate in backend.abstract_circuit: -# if not gate.gate_label.n_qubits == 1: -# gate_indices_list_new.append([gate.qubit_1, gate.qubit_2]) - -# # create the expected swap mask (for p==2 the second swap mask is reversed) -# expected_gate_indices_list = [] -# for i in range(p): -# expected_gate_indices_list += expected.gate_indices_list[:: (-1) ** (i % 2)] - -# assert ( -# gate_indices_list_new == expected_gate_indices_list -# ), "The qubits used in the gates are not correct" - -# @pytest.mark.qpu -# def test_qubit_routing(self): -# for i, case in enumerate(self.list_of_cases): -# print("Test case {} out of {}:".format(i + 1, len(self.list_of_cases))) -# self.__compare_results(case, p=i % 4 + 1) -# print("Test passed for case: {}".format(case.values_input())) +class TestingQubitRouting(unittest.TestCase): + def setUp(self): + # case qubits device > qubits problem (RIGETTI) + self.RIGETTI_SHORTESTPATH = ExpectedRouting( + qubo=ShortestPath.random_instance( + n_nodes=4, edge_probability=0.9, seed=20 + ).qubo, + device_location="qcs", + device_name="9q-square-qvm", + qpu_credentials={ + "as_qvm": True, + "execution_timeout": 10, + "compiler_timeout": 100, + }, + problem_to_solve=[ + (2, 3), + (0, 2), + (2, 4), + (2, 5), + (0, 4), + (4, 5), + (0, 5), + (1, 3), + (3, 5), + (1, 5), + ], + initial_mapping=None, + gate_indices_list=[ + [4, 5], + [2, 4], + [1, 3], + [3, 5], + [4, 5], + [1, 4], + [2, 4], + [0, 6], + [2, 6], + [2, 6], + [2, 4], + [4, 5], + [2, 4], + [1, 3], + [1, 6], + ], + swap_mask=[ + False, + False, + False, + False, + True, + False, + False, + True, + False, + True, + False, + True, + False, + True, + False, + ], + initial_physical_to_logical_mapping={ + 8: 0, + 4: 1, + 6: 2, + 1: 3, + 3: 4, + 0: 5, + 7: 6, + }, + final_logical_qubit_order=[2, 3, 6, 1, 4, 5, 0], + ) + + # case qubits device == qubits problem (RIGETTI) + self.RIGETTI_MAXCUT = ExpectedRouting( + qubo=MaximumCut.random_instance( + n_nodes=9, edge_probability=0.9, seed=20 + ).qubo, + device_location="qcs", + device_name="9q-square-qvm", + qpu_credentials={ + "as_qvm": True, + "execution_timeout": 10, + "compiler_timeout": 100, + }, + problem_to_solve=[ + (0, 2), + (0, 3), + (0, 4), + (0, 5), + (0, 7), + (0, 8), + (1, 2), + (1, 4), + (1, 5), + (1, 6), + (1, 7), + (1, 8), + (2, 3), + (2, 5), + (2, 6), + (2, 7), + (2, 8), + (3, 4), + (3, 5), + (3, 6), + (3, 8), + (4, 7), + (4, 8), + (5, 6), + (5, 7), + (5, 8), + (6, 7), + (6, 8), + (7, 8), + ], + initial_mapping=None, + gate_indices_list=[ + [5, 6], + [3, 5], + [0, 3], + [1, 7], + [0, 4], + [1, 8], + [4, 7], + [6, 8], + [6, 7], + [1, 2], + [2, 4], + [4, 7], + [0, 4], + [1, 2], + [6, 7], + [5, 6], + [1, 7], + [3, 7], + [4, 7], + [6, 8], + [0, 3], + [0, 4], + [3, 5], + [5, 6], + [6, 8], + [3, 5], + [1, 8], + [1, 2], + [6, 8], + [1, 7], + [3, 7], + [4, 7], + [4, 7], + [6, 7], + [0, 4], + [0, 4], + [2, 4], + ], + swap_mask=[ + False, + False, + False, + False, + False, + False, + False, + False, + False, + False, + True, + False, + False, + False, + True, + False, + False, + False, + False, + False, + True, + False, + False, + True, + False, + False, + True, + False, + False, + True, + False, + False, + True, + False, + False, + True, + False, + ], + initial_physical_to_logical_mapping={ + 2: 0, + 7: 1, + 8: 2, + 1: 3, + 5: 4, + 0: 5, + 3: 6, + 4: 7, + 6: 8, + }, + final_logical_qubit_order=[3, 8, 7, 4, 2, 6, 1, 5, 0], + ) + + # create a list of all the cases + self.list_of_cases = [] + for value in self.__dict__.values(): + if isinstance(value, ExpectedRouting): + self.list_of_cases.append(value) + + def __routing_function_mock( + self, + device: DeviceBase, + problem_to_solve: List[List[int]], + initial_mapping: Optional[List[int]] = None, + ): + """ + function that imitates the routing function for testing purposes. + """ + + for case in self.list_of_cases: + if case.values_input() == ( + device.device_name, + device.device_location, + problem_to_solve, + initial_mapping, + ): + return case.values_return() + + raise ValueError( + """The input values are not in the list of expected values, + check the expected cases and the input values. + The input values are: device_name: {}, device_location: {}, problem_to_solve: {}, + initial_mapping: {}""".format( + device.device_name, + device.device_location, + problem_to_solve, + initial_mapping, + ) + ) + + def __compare_results(self, expected: ExpectedRouting, p: int): + """ + function that runs qaoa with the routing function and the problem to solve and + compares the expected and actual results of the routing function. + + :param expected: ExpectedRouting object that contains the input and the expected results of the routing function + :param p: number of layers of the qaoa circuit + """ + print(f"\t Testing p={p}") + + device = expected.device + qubo = expected.qubo + + qaoa = QAOA() + qaoa.set_device(device) + qaoa.set_circuit_properties( + p=p, param_type="standard", init_type="rand", mixer_hamiltonian="x" + ) + qaoa.set_backend_properties(prepend_state=None, append_state=None) + qaoa.set_classical_optimizer( + method="nelder-mead", + maxiter=1, + cost_progress=True, + parameter_log=True, + optimization_progress=True, + ) + qaoa.compile(qubo, routing_function=self.__routing_function_mock) + qaoa.optimize() + + backend, result = qaoa.backend, qaoa.result + + # do the checks + + assert backend.n_qubits == len( + expected.final_logical_qubit_order + ), """Number of qubits in the circuit is not equal to the number of qubits given by routing""" + + assert ( + backend.problem_qubits == qubo.n + ), f"""Number of nodes in problem is not equal to backend.problem_qubits, + is '{backend.problem_qubits }' but should be '{qubo.n}'""" + + assert ( + len(list(result.optimized["measurement_outcomes"].keys())[0]) == qubo.n + ), "The number of qubits in the optimized circuit is not equal to the number of qubits in the problem." + + # check that swap gates are applied in the correct position + swap_mask_new = [] + for gate in backend.abstract_circuit: + if not gate.gate_label.n_qubits == 1: + swap_mask_new.append(isinstance(gate, SWAPGateMap)) + + # create the expected swap mask (for p==2 the second swap mask is reversed) + expected_swap_mask = [] + for i in range(p): + expected_swap_mask += expected.swap_mask[:: (-1) ** (i % 2)] + + assert ( + swap_mask_new == expected_swap_mask + ), "Swap gates are not in the correct position" + + # check that the correct qubits are used in the gates + gate_indices_list_new = [] + for gate in backend.abstract_circuit: + if not gate.gate_label.n_qubits == 1: + gate_indices_list_new.append([gate.qubit_1, gate.qubit_2]) + + # create the expected swap mask (for p==2 the second swap mask is reversed) + expected_gate_indices_list = [] + for i in range(p): + expected_gate_indices_list += expected.gate_indices_list[:: (-1) ** (i % 2)] + + assert ( + gate_indices_list_new == expected_gate_indices_list + ), "The qubits used in the gates are not correct" + + @pytest.mark.qpu + def test_qubit_routing(self): + for i, case in enumerate(self.list_of_cases): + print("Test case {} out of {}:".format(i + 1, len(self.list_of_cases))) + self.__compare_results(case, p=i % 4 + 1) + print("Test passed for case: {}".format(case.values_input())) if __name__ == "__main__": diff --git a/src/openqaoa-pyquil/tests/test_pyquil_qvm.py b/src/openqaoa-pyquil/tests/test_pyquil_qvm.py index bd44f0730..e27e0e39b 100644 --- a/src/openqaoa-pyquil/tests/test_pyquil_qvm.py +++ b/src/openqaoa-pyquil/tests/test_pyquil_qvm.py @@ -224,11 +224,11 @@ def test_qaoa_pyquil_gate_names(self): "RX", "RX", ] - + program, _ = backend_obj_pyquil.qaoa_circuit(params) measurement_gate_no = len( [ instr - for instr in backend_obj_pyquil.qaoa_circuit(params) + for instr in program if type(instr) == quilbase.Measurement ] ) @@ -276,10 +276,11 @@ def test_qaoa_pyquil_gate_names(self): "RX", ] + program, _ = backend_obj_pyquil.qaoa_circuit(params) measurement_gate_no = len( [ instr - for instr in backend_obj_pyquil.qaoa_circuit(params) + for instr in program if type(instr) == quilbase.Measurement ] ) @@ -391,7 +392,7 @@ def test_circuit_append_state(self): init_hadamard=False, cvar_alpha=1, ) - + program, _ = pyquil_backend.qaoa_circuit(params) assert set( [ "RZ", @@ -434,7 +435,7 @@ def test_circuit_append_state(self): ) == set( [ instr.name - for instr in pyquil_backend.qaoa_circuit(params) + for instr in program if type(instr) == quilbase.Gate ] ) From 2b05cfac89cbbc0ac181c07963ab2652a1f09d24 Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Tue, 13 Feb 2024 04:14:00 +0000 Subject: [PATCH 11/14] Clean up debugging statements --- .../backends/qaoa_pyquil_qpu.py | 57 ------------------- .../tests/test_circuit_routing_pyquil.py | 12 +--- 2 files changed, 3 insertions(+), 66 deletions(-) diff --git a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py index 0bea14e8b..455297ebf 100644 --- a/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py +++ b/src/openqaoa-pyquil/openqaoa_pyquil/backends/qaoa_pyquil_qpu.py @@ -236,41 +236,10 @@ def qaoa_circuit(self, params: QAOAVariationalBaseParams) -> Tuple[Program, dict parametric_circuit += gates.MEASURE(self.qubit_mapping[qubit], cbit) parametric_circuit.wrap_in_numshots_loop(self.n_shots) - # native = self.device.quantum_computer.compiler.quil_to_native_quil( - # parametric_circuit - # ) - - # prog_exe = self.device.quantum_computer.compiler.native_quil_to_executable( - # native - # ) angle_values_and_names= self.obtain_angles_for_pauli_list(self.abstract_circuit, params) - # angles_list = np.array( - # angle_values, - # dtype=float, - # ) - from pprint import pprint - # print("angle_list") - # pprint(angles_list) - angle_declarations = list(parametric_circuit.declarations) - print("angle_declarations") - pprint(angle_declarations) - - angle_declarations.remove("ro") - - # for i, param_name in enumerate(angle_declarations): - # memory_map = {param_name : [angles_list[i]] for i, param_name in enumerate(angle_declarations)} memory_map = {value_name[1] : [value_name[0]] for value_name in angle_values_and_names} - from pprint import pprint - # for i, param_name in enumerate(angle_declarations): - # parametric_circuit.declare(param_name, "REAL") - - print(f"\n\nmemory map in qaoa_circuit\n") - pprint(memory_map) - f = open("debug.txt", "a") - f.write(f"\n memory map in qaoa_circuit\n{memory_map}\n") - f.close() prog_exe = self.device.quantum_computer.compile(parametric_circuit) return prog_exe, memory_map @@ -382,36 +351,10 @@ def get_counts(self, params: QAOAVariationalBaseParams, n_shots=None) -> dict: A dictionary with the bitstring as the key and the number of counts as its value. """ - # parametric_circuit = self.parametric_circuit executable_program, memory_map = self.qaoa_circuit(params) - # f = open("debug.txt", "a") - # f.write(f"abstract_circuit\n{self.abstract_circuit}\n\n") - # f.close() - - # angles_list = np.array( - # self.obtain_angles_for_pauli_list(self.abstract_circuit, params), - # dtype=float, - # ) - # angle_declarations = list(parametric_circuit.declarations.keys()) - # f = open("debug.txt", "a") - # f.write(f"angles_list\n{angles_list}\n") - # f.write(f"angles_declaration\n{angle_declarations}\n\n") - # f.close() - - # angle_declarations.remove("ro") - # f = open("debug.txt", "a") - # f.write(f"full_program\n{executable_program}\n\n") - # f.close() - # memory_map = {param_name : [angles_list[i]] for i, param_name in enumerate(angle_declarations)} - f = open("debug.txt", "a") - f.write(f"memory_map in get_counts():\n{memory_map}\n") - f.close() - - # if n_shots is given change the number of shots if n_shots is not None: executable_program.wrap_in_numshots_loop(n_shots) - result = self.device.quantum_computer.run(executable_program, memory_map=memory_map) # we create an uuid for the job diff --git a/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py b/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py index 4e856fbd3..994198831 100644 --- a/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py +++ b/src/openqaoa-pyquil/tests/test_circuit_routing_pyquil.py @@ -120,9 +120,7 @@ def routing_function_test1(device, problem_to_solve): p = p_lst[i] args = args_lst[i] cost_hamil = cost_hamil_lst[i] - f=open("debug.txt", "a") - f.write(f"\n\n\n\ntest \n{p, args, cost_hamil}\n\n") - f.close() + # With routing mixer_hamil = X_mixer_hamiltonian(n_qubits=2) qaoa_descriptor = QAOADescriptor( @@ -133,9 +131,7 @@ def routing_function_test1(device, problem_to_solve): ) variate_params.update_from_raw(args) - f=open("debug.txt", "a") - f.write(f"\nVariate params w routing \n{variate_params}\n\n") - f.close() + backend_obj_pyquil = QAOAPyQuilQPUBackend( qaoa_descriptor=qaoa_descriptor, device=device_pyquil, @@ -155,9 +151,7 @@ def routing_function_test1(device, problem_to_solve): ) variate_params.update_from_raw(args) - f=open("debug.txt", "a") - f.write(f"\nVariate params wout routing \n{variate_params}\n\n") - f.close() + backend_obj_pyquil = QAOAPyQuilQPUBackend( qaoa_descriptor=qaoa_descriptor, device=device_pyquil, From b3a501d974ba2c9073fd553adef728fd1775638f Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Tue, 13 Feb 2024 04:16:54 +0000 Subject: [PATCH 12/14] Added openqaoa-pyquil back into test workflows --- .github/workflows/test_dev.yml | 2 +- .github/workflows/test_main_linux.yml | 2 +- .github/workflows/test_main_macos.yml | 2 +- .github/workflows/test_main_windows.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_dev.yml b/.github/workflows/test_dev.yml index da339fd64..f2c7b3d84 100644 --- a/.github/workflows/test_dev.yml +++ b/.github/workflows/test_dev.yml @@ -63,7 +63,7 @@ jobs: run: | source env/bin/activate ipython kernel install --name "env" --user - pytest tests/ src/openqaoa-core/tests src/openqaoa-azure/tests src/openqaoa-braket/tests src/openqaoa-qiskit/tests -m 'not (qpu or sim)' --cov -n auto + pytest tests/ src/*/tests -m 'not (qpu or sim)' --cov -n auto - name: Upload coverage reports to Codecov with GitHub Action uses: codecov/codecov-action@v3 with: diff --git a/.github/workflows/test_main_linux.yml b/.github/workflows/test_main_linux.yml index 158947692..65b39c541 100644 --- a/.github/workflows/test_main_linux.yml +++ b/.github/workflows/test_main_linux.yml @@ -67,7 +67,7 @@ jobs: run: | source env/bin/activate ipython kernel install --name "env" --user - pytest tests/ src/openqaoa-core/tests src/openqaoa-azure/tests src/openqaoa-braket/tests src/openqaoa-qiskit/tests -m 'not (qpu or sim)' --cov --cov-report=xml:coverage.xml + pytest tests/ src/*/tests -m 'not (qpu or sim)' --cov --cov-report=xml:coverage.xml - name: Upload coverage reports to Codecov with GitHub Action uses: codecov/codecov-action@v3 diff --git a/.github/workflows/test_main_macos.yml b/.github/workflows/test_main_macos.yml index c60dd7d9b..f1a3fc0fd 100644 --- a/.github/workflows/test_main_macos.yml +++ b/.github/workflows/test_main_macos.yml @@ -56,4 +56,4 @@ jobs: run: | source env/bin/activate ipython kernel install --user --name "env" - pytest tests/ src/openqaoa-core/tests src/openqaoa-azure/tests src/openqaoa-braket/tests src/openqaoa-qiskit/tests -m 'not (qpu or api or docker_aws or braket_api or sim)' + pytest tests/ src/*/tests -m 'not (qpu or api or docker_aws or braket_api or sim)' diff --git a/.github/workflows/test_main_windows.yml b/.github/workflows/test_main_windows.yml index 061e1929e..7f38e2dce 100644 --- a/.github/workflows/test_main_windows.yml +++ b/.github/workflows/test_main_windows.yml @@ -63,5 +63,5 @@ jobs: run: | .\env\Scripts\Activate.ps1 ipython kernel install --name "env" --user - pytest tests/ src/openqaoa-core/tests src/openqaoa-azure/tests src/openqaoa-braket/tests src/openqaoa-qiskit/tests -m 'not (qpu or api or docker_aws or braket_api or sim)' + pytest tests/ src/*/tests -m 'not (qpu or api or docker_aws or braket_api or sim)' Get-ChildItem -Directory | ForEach-Object { pytest $_.FullName -m 'not (qpu or api or docker_aws or braket_api or sim)'} From 1032aa174f926b2c59bce1f454d5d5251a3f24c3 Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Tue, 13 Feb 2024 06:01:31 +0000 Subject: [PATCH 13/14] Added openqaoa-pyquil back inn test_imports.py --- tests/test_imports.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_imports.py b/tests/test_imports.py index a745087a8..28ccfbc14 100644 --- a/tests/test_imports.py +++ b/tests/test_imports.py @@ -17,9 +17,7 @@ def test_all_module_import(self): """ folder_names = [ - each_file - for each_file in os.listdir("src") - if ("openqaoa-" in each_file and not "openqaoa-pyquil") + each_file for each_file in os.listdir("src") if "openqaoa" in each_file ] packages_import = [] From e07a2c3eb058a583d03935ab79f2e4504a5e3131 Mon Sep 17 00:00:00 2001 From: KilianPoirier Date: Tue, 13 Feb 2024 07:08:13 +0000 Subject: [PATCH 14/14] Added openqaoa-pyquil bacck into Makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 72305c260..e144f4486 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ local-install: pip install ./src/openqaoa-core pip install ./src/openqaoa-qiskit -# pip install ./src/openqaoa-pyquil + pip install ./src/openqaoa-pyquil pip install ./src/openqaoa-braket pip install ./src/openqaoa-azure pip install . @@ -14,7 +14,7 @@ local-install: dev-install: pip install -e ./src/openqaoa-core pip install -e ./src/openqaoa-qiskit -# pip install -e ./src/openqaoa-pyquil + pip install -e ./src/openqaoa-pyquil pip install -e ./src/openqaoa-braket pip install -e ./src/openqaoa-azure pip install -e . @@ -23,7 +23,7 @@ dev-install: dev-install-tests: pip install -e ./src/openqaoa-core[tests] pip install -e ./src/openqaoa-qiskit -# pip install -e ./src/openqaoa-pyquil + pip install -e ./src/openqaoa-pyquil pip install -e ./src/openqaoa-braket pip install -e ./src/openqaoa-azure pip install -e . @@ -32,7 +32,7 @@ dev-install-tests: dev-install-docs: pip install -e ./src/openqaoa-core[docs] pip install -e ./src/openqaoa-qiskit -# pip install -e ./src/openqaoa-pyquil + pip install -e ./src/openqaoa-pyquil pip install -e ./src/openqaoa-braket pip install -e ./src/openqaoa-azure pip install -e . @@ -41,7 +41,7 @@ dev-install-docs: dev-install-all: pip install -e ./src/openqaoa-core[all] pip install -e ./src/openqaoa-qiskit -# pip install -e ./src/openqaoa-pyquil + pip install -e ./src/openqaoa-pyquil pip install -e ./src/openqaoa-braket pip install -e ./src/openqaoa-azure pip install -e .